* Update to version 2.19.1
[alpine.git] / pith / pine.hlp
blob169be4cb6e740fed4011f396679d2fee75b996cc
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 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 34 2013-10-13 00:44:53
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
157 <BR>Copyright 2013 Eduardo Chappa
158 <BR>Copyright 2006-2008 University of Washington
159 </DIV>
162 Alpine is an &quot;Alternatively Licensed Program for Internet
163 News and Email&quot; produced until 2008 by the University of Washington.
164 It is intended to be an easy-to-use program for
165 sending, receiving, and filing Internet electronic mail messages and
166 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
167 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
168 is available as is a world wide web based version designed to run under the
169 Apache web server.
172 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
174 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
175 addresses bugs found in previous releases and has a few additions as well.
178 Additions include:
181 <UL>
182   <LI> Upgrade UW-IMAP to Panda IMAP from 
183        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
184   <LI> Replace tabs by spaces in From and Subject fields to control for
185        size in screen of these fields. Change only in index screen display.
186   <LI> Add support to selective expunge through a subcommand of the 
187        select-apply commands. Read more in the <A 
188        HREF="h_index_cmd_expunge">help</A> for the expunge command.
189   <LI> Alpine does not attempt to automatically reopen a collection 
190        that was not opened due to cancellation by the user. 
191        Instead, the user must try to open it explicitly.
192   <LI> Alpine searches for a certificate that matches an email address in
193        all addresses in a certificate (instead of just the first 
194        one) but when it tries to unlock the certificate, it asks 
195        for the password for the first email address in that 
196        certificate.
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> Experimental: Write the content-type of a message in 
207        lowercase, as some non-compliant servers do not understand 
208        uppercase content-type, such as those of GMX.de.
209   <LI> Opening a folder updates recent count in maildrops (this 
210        already works for other types of folders)
211   <LI> Automatically redraw screen after opening an attachment 
212        instead of simply clearing it.
213   <LI> Pico: Justification works without need of a predefined quote 
214        string. This allows justification of blocks of text that are 
215        indented with spaces.
216 </UL>
219 Bugs that have been addressed include:
220 <UL>
221   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
222   <LI> Save command did not warn of existence of a message with a deleted 
223        attachment in an aggregate save, unless cursor was positioned on a message 
224        with a deleted attachment. Reported by Florian Herzig.
225   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
226        in an IMAP server.
227   <LI> DATE tokens were not internally transformed to UTF-8, which made their
228        values not appear complete in the screen. Reported by Werner Scheinast.
229   <LI> Fixes to configure script so that it will not require PAM for every system.
230   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
231        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
232        during the build. Fix by Ulf-Dietrich Braumann.
233   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
234        needs to use tcl_getstringresult() instead. Reported by Ulf-Dietrich Braumann.
235   <LI> Quoted string in URL Viewers configuration variable were not 
236        unquoted before passing to viewer.
237   <LI> Fix in configure script to detect location of tcl library; add
238        /usr/local in FreeBSD and fix a bug in configure script that used
239        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed
240        by Werner Scheinast.
241   <LI> Move SSL configurations from UW-IMAP to configure script.
242 </UL>
247 Version 2.11 addresses bugs found in previous releases and has a few 
248 additions as well.
251 Additions include:
254 <UL>
255    <LI> Alpine requires version 1.0.1c of Openssl to build.
256    <LI> Increase encryption of S/MIME encrypted messages.
257    <LI> Pico: Improvements in justification of paragraphs: lines that begin
258 with a quote string, followed by a space were considered individual paragraphs,
259 now they are considered part of a paragraph. Based on earlier joint work
260 with Jeff Franklin.
261    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
262    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
263 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
264    <LI> Added recognition of ws and wss URIs.
265    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
266  <A HREF="h_config_directory_color">directory names</A>,
267  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
268    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
269 used in the display of the INDEX SCREEN.
270    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
271 that adds the ability to preserve To: and Cc: fields when replying to a 
272 message, as specified by original sender.
273    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
274  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
275    <LI> Quota command includes subcommands for printing, forwarding, etc.
276 </UL>
279 Bugs that have been addressed include:
281 <UL>
282   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
283   <LI> Crash when resizing the screen in a configuration screen.
284   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
285   <LI> Do not use a shell to open a browser.
286   <LI> Configure script did not test for crypto or pam libraries.
287   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
288   <LI> Change Cygwin directory separator to &quot;/&quot;.
289   <LI> Alpine could set List- headers, contrary to RFC 2369.
290 </UL>
293 Version 2.10 addresses bugs found in previous releases and has a few 
294 additions as well.
297 Additions include:
300 <UL>
301    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
302    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
303    <LI> Foreign characters are decoded correctly in IMAP folders.
304    <LI> Question about breaking connection to slow servers includes their name.
305    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
306    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
307    <LI> Cygwin: Alpine builds without need of patch.
308    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
309    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
310    <LI> Add support for strong encryption of password file when S/MIME is built in.
311 </UL>
314 Bugs that have been addressed include:
317 <UL>
318    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
319    <LI> Double allocation of memory in Pico.
320    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
321    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
322    <LI> Not recognition of environment variables in some options.
323    <LI> Not display of login prompt during initial keystrokes.
324    <LI> justification of long urls breaks them.
325    <LI> Incorrect New Mail message when envelope is not available.
326    <LI> Inorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
327    <LI> Crash when resizing the screen after display of LDAP search.
328    <LI> Crash when redrawing screen while opening a remote folder collection.
329    <LI> Infinite loop in scrolltool function during notification of new mail.
330    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
331    <LI> No display of signed and encrypted S/MIME messages.
332    <LI> Alpine will not build with OpenSSL.
333    <LI> Crash for double locking in calls to c-client.
334    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
335    <LI> Ignore the references header when threading messages
336    <LI> No update of colors in index screen after update to addressbook.
337 </UL>
340 Version 2.01 addresses bugs found in previous releases and has a few 
341 additions as well.
344 Additions include:
347 <UL>
348    <LI> Fixed non-ASCII web alpine handling
349    <LI> Added web alpine help.
350    <LI> Allow web alpine inbox on second IMAP server.
351    <LI> Allow web alpine config reset after bad inbox-path gets set.
352    <LI> Added web alpine ability to create group contact from contact list members.
353    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
354    <LI> Tidied up web alpine script layout.
355    <LI> Fixed web alpine status message ordering
356    <LI> Added web alpine Fcc setting via Contacts in Compose
357    <LI> Fixed web alpine autodraft attachment issues
358    <LI> Fixed web alpine problems with recent count maintenance
359    <LI> Fixed web alpine newmail arrival display in message list
360    <LI> Added web alpine confirmation to folder create for Move/Copy
361    <LI> Added web alpine user-domain support
362    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
363 </UL>
366 Bugs that have been addressed include:
369 <UL>
370    <LI> In web alpine fixed delete all selected within a search result to reorient
371         correctly to whole-mailbox message list.
372    <LI> Fixed web alpine delete in view page to be sensitive to sort
373    <LI> Fixed web alpine open of folder within directory from folder manager page.
374    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
375    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
376    <LI> Fixed web alpine adding contacts from message list and view
377    <LI> Fixed web alpine create of non-existent fcc
378    <LI> Remove mistakenly left debugger statement in web alpine javascript.
379    <LI> Some UNIX alpine build problems fixed
380    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
381         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
382         by locale charmap call on some Solaris 8 systems.
383    <LI> MacOS Keychain logins were not working correctly with generic host names, like
384         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
385         new password requests when not needed
386    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
387         last folder in the list
388    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
389         looked for along with the email address
390    <LI> Changes to configure to get spellcheck options with work with arguments.
391    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
392         returned by gethostname (iPhone can do this)
393    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
394         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
395    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
396         Jake Scott of marganstanley.com.
397    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
398         is not used in alpine.
399    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
400         Apparently this causes RIM Blackberry BIS service problems. This is not
401         used in alpine.
402    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
403    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
404         Fix from Ludwig Nussel of SUSE and from Crispin.
405    <LI> Include whole filename in export filename history
406    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
407 </UL>
410 Version 2.00
411 addressed bugs found in previous releases and had a few additions as well.
413 Additions included:
416 <UL>
417    <LI> Redesigned Web Alpine interface
418    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
419         in UNIX versions of Alpine
420    <LI> Attempt to include the attachment filename as part of the name of the
421         temporary file used when viewing an attachment with an external program.
422         Add some randomness to that filename to make it hard to predict the filename.
423         Add a filename extension, usually derived from the type/subtype, to the
424         temporary filename. This was previously done only on Windows and MacOS X.
425    <LI> Enhance address completion in the composer (TAB command) so that it looks
426         through nicknames, fullnames, and addresses from the address book; addresses
427         from the message being viewed, if any; and the results from
428         <A HREF="h_direct_config">LDAP Directory Server</A>
429         lookups for all of the defined directory servers that have the
430         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
431         feature set.
432    <LI> Make the default character set setting more liberal in what it will accept
433         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
434    <LI> Remove the Alpine revision number from the titlebar in released versions
435         while leaving it there in snapshot versions
436    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
437         display of asterisks when you type a password for Alpine
438    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
439    <LI> When the
440         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
441         feature is turned on convert not only the dates in the index screen but also
442         the dates in the MESSAGE VIEW
443 </UL>
446 Bugs addressed in the 2.00 release included:
449 <UL>
450    <LI> Crash when using tab-completion for selecting a Save filename
451    <LI> Make Web Alpine help text images relative for more portability
452    <LI> Fixed attach save of html parts in Web Alpine
453    <LI> Viewing, printing, exporting, replying, and bouncing of message
454         digests was broken. Replying and bouncing should not have been
455         allowed at all for digests. It would be nice to have a more standard
456         index-like view of a message digest but that has not been addressed
457         with this minor bug fix.
458    <LI> Adjust wrapping of HTML messages so that the margins specified by
459         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
460         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
461         are observed correctly
462    <LI> Interrupt of WhereIs command in index was broken
463    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
464         option did not work correctly interpreting unknown characters in message headers
465    <LI> Long address lines could cause blank continuation lines
466    <LI> Save to a local default INBOX failed if the primary collection was also local,
467         which it is by default. The save went to  ~/mail/inbox instead.
468    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
469         inbox, not the inbox in the primary collection
470    <LI> Address book entries with lots of addresses would be truncated when
471         entered in the composer with a screen size wider than 270 or so charcters
472    <LI> Some fields in the index screen were truncated when the screen width was
473         wider than 256 characters
474    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
475         folder, and there is a more than 10 minute pause between typing the TAB
476         and typing the Yes
477 </UL>
480 Version 1.10(962)
481 addressed bugs found in previous releases and had a few additions as well.
483 Additions included:
486 <UL>
487    <LI> Add the possibility of setting a default role
488         (see <A HREF="h_role_select">Roles Screen</A>)
489         which may be convenient if your work flow involves acting in one
490         role for a while then switching to another role and staying in the
491         new role for another period of time
492    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
493         is encountered, ask the user if he or she wants to continue with the
494         risky Save anyway instead of aborting. This may be helpful if your
495         IMAP server is broken in this way but be aware that it is possible there
496         was a real error instead of just a broken server implementation.
497    <LI> Some configure adjustments for Kerberos detection and
498         for SCO OpenServer 5 support
499    <LI> Hide INBOX in a collection if it also appears as an
500         <A HREF="h_config_enable_incoming">Incoming Folder</A>
501    <LI> Show asterisks for feedback when the user is typing a password
502    <LI> Performance improvement for threading of large folders
503    <LI> Previously, the search used to find
504         Pattern matches containing To patterns searched for both To
505         and Resent-To headers. The relatively complicated search this
506         produces causes problems when using some deficient IMAP servers.
507         Now the default is to look only for To headers and ignore the
508         presence of Resent-To. The previous behavior may be restored
509         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
510    <LI> Add an
511         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
512         to help with reading malformed unlabeled messages
513    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
514    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
515    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
516 </UL>
519 Bugs addressed in the 1.10(962) release included:
522 <UL>
523    <LI> Crash when encountering certain errors from an SMTP server
524    <LI> Crash in composer caused by overflow in replace_pat()
525    <LI> Hang when authenticating to an SMTP server that fails with a
526         &quot;connection disconnected&quot; error
527    <LI> Bug in handling of trailing tab character in flowed text
528    <LI> Security enhancement for mailcap parameter substitution
529    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
530         did not work if the message being replied to was not flowed text
531         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
532         was not turned on
533    <LI> Don't allow printer to be changed through hidden config screen
534         if system administrator didn't want it to be allowed
535    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
536         should know that it won't work, causing error messages to appear
537    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
538         of double-quote double-quote didn't work right
539    <LI> Quoting wasn't being done to protect special characters from the
540         MacOS X shell when
541         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
542         was not defined
543    <LI> On MacOS X message attachments should be shown internally instead of
544         being shown using the Mail application
545    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
546         sometimes set the outgoing charset to X-UNKNOWN, making the result
547         unreadable
548    <LI> When the sending of a message failed lines with leading spaces had one
549         additional space inserted in each of those lines when the user
550         was returned to the composer
551    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
552         that contained non-ascii characters because it was truncating the
553         line being searched so that it was shorter than what was visible on
554         the screen
555    <LI> When composing, an attachment with a long name that causes wrapping in
556         just the wrong place would generate an error and cause the send
557         of the attachment to fail
558    <LI> After calling the file browser to attach a file in the composer, a resize
559         of the window when back in the composer would redraw the last screen that
560         had been shown in the browser instead of the current composer screen
561    <LI> Possible crash in index screen when encountering unparseable addresses
562         or when using one of the PRIORITY tokens or the HEADER token in the
563         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
564    <LI> Problems with Header Color editing if the configuration option
565         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
566         was inadvertently changed to the Empty Value in the hidden config screen
567    <LI> When resuming the final postponed message from an Exchange server the user
568         could get a certificate validation failure because alpine was trying
569         to validate the canonical name of the folder instead of the name the
570         user used
571    <LI> Windows line endings in a mimetypes file on a Unix system cause a
572         failure to find a match
573    <LI> Make matching of extension names case independent in mimetypes files
574    <LI> Windows dialog boxes for entering text were not working correctly
575    <LI> Replying to or Forwarding multipart/alternative messages which had a
576         single text/html part did not work well
577    <LI> Printing the print confirmation page caused a crash
578    <LI> A To line with a long, quoted personal name could display incorrectly
579         if it was close to the same width as the screen
580    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
581         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
582         are turned on hide (0/0) when the folder is empty
583    <LI> Folder completion while Saving didn't work if the collection being
584         saved to was the local home directory
585 </UL>
588 Version 1.00
589 was an evolutionary release based on
590 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
591 developed at the University of Washington.
592 It is upwards-compatible for existing Pine users.
595 Changes included:
597 <UL>
598    <LI> Ground-up reorganization of source code around addition
599         of "pith/" core routine library.
600    <LI> Fundamental improvement in Alpine's internal text handling, which
601         is now based exclusively on Unicode. This allows displaying incoming
602         messages and producing outgoing messages in many different languages.
603    <LI> Ground-up reorganization of build and install procedures
604         based on GNU Build System's autotools. NOTE, the included IMAP library
605         build is not based on autotools, so some features will not work. However,
606         it should get built automatically during the Alpine build process.
607    <LI> Web-based version included built on TCL designed to run under
608         a suitable CGI-supporting web server such as Apache.
609 </UL>
613 Details on changes in previous (prerelease) versions of Alpine
614 may be found at the following URL:
616 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/changes.html">http://www.washington.edu/alpine/changes.html</A></SAMP></CENTER>
619 <HR WIDTH="75%"><P>
621 <H2>Getting Help</H2>
622 <DL>
623 <DT>Online Help</DT>
624 <DD>
625 Every Alpine screen and command has associated help text
626 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
627 </DD>
629 <DT>Web Help</DT>
630 <DD>
631 The most current source of information about Alpine,
632 including new version availability, is the web page at
634 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></SAMP></CENTER>
635 </DD>
636 </DL>
638 Frequently Asked Questions (and answers) may be found at the following
639 URL:
641 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
644 <HR WIDTH="75%"><P>
646 <H2>Additional Information</H2>
648 General Alpine configuration information can be found
649 <A HREF="h_news_config">here</A>.
651 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
652 Alpine mailbox and <A HREF="http://www.washington.edu/imap/">IMAP</A> server
653 access is provided by the IMAP Toolkit Environment (c-client library)
654 version <!--#echo var="C_CLIENT_VERSION"-->.
655 <P> 
656 Alpine was developed by the Office of Computing &amp; Communications at
657 the University of Washington in Seattle.  A more complete list of
658 principal players and key contributors can be found on the credits Web
659 page at
662 <CENTER><A HREF="http://www.washington.edu/alpine/credits.html">http://www.washington.edu/alpine/credits</A></CENTER>
665 Alpine Copyright 2013 Eduardo Chappa,
666 Copyright 2006-2008 University of Washington.
669 Additional legal notices can be found <A HREF="h_news_legal">here</A>
670 or at the web URL:
673 <CENTER><A HREF="http://www.washington.edu/alpine/overview/legal.html">http://www.washington.edu/alpine/overview/legal</A></CENTER>
676 &lt;End of Release Notes&gt;
677 </BODY>
678 </HTML>
679 ====== h_tls_failure_details ======
680 <HTML>
681 <HEAD>
682 <TITLE>Certificate Validation Details</TITLE>
683 </HEAD>
684 <BODY>
685 <H1>Certificate Validation Details</H1>
687 This screen gives details as to why the certificate validation failed: the
688 name of the desired server system; the reason for failure; and the name on
689 the certificate.  This is primarily of interest to experts.
692 &lt;End of help&gt;
693 </BODY>
694 </HTML>
695 ====== h_tls_failure ======
696 <HTML>
697 <HEAD>
698 <TITLE>TLS or SSL Failure</TITLE>
699 </HEAD>
700 <BODY>
701 <H1>TLS or SSL Failure</H1>
703 An attempt was made to establish a secure, encrypted connection to the
704 server system using either Transport Layer Security (TLS) or the older
705 Secure Sockets Layer (SSL).  This attempt failed.
708 You should contact your server system management for more assistance.
709 The problem is probably at the server system and not in Alpine or your local
710 system.  The text in this screen may be helpful for the server system
711 management in debugging the problem,
714 &lt;End of help&gt;
715 </BODY>
716 </HTML>
717 ====== h_tls_validation_failure ======
718 <HTML>
719 <HEAD>
720 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
721 </HEAD>
722 <BODY>
723 <H1>TLS and SSL Certificate Validation Failures</H1>
725 An attempt was made to establish a secure, encrypted connection to the
726 server system using either Transport Layer Security (TLS) or the older
727 Secure Sockets Layer (SSL).
730 An important part of this procedure is server certificate validation.  A
731 server certificate is an &quot;electronic identification card&quot; for the server
732 system that is signed by a well-known certificate authority (CA).  Alpine
733 compares the server system identity in the server certificate with the
734 name of the server system to which it is trying to connect.  Alpine also
735 verifies that the CA signature is authentic.
738 Some common failure conditions are:
741 <UL>
742   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
743 signed its own certificate.  This does not necessarily indicate anything
744 bad; the server operators may simply have elected to not purchase a
745 signed certificate from a certificate authority.
747   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
748 the signature on the server system is from an unknown certificate authority.
749 It can also mean that no certificate authority certificates have been
750 installed on the local UNIX system.
752   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
753 the same as either of the above two conditions in UNIX Alpine.  Note that
754 Windows systems typically have a full set of certificate authority
755 certificates installed, so it is more likely to be a self-signed
756 certificate than an unknown certificate authority.
758   <LI> Server name does not match certificate.  This means that the server
759 presented a proper signed certificate for a name other than the desired
760 name.
761 </UL>
764 Any of these conditions can indicate that you are being attacked and have
765 been directed to an imposter server that will record your password and
766 your private mail messages.  It can also mean something innocuous.
769 If you are certain that the problem is innocuous, you can append the
770 option
773 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
776 to the server system name where it appears in your configuration (e.g. the
777 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
778 a folder-collection, or a news or SMTP server).  This will
779 disable certificate validation.  On the other hand, if you are attacked,
780 you will get no warning if you do this.
783 &lt;End of Cert Validation Failures help&gt;
784 </BODY>
785 </HTML>
786 ====== h_release_tlscerts ======
787 <HTML>
788 <HEAD>
789 <TITLE>TLS and SSL usage note</TITLE>
790 </HEAD>
791 <BODY>
792 <H1>TLS and SSL usage note</H1>
795 When using Alpine from Unix or Windows 2000,
796 server certificates must be signed by a trusted certificate authority.
797 You may relax this requirement (at the cost of some security) by using
799 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
800 modifier in the mailbox name.
803 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
806 The fully-qualified host name of the server should be used
807 so that it matches the host name in the server certificate.
809 Here is an example of a host specification that directs Alpine to use
810 the SSL port (993) and an encrypted data stream.
812 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
814 &lt;End of TLS usage help&gt;
815 </BODY>
816 </HTML>
817 ====== h_news_config ======
818 <HTML>
819 <HEAD>
820 <TITLE>Alpine Configuration</TITLE>
821 </HEAD>
822 <BODY>
823 <H1>Alpine Configuration</H1>
825 <H2>Using Environment Variables</H2>
827 The values of Alpine configuration options may include environment variables
828 that are replaced by the value of the variable at the time Alpine is run
829 (and also at the time the config option is changed).
830 The syntax to use environment variables is a subset of the common Unix
831 shell dollar-syntax.
832 For example, if
834 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
836 appears in the value of an Alpine configuration option it is looked up in the
837 environent (using getenv(&quot;VAR&quot;)) and its
838 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
839 To include a literal dollar sign you may precede the dollar sign with another
840 dollar sign.
841 In other words, if the text
843 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
845 is the value of a configuration option, it will be expanded to
847 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
849 and no environment lookup will be done.
850 For Unix Alpine it will also work to use a backslash character to
851 escape the special meaning of the dollar sign, but $$ is preferable since
852 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
853 to be in a shared configuration file.
856 This all sounds more complicated than it actually is.
857 An example may make it clearer.
858 Unfortunately, the way in which environment variables are set is OS-dependent 
859 and command shell-dependent.
860 In some Unix command shells you may use
862 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
863    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
865 Now, if you use Alpine's Setup/Config screen to set
867 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
869 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
870 so that this would be equivalent to
872 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
874 Note, environment variable substitution happens after configuration
875 options that are lists are split into the separate elements of the list,
876 so a single environment variable can't contain a list of values.
879 The environment variable doesn't have to be the only thing
880 after the equal sign.
881 However, if the name of the variable is not at the end of the line or
882 followed by a space (so that you can tell where the variable name ends),
883 it must be enclosed in curly braces like
885 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
887 It is always ok to use the braces even if you don't need to.
889 It is also possible to set a default value for an environment variable.
890 This default value will be used if the environment variable is not
891 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
892 The syntax used to set a default value is
894 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
896 If the config file contains
898 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
900 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
901 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
902 the value that <SAMP>VAR</SAMP> was set to, otherwise,
903 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
904 the default value.
905 (Note that the variable is called &quot;personal-name&quot; in the config
906 file but is displayed in the config screen as
907 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
908 In general, the value that goes into a config file is never exactly the
909 same as the value you see on the screen.)
912 An example where an environment variable might be useful is the
913 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
914 Suppose most users used the server
916 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
918 but that there were some exceptions who used
920 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
922 In this case, the system manager might include the following line in
923 the systemwide default Alpine configuration file
925 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
927 For the exceptional users adding
929 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
931 to their environment should work.
933 Another example might be the case where a user has to use a different
934 SMTP server from work and from home.
935 The setup might be something as simple as
937 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
939 or perhaps a default value could be given.
940 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
941 a list of SMTP servers.
944 <H2>Configuration precedence</H2>
946 There are several levels of Alpine configuration.  Configuration values at
947 a given level override corresponding values at lower levels.  In order of
948 increasing precedence:
950 <UL>
951  <LI> built-in defaults
952  <LI> system-wide
953 <!--chtml if pinemode="os_windows"-->
954       config file from command line or provided
955       by "PINECONF" environment variable
956 <!--chtml else-->
957       pine.conf file
958 <!--chtml endif-->
959  <LI> personal configuration file
960  <LI> personal exceptions configuration file
961  <LI> command-line options
962  <!--chtml if pinemode="os_windows"--><!--chtml else-->
963  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
964 </UL>
966 The values in both the personal configuration file and the
967 <A HREF="h_config_exceptions">exceptions</A>
968 configuration file may be set using the Setup command.
969 Setup/Config is the command to change most of the personal configuration
970 options.
971 The other Setup subcommands are also used to change the configuration,
972 for example, Setup/AddressBook, Setup/Rules, and so on.
973 Changing the personal exceptions configuration is very similar.
974 To change a value in the Config screen you would use the command
975 Setup/eXceptions/Config.
976 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
978 There are a couple exceptions to the rule that configuration values are replaced
979 by the value of the same option in a higher-precedence file.
980 The Feature-List variable has values that are additive, but can be
981 negated by prepending &quot;no-&quot; in front of an individual feature name.
982 So for features, each individual feature's value is replaced by the value
983 of the same feature in a higher-precedence file.
984 Note that this is done automatically for you when you change these values via
985 the Setup/Config command.
986 The other exception to the <EM>replace</EM> semantics happens when you
987 use <A HREF="h_config_inheritance">configuration inheritance</A>
988 for option lists.
991 <H2>File name defaults</H2>
993 Notes:<P>
995 <BR> &lt;exe dir&gt; = directory where pine.exe found.
996 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
997 <BR> # = default file name is overridable in pinerc.
998 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
999 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1000 <BR> + between the mailcap paths implies that the two files are combined.
1001 <BR> ; between other default paths implies that the first one found is used.
1002 </P>
1003 Alpine looks for most support files in the same directory it finds its
1004 personal configuration file (pinerc).  The -p command-line flag may be
1005 used to specify a particular path name for the pinerc file.  If a
1006 pinerc file does not exist, it will be created (if directory permissions
1007 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1008 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1009 file does not exist in either one, it will create one in the first of those
1010 two directories that is writable.  In detail:
1011 <PRE>
1013 PC-Alpine:
1015  executable     &lt;DOS search path&gt;&#92;pine.exe
1016  help index     &lt;exe dir&gt;&#92;pine.ndx
1017  help text      &lt;exe dir&gt;&#92;pine.hlp
1019  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1020  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1021  global cfg     $PINECONF
1023  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1024  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1025  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1026  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1027  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1028  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1029  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1030  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1031  postponed#     $HOME&#92;mail&#92;postpond.mtx
1032  interrupted    $HOME&#92;mail&#92;intruptd
1034 Unix Alpine:
1036  executable     &lt;Unix search path&gt;/pine
1037  persnl cfg     ~/.pinerc
1038  except cfg     ~/.pinercex
1039  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1040  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1041  local help     <!--#echo var="PINE_INFO_PATH"-->
1043  interrupted    ~/.pine-interrupted-mail
1044  debug          ~/.pine-debugN
1045  crash          ~/.pine-crash
1046  newsrc#        ~/.newsrc
1047  signature#     &lt;pinerc dir&gt;/.signature
1048  addressbook#   &lt;pinerc dir&gt;/.addressbook
1049  postponed#     ~/mail/postponed-msgs
1050  sentmail#      ~/mail/sent-mail
1051  mailcap#       ~/.mailcap + /etc/mailcap
1052                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1053  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1055  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1056  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1057  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1058  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1059  password       /etc/passwd
1061 Unix Alpine and PC-Alpine:
1063  .ab*           remote addressbook support files
1064  a[1-9]*        temporary (while Alpine is running) addressbook files
1066 </PRE>
1069 <H2>Mailcap files</H2>
1071 Alpine honors the mailcap configuration system for specifying external
1072 programs for handling attachments.  The mailcap file maps MIME attachment
1073 types to the external programs loaded on your system that can display
1074 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1075 distribution.  It includes comments that explain the syntax you need to
1076 use for mailcap.  With the mailcap file, any program (mail readers,
1077 newsreaders, WWW clients) can use the same configuration for handling
1078 MIME-encoded data.
1081 <H2>MIME-Types files</H2>
1083 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1084 what Content-Type to use for labeling an attached file, based on
1085 the file extension.  That is, this file provides a mapping between
1086 filename extensions and MIME content-types.
1089 <H2>Environment variables</H2>
1091 PC-Alpine uses the following environment variables:
1092 <DL>
1093 <DT>PINERC</DT>
1094 <DD>Optional path to pinerc file.</DD>
1095 <DT>PINERCEX</DT>
1096 <DD>Optional path to personal exceptions configuration file.</DD>
1097 <DT>PINECONF</DT>
1098 <DD>Optional path to global pine config file.</DD>
1099 <DT>HOME</DT>
1100 <DT>TMPDIR, TMP, or TEMP</DT>
1101 <DT>COMSPEC</DT>
1102 <DT>MAILCAPS</DT>
1103 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1104 <DT>USER_DICTIONARY</DT>
1105 <DD>Used to specify the file to contain the user's spell check
1106 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1107 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1108 </DL>
1110 Unix Alpine uses the following environment variables:
1111 <DL>
1112 <DT>TERM</DT>
1113 <DD>Tells Alpine what kind of terminal is being used.</DD>
1114 <DT>DISPLAY</DT>
1115 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1116 <DT>SHELL</DT>
1117 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1118 <DT>TMPDIR, TMP, or TEMP</DT>
1119 <DT>MAILCAPS</DT>
1120 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1121 </DL>
1122 <!--chtml if pinemode="os_windows"-->
1124 <H2>Common PC-Alpine Configuration Problems</H2>
1126 <H3>Configuration settings aren't being saved</H3>
1128 <P>This problem can happen if you run pine from one directory and
1129 then decide to move your pine directory to another location.  PC-Alpine
1130 stores certain variables, including the configuration location, in the
1131 Windows Registry (which you shouldn't ever need to manually edit).  There
1132 are a couple of ways to go about removing or resetting the values in the
1133 registry.
1136 1) Run PC-Alpine's registry value deletion command.  This can be done by
1137 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1138 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1139 value to the above command.
1142 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1143 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1144 option, you can tell PC-Alpine the location of your pinerc.  An example of
1145 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;.
1146 Again, you can use the DOS prompt or the shortcut method explained in (1).
1149 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1150 set registry values to the current setting, and is therefore useful with
1151 the &quot;-p&nbsp;PINERC&quot; option.
1153 <!--chtml endif-->
1155 &lt;End of Configuration Notes&gt;
1156 </BODY>
1157 </HTML>
1158 ====== h_news_legal ======
1159 <html>
1160 <head>
1161 <TITLE>Alpine Legal Notices</TITLE>
1162 </head>
1163 <body>
1165 <H1>Alpine Legal Notices</H1>
1167 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1171 &lt;End of Alpine Legal Notices&gt;
1172 </BODY>
1173 </HTML>
1174 ===== h_info_on_mbox =====
1175 <HTML>
1176 <HEAD>
1177 <TITLE>Information on mbox driver</TITLE>
1178 </HEAD>
1179 <BODY>
1180 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1182 Beginning with Pine 4.00 (Pine came before Alpine)
1183 a new INBOX access method is
1184 available as part of the standard configuration.  It is called the
1185 &quot;mbox&quot; driver and it works like this:<P>
1188 <BLOCKQUOTE>
1189 If the file &quot;mbox&quot; exists in the user's home directory, and
1190 is in Unix mailbox format, then when INBOX is opened this file will be
1191 selected as INBOX instead of the mail spool file.  Messages will be
1192 automatically transferred from the mail spool file into the mbox
1193 file.
1194 </BLOCKQUOTE>
1197 The advantage of this method is that, after new mail has been copied
1198 from the system mail spool, all subsequent access is confined to the
1199 user's home directory, which is desirable on some systems.  However, a
1200 possible disadvantage is that mail tools other than those from the
1201 University of Washington will not know to look for mail in the user's
1202 mbox file.  For example, POP or IMAP servers other than those from the
1203 University of Washington, and many &quot;new mail notification&quot;
1204 programs may not work as expected with this driver enabled.<P>
1206 To disable this behavior, either remove/rename the &quot;mbox&quot;
1207 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1208 option in Setup/Config
1209 and add &quot;mbox&quot; to it:
1211 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1213 &lt;End of help on this topic&gt;
1214 </BODY>
1215 </HTML>
1216 ===== h_info_on_locking =====
1217 <HTML>
1218 <HEAD>
1219 <TITLE>FAQs on Alpine Locking</TITLE>
1220 </HEAD>
1221 <BODY>
1222 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1224 There is an extensive section on locking in the Alpine technical notes;
1225 this information is intended to provide answers to some common questions:<P>
1226 <OL>
1227 <LI> Why did locking change in Pine 4.00?<BR>
1228 The actual locking mechanisms did not change in 4.00.
1229 What changed is that when one particular locking mechanism used by Alpine 
1230 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1231 failure would occur, but no warning was issued.<P>
1233 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1234 Yes.  It means that Alpine was unable to create a lockfile in the
1235 spool directory, generally because of overly restrictive protections on the
1236 spool directory.  The correct permissions on the spool directory for
1237 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1238 with the sticky-bit set, so only owners of a file can delete them.<P>
1240 <LI> Why does Alpine require that the mail spool directory have 1777
1241    protections?<BR>
1242 Alpine was designed to run without special privileges.  This means that in
1243 order to create a lockfile in the spool directory, it is necessary to have
1244 the spool directory permissions be world-writable.<P>
1246 <LI> Can't you create the lockfile somewhere else?<BR>
1247 No.  The lockfile in question must be in the mail spool directory, because
1248 that's where the mail delivery program expects to find it, and the purpose
1249 of the file is to coordinate access between the mail client (Alpine) and the
1250 mail delivery program.<P>
1252 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1253 No.  Remember that the individual mail files in the spool directory are
1254 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1255 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1256 -- means that only the owner of the file (or root) can delete files in the 
1257 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1258 anyone could
1259 create a random file in the spool directory.  If the spool directory is
1260 under quota control along with home directories, there is little incentive
1261 for anyone to do this, and even without quotas a periodic scan for
1262 non-mail files usually takes care of the problem.  <P>
1264 <LI> Why not run Alpine as setgid mail?<BR>
1265 Alpine was never designed to run with privileges, and to do so introduces a
1266 significant security vulnerability.  For example, if a user suspends Alpine,
1267 the resulting shell will have group privileges.  This is one example of
1268 why we strongly recommend against running Alpine as a privileged program.
1269 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1270 users
1271 could not test Alpine versions or other mailers that had not been installed
1272 by the system administrators.<P>
1275 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1276 There are, but they all have different sets of tradeoffs, and not all will
1277 work on all systems.  Some examples:<UL>
1278  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1279    spool is local.   Doesn't work reliably if NFS is used.
1280    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1281    use the same calls.
1282  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1283    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1284 mail tools that always look in the spool directory for the mail.
1285 </UL><P>
1287 <LI> Are these spool directory lock files the only kinds of locks used by
1288    Alpine?<BR>
1289 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1290 mailbox format folders, these are used to coordinate access between
1291 multiple Alpine sessions.  <P>
1293 <LI> What about the 
1294 <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>
1295 This is for people who are content to live dangerously, or who have
1296 specific knowledge that the spool directory lockfiles are superfluous on
1297 their system (because both Alpine and the mail delivery program are using 
1298 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1300 <LI> Where can I find more details on how Alpine locking works?<BR>
1301 See the Alpine Technical Notes.<P>
1303 </OL>
1305 &lt;End of help on this topic&gt;
1306 </BODY>
1307 </HTML>
1308 ===== h_finding_help ====
1309 <HTML>
1310 <HEAD>
1311 <TITLE>Finding more information and requesting help</TITLE>
1312 </HEAD>
1313 <BODY>
1314 <H1>Places to Look for More Answers</H1>
1315 If you have questions about or problems with Alpine that you cannot resolve 
1316 after consulting the program's internal, context-sensitive help screens, here 
1317 are additional information resources that you may find helpful:
1319 <UL>
1320   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1322   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1324   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1325 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1326   since the last version, which may be useful for you to be aware of, 
1327 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1328 a change in the way an aspect of Alpine works.  There, you will also find notes 
1329 on Alpine configuration.<P>
1331   <LI> The Alpine Information Center (maintained by the University of
1332            Washington) World Wide Web site contains, among other things
1333            <UL>
1334            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1335            <LI>an overview of the basics for beginning Alpine users
1336            <LI>Technical Notes for systems administrators
1337            <LI>archives (including a searchable index) of the alpine-info 
1338 mailing list, on which matters of interest to systems/email administrators,
1339 developers, trainers, user support personnel, and others involved with Alpine 
1340 messaging on a &quot;technical&quot; level are discussed.
1341 </UL>
1342         The Alpine Information Center can be accessed with a WWW browser at:<P>
1343             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1344 </UL>
1345 <P><HR WIDTH="75%">
1346 <H1>Requesting help</H1>
1347 If the internal help, the Release Notes, the Alpine Information Center, and your 
1348 local online and print resources do not help you resolve a problem, please
1349 start by contacting your local computer support staff and asking for help.
1351 This is especially true if:
1352 <ul>
1353   <li>You suddenly have trouble sending or receiving mail.
1354   <li>You receive a "disk quota exceeded" message.
1355   <li>You have forgotten your password.
1356   <li>You think your account may have been compromised.
1357   <li>You need help viewing an attachment.
1358   <li>You need to know how to configure your:
1359       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1360       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1361       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1362       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1363   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1364   <li>You want to block email from a particular person.
1365   <li>You're going on vacation and need to autorespond to incoming mail.
1366   <li>You want to automatically file or filter incoming messages.
1367 </ul>
1369 In all of these cases,
1370 you should contact <B>your</B> support staff, because <B>only they</B> 
1371 will be able to assist you effectively. Your support staff may be, depending on who 
1372 provides you with the email account you use Alpine with, for example:<UL>
1373 <LI> the computing help desk of (a department of) your university, school, 
1374 employer, ... ; or
1375 <LI> the customer service center of your Internet Service Provider; or
1376 <LI> the friendly volunteer helpers of your Freenet; or
1377 <LI> the person who setup your computer and internet connection.
1378 </UL>
1380 Due to the large number of Alpine installations worldwide, and because we
1381 receive no funding for it, the Alpine development team <B>cannot provide 
1382 individual support services outside the University of Washington</B>.
1384 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1385 newsgroup can be a valuable source of information and assistance for Alpine 
1386 user issues.
1388 For systems/email administrators, developers, trainers, user support
1389 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1390 level, the mailing list alpine-info is available; for information on
1391 subscribing and posting to it, see
1393 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1396 Regardless of whom you are asking for help with Alpine, remember 
1397 to provide as much detail as you can about the
1398 nature of any problem you are encountering, such as
1399 <UL>
1400 <LI>when it first occurred;
1401 <LI>what, if anything, happened that might have brought it about;
1402 <LI>whether it still persists;
1403 <LI>whether it is reproducible, and if so, how;
1404 <LI>what, if anything, you already tried to solve it.
1405 </UL> 
1406 It may also be helpful if you specify what version of Alpine you are using 
1407 <!--chtml if pinemode="running"-->
1408 -- this is <!--#echo var="ALPINE_VERSION"--> --
1409 <!--chtml endif-->
1410 and on what system, and when the copy of Alpine you are using was created
1411 <!--chtml if pinemode="running"-->
1412 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1413 <!--chtml endif-->
1415 <!--chtml if pinemode="running"-->
1416 <P>   
1417 When the Alpine program you are currently using was installed, a support
1418 contact email address may have been set up; in that case, you can simply select
1419 this link now to send a message to it:<BR>
1420 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1421 <!--chtml endif-->
1422 <!--chtml if [ -r PINE_INFO_PATH ]-->
1423 <HR WIDTH="75%">Local Support Contacts:<P>
1424 <!--#include file="PINE_INFO_PATH"-->
1425 <HR WIDTH="75%">
1426 <!--chtml endif-->
1427 <P> 
1428 &lt;End of help on this topic&gt;
1429 </BODY>
1430 </HTML>
1431 ===== new_user_greeting ======
1432 <HTML>
1433 <HEAD>
1434 <TITLE>NEW USER GREETING</TITLE>
1435 </HEAD>
1436 <BODY>
1437 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1438 <BR>
1439 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1440 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1441 select Setup/Config to see many of the options available to you. Also note
1442 that all screens have context-sensitive help text available.<P>
1443 <!--chtml if pinemode="phone_home"-->
1444 SPECIAL REQUEST:
1445 This software is made available as a public service of the
1446 University of Washington in Seattle. We are no longer actively developing
1447 the software, but it is still helpful to us to have an idea of how many
1448 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1449 <A HREF="X-Alpine-Phone-Home:">Return</A>
1450 will send an anonymous (meaning, your real email address will not be revealed) 
1451 message to the Alpine team at the University of Washington for purposes of tallying.
1453 <!--To Exit this screen and continue your Alpine session press "E".-->
1454 <!--chtml else-->
1455 To Exit this screen and continue your Alpine session press "Return".
1456 <!--chtml endif-->
1457 </BODY>
1458 </HTML>
1459 ===== new_alpine_user_greeting ======
1460 <HTML>
1461 <HEAD>
1462 <TITLE>NEW ALPINE USER GREETING</TITLE>
1463 </HEAD>
1464 <BODY>
1465 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1466 <BR>
1467 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1468 Your Alpine configuration file indicates that you may have used Pine before
1469 but not Alpine.
1470 If you are familiar with the way Pine works, you should be comfortable
1471 using Alpine.
1472 Your Pine configuration file is automatically used for Alpine.
1473 The Release Notes may be viewed by pressing 
1474 &quot;R&quot; now or while in the MAIN MENU.
1476 <!--chtml if pinemode="phone_home"-->
1477 SPECIAL REQUEST:
1478 This software is made available as a public service of the
1479 University of Washington in Seattle. We are no longer actively developing
1480 the software, but it is still helpful to us to have an idea of how many
1481 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1482 <A HREF="X-Alpine-Phone-Home:">Return</A>
1483 will send an anonymous (meaning, your real email address will not be revealed) 
1484 message to the Alpine team at the University of Washington for purposes of tallying.
1486 <!--To Exit this screen and continue your Alpine session press "E".-->
1487 <!--chtml else-->
1488 To Exit this screen and continue your Alpine session press "Return".
1489 <!--chtml endif-->
1490 </BODY>
1491 </HTML>
1492 ===== new_version_greeting ======
1493 <HTML>
1494 <HEAD>
1495 <TITLE>NEW VERSION GREETING</TITLE>
1496 </HEAD>
1497 <BODY>
1498 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1499 <BR>
1500 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
1501 Your Alpine configuration file indicates that you may not have used 
1502 this version of Alpine before.  This version's significant changes are
1503 documented in the Release Notes, which may be viewed by pressing 
1504 &quot;R&quot; now or while in the MAIN MENU.
1506 <!--chtml if pinemode="phone_home"-->
1507 SPECIAL REQUEST:
1508 This software is made available as a public service of the
1509 University of Washington in Seattle. We are no longer actively developing
1510 the software, but it is still helpful to us to have an idea of how many
1511 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1512 <A HREF="X-Alpine-Phone-Home:">Return</A>
1513 will send an anonymous (meaning, your real email address will not be revealed) 
1514 message to the Alpine team at the University of Washington for purposes of tallying.
1516 <!--To Exit this screen and continue your Alpine session press "E".-->
1517 <!--chtml else-->
1518 To Exit this screen and continue your Alpine session press "Return".
1519 <!--chtml endif-->
1520 </BODY>
1521 </HTML>
1523 ===== main_menu_tx ======
1524 <HTML>
1525 <HEAD>
1526 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
1527 </HEAD>
1528 <BODY>
1529 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
1530 <DIV ALIGN=CENTER>
1531 Version <!--#echo var="ALPINE_VERSION"-->
1532 <!--chtml if pinemode="running"-->
1533 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
1534 <!--chtml endif-->
1535 </DIV>
1536 <CENTER>Copyright 2013 Eduardo Chappa,
1537 <BR>Copyright 2006-2008 University of Washington.
1538 </CENTER>
1541 When you are viewing a help screen, there may be links to
1542 other topics highlighted (in Reverse video) in the text.
1543 Here is an example.
1544 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
1545 highlighted.
1546 If you type carriage return (or V for View Link, see the commands at the
1547 bottom of the screen) you will be taken to a new help screen to view the
1548 Introduction.
1549 The commands at the bottom of the screen should then include
1550 &quot;P Prev Help&quot;.
1551 If you type &quot;P&quot; you will end up back here.
1552 If you type &quot;E&quot; for Exit, you will be back out of help and returned
1553 to the place you were in Alpine when you entered Help.
1554 In this case, you would go back to the MAIN MENU.
1555 There are also other links that are highlighted in bold (or the color used
1556 by your terminal to display bold).
1557 The items after the Introduction in the TABLE OF CONTENTS are all examples
1558 of such links.
1559 In order to view those links, you first have to make the link you want
1560 to view the current link.
1561 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
1562 (see bottom of screen) can do that for you.
1565 <H2>TABLE OF CONTENTS</H2>
1566 <OL>
1567   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
1568   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
1569 <!--chtml if [ -r PINE_INFO_PATH ]-->
1570   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
1571 <!--chtml endif-->
1572   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
1573   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
1574   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
1575   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
1576   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
1577   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
1578   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
1579   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
1580   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
1581   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
1582   <LI> <A HREF="h_mainhelp_folders">Folders</A>
1583   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
1584   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
1585   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
1586   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
1587   <LI> <A HREF="h_mainhelp_roles">Roles</A>
1588   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
1589   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
1590   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
1591   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
1592   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
1593   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
1594   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
1595   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
1596   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
1597 </OL>
1600 &lt;End of help on this topic&gt;
1601 </BODY>
1602 </HTML>
1603 ===== h_mainhelp_intro ======
1604 <HTML>
1605 <HEAD>
1606 <TITLE>Introduction</TITLE>
1607 </HEAD>
1608 <BODY>
1609 <H1>Introduction</H1>
1611 Alpine is an &quot;Alternatively Licensed Program for Internet
1612 News and Email&quot; produced until 2008 by the University of Washington.
1613 It is intended to be an easy-to-use program for
1614 sending, receiving, and filing Internet electronic mail messages and
1615 bulletin board (Netnews/Usenet) messages. Alpine supports the following
1616 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
1617 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
1618 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
1619 Directory Access Protocol).<p>
1621 Although originally designed for inexperienced email users, Alpine has
1622 evolved to support many advanced features.  There are an ever-growing
1623 number of configuration and personal-preference options, though which of
1624 them are available to you is determined by your local system managers. 
1626 <H2>WHAT ALPINE DOES...</H2>
1628 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
1629 allows you to
1630 compose and read messages using Internet mail standards.  (Whether you
1631 can correspond with others on the Internet depends on whether or not your
1632 computer is connected to the Internet.)  Alpine also allows reading and
1633 posting messages on the Internet &quot;net news&quot; system, provided
1634 that your site operates a suitable news server.
1636 <H2>WHAT ALPINE DOES NOT DO...</H2>
1638 A &quot;mail user agent&quot; such as Alpine is just one part of a
1639 messaging system. Here are some things that are <B>not</B> done by Alpine,
1640 but require other programs:<P>
1641 <UL>
1642  <LI> Actual relaying of email... which is done by &quot;message transfer 
1643 agents&quot;.
1644  <LI> Vacation messages... automatically responding to incoming messages
1645  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
1646 email.
1647  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
1648  <LI> List processing... resending one message to a list of recipients.
1649 </UL>
1652 &lt;End of help on this topic&gt;
1653 </BODY>
1654 </HTML>
1656 ===== h_mainhelp_pinehelp ======
1657 <HTML>
1658 <HEAD>
1659 <TITLE>Alpine Help</TITLE>
1660 </HEAD>
1661 <BODY>
1662 <H1>Alpine Help</H1>
1664 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
1665 use will have its own help text, explaining the choices available for that
1666 screen. This general help section, on the other hand, attempts to give an 
1667 overall picture of what Alpine is capable of doing, as well as pointers to 
1668 additional help sections about specific topics.<p>
1670 Much of the help text contains links to further help topics, similar to
1671 how the World Wide Web works.
1672 You may choose a link to view using the &quot;NextLink&quot; and
1673 &quot;PrevLink&quot; commands to change the link that is highlighted.
1674 The &quot;View Link&quot; command will then show you the highlighted link.
1675 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
1676 will return you to where you were before viewing the link, and &quot;Exit Help&quot
1677 will return you to the location in Alpine before you asked for help.
1678 For example, if you are reading this text in Alpine you may return to the
1679 help table of contents with the &quot;Prev Help&quot; command or you may view the
1680 Release notes link in the next paragraph and then return here with
1681 &quot;Prev Help&quot;.
1684 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
1685 on the current Alpine version are also available from the MAIN MENU: Press
1686 <!--chtml if pinemode="function_key"-->
1687 &quot;F9&quot;
1688 <!--chtml else-->
1689 &quot;R&quot;
1690 <!--chtml endif-->
1691 to browse the release notes.  These include changes since the last release,
1692 configuration information, the history of the Alpine
1693 project, credits, and legal notices.
1695 Alpine files and documentation are available via FTP or WWW:
1697 <CENTER><SAMP><A 
1698 HREF="ftp://ftp.cac.washington.edu/alpine/">ftp://ftp.cac.washington.edu/alpine/</A>
1699 </SAMP></CENTER>
1701 <CENTER><SAMP><A 
1702 HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></SAMP
1703 ></CENTER>
1706 If you would like to print <EM>all</EM> of Alpine's internal help text
1707 (not recommended) for a little light bedtime reading, then press
1708 <!--chtml if pinemode="function_key"-->
1709 &quot;F12&quot;
1710 <!--chtml else-->
1711 &quot;Z&quot;
1712 <!--chtml endif-->
1713 now.  (This assumes that the
1714 copy of Alpine you are using has been properly configured for printing
1715 at your site.)
1717 &lt;End of help on this topic&gt;
1718 </BODY>
1719 </HTML>
1720 ===== h_mainhelp_localsupport ======
1721 <HTML>
1722 <HEAD>
1723 <TITLE>Local Support Contacts</TITLE>
1724 </HEAD>
1725 <BODY>
1726 <H1>Local Support Contacts</H1>
1728 <!--chtml if [ -r PINE_INFO_PATH ]-->
1729 <!--#include file="PINE_INFO_PATH"-->
1730 <!--chtml else-->
1731 No Local Support Contacts configured.
1732 <!--chtml endif-->
1735 &lt;End of help on this topic&gt;
1736 </BODY>
1737 </HTML>
1739 ===== h_mainhelp_cmds ======
1740 <HTML>
1741 <HEAD>
1742 <TITLE>Giving Commands in Alpine</TITLE>
1743 </HEAD>
1744 <BODY>
1745 <H1>Giving Commands in Alpine</H1>
1747 Unless configured otherwise
1748 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
1749 the bottom two lines of the screen are always used to list the
1750 commands you can give.  You press the keys that are highlighted to give
1751 the command.  The commands for getting help and going back to the main
1752 menu are always present (except when viewing help as you are now).
1753 <!--chtml if pinemode="function_key"-->
1754 <!--chtml else-->
1756 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
1757 you see at the bottom of any screen. In some cases there are 3 or
1758 even 4 different
1759 sets of keys that can be seen by using the O key. <EM>All commands are 
1760 active</EM>, even if they are not currently showing at the bottom of your 
1761 screen. In other words, you <EM>never</EM> need to press the O key, except to 
1762 remind yourself of the proper key to press to perform an operation.
1764 <H2>Control Key Commands</H2>
1765 When composing mail, and in a few other places, in Alpine you
1766 have to use Control keys. This means pressing the Control key (usually labeled 
1767 &quot;Ctrl&quot;) and the
1768 letter indicated at the same time.  Usually, this is shown with a
1769 &quot;^&quot; in front of the letter.  On some systems, certain control
1770 characters are intercepted before they get to Alpine.  As a work-around,
1771 you can press the ESCAPE key twice followed by the desired key.  For
1772 example, if Ctrl-O (^O) does not work on your system, try typing
1773 &quot;ESC ESC O&quot;.
1774 <!--chtml endif-->
1775 <H2>Paging Up and Down</H2>
1776 The &quot;+&quot; and &quot;-&quot; keys are used for
1777 moving to the next or previous page.  The space bar is a synonym for
1778 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
1779 up as you do in the message composer.  On screens with a WhereIs (search)
1780 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
1781 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
1782 of the message or list.
1784 <H2>Return Key</H2>
1785 The return key is usually a synonym for a frequently used
1786 command.  When viewing a message, there is currently not a default
1787 command, so RETURN does nothing; when in the index, it is synonymous with
1788 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
1789 enclosed in square brackets [] is the same as the return key.
1791 <H2>Control Keys Not Used By Alpine</H2>
1792 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
1793 value, but in places where Alpine is expecting text input, e.g. in the composer or 
1794 at prompts for file/folder names, control keys must be used for editing and 
1795 navigation functions.
1798 Alpine has used nearly all the control keys available.  There are, however,
1799 certain control keys that are reserved by other programs or for technical
1800 reasons.  Alpine does not use any of these keys:
1801 <DL>
1802  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
1803  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
1804  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
1805 </DL>
1807 Note: Ctrl-S and Ctrl-Q can be subject to 
1808 <A HREF="h_special_xon_xoff">special handling</A>.
1810 In addition, while the ESC key alone is not used for command input,
1811 Alpine will recognize two consecutive ESC key presses followed by a letter 
1812 key as a substitute for control key input.  For example, the control key
1813 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
1814 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
1815 This is useful if the communication program you are using
1816 (e.g. Telnet) has its own, conflicting, idea of what certain control
1817 characters mean.
1820 <H2>Repainting the Screen</H2>
1821 Sometimes what is displayed on the screen will be
1822 incorrect due to noise on the phone line or other causes and you will want
1823 to repaint the whole screen to make it correct.  You can use the Ctrl-L
1824 command to do this.  It never hurts to do it when in doubt.
1827 &lt;End of help on this topic&gt;
1828 </BODY>
1829 </HTML>
1830 ===== h_mainhelp_status ======
1831 <HTML>
1832 <HEAD>
1833 <TITLE>Titlebar Line</TITLE>
1834 </HEAD>
1835 <BODY>
1836 <H1>Titlebar Line</H1>
1838 The top line of the screen is Alpine's titlebar line.  It will always display
1839 the current version of Alpine and will also convey information about the
1840 status of the program.  This is where you look to find out what
1841 collection, folder and message number is active and where you are in Alpine.
1844 If the titlebar line says &quot;READONLY&quot; it means that the open folder
1845 (typically your INBOX) is &quot;locked&quot; by another mail session --
1846 most likely a more recent session of Alpine has taken the INBOX lock.
1849 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
1850 access a
1851 folder on a remote mail server, and for some reason, communication with
1852 the mail server has either been lost, or never successfully established.
1853 This can be a result of trying to open a non-existent folder, or one
1854 stored on an invalid or non-operational server, or it can mean that Alpine
1855 has been suspended for more that 30 minutes while accessing a remote mail
1856 server.
1859 &lt;End of help on this topic&gt;
1860 </BODY>
1861 </HTML>
1862 ===== h_mainhelp_mainmenu ======
1863 <HTML>
1864 <HEAD>
1865 <TITLE>Main Menu</TITLE>
1866 </HEAD>
1867 <BODY>
1868 <H1>Main Menu</H1>
1870 The Main Menu lists Alpine's main options.
1871 The key or keys you must type to enter your
1872 choice are to the left of each option or command name.
1873 You can type either uppercase or lowercase letters,
1874 and you should not press &lt;Return&gt; after typing the
1875 letter (unless you are specifically asking for the default,
1876 highlighted command).
1879 From the Main Menu you can choose to read online help, write (compose) and 
1880 send a message, look at an index of your mail messages, open or maintain
1881 your mail folders, update your address book, configure Alpine, and quit Alpine.
1882 There are additional options listed at
1883 the bottom of the screen as well.
1886 The Help command usually returns context-sensitive help information.
1887 However, in the Main Menu you get the most general help, which includes
1888 a Table of Contents.
1889 The last entry in the Table of Contents is an Index of help topics,
1890 so this is a good place to go if you are having trouble finding how
1891 to do something.
1893 <H2>Main Menu Commands</H2>
1894 The Alpine main menu lists the most common Alpine functions. A <a
1895 href="h_main_menu_commands">full list of these
1896 commands</a> and what they do is available.
1898 &lt;End of help on this topic&gt;
1899 </BODY>
1900 </HTML>
1901 ===== h_mainhelp_abooks ======
1902 <HTML>
1903 <HEAD>
1904 <TITLE>Address Books</TITLE>
1905 </HEAD>
1906 <BODY>
1907 <H1>Address Books</H1>
1910 As you use email, you can build a list of your regular email correspondents 
1911 in your Alpine
1912 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
1913 screen. Your
1914 personal address book will be highlighted. Press &lt;Return&gt; to view it.
1915 You can use the address book to store email addresses for individuals or
1916 groups, to create easily
1917 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
1918 address when you are composing a message.
1920 There are two ways to add addresses to your address book: you can add them 
1921 manually or take them from messages (by pressing T to access the Take command). 
1922 With either method, you specify nicknames for your correspondents. A single 
1923 address book entry (or nickname) can point to just one email address, or, it can
1924 point to more than one. When it points to more than one, it is called a 
1925 distribution list. Each distribution list has a nickname, a full name, and a 
1926 list of addresses. These
1927 addresses may be actual addresses, other nicknames in your address book, or 
1928 other
1929 distribution lists.
1932 Additional information is available in Alpine's online help:
1933 <ul>
1934   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
1935 </ul>
1937 &lt;End of help on this topic&gt;
1938 </BODY>
1939 </HTML>
1940 ===== h_mainhelp_ldap ======
1941 <HTML>
1942 <HEAD>
1943 <TITLE>LDAP</TITLE>
1944 </HEAD>
1945 <BODY>
1946 <H1>LDAP</H1>
1948 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
1949 an organization's shared
1950 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
1951 large address
1952 books, rather like the White Pages provided by the phone company. As an Alpine 
1953 user, it is not
1954 necessary to know much about how this works, only how to use it and how to 
1955 configure
1958 More information on configuring LDAP is available in Alpine's online help:
1959 <ul>
1960   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
1961 </ul>
1963 Additional help on using LDAP in Alpine is also available:
1964 <ul>
1965   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
1966 </ul>
1968 &lt;End of help on this topic&gt;
1969 </BODY>
1970 </HTML>
1971 ===== h_mainhelp_index ======
1972 <HTML>
1973 <HEAD>
1974 <TITLE>Index of Messages</TITLE>
1975 </HEAD>
1976 <BODY>
1977 <H1>Index of Messages</H1>
1979 In Alpine's message index, the selected message is highlighted. The first 
1980 column on the left is blank, shows a &quot;+&quot; if the message was
1981 sent directly to you (i.e., it is not a
1982 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
1984 The second column may be blank, or it may contain:
1985 <ul>
1986   <li>"N" if the message is new (unread), </li>
1987   <li>"A" if you have answered the message (using the Reply command), </li>
1988   <li>"D" if you have marked the message for deletion.</li>
1989 </ul>
1992 Note: If you answer a message as well as mark it deleted (in either order), 
1993 you will only see the &quot;D&quot;.
1996 The rest of the columns in the message line show you the message
1997 number, date sent, sender, size, and subject. For details, press ? (Help).  
1998 The behavior and appearance of the Index screen is highly configurable.
1999 In the Setup/Config screen search (with the WhereIs command) for options
2000 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2001 many of the configuration possibilities.
2002 In particular, the
2003 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2004 option may be used to configure the look of the standard MESSAGE INDEX lines
2005 in many different ways.
2006 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2007 read the help text there for more information.
2009 Most of the commands you need to handle your messages are visible at the
2010 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2011 commands that are available.
2012 You do not need to see these &quot;other commands&quot;
2013 on the screen to use them. That is, you never need to press O as a prefix
2014 for any other command.
2017 Additional information is available in Alpine's online help:
2018 <ul>
2019   <li><a href="h_mail_index">Message Index Commands</a></li>
2020 </ul>
2022 &lt;End of help on this topic&gt;
2023 </BODY>
2024 </HTML>
2025 ===== h_mainhelp_reading ======
2026 <HTML>
2027 <HEAD>
2028 <TITLE>Reading Messages</TITLE>
2029 </HEAD>
2030 <BODY>
2031 <H1>Reading Messages</H1>
2033 The message text screen shows you the text of the message along with
2034 its header. If a message has attachments, those will be listed (but not
2035 displayed) also.  The titlebar line displays information about the currently
2036 open message, folder and collection.  You see the name of the collection
2037 (if there is one) in angle brackets, then the name of the folder, then the
2038 message number and finally the position within the current message (in
2039 percent). If the message is marked for deletion
2040 &quot;DEL&quot; will appear in the
2041 upper right as well.
2044 As with every Alpine screen, the bottom two lines show you the commands 
2045 available.
2047 <P>Additional information is available in Alpine's online help:
2048 <ul>
2049   <li><a href="h_mail_view">Message Text Screen</a></li>
2050   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2051   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2052 </ul>
2054 &lt;End of help on this topic&gt;
2055 </BODY>
2056 </HTML>
2057 ===== h_mainhelp_composing ======
2058 <HTML>
2059 <HEAD>
2060 <TITLE>Composing Messages</TITLE>
2061 </HEAD>
2062 <BODY>
2063 <H1>Composing Messages</H1>
2065 To write a message, press C (Compose). You see the Compose Message
2066 screen, which is divided into two parts: the header area and the message
2067 text area. The header area is where information on the recipient (the To:
2068 field) and the subject line go, while the message text area contains the
2069 actual text of the email message. Different commands are available to you
2070 when your cursor is in different areas on this screen. To see additional
2071 help on commands in either the message text or header area, type
2072 <Control>G (Get help).
2075 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2076 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2078 <P>The following information from Alpine's online help may prove useful:
2079 <ul>
2080   <li><a href="h_composer_to">Message Header Commands</a></li>
2081   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2082   <li><a href="h_composer">Composer Commands</a></li>
2083   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2084   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2085   <li><a href="h_compose_send">Send Command</a></li>
2086   <li><a href="h_compose_spell">Spell Check Command</a></li>
2087 </ul>
2089 &lt;End of help on this topic&gt;
2090 </BODY>
2091 </HTML>
2092 ===== h_mainhelp_collections ======
2093 <HTML>
2094 <HEAD>
2095 <TITLE>Collection Lists</TITLE>
2096 </HEAD>
2097 <BODY>
2098 <H1>Collection Lists</H1>
2100 Collection lists are Alpine's way of organizing groups of folders. Each
2101 "collection" can reside on a different server, for example, and contain a
2102 different group of mail folders.
2105 For more information on this, see:
2106 <ul>
2107   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2108 </ul>
2110 Additional information relating to collection lists is also available in 
2111 Alpine's online
2112 help:
2113 <ul>
2114   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2115   <li><a href="h_collection_screen">Collection List Screen</a></li>
2116 </ul>
2118 &lt;End of help on this topic&gt;
2119 </BODY>
2120 </HTML>
2121 ===== h_mainhelp_folders ======
2122 <HTML>
2123 <HEAD>
2124 <TITLE>Folders</TITLE>
2125 </HEAD>
2126 <BODY>
2127 <H1>Folders</H1>
2129 Messages can quickly accumulate in your INBOX folder. If you use email
2130 often, you soon could have hundreds. You need to delete messages you do
2131 not want, and you can use folders to organize messages you wish to save. A
2132 folder is a collection of one or more messages that are stored (just like
2133 the messages in your INBOX) so you can access and manage them.
2136 You can organize your email messages into different folders by topic,
2137 correspondent, date, or any other category that is meaningful to you. You
2138 can create your own folders, and Alpine automatically provides three:
2139 <ul>
2140   <li>The INBOX folder: messages sent to you are listed in this folder.
2141       When you first start Alpine and go to the Message Index screen, you are
2142 looking at the list of messages in your INBOX folder. Every incoming
2143 message remains in your INBOX until you delete it or save it in another
2144 folder. </li>
2145   <li>The sent-mail folder: copies of messages you send are stored in this 
2146 folder. This is
2147 convenient if you cannot remember whether you actually sent a message and want 
2148 to check, or
2149 if you want to send a message again.</li>
2150   <li>The saved-messages folder: copies of messages you save are stored in this 
2151 folder
2152 unless you choose to save them to other folders you create yourself.</li>
2153 </ul>
2156 More information about folders is available in Alpine's online help:
2157 <ul>
2158   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2159   <li><a href="h_folder_maint">Help for Folder List</a></li>
2160   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2161   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2162 Explained</a></li>
2163   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2164 </ul>
2166 &lt;End of help on this topic&gt;
2167 </BODY>
2168 </HTML>
2169 ===== h_mainhelp_color ======
2170 <HTML>
2171 <HEAD>
2172 <TITLE>Color</TITLE>
2173 </HEAD>
2174 <BODY>
2175 <H1>Color</H1>
2177 If the terminal emulator you are using is capable of displaying color or if
2178 you are using PC-Alpine, then it is possible to set up Alpine so that various
2179 parts of the display will be shown in colors you configure. This is done
2180 using the Setup Color screen, available from the MAIN MENU by selecting
2181 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2182 stands for Config in this context).
2185 For example, you may color things like the titlebar, the current item,
2186 the keymenu, and the status messages.
2187 You may also color lines in the index, and headers and quoted text in the
2188 MESSAGE TEXT screen.
2189 You use the Color Setup screen for configuring most of this, but you must
2190 use the IndexColor setup for coloring whole index lines.
2191 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2194 The following entries in Alpine's online help provide additional information 
2195 about how to use color:
2196 <UL>
2197   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2198   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2199   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2200   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2201 </UL>
2203 &lt;End of help on this topic&gt;
2204 </BODY>
2205 </HTML>
2206 ===== h_mainhelp_mouse ======
2207 <HTML>
2208 <HEAD>
2209 <TITLE>Using a Mouse</TITLE>
2210 </HEAD>
2211 <BODY>
2212 <H1>Using a Mouse</H1>
2214 If you are using PC-Alpine mouse support is turned on automatically.
2215 If you are using UNIX Alpine within an X terminal window or within
2216 a terminal emulator that supports an xterm-style mouse, then you may
2217 turn on support for the mouse with the feature
2218 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2219 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2221 PC-Alpine offers considerable mouse support.  You can view what is
2222 &quot;clickable&quot; by dragging your mouse over any screen; when the
2223 arrow cursor changes into a hand, you found something. Mouse-click
2224 possibilities include navigating between screens and folders and
2225 double-clicking on hyperlinks to open your Web browser.
2226 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2227 screen.  Examples of right-click options include &quot;copy&quot; after
2228 selecting text to copy and &quot;View in New Window&quot; when you click
2229 on a particular message in the Message Index. The menu choices available
2230 to you will vary based upon what screen is open, where on the screen your
2231 cursor is located, and even what action you have already taken.
2232 Within a folder, you may set the &quot;Important&quot; flag on any
2233 message.
2235 X terminal mouse support is more limited but still quite powerful.
2236 As with PC-Alpine, clicking on any of the commands in the keymenu at
2237 the bottom of the screen will execute that command as if you typed it.
2238 Double-clicking on a link, for example the link to the
2239 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2240 will take you to that link.
2241 Double-clicking on an index line will view the message, and so on.
2243 &lt;End of help on this topic&gt;
2244 </BODY>
2245 </HTML>
2246 ===== h_mainhelp_keywords ======
2247 <HTML>
2248 <HEAD>
2249 <TITLE>Keywords</TITLE>
2250 </HEAD>
2251 <BODY>
2252 <H1>Keywords</H1>
2254 Within a folder, you may set the &quot;Important&quot; flag on any
2255 message.
2256 This doesn't have any system-defined meaning and is only called
2257 the Important flag because many users use it to signify that a message
2258 is important to them in some way.
2260 You may also define your own set of keywords.
2261 You might know these as user defined flags or as labels.
2262 These are similar to the Important flag but you choose the names for yourself.
2264 Alpine will only display keywords that
2265 have been added by you in the Flag Details screen or
2266 that have been configured by you using the Setup/Config option
2267 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2268 Keywords set by other means (for example, by another email client) will not
2269 show up in Alpine unless you configure Alpine to know about them.
2270 They will show up in the Flag Details screen, but will not show up, for example,
2271 in the index line.
2274 The following entries in Alpine's online help provide additional information 
2275 about how to use keywords:
2276 <ul>
2277   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2278   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2279 </ul>
2281 &lt;End of help on this topic&gt;
2282 </BODY>
2283 </HTML>
2284 ===== h_mainhelp_roles ======
2285 <HTML>
2286 <HEAD>
2287 <TITLE>Roles</TITLE>
2288 </HEAD>
2289 <BODY>
2290 <H1>Roles</H1>
2292 You may play different roles depending on who you are replying to. For
2293 example, if you are replying to a message addressed to help-desk you may
2294 be acting as a Help Desk Worker. That role may require that you use a
2295 different return address and/or a different signature.
2298 To configure roles, go to the MAIN MENU and use the Setup command
2299 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2300 The following entries in Alpine's online help provide additional information 
2301 about how to
2302 use roles:
2303 <ul>
2304   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2305   <li><a href="h_role_select">Roles Screen</a></li>
2306 </ul>
2308 &lt;End of help on this topic&gt;
2309 </BODY>
2310 </HTML>
2311 ===== h_mainhelp_filtering ======
2312 <HTML>
2313 <HEAD>
2314 <TITLE>Filtering</TITLE>
2315 </HEAD>
2316 <BODY>
2317 <H1>Filtering</H1>
2319 The software that actually delivers mail (the stuff that happens
2320 before Alpine is involved) for you is in a better position to do mail filtering
2321 than Alpine itself.
2322 If possible, you may want to look into using that sort of mail filtering to
2323 deliver mail to different folders, delete it, or forward it.
2324 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2327 Filtering is a way to automatically move certain messages from one folder
2328 to another or to automatically delete messages.
2329 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2330 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2331 Alpine doesn't have the ability to forward mail to another address or
2332 to deliver vacation messages.
2335 To configure filtering, go to the MAIN MENU and use the Setup command
2336 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2337 The following entries in Alpine's online help provide additional information 
2338 about how to use filtering:
2339 <UL>
2340   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2341 </UL>
2343 &lt;End of help on this topic&gt;
2344 </BODY>
2345 </HTML>
2346 ===== h_mainhelp_patterns ======
2347 <HTML>
2348 <HEAD>
2349 <TITLE>Patterns</TITLE>
2350 </HEAD>
2351 <BODY>
2352 <H1>Patterns</H1>
2354 Patterns are used with Roles, Filtering, Index Coloring,
2355 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2356 The following entries in Alpine's online help provide information 
2357 about using Patterns:
2358 <UL>
2359   <LI> <A HREF="h_rule_patterns">Patterns</A>
2360 </UL>
2362 &lt;End of help on this topic&gt;
2363 </BODY>
2364 </HTML>
2365 ===== h_mainhelp_cmdlineopts ======
2366 <HTML>
2367 <HEAD>
2368 <TITLE>Command Line Options</TITLE>
2369 </HEAD>
2370 <BODY>
2371 <H1>Command Line Options</H1>
2373 Alpine accepts a number of command line arguments, allowing you, for
2374 example, to start Alpine and immediately access a particular folder.
2375 Many of these arguments overlap with options in the Alpine configuration file.
2376 If there is a difference, then an option set on the command line takes
2377 precedence.
2378 Alpine expects command line arguments (other than addresses) to be
2379 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2380 A <a href="h_command_line_options">full list</a> of command line
2381 possibilities is available.
2383 &lt;End of help on this topic&gt;
2384 </BODY>
2385 </HTML>
2386 ===== h_mainhelp_config ======
2387 <HTML>
2388 <HEAD>
2389 <TITLE>Alpine Configuration</TITLE>
2390 </HEAD>
2391 <BODY>
2392 <H1>Alpine Configuration</H1>
2394 Unless it has been administratively disabled, the Setup command on the
2395 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2396 The possible subcommands are for general Configuration settings,
2397 Printer settings, Changing your Password, Signature setup,
2398 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2399 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2400 and Color configuration.
2401 In particular, the &quot;Config&quot; subcommand has many features you may
2402 set or unset and many other configuration variables that may be set to change
2403 the way Alpine works.
2404 Every one of the hundreds of options available in that configuration settings
2405 screen has help text associated with it.
2406 You may read that text by moving the cursor to highlight the option and then
2407 typing the Help command.
2409 These settings are stored in your personal
2410 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2411 <A HREF="h_config_remote_config">remotely</A>),
2412 but on shared systems these settings
2413 may be over-ridden by a system-wide control file (due to local site
2414 security or support policies).  A global pine configuration file can also
2415 be used to set default values for all Alpine users on a particular system.
2416 Power users may be interested in splitting their personal configuration
2417 data into two pieces, a generic piece and
2418 <A HREF="h_config_exceptions">exceptions</A> which apply to
2419 a particular platform.
2420 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2421 General Alpine configuration information can be found
2422 <A HREF="h_news_config">here</A>.
2424 &lt;End of help on this topic&gt;
2425 </BODY>
2426 </HTML>
2427 ===== h_mainhelp_aggops ======
2428 <HTML>
2429 <HEAD>
2430 <TITLE>Aggregate Operations</TITLE>
2431 </HEAD>
2432 <BODY>
2433 <H1>Aggregate Operations</H1>
2435 When you are in the MESSAGE INDEX, the available commands
2436 (for example, Delete, Undelete, Save, Reply, and so on)
2437 normally act on a single message.
2438 So, for example, if you press the Delete command, the currently highlighted
2439 message is marked Deleted.
2440 These commands that normally act on a single message may be applied to
2441 several messages at once instead.
2443 By default this feature is turned on, but it could be administratively turned
2444 off to reduce complexity.
2445 The feature
2446 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2447 in the Setup/Config screen is used to turn it off or on.
2448 When this feature is turned on, the four commands &quot;Select&quot;,
2449 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2450 are available.
2451 The two selection commands allow you to mark a set of
2452 messages as being &quot;selected&quot;.
2453 The &quot;ZoomMode&quot; command will toggle between
2454 displaying only the selected messages and displaying all the messages.
2455 The &quot;Apply&quot; command allows you to
2456 apply one of the regular MESSAGE INDEX commands to all of the selected
2457 messages instead of to only the highlighted message.
2459 An example aggregate operation would be to catch up when reading
2460 a news group.
2461 That is, get rid of all the messages in the news group so that you can
2462 start fresh.
2463 The easiest way to do this in Alpine is to use aggregate operations.
2464 You want to Delete all of the messages in the group.
2465 You could start at the top and type &quot;D&quot; once for every message.
2466 A much faster method is to first Select all of the messages in the group,
2467 and then Delete all of them.
2468 This would take four keystrokes:
2470 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2471 <BR>
2472 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2474 Another use of Select is to use it for searching for a particular message
2475 or set of messages in a large folder.
2476 You may know that the message was From a certain user.
2477 You could select all messages from that user to start, and use Zoom to
2478 look at only those messages.
2479 If there were still too many messages to look at you could Narrow the
2480 set of messages further by selecting from all of those messages only
2481 the ones that were after a certain date, or contained a particular phrase
2482 in the Subject, or were too a particular address, and so on.
2483 That may be the end of what you are doing, or you may want to use Apply to
2484 Save or Forward or Print all of the selected messages.
2486 Some related help topics are
2487 <UL>
2488 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2489 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2490 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2491 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2492 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2493 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2494 </UL>
2496 &lt;End of help on this topic&gt;
2497 </BODY>
2498 </HTML>
2499 ===== h_mainhelp_readingnews ======
2500 <HTML>
2501 <HEAD>
2502 <TITLE>Reading News</TITLE>
2503 </HEAD>
2504 <BODY>
2505 <H1>Reading News</H1>
2507 <H2>Background</H2>
2508 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
2509 commands as for mail. Similar to mailing lists but existing on a larger scale, 
2510 Usenet newsgroups allow groups of people with common interests to discuss 
2511 particular topics. You might find newsgroups related to your career, or you 
2512 might wish to check out the online discussion among the fans of your favorite 
2513 television show. 
2515 <H2>Configuring Alpine for Reading News</H2>
2516 Alpine often arrives
2517 pre-configured by your system administrator to automatically access the
2518 newsgroups offered by your organization, Internet Service Provider, or
2519 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
2520 need additional details on <a href="h_configuring_news">how to
2521 configure Alpine to read news</a>.
2523 <H2>Accessing Newsgroups</H2>
2524 The first step in reading news is to access the newsgroups collections
2525 screen from Alpine. If everything is configured properly, you should be able
2526 to do this by first typing L (folder List), then selecting the folder
2527 collection listed as "News." The actual name of this collection may differ
2528 from system to system.
2530 <H2>Subscribing to Newsgroups</H2>
2532 Once you have accessed the news collection, you need to subscribe to a
2533 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
2534 will keep a record of the newsgroups in which you are interested and which
2535 articles in those newsgroups have been read.
2537 <H2>Using Newsgroups</H2> 
2538 Alpine uses the similar commands to read news as to read mail. For example,
2539 the D command marks messages as Deleted (or "Dismissed," if you prefer),
2540 and the R command Replies to a news posting. Basically, Alpine allows you to
2541 read news as if it were mail, so you don't need to change the way you
2542 interact with Alpine.
2544 There is also additional Alpine help available on 
2545 <A HREF="h_reading_news">how to use Alpine to read news</A>.
2547 &lt;End of help on this topic&gt;
2548 </BODY>
2549 </HTML>
2550 ===== h_mainhelp_securing ======
2551 <HTML>
2552 <HEAD>
2553 <TITLE>Securing your Alpine Session</TITLE>
2554 </HEAD>
2555 <BODY>
2556 <H1>Securing your Alpine Session</H1>
2558 By default, Alpine will attempt to connect to an IMAP server on the normal
2559 IMAP service port (143).
2560 If the Alpine you are using has been built to
2561 support &quot;Transport Layer Security&quot; (TLS)
2562 and &quot;Secure Sockets Layer&quot; (SSL) 
2563 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
2564 and the server offers the STARTTLS capability, then a secure (encrypted)
2565 session will be established.
2567 When you are connected to a remote folder the titlebar will contain a plus sign
2568 in the far right column if the connection is encrypted using TLS or SSL.
2569 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
2570 if the connection is encrypted.
2572 <H2>More Information on Alpine with SSL and TLS</H2>
2573 <UL>
2574 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
2575 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
2576 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
2577 <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>
2578 </UL>
2579 <H2>Here are some other security-related features and options</H2>
2581 <UL>
2582 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
2583 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
2584 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
2585 </UL>
2587 &lt;End of help on this topic&gt;
2588 </BODY>
2589 </HTML>
2590 ===== h_mainhelp_problems ======
2591 <HTML>
2592 <HEAD>
2593 <TITLE>Reporting Problems</TITLE>
2594 </HEAD>
2595 <BODY>
2596 <H1>Reporting Problems</H1>
2598 We ask that you first read the relevant help screens and then seek
2599 assistance from your own local support staff.  Once you are sure that your
2600 difficulty is not a local configuration problem, you might look at the
2601 help section explaining where to look for
2602 <A HREF="h_finding_help">more information</A> and where to 
2603 get assistance.
2606 Please note: Alpine has been adapted to several other operating systems
2607 besides those directly supported by the University of Washington; see:
2609 <CENTER><A HREF="http://www.washington.edu/alpine/overview/non-UW.html">http://www.washington.edu/alpine/overview/non-UW.html</A></CENTER>
2612 Inquiries about these other ports (e.g., VMS and AmigaDOS) should be
2613 directed to the individual or group that did the adaptation. 
2616 <ADDRESS>
2617    Eduardo Chappa &lt;chappa@gmx.com&gt;
2618 </ADDRESS>
2621 &lt;End of help on this topic&gt;
2622 </BODY>
2623 </HTML>
2624 ===== h_main_menu_commands ======
2625 <HTML>
2626 <HEAD>
2627 <TITLE>MAIN MENU COMMANDS</TITLE>
2628 </HEAD>
2629 <BODY>
2630 <H1>MAIN MENU COMMANDS</H1>
2632 <!--chtml if pinemode="function_key"-->
2633 &nbsp;Available&nbsp;Commands&nbsp;--
2634 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
2635 &nbsp;------------------------------
2636 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
2637 ----------<BR>
2638 &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>
2639 &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>
2640 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
2641 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
2642 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
2643 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
2644 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
2645 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
2646 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2647 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2648 &nbsp;F7&nbsp;&nbsp;<A 
2649 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
2650 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2651 &nbsp;F8&nbsp;&nbsp;<A 
2652 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
2653 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
2654 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 
2655 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
2656 &nbsp;F10&nbsp;<A 
2657 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 
2658 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
2659 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2660 &nbsp;F11&nbsp;<A 
2661 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2662 <!--chtml else-->
2663 &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>
2664 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
2665 &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>
2666 &nbsp;C&nbsp;&nbsp;<A 
2667 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>
2668 &nbsp;I&nbsp;&nbsp;<A 
2669 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>
2670 &nbsp;L&nbsp;&nbsp;<A 
2671 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>
2672 &nbsp;A&nbsp;&nbsp;<A 
2673 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
2674 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
2675 &nbsp;S&nbsp;&nbsp;<A 
2676 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 
2677 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2678 &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;&nbsp;&nbsp;J&nbsp;&nbsp;<A HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
2679 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
2680 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2681 <!--chtml endif-->
2684 NOTE:
2685 <OL>
2686  <LI>For help on a particular command, highlight the bold text associated
2687 with it above and hit Return.
2688  <LI> The availability of certain commands (e.g. some of the options under
2689 SETUP) is determined by Alpine configuration files and system capabilities.
2690 At some sites, certain commands may not be available due to security or
2691 support concerns.
2692 </OL>
2694 &lt;End of help on this topic&gt;
2695 </BODY>
2696 </HTML>
2698 ===== h_command_line_options ======
2699 <HTML>
2700 <HEAD>
2701 <TITLE>COMMAND LINE OPTIONS</TITLE>
2702 </HEAD>
2703 <BODY>
2704 <H1>COMMAND LINE OPTIONS</H1>
2705 Possible starting arguments for Alpine:
2707 <DL COMPACT>
2709 <DT> <EM>[addresses]</EM>
2711 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
2712 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
2713 <EM>Alpine</EM> will startup in
2714 the composer with a message started to the addresses specified.
2715 Once the message is sent, the <EM>Alpine</EM> session closes.
2716 Standard input redirection is allowed.
2717 Separate multiple addresses with a space between them.
2718 Addresses are placed in the &quot;To&quot; field only.
2721 <DT> &lt; <EM>file</EM>
2723 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
2724 into the body of the message.
2725 Once the message is sent, the <EM>Alpine</EM> session closes. 
2728 <DT> -attach <EM>file</EM>
2730 <DD> Go directly into composer with given file attached.
2733 <DT> -attachlist <EM>file-list</EM>
2735 <DD> Go directly into composer with given files attached.
2736 This must be the last option on the command line.
2739 <DT> -attach_and_delete <EM>file</EM>
2741 <DD> Go directly into composer with given file attached, delete when finished.
2744 <DT> -aux <EM>local_directory</EM>
2746 <DD> <EM>PC-Alpine</EM> only.
2747 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
2748 files, like debug files, address books, and signature files.  The pinerc may 
2749 be local or remote.
2752 <DT> -bail
2754 <DD> If the personal configuration file doesn't already exist, exit.
2755 This might be useful if the configuration file is accessed using some
2756 remote filesystem protocol. If the remote mount is missing this will cause
2757 <EM>Alpine</EM> to quit instead of creating a new pinerc.
2760 <DT> -c <EM>n</EM>
2762 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
2763 This is used when there are multiple folder collections (contexts) and you 
2764 want to open a folder not in the primary collection.
2767 <DT> -conf
2769 <DD> Configuration: Prints a sample system configuration file to the
2770 screen or standard output. To generate an initial system configuration 
2771 file, execute
2773 <PRE><CODE>
2774                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
2775 </CODE></PRE>
2778 To generate a system configuration file using settings from an old
2779 system configuration file, execute
2781 <PRE><CODE>
2782                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
2783 </CODE></PRE>
2785 A system configuration file is not required.
2788 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
2790 <DD> Copy an address book file to a remote address book folder.
2791 If the remote folder doesn't exist, it will be created.
2792 If it exists but the first message in the folder isn't a remote address
2793 book header message, the copy will be aborted.
2794 This flag will not usually be used by a user.
2795 Instead, the user will create a remote address book from within <EM>Alpine</EM>
2796 and copy entries from the local address book by using aggregate Save in
2797 the address book screen.
2800 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
2802 <DD> Copy a pinerc configuration file to a remote pinerc folder.
2803 If the remote folder doesn't exist, it will be created.
2804 If it exists but the first message in the folder isn't a remote pinerc
2805 header message, the copy will be aborted.
2806 This flag may be useful to users who already have a local pinerc file and
2807 would like to convert it to a remote pinerc folder and use that instead.
2808 This gives a way to bootstrap that conversion without having to manually
2809 reset all of the variables in the remote pinerc folder.
2812 <DT> -d <EM>debug-level</EM>
2814 <DD> Debug Level:  Sets the level of debugging information written by
2815 <EM>Alpine</EM>.
2816 <EM>debug-level</EM> can be set to any integer 0-9.
2817 A debug level of 0 turns off debugging for the session.
2818 (Actually there are some levels higher than 9, but you probably don't
2819 want to see them.)
2822 <DT> -d <EM>keywords</EM>
2824 <DD> You may use a more detailed version of the debugging flag to set
2825 the debug level in separate parts of <EM>Alpine</EM>.
2826 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
2827 verbose=0..9.
2828 <EM>Flush</EM> causes debugging information to be flushed immediately to
2829 the debug file as it is written.
2830 <EM>Verbose</EM> is the general debugging verbosity level.
2831 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
2832 is useful when you are trying to figure out what is responsible for delays.
2833 <EM>Numfiles</EM> sets the number of debug files saved.
2834 <EM>Imap</EM> sets the debug level for the debugging statements related
2835 to the conversation with the IMAP server, and more generally, for the
2836 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
2837 <EM>Tcp</EM> turns on some TCP/IP debugging.
2840 <DT> -f <EM>folder</EM>
2842 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
2843 of the standard INBOX.
2846 <DT> -F <EM>file</EM>
2848 <DD> Open named text file for viewing and forwarding.
2851 <DT> -h
2853 <DD> Help:  Prints the list of available command-line arguments to the
2854 screen.
2857 <DT> -i
2859 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
2860 screen instead of the MAIN MENU.
2863 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
2866 <DT> -I <EM>a,b,c,...</EM>
2868 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
2869 sequence of commands upon startup.
2870 This allows users to get <EM>Alpine</EM> to start in any
2871 of its menus/screens.
2872 You cannot include any input to the composer in the initial keystrokes.
2873 The key &lt;Return&gt; is represented by a ``CR'' in
2874 the keystroke list; the spacebar is designated by the letters ``SPACE''.
2875 Control keys are two character sequences beginning with ``^'', such as
2876 ``^I''.
2877 A tab character is ``TAB''.
2878 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
2879 ``DOWN'', ``LEFT'', and ``RIGHT''.
2880 A restriction is that you can't mix function keys and character keys in this
2881 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
2882 A user can always use only <EM>character</EM> keys in the startup list even
2883 if he or she is using <EM>function</EM> keys normally, or vice versa.
2884 If an element in this list is a string of characters surrounded by double
2885 quotes (&quot;) then it will be expanded into the individual characters in
2886 the string, excluding the double quotes.
2889 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
2892 <DT> -install
2894 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
2895 some basic information to help with getting properly set up.
2898 <DT> -k
2900 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
2901 the input of commands to be function-keys.
2902 Otherwise, commands are linked to the regular character keys.
2905 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
2906 <EM>Feature-List</EM>.
2909 <DT> -n <EM>n</EM>
2911 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
2912 FOLDER INDEX screen with the current message being the specified
2913 message number.
2916 <DT> -nosplash
2918 <DD> <EM>PC-Alpine</EM> only.
2919 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
2920 This may be helpful for certain troubleshooting or terminal server scenarios.
2923 <DT> -o <EM>folder</EM>
2925 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
2928 <DT> -p <EM>pinerc</EM>
2930 <DD> Uses the named file as the personal configuration file instead of
2931 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
2932 Alpinerc may be either a local file or a remote configuration folder.
2935 <DT> -P <EM>pinerc</EM>
2937 <DD> Uses the named file as the system wide configuration file instead of
2938 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
2939 Alpinerc may be either a local file or a remote configuration folder.
2942 <DT> -passfile <EM>passfile</EM>
2944 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
2945 This should be a fully-qualified filename.
2948 <DT> -pinerc <EM>file</EM>
2950 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
2951 settings of variables that the user has made.
2952 Use <EM>file</EM> set to ``-'' to make output go to standard out.
2955 <DT> -r
2957 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
2958 <EM>Alpine</EM> in restricted mode can only send email to itself.
2959 Save and export are limited.
2962 <DT> -registry <EM>cmd</EM>
2964 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
2965 <EM>Alpine</EM>'s registry entries.
2966 Possible values for <EM>cmd</EM> are set, clear, and dump.
2967 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
2968 entries according to its current settings.
2969 <EM>Clear</EM> will clear the registry values.
2970 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
2971 <EM>Dump</EM> will display the values of current registry settings.
2972 Note that the dump command is currently disabled.
2973 Without the -registry option, <EM>PC-Alpine</EM> will write values into
2974 the registry only if there currently aren't any values set.
2977 <DT> -sort <EM>key</EM>
2979 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
2980 FOLDER INDEX screen.
2981 <EM>Key</EM> can have the following values: 
2982 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
2983 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
2984 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
2985 The default value is &quot;arrival&quot;.
2986 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
2989 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
2992 <DT> -uninstall
2994 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
2995 in Windows settings.  The registry settings are removed and
2996 the password cache is cleared.
2999 <DT> -url <EM>url</EM>
3001 <DD> Open the given URL.
3004 <DT> -v
3006 <DD> Version:  Print version information to the screen.
3009 <DT> -x <EM>exceptions_config</EM>
3011 <DD> Configuration settings in the exceptions configuration override your normal
3012 default settings.
3013 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3016 <DT> -z
3018 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3019 will suspend the <EM>Alpine</EM> session.
3022 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3023 <EM>Feature-List</EM>.
3026 <DT> -<EM>option</EM>=<EM>value</EM>
3028 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3029 For example, <EM>-signature-file=sig1</EM> or
3030 <EM>-Feature-List=signature-at-bottom</EM>.
3031 Note:  Feature-List values are
3032 additive and features may be preceded with no- to turn them off.
3033 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3034 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3035 <EM>-Feature-List=signature-at-bottom</EM>.
3038 </DL>
3040 &lt;End of help on this topic&gt;
3041 </BODY>
3042 </HTML>
3043 ===== h_configuring_news ======
3044 <HTML>
3045 <HEAD>
3046 <TITLE>CONFIGURING NEWS</TITLE>
3047 </HEAD>
3048 <BODY>
3049 <H1>CONFIGURING NEWS</H1>
3050 Alpine can access news folders in any one of three different ways:
3051 <DL>
3052 <DT>REMOTE NNTP</DT>
3053 <DD>Using the Network News Transport Protocol (NNTP) to
3054 access news on a remote news server.  In this case the newsrc file is
3055 stored on the machine where Alpine is running.
3058 To specify a remote news-collection accessed via NNTP use the
3059 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3060 Server: value to the NNTP server's hostname appended with the
3061 communication method &quot;/service=NNTP&quot;, and set the Path:
3062 value to the &quot;#news.&quot; namespace (without the quotes).  See
3063 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3064 help text for a more complete explanation of access method, and the
3065 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3066 text for a more complete explanation of &quot;namespace&quot;.
3068 Instead of specifying a news-collection, you may simply set the
3069 <A HREF="h_config_nntp_server">NNTP Server</A>
3070 option, which will cause Alpine to create a default news-collection for you.
3071 Another NNTP option that may be of interest is
3072 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3074 <DT>REMOTE IMAP</DT>
3075 <DD>Using the Internet Message Access Protocol (IMAP) to
3076 access news on a remote news server.  In this case, your newsrc file is
3077 stored on the news server, in your home directory, so you must have an
3078 account on the news server, but you would be running Alpine on a different
3079 machine.  The news server must be running an IMAPd server process. 
3082 To specify a remote news-collection accessed via IMAP use the
3083 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3084 Server: value to the IMAP server's hostname, and set the Path: value
3085 to the &quot;#news.&quot; namespace (without the quotes).  See the
3086 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3087 text for a more complete explanation of &quot;namespace&quot;.
3089 </DD>
3091 <DT>LOCAL</DT>
3092 <DD>Using local file access to the news database.  In this
3093 case, your newsrc file is stored on the news server, in your home
3094 directory, so you must have an account on the news server, and you would
3095 be running Alpine on the same machine.
3098 To specify a local news-collection use the SETUP/collectionList
3099 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3100 set the Path: value to the &quot;#news.&quot; namespace (without the
3101 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3102 field's help text for a more complete explanation of &quot;namespace&quot;.
3104 </DD>
3105 </DL>
3109 NOTE: Should no news-collection be defined as above, Alpine will
3110 automatically create one using the Setup/Config screen's
3111 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3112 will be created as a &quot;Remote NNTP&quot; as described above.
3116 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3117 possible.  If you don't have an account on the news server, or if the news
3118 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3119 sure, ask your service provider, university, or company for help.)  In
3120 this case, your Unix .newsrc file can be transferred to your PC.  A good
3121 place to put it would be in the same directory as your PINERC file, under
3122 the name NEWSRC, but you can 
3123 <A HREF="h_config_newsrc_path">specify a different location</A>
3124 via Alpine's Setup/Config screen.
3127 Other configuration features related to news are
3128 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3129 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3130 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3131 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3132 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3133 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3134 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3135 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3138 &lt;End of help on this topic&gt;
3139 </BODY>
3140 </HTML>
3141 ===== h_reading_news ======
3142 <HTML>
3143 <HEAD>
3144 <TITLE>READING NEWS</TITLE>
3145 </HEAD>
3146 <BODY>
3147 <H1>READING NEWS</H1>
3149 Alpine uses almost the same commands for manipulating news folders as for
3150 mail folders.  This means, for example, that when you are done with a
3151 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3152 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3153 most newsreaders, wherein a message is implicitly dismissed after you have
3154 looked at it once. We strongly believe that Alpine should offer as much
3155 consistency as possible between mail and news, so the mail paradigm --
3156 wherein a message does not magically disappear without explicit action by
3157 the user -- is used for news as well. <P>
3159 If you answer a message in a news folder, the index view will show the
3160 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3161 keep track of what news as been read has no way of storing this flag, so
3162 it will not be preserved across sessions.  The Deleted flag is the only
3163 one that is preserved when you leave and then return to a newsgroup.  As an
3164 additional note on replies, when you Reply to a newsgroup message and say
3165 you want to reply to all recipients, Alpine will ask if you want to post the
3166 message to all the newsgroups listed in the original message. <P>
3168 If you would like Alpine to mark more-or-less recent news messages as
3169 &quot;New&quot;, then set the
3170 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3171 feature (which is set by default).  This will cause messages after the last one you have marked as
3172 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3173 &quot;N&quot; status often makes it easier to distinguish later news
3174 articles from those you've previously seen, but not yet disposed of via
3175 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3176 record of which messages you have not seen.
3179 A frequent operation in news-reading is &quot;catching up&quot; -- that
3180 is, getting rid of all the messages in the newsgroup so that you can
3181 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3182 Select command.  You would enter the following four keystrokes:
3183 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3184 dismiss) command to all of them.
3187 There are also additional details on 
3188 <A HREF="h_configuring_news">configuring news</a>.
3191 &lt;End of help on this topic&gt;
3192 </BODY>
3193 </HTML>
3194 ====== h_help_index ======
3195 <HTML>
3196 <HEAD>
3197 <TITLE>Help Index</TITLE>
3198 </HEAD>
3199 <BODY>
3200 <H1>Help Index</H1>
3201 <ul>
3202 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3203 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3204 <li><a href="h_main_addrbook">Address Book Command</a>
3205 <li><a href="h_abook_view">Address Book View Explained</a>
3206 <li><a href="h_compose_addrcomplete">Address Completion</a>
3207 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3208 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3209 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3210 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3211 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3212 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3213 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3214 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3215 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3216 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3217 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3218 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3219 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3220 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3221 <li><a href="h_news_legal">Alpine Legal Notices</a>
3222 <li><a href="h_compose_alted">Alt Editor Command</a>
3223 <li><a href="h_index_cmd_apply">Apply Command</a>
3224 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3225 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3226 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3227 <li><a href="h_composer_browse">BROWSER</a>
3228 <li><a href="h_common_bounce">Bounce Command</a>
3229 <li><a href="h_compose_cancel">Cancel Command</a>
3230 <li><a href="h_config_change_your_from">Changing your From Address</a>
3231 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3232 <li><a href="h_mainhelp_color">Color</a>
3233 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3234 <li><a href="h_composer">COMPOSER COMMANDS</a>
3235 <li><a href="h_mainhelp_composing">Composing Messages</a>
3236 <li><a href="h_mainhelp_collections">Collection Lists</a>
3237 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3238 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3239 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3240 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3241 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3242 <li><a href="h_common_compose">Compose Command</a>
3243 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3244 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3245 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3246 <li><a href="h_mainhelp_config">Configuration</a>
3247 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3248 <li><a href="h_config_dflt_color">Default Color</a>
3249 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3250 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3251 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3252 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3253 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3254 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3255 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3256 <li><a href="h_ge_export">Export File Selection</a>
3257 <li><a href="h_ge_allparts">Export Message File Selection</a>
3258 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3259 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3260 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3261 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3262 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3263 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3264 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3265 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3266 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3267 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3268 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3269 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3270 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3271 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3272 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3273 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3274 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3275 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3276 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3277 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3278 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3279 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3280 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3281 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3282 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3283 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3284 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3285 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3286 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3287 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3288 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3289 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3290 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3291 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3292 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3293 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3294 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3295 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3296 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3297 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3298 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3299 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3300 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3301 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3302 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3303 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3304 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3305 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3306 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3307 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3308 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3309 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3310 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3311 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3312 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3313 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3314 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3315 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3316 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3317 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3318 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3319 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3320 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3321 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3322 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3323 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3324 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3325 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3326 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3327 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3328 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3329 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3330 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3331 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3332 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3333 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3334 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3335 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3336 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3337 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3338 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3339 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3340 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3341 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3342 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3343 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3344 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3345 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3346 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3347 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3348 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3349 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3350 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3351 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3352 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3353 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3354 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3355 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3356 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3357 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3358 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3359 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3360 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3361 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3362 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3363 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3364 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3365 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3366 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3367 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3368 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3369 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3370 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3371 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3372 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3373 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3374 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3375 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3376 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3377 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3378 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3379 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3380 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3381 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3382 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3383 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3384 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3385 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3386 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3387 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3388 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3389 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3390 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3391 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3392 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3393 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3394 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3395 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3396 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3397 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3398 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3399 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3400 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3401 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3402 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3403 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3404 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3405 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3406 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3407 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3408 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3409 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3410 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3411 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3412 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3413 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3414 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3415 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3416 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3417 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3418 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3419 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3420 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3421 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3422 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3423 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3424 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3425 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3426 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3427 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3428 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3429 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3430 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3431 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3432 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3433 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3434 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3435 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3436 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3437 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3438 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3439 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3440 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3441 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3442 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3443 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3444 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3445 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3446 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3447 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3448 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3449 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3450 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3451 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3452 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3453 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3454 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3455 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3456 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3457 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3458 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3459 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3460 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3461 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3462 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3463 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3464 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3465 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3466 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3467 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3468 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3469 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3470 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3471 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3472 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3473 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3474 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3475 <li><a href="h_mainhelp_filtering">Filtering</a>
3476 <li><a href="h_finding_help">Finding more information and requesting help</a>
3477 <li><a href="h_common_flag">Flag Command</a>
3478 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3479 <li><a href="h_mainhelp_folders">Folders</a>
3480 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3481 <li><a href="h_common_folders">Folder List Command</a>
3482 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3483 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3484 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3485 <li><a href="h_config_change_your_from">From Address, Changing</a>
3486 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3487 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3488 <li><a href="h_common_goto">Goto Command</a>
3489 <li><a href="h_common_hdrmode">HdrMode Command</a>
3490 <li><a href="h_mainhelp_pinehelp">Help</a>
3491 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3492 <li><a href="h_folder_maint">Help for Folder List</a>
3493 <li><a href="h_valid_folder_names">IMAP</a>
3494 <li><a href="h_ge_import">Import File Selection</a>
3495 <li><a href="h_mainhelp_index">Index of Messages</a>
3496 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3497 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3498 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3499 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3500 <li><a href="h_mainhelp_intro">Introduction</a>
3501 <li><a href="h_main_journal">Journal Command</a>
3502 <li><a href="h_common_jump">Jump Command</a>
3503 <li><a href="h_compose_justify">Justify Command</a>
3504 <li><a href="h_main_kblock">Keyboard Lock Command</a>
3505 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
3506 <li><a href="h_mainhelp_ldap">LDAP</a>
3507 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
3508 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
3509 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
3510 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
3511 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
3512 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
3513 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
3514 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
3515 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
3516 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
3517 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
3518 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
3519 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
3520 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
3521 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
3522 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
3523 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
3524 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
3525 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
3526 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
3527 <li><a href="h_ldap_view">LDAP Response View Explained</a>
3528 <li><a href="h_maildrop">Mail Drop: What is it?</a>
3529 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
3530 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
3531 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
3532 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
3533 <li><a href="h_common_index">Message Index Command</a>
3534 <li><a href="h_mainhelp_mouse">Mouse</a>
3535 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
3536 <li><a href="new_user_greeting">NEW USER GREETING</a>
3537 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
3538 <li><a href="h_mainhelp_readingnews">News Reading</a>
3539 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
3540 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
3541 <li><a href="h_common_nextnew">NextNew Command</a>
3542 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
3543 <li><a href="h_mainhelp_readingnews">NNTP</a>
3544 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
3545 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
3546 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
3547 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
3548 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
3549 <li><a href="h_config_color_style">OPTION: Color Style</a>
3550 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
3551 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
3552 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
3553 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
3554 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
3555 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
3556 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
3557 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
3558 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
3559 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
3560 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
3561 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
3562 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
3563 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
3564 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
3565 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
3566 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
3567 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
3568 <li><a href="h_config_file_dir">OPTION: File Directory</a>
3569 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
3570 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
3571 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
3572 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
3573 <li><a href="h_config_font_name">OPTION: Font Name</a>
3574 <li><a href="h_config_font_size">OPTION: Font Size</a>
3575 <li><a href="h_config_font_style">OPTION: Font Style</a>
3576 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
3577 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
3578 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
3579 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
3580 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
3581 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
3582 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
3583 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
3584 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
3585 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
3586 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
3587 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
3588 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
3589 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
3590 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
3591 <li><a href="h_config_index_color">OPTION: Index Colors</a>
3592 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
3593 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
3594 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
3595 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
3596 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
3597 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
3598 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
3599 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
3600 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
3601 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
3602 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
3603 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
3604 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
3605 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
3606 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
3607 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
3608 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
3609 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
3610 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
3611 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
3612 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
3613 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
3614 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
3615 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
3616 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
3617 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
3618 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
3619 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
3620 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
3621 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
3622 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
3623 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
3624 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
3625 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
3626 <li><a href="h_config_pat_old">OPTION: Patterns</a>
3627 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
3628 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
3629 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
3630 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
3631 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
3632 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
3633 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
3634 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
3635 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
3636 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
3637 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
3638 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
3639 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
3640 <li><a href="h_config_printer">OPTION: Printer</a>
3641 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
3642 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
3643 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
3644 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
3645 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
3646 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
3647 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
3648 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
3649 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
3650 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
3651 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
3652 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
3653 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
3654 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
3655 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
3656 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
3657 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
3658 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
3659 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
3660 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
3661 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
3662 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
3663 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
3664 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
3665 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
3666 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
3667 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
3668 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
3669 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
3670 <li><a href="h_config_status_color">OPTION: Status Color</a>
3671 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
3672 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
3673 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
3674 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
3675 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
3676 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
3677 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
3678 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
3679 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
3680 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
3681 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
3682 <li><a href="h_config_title_color">OPTION: Title Color</a>
3683 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
3684 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
3685 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
3686 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
3687 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
3688 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
3689 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
3690 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
3691 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
3692 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
3693 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
3694 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
3695 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
3696 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
3697 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
3698 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
3699 <li><a href="h_config_window_position">OPTION: Window-Position</a>
3700 <li><a href="h_mainhelp_patterns">Patterns</a>
3701 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
3702 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
3703 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
3704 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
3705 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
3706 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
3707 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
3708 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
3709 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
3710 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
3711 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
3712 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
3713 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
3714 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
3715 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
3716 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
3717 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
3718 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
3719 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
3720 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
3721 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
3722 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
3723 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
3724 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
3725 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
3726 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
3727 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
3728 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
3729 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
3730 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
3731 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
3732 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
3733 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
3734 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
3735 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
3736 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
3737 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
3738 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
3739 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
3740 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
3741 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
3742 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
3743 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
3744 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
3745 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
3746 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
3747 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
3748 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
3749 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
3750 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
3751 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
3752 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
3753 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
3754 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
3755 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
3756 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
3757 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
3758 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
3759 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
3760 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
3761 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
3762 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
3763 <li><a href="h_common_pipe">Pipe Command</a>
3764 <li><a href="h_valid_folder_names">POP</a>
3765 <li><a href="h_common_postpone">Postpone Command</a>
3766 <li><a href="h_common_print">Print Command</a>
3767 <li><a href="h_mainhelp_readingnews">Reading News</a>
3768 <li><a href="h_news">RELEASE NOTES for Alpine</a>
3769 <li><a href="h_mainhelp_roles">Roles</a>
3770 <li><a href="h_role_select">ROLES SCREEN</a>
3771 <li><a href="h_compose_readfile">Read File Command</a>
3772 <li><a href="h_mainhelp_reading">Reading Messages</a>
3773 <li><a href="h_main_release_notes">Release Notes Command</a>
3774 <li><a href="h_common_reply">Reply and Forward Commands</a>
3775 <li><a href="h_compose_richhdr">Rich Header Command</a>
3776 <li><a href="h_common_role">Role Command</a>
3777 <li><a href="h_mainhelp_smime">S/MIME</a>
3778 <li><a href="h_index_cmd_select">Searching for Messages</a>
3779 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
3780 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
3781 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
3782 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
3783 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
3784 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
3785 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
3786 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
3787 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
3788 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
3789 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
3790 <li><a href="h_common_save">Save and Export Commands</a>
3791 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
3792 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
3793 <li><a href="h_compose_send">Send Command</a>
3794 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
3795 <li><a href="h_main_setup">Setup Command</a>
3796 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
3797 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
3798 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
3799 <li><a href="h_mainhelp_smime">S/MIME</a>
3800 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
3801 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
3802 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
3803 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
3804 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
3805 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
3806 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
3807 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
3808 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
3809 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
3810 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
3811 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
3812 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
3813 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
3814 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
3815 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
3816 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
3817 <li><a href="h_index_cmd_sort">Sort Command</a>
3818 <li><a href="h_compose_spell">Spell Check Command</a>
3819 <li><a href="h_common_suspend">Suspend Command</a>
3820 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
3821 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
3822 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
3823 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
3824 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
3825 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
3826 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
3827 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
3828 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
3829 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
3830 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
3831 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
3832 <li><a href="h_common_take">TakeAddr Command</a>
3833 <li><a href="h_mainhelp_status">Titlebar Line</a>
3834 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
3835 <li><a href="h_config_usenone_color">Use None Color</a>
3836 <li><a href="h_config_usenormal_color">Use Normal Color</a>
3837 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
3838 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
3839 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
3840 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
3841 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
3842 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
3843 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
3844 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
3845 </UL>
3848 &lt;End of Help Index&gt;
3849 </BODY>
3850 </HTML>
3853 ============== h_config_remote_config =============
3854 <HTML>
3855 <HEAD>
3856 <TITLE>Remote Configuration</TITLE>
3857 </HEAD>
3858 <BODY>
3859 <H1>Remote Configuration</H1>
3861 You may use the command line argument &quot;-p pinerc&quot; to tell
3862 Alpine to use a non-default configuration file.
3863 There are two types of storage for configuration information.
3864 <EM>Local</EM> configuration files are used by default.
3865 These are just regular files on the UNIX system or on the PC.
3866 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
3867 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
3868 <EM>Remote</EM> configuration folders are stored on an IMAP server.
3869 The advantage of using a remote configuration is that the same information
3870 may be accessed from multiple platforms.
3871 For example, if you use one computer at work and another at home, the same
3872 configuration could be used from both places.
3873 A configuration change from one place would be seen in both places.
3874 To use a remote configuration you simply give a
3875 <A HREF="h_valid_folder_names">remote folder name</A>
3876 as the argument to the &quot;-p&quot; command line option.
3877 The command line might look something like:
3879 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
3881 If there are special characters in the command shell you use, you may need to
3882 quote the last argument (to protect the curly braces from the shell).
3883 The command might look like:
3885 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
3887 You should choose a folder name for a folder that does not yet exist.
3888 It will be created containing an empty configuration.
3889 Do not use a folder that you wish to store regular mail messages in.
3891 The Setup/RemoteConfigSetup command will help you convert from a local
3892 configuration to a remote configuration.
3893 It will create a remote configuration for you and copy your current local
3894 configuration to it.
3895 It will also help you convert local address books into remote address books
3896 and local signature files into literal signatures contained in the
3897 remote configuration file.
3899 If the Setup/RemoteConfigSetup command doesn't do what you want, you
3900 may copy a local pinerc file to a remote configuration folder by hand
3901 by using the command line option &quot;-copy_pinerc&quot;.
3903 Another command line option, which is somewhat related to remote
3904 configuration, is the option &quot;-x exceptions_config&quot;.
3905 The configuration settings in the exceptions configuration override
3906 your default settings.
3907 It may be useful to store the default configuration (the -p argument) remotely
3908 and to have the exceptions configuration stored in a local file.
3909 You might put generic configuration information in the remote configuration
3910 and platform-specific configuration on each platform in the exceptions
3911 configuration.
3912 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
3913 can be either remote folders or local files.
3915 There is another command line argument that works only with PC-Alpine and
3916 which may prove useful when using a remote configuration.
3917 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
3918 to store your local auxiliary files.
3919 This only has an effect if your configuration file is remote.
3920 Some examples of auxiliary files are debug files, address book files, and
3921 signature files.
3923 &lt;End of help on this topic&gt;
3924 </BODY>
3925 </HTML>
3926 ============== h_config_exceptions =============
3927 <HTML>
3928 <HEAD>
3929 <TITLE>Generic and Exceptional Configuration</TITLE>
3930 </HEAD>
3931 <BODY>
3932 <H1>Generic and Exceptional Configuration</H1>
3934 If you use Alpine from more than one platform it may be convenient
3935 to split your configuration information into two pieces, a generic piece
3936 and exceptions that apply to a particular platform.
3937 For example, suppose you use Alpine from home and from work.
3938 Most of your configuration settings are probably the
3939 same in both locations, so those settings belong in the generic settings
3940 configuration.
3941 However, you may use a different SMTP server and INBOX
3942 from home than you do from work.
3944 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
3946 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
3947 options could be
3948 part of your exceptional configuration so that they could be different in the
3949 two places.
3951 The command line option &quot;-x exceptions_config&quot;
3952 may be used to split your configuration into generic and exceptional pieces.
3953 &quot;Exceptions_config&quot; may be either local or remote.
3954 The regular Alpine configuration file will contain the generic data, and
3955 &quot;exceptions_config&quot; will contain the exceptional data.
3957 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
3958 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
3959 in the same local directory that the regular config file is located in (usually
3960 the Unix home directory).
3961 If the regular config file is remote (because the command line option
3962 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
3963 directory for &quot;<CODE>.pinercex</CODE>&quot;.
3964 If the file does not already exist then no exceptions will be used.
3965 You can force exceptions to be used by using the &quot;-x&quot; option or
3966 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
3968 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
3969 PC-Alpine will use the value of the
3970 environment variable <CODE>$PINERCEX</CODE>.
3971 If that is not set, PC-Alpine will look for
3972 the local file &quot;<CODE>PINERCEX</CODE>&quot;
3973 in the same local directory that the regular config file is located in.
3974 If the regular config file is remote (because the command line option
3975 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
3976 local directory specified by the &quot;-aux local_directory&quot; command
3977 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
3978 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
3980 When you have an exception configuration there is a new command
3981 in the Alpine Setup screen, Setup/eXceptions.
3982 It toggles between exceptions and the regular configuration.
3983 This is the usual way to make changes in your exceptional configuration data.
3984 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
3985 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
3986 for Config or &quot;K&quot; for Kolor.
3988 For most people, splitting the configuration information into two pieces is
3989 going to be most useful if the generic information is accessed
3990 <A HREF="h_config_remote_config">remotely</A>).
3991 That data will be the same no matter where you access it from and if you
3992 change it that change will show up everywhere.
3993 The exceptional data will most commonly be in a local file, so that the
3994 contents may easily be different on each computing platform used.
3996 If you already have a local configuration file with settings you like
3997 you may find that the command Setup/RemoteConfigSetup is useful
3998 in helping you convert to a remote configuration.
3999 The command line flag &quot;-copy_pinerc&quot;
4000 may also be useful.
4002 &lt;End of help on this topic&gt;
4003 </BODY>
4004 </HTML>
4005 ============== h_config_inheritance =============
4006 <HTML>
4007 <HEAD>
4008 <TITLE>Configuration Inheritance</TITLE>
4009 </HEAD>
4010 <BODY>
4011 <H1>Configuration Inheritance</H1>
4013 Configuration inheritance is a power user feature.
4014 It is confusing and not completely supported by the configuration
4015 user interface.
4016 We start with an explanation of how configuration works in hopes of making
4017 it easier to describe how inheritance works.
4019 Alpine uses a hierarchy of configuration values from different locations.
4020 There are five ways in which each configuration option (configuration
4021 variable) can be set.
4022 In increasing order of precedence they are:
4024 <OL>
4025 <LI> the system-wide configuration file.
4027 <LI> the personal configuration file
4029 <LI> the personal exceptions file
4031 <LI> a command line argument
4033 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4034 </OL>
4036 The fixed configuration file is normally
4037 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4039 The system-wide configuration file is normally
4040 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4041 set for PC-Alpine.
4042 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4043 is used for the system-wide configuration.
4044 This location can be set or changed on the command line with the -P flag.
4045 The system-wide configuration file can be either a local file or a
4046 remote configuration folder.
4048 For Unix Alpine, the personal configuration file is normally the file
4049 <CODE>.pinerc</CODE> in the user's home directory.
4050 This can be changed with the -p command line flag.
4051 For PC-Alpine, the personal configuration file is in
4052 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4053 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4054 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4055 This can be changed with the -p command line flag.
4056 If -p is used, the configuration data may be in a local file or a remote config
4057 folder.
4059 For Unix Alpine, the personal exceptions configuration file is named
4060 <CODE>.pinercex</CODE> and is in the same directory as the personal
4061 configuration file, if that configuration file is not remote, and is in
4062 the home directory if the personal configuration file is remote.
4063 If the file exists, then exceptions are turned on.
4064 If it doesn't, then you are not using exceptions.
4065 Alternatively, you may change the location of the exceptions configuration
4066 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4067 Like the personal configuration data, exceptions_config may be
4068 either local or remote.
4070 For PC-Alpine, the personal exceptions configuration file is named
4071 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4072 configuration file unless the personal configuration file is remote.
4073 In that case, it is in the local directory specfied by the
4074 &quot;-aux local_directory&quot; command line argument.
4075 (In the case that the personal configuration is remote and there is no
4076 &quot;-aux&quot; command line argument, Alpine searches for
4077 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4078 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4079 If the file exists, then exceptions are turned on.
4080 If it doesn't, then you are not using exceptions.
4081 You may change the location of the exceptions configuration
4082 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4083 or with the
4084 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4085 option).
4087 To reiterate, the value of a configuration option is taken from the
4088 last location in the list above in which it is set.
4089 Or, thinking about it slightly differently, a default value for an option
4090 is established in the system-wide configuration file (or internally by Alpine
4091 if there is no value in the system-wide file).
4092 That default remains in effect until and unless it is overridden by a value in a
4093 location further down the list, in which case a new &quot;default&quot;
4094 value is established.
4095 As we continue down the list of locations we either retain the
4096 value at each step or establish a new value.
4097 The value that is still set after going through the whole list of
4098 configuration locations is the one that is used.
4100 So, for example, if an option is set in the system-wide configuration
4101 file and in the personal configuration file, but is not set in the
4102 exceptions, on the command line, or in the fixed file; then the value
4103 from the personal configuration file is the one that is used.
4104 Or, if it is set in the system-wide config, in the personal config, not
4105 in the exceptions, but is set on the command line; then the value
4106 on the command line is used.
4108 Finally we get to inheritance.
4109 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4110 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4111 the inheritance mechanism makes it possible to <EM>combine</EM>
4112 the values from different locations instead of <EM>replacing</EM> the value.
4113 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4114 for which you may already set whatever you want at
4115 any configuration location (by using the &quot;no-&quot; prefix if
4116 necessary).
4118 To use inheritance, set the first item in a configuration list to the
4119 token &quot;INHERIT&quot;, without the quotes.
4120 If the first item is &quot;INHERIT&quot;,
4121 then instead of replacing the default value established so far, the rest of
4122 the list is appended to the default value established so far and that is
4123 the new value.
4125 Here is an example which may make it clearer. Suppose we have:
4127 <PRE>
4128  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4129  Personal config    :   smtp-server = INHERIT, mysmtp.home
4130  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4131  Command line       :   smtp-server = &lt;No Value Set&gt;
4132  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4133 </PRE>
4136 This would result in an effective smtp-server option of
4138 <PRE>
4139  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4140 </PRE>
4142 The &quot;INHERIT&quot; token can be used in any of the configuration files
4143 and the effect cascades.
4144 For example, if we change the above example to:
4146 <PRE>
4147  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4148  Personal config    :   smtp-server = INHERIT, mysmtp.home
4149  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4150  Command line       :   smtp-server = &lt;No Value Set&gt;
4151  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4152 </PRE>
4155 This would result in:
4157 <PRE>
4158  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4159 </PRE>
4161 Unset variables are skipped over (the default value is carried forward) so
4162 that, for example:
4164 <PRE>
4165  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4166  Personal config    :   smtp-server = &lt;No Value Set&gt;
4167  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4168  Command line       :   smtp-server = &lt;No Value Set&gt;
4169  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4170 </PRE>
4173 produces:
4175 <PRE>
4176  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4177 </PRE>
4180 If any later configuration location has a value set (for a particular list
4181 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4182 then that value replaces whatever value has been defined up to that point.
4183 In other words, that cancels out any previous inheritance.
4185 <PRE>
4186  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4187  Personal config    :   smtp-server = INHERIT, mysmtp.org
4188  Exceptions config  :   smtp-server = yoursmtp.org
4189  Command line       :   smtp-server = &lt;No Value Set&gt;
4190  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4191 </PRE>
4194 results in:
4196 <PRE>
4197  smtp-server = yoursmtp.org
4198 </PRE>
4201 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4202 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4203 difficult to insert the value &quot;INHERIT&quot; into the list of values
4204 for the option using the normal Setup tools.
4205 In other words, the color setting screen (for example) does not
4206 provide a way to input the text &quot;INHERIT&quot; as the first
4207 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4208 The way to do this is to either edit the pinerc file directly and manually
4209 insert it, or turn
4210 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4211 feature and insert it using the Setup/Config screen.
4213 &lt;End of help on this topic&gt;
4214 </BODY>
4215 </HTML>
4216 ============== h_special_xon_xoff =============
4217 <HTML>
4218 <HEAD>
4219 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4220 </HEAD>
4221 <BODY>
4222 <H1>XOFF/XON Handling within Alpine</H1>
4224 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4225 and XON) as normal characters, even though Alpine does not use them.
4226 However, the printer, modem, or communication software you are using may
4227 be configured for &quot;software flow control,&quot; which means that
4228 XON/XOFF must be treated as special characters by the operating system.
4229 If you see messages such as &quot;^S not defined for this screen&quot;,
4230 then your system is probably using software flow control. In this case
4231 you will need to set the
4232 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4233 feature.
4235 If you <EM>do</EM> set this
4236 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4237 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4238 and see if that puts things right.  Printing via the
4239 &quot;attached-to-ansi&quot; or 
4240 &quot;attached-to-wyse&quot;
4241 option will automatically enable software
4242 flow-control handling for the duration of the printing.
4244 &lt;End of help on this topic&gt;
4245 </BODY>
4246 </HTML>
4247 ============= h_special_help_nav =============
4248 <HTML>
4249 <HEAD>
4250 <TITLE>Help Text Navigation Explained</TITLE>
4251 </HEAD>
4252 <BODY>
4253 <H1>Help Text Navigation Explained</H1>
4255 Alpine contains extensive context-sensitive help text.   At any point, 
4256 pressing the &quot;?&quot; key will bring up a page of help text
4257 explaining the options available to you.  You can leave the help
4258 text screen and return to normal Alpine operation by pressing
4260 <!--chtml if pinemode="function_key"-->
4261 F3 function
4262 <!--chtml else-->
4263 &quot;E&quot;
4264 <!--chtml endif-->
4265 key to Exit Help at any time.
4268 Within the help screen you might find a word or phrase displayed in 
4269 inverse text and others displayed in bold typeface.  Such words and
4270 phrases are used to tell you Alpine has more information available on
4271 the topic they describe.
4272 The inverted text is the &quot;selected&quot; topic.  
4273 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4274 displayed in bold type
4275 is &quot;selected&quot;.
4276 Hit the Return key to display the information Alpine has available on that
4277 topic.  While viewing such additional information, the 
4278 <!--chtml if pinemode="function_key"-->
4279 F3 function
4280 <!--chtml else-->
4281 &quot;P&quot;
4282 <!--chtml endif-->
4283 key will return you to the previous help screen, and the
4284 <!--chtml if pinemode="function_key"-->
4285 F2 function
4286 <!--chtml else-->
4287 &quot;E&quot;
4288 <!--chtml endif-->
4289 key will Exit the Help system altogether.
4292 The "N" command will tell you the internal name of the help text you are 
4293 reading each time, so that you can send this name in the text of a message 
4294 and create a direct link to that internal help using the x-pine-help URL 
4295 scheme. For example, the direct link to this item is 
4296 x-pine-help:h_special_help_nav. If you add this text to a message, then
4297 a person using Pine to read such message would have a direct link to this
4298 help text.
4301 When you are finished reading this help text, you can press the
4302 <!--chtml if pinemode="function_key"-->
4303 F3 function
4304 <!--chtml else-->
4305 &quot;P&quot;
4306 <!--chtml endif-->
4307 key to return to the previously displayed help text.
4310 &lt;End of help on this topic&gt;
4311 </BODY>
4312 </HTML>
4313 ============= h_special_list_commands =============
4314 <HTML>
4315 <HEAD>
4316 <TITLE>Email List Commands Explained</TITLE>
4317 </HEAD>
4318 <BODY>
4319 <H1>Email List Commands Explained</H1>
4321 Electonic mail lists provide a way for like-minded users to join in
4322 discussions on topics of interest.  The email list itself is 
4323 represented by a
4324 single address that participants send messages to when they have
4325 something of interest to share with other members of the list.  The
4326 receiving computer then, either automatically or after review by the
4327 list's owner (or moderator), sends a copy of that message to each
4328 member of the list.
4331 Usually, subscribing and unsubscribing is done by sending requests in
4332 an email message to a special address setup to handle managing list
4333 membership.  Often this is the name of the list followed by
4334 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4335 the address used to send messages to the list.
4338 Unfortunately, email list participation commands are more a matter
4339 of convention than standard, and thus may vary from list to list.
4340 Increasingly, list management software is adding information to
4341 the copy of the postings as they're copied to the list members that
4342 explains how to do the various list management functions.
4345 Alpine will recognize this information and offer the management commands
4346 they represent in a simple display. One or more of the following
4347 operations will be made available:
4349 <DL>
4350 <DT>Help</DT>
4351 <DD>
4352 A method to get help on subscribing, unsubscribing, 
4353 an explanation of what the list is about, or special instructions
4354 for participation.  This may be in the form of a reply in response
4355 to an email message, or instructions on how to connect to a Web site.
4356 </DD>
4358 <DT>Unsubscribe</DT>
4359 <DD>
4360 A method to get your email addressed removed from the list of
4361 recipients of the email list.
4362 </DD>
4364 <DT>Subscribe</DT>
4365 <DD>
4366 A method to get your email address added to the list of recipients
4367 of the email list.  It may be in the form of a message sent to 
4368 a special address or you may be connected to a web site.
4369 <DD>
4370 </DD>
4372 <DT>Post</DT>
4373 <DD>
4374 A method used to post to the email list.  However, it might also 
4375 indicate that no posting is allowed directly to the list.
4376 </DD>
4378 <DT>Owner</DT>
4379 <DD>
4380 A method to contact the list owner for special questions you might
4381 have regarding the list.
4382 </DD>
4384 <DT>Archive</DT>
4385 <DD>
4386 A method to view an archive of previous messages posted to the list.
4387 This may be in the form of a mail folder on a remote computer, an
4388 IMAP mailbox or even a Web site.
4389 </DD>
4390 </DL>
4393 &lt;End of help on this topic&gt;
4394 </BODY>
4395 </HTML>
4396 ============= h_quota_command =============
4397 <HTML>
4398 <HEAD>
4399 <TITLE>Quota Screen Explained</TITLE>
4400 </HEAD>
4401 <BODY>
4402 <H1>Quota Screen Explained</H1>
4404 <P> This screen summarizes the quota report for this mailbox in the
4405 IMAP server. For each resource that you have a quota, this reports summarizes
4406 its use and limit.
4408 <P> Your IMAP server administrator may have set a quota based either on 
4409 the total size of your mailbox (STORAGE), or the number of messages in 
4410 your mailbox (MESSAGES), or some other criteria. This will be reported
4411 to you indicating the type of quota, its total use and its limit.
4413 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4414 1024 bytes. Each of the characters that you see in this help text is one 
4415 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4416 by Alpine are normally less than 4 kibibytes in size (which includes 
4417 headers and text). Other email programs may send messages with bigger 
4418 sizes when they send messages, since they send plain text and an 
4419 alternative part in HTML.
4421 <P> A convenient way to save space for the STORAGE type of quota is by 
4422 deleting attachments. This is done on each individual message by pressing 
4423 the &quot;V&quot; command while reading the message text, then moving the cursor 
4424 to the position of the attachment that is to be deleted, then pressing
4425 &quot;D&quot; to delete such attachment, going back to reading the 
4426 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4427 save the message in the same folder you are reading from. The saved 
4428 message will not have the attachment that was marked deleted. Now you
4429 can delete and expunge the message with the unwanted attachment.
4432 &lt;End of help on this topic&gt;
4433 </BODY>
4434 </HTML>
4435 ============= h_mail_thread_index =============
4436 <HTML>
4437 <HEAD>
4438 <TITLE>THREAD INDEX COMMANDS</TITLE>
4439 </HEAD>
4440 <BODY>                 
4441 <H1>THREAD INDEX COMMANDS</H1>
4442 <!--chtml if pinemode="function_key"-->
4443 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>
4444 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4445 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>
4446 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>
4447 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>
4448 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>
4449 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>
4450 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>
4451 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>
4452 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>
4453 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>
4454 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>
4455 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>
4456 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>
4457 <BR>
4458 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4459 -----------------------------<BR>
4460 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>
4461 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>
4462 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>
4463 <BR>
4464 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4465 -----------------------------<BR>
4466 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
4467 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4468 <BR>
4469 <!--chtml else-->
4470 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>
4471 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4472 &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>
4473 &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>
4474 &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>
4475 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>
4476 &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>
4477 &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>
4478 &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>
4479 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>
4480 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4481 <BR>
4482 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4483 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4484 &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>
4485 &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>
4486 &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>
4487 &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>
4488 &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>
4489 &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>
4490 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4491 <!--chtml endif-->
4494 NOTE:
4495 <OL>
4496  <LI>For help on a particular command, highlight the bold text associated
4497 with it above and hit Return.
4498  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4499 </OL>
4501 <H2>Description of the THREAD INDEX Screen</H2>
4503 The THREAD INDEX displays summary information from each
4504 thread (conversation) in the current folder.
4505 This is useful if you want to quickly
4506 scan new threads, or find a particular thread without having to go
4507 through the text of each message, or to quickly get rid of junk
4508 threads, etc.
4509 The current thread is always highlighted.
4510 Each line of the THREAD INDEX contains the following columns: <P>
4511 <DL>
4512  <DT>STATUS:</DT>
4513  <DD> The markings on the left side of the thread tell you about its
4514 status.  You may see one or more of the following codes on any given
4515 thread:
4516 <UL>
4517   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
4518   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
4519   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
4520   <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.
4521   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4522         message in the thread was sent to you as a cc:. This symbol will only show up if
4523         the feature
4524         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4525   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
4526         &quot;select&quot; command.  (Some systems may optionally allow selected
4527         messages to be denoted by the index line being displayed in bold
4528         type instead.)
4529   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4530       to mark at least one message in this thread as &quot;important&quot;.
4531 </UL></DD><P>
4533  <DT>THREAD NUMBER:</DT>
4534  <DD>Threads in a folder are numbered, from one through the number
4535 of threads in the folder, to help you know where you are in the folder.
4536 </DD><P>
4538  <DT>DATE STARTED:</DT>
4539  <DD>The date the thread was started. This is actually from the Date header
4540 of the first message in the thread. It doesn't take different time zones
4541 into account.</DD><P>
4543  <DT>WHO STARTED THE THREAD:</DT>
4544  <DD>This is usually the name of the sender of the first message in the thread, taken from
4545 the From header of the message.
4546 If there is no personal name given in that
4547 address, then the email address is used instead.
4548 If the message is from you (or from one of your
4549 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4550 then the recipient's name is shown here instead, with the characters
4551 &quot;To: &quot; inserted before the name.
4552 (The idea of this is that if you started the thread you would rather see who
4553 the mail was sent to instead of that the mail was from you.)
4554 In Newsgroups, if you are
4555 the sender and there are no email recipients, the newsgroup name will be
4556 listed after the &quot;To: &quot;.
4557 </DD><P>
4559  <DT>SIZE:</DT>
4560  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
4562  <DT>SUBJECT:</DT>
4563  <DD>As much of the thread's subject line as will fit on the screen.
4564 This is the subject of the first message in the thread.</DD>
4565 </DL>
4567 <P><UL>
4568 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4569 </UL>
4571 &lt;End of help on this topic&gt;
4572 </BODY>
4573 </HTML>
4574 ============= h_mail_index =============
4575 <HTML>
4576 <HEAD>
4577 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
4578 </HEAD>
4579 <BODY>                 
4580 <H1>MESSAGE INDEX COMMANDS</H1>
4581 <!--chtml if pinemode="function_key"-->
4582 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>
4583 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4584 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>
4585 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>
4586 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>
4587 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>
4588 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>
4589 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>
4590 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>
4591 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>
4592 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>
4593 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>
4594 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>
4595 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>
4596 <BR>
4597 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4598 -----------------------------<BR>
4599 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>
4600 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>
4601 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>
4602 <BR>
4603 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4604 -----------------------------<BR>
4605 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
4606 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>
4607 <BR>
4608 <!--chtml else-->
4609 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>
4610 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4611 &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>
4612 &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>
4613 &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>
4614 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>
4615 &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>
4616 &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>
4617 &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>
4618 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>
4619 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4620 Miscellaneous&nbsp;Operations<BR>
4621 ------------------------<BR>
4622 &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>
4623 &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>
4624 &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>
4625 &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>
4626 &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>
4627 &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>
4628 &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>
4629 &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>
4630 <!--chtml endif-->
4633 NOTE:
4634 <OL>
4635  <LI>For help on a particular command, highlight the bold text associated
4636 with it above and hit Return.
4637  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4638 </OL>
4640 <H2>Description of the MESSAGE INDEX Screen</H2>
4642 The MESSAGE INDEX displays summary information from each
4643 message in the current folder.
4644 This is useful if you want to quickly
4645 scan new messages, or find a particular message without having to go
4646 through the text of each message, or to quickly get rid of junk
4647 messages, etc.
4649 The current message is always highlighted
4650 and many commands operate on the current message.
4651 For example, the Delete command will delete the current message.
4652 If the folder is sorted by either Threads or OrderedSubject, then, depending
4653 on some of your configuration settings, a single line in the index may
4654 refer to an entire thread or to a subthread.
4655 If that is the case, then the commands that normally operate on the current
4656 message will operate on the thread or subthread instead.
4657 For example, the Delete command will delete the whole collapsed thread
4658 instead of just a single message.
4660 Each line of the MESSAGE INDEX contains the following columns (by default -- 
4661 you can change this with the 
4662 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
4663 in the SETUP CONFIGURATION screen): <P>
4664 <DL>
4665  <DT>STATUS:</DT>
4666  <DD> The markings on the left side of the message tell you about its
4667 status.  You may see one or more of the following codes on any given
4668 message:
4669 <UL>
4670   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
4671          yet eXpunged the folder.
4672   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
4673   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
4674          to be answered.
4675   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
4676          forward a message.
4677   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
4678         directly to your account, your copy is not part of a cc: or a
4679         mailing list.
4680   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4681         message was sent to you as a cc:. This symbol will only show up if
4682         the feature
4683         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4684   <LI> &quot;X&quot; for selected.  You have selected the message by using the
4685         &quot;select&quot; command.  (Some systems may optionally allow selected
4686         messages to be denoted by the index line being displayed in bold
4687         type.)
4688   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4689       to mark this message as &quot;important&quot;.
4690 </UL></DD><P>
4692  <DT>MESSAGE NUMBER:</DT>
4693  <DD>Messages in a folder are numbered, from one through the number
4694 of messages in the folder, to help you know where you are in the folder.
4695 These numbers are always in increasing order, even if you sort the folder
4696 in a different way.</DD><P>
4698  <DT>DATE SENT:</DT>
4699  <DD>The date the message was sent.  By default, messages are
4700 ordered by arrival time, not by date sent.  Most of the time, arrival time
4701 and date sent (effectively departure time) are similar.  Sometimes,
4702 however, the index will appear to be out of order because a message took a
4703 long time in delivery or because the sender is in a different time
4704 zone than you are. This date is just the date from the Date header
4705 field in the message.</DD><P>
4707  <DT>WHO SENT THE MESSAGE:</DT>
4708  <DD>This is usually the name of the sender of the message, taken from
4709 the From header of the message.
4710 If there is no personal name given in that
4711 address, then the email address is used instead.
4712 If the message is from you (or from one of your
4713 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4714 then the recipient's name is shown here instead, with the characters
4715 &quot;To: &quot; inserted before the name.
4716 (The idea of this is that if you sent the mail you would rather see who
4717 the mail was sent to instead of that the mail was from you.
4718 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
4719 above.
4720 In particular, use the FROM token or the FROMORTONOTNEWS token
4721 in place of the FROMORTO token.)
4722 In Newsgroups, if you are
4723 the sender and there are no email recipients, the newsgroup name will be
4724 listed after the &quot;To: &quot;. </DD><P>
4726  <DT>SIZE:</DT>
4727  <DD>The number in parentheses is the number of characters in the message.
4728 It may have a suffix of K, M, or G which means the number should be
4729 multiplied by one thousand, one million, or one billion to get the
4730 size of the message.</DD><P>
4732  <DT>SUBJECT:</DT>
4733  <DD>As much of the message's subject line as will fit on the screen.</DD>
4734 </DL>
4736 <P><UL>
4737 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4738 </UL>
4740 &lt;End of help on this topic&gt;
4741 </BODY>
4742 </HTML>
4743 ============= h_mail_view ========================
4744 <HTML>
4745 <HEAD>
4746 <TITLE>MESSAGE TEXT SCREEN</TITLE>
4747 </HEAD>
4748 <BODY>
4749 <H1>MESSAGE TEXT SCREEN</H1>
4750 <!--chtml if pinemode="function_key"-->
4751 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>
4752 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
4753 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>
4754 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>
4755 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>
4756 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>
4757 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>
4758 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>
4759 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>
4760 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>
4761 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>
4762 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>
4763 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>
4764 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>
4765 <BR>
4766 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4767 ------------------------------<BR>
4768 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
4769 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
4770 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
4771 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
4772 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
4773 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
4774 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
4775 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
4776 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
4777 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
4778 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
4779 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
4780 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4781 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
4782 <!--chtml else-->
4783 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
4784 ---------------------------------<BR>
4785 <BR>
4786 &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>
4787 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>
4788 &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>
4789 &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>
4790 &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>
4791 &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>
4792 &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>
4793 &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>
4794 &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>
4795 <BR>
4796 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
4797 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
4798 &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>
4799 &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>
4800 &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>
4801 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>
4802 <BR>
4803 General&nbsp;Alpine&nbsp;Commands<BR>
4804 ---------------------<BR>
4805 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
4806 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
4807 &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>
4808 &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>
4809 &nbsp;&nbsp;&nbsp;&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>
4810 <!--chtml endif-->
4813 NOTE:
4814 <OL>
4815  <LI>For help on a particular command, highlight the bold text associated
4816 with it above and hit Return.
4817  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4818 </OL>
4820 <H2>Description of the MESSAGE TEXT Screen</H2>
4822 The top line of the view message screen displays status
4823 information about the currently open collection and folder and about the
4824 current message.  It shows the name of the collection in angle brackets
4825 and then the name of the folder.  The line also displays the number
4826 of messages in the folder, the number of the current message and the
4827 percentage of the current message that has been displayed on the screen.
4828 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
4829 right corner.
4830 If the message has been answered (but not deleted) &quot;ANS&quot; will show
4831 in the corner.
4834 NOTE: to rapidly move to the end of a message, hit the
4835 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4836 (or Ctrl-W) key followed
4837 by Ctrl-V.  Similarly,
4838 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4839 followed by Ctrl-Y will take you to the beginning of
4840 a message.
4842 <H2>Explanation of Alternate Character Sets</H2>
4844 Alpine attempts to stay out of the way so that it won't prevent you from
4845 viewing mail in any character set.  It will simply send the message to
4846 your display device.  If the device is capable of displaying the
4847 message as it was written it will do so.  If not, the display may be
4848 partially or totally incorrect.
4849 If the message contains characters that are not representable in your 
4850 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
4851 variable in your configuration, then a warning message will be printed
4852 to your screen at the beginning of the message display.
4853 It is probably best to use UNIX Alpine in a terminal emulator
4854 capable of displaying UTF-8 characters.
4855 See <A HREF="h_config_char_set">Display Character Set</A> for a little
4856 more information about character set settings.
4858 <P><UL>
4859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4860 </UL>
4862 &lt;End of help on this topic&gt;
4863 </BODY>
4864 </HTML>
4865 ======= h_index_cmd_select =======
4866 <HTML>
4867 <HEAD>
4868 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
4869 </HEAD>
4870 <BODY>
4871 <H1>Selecting: Select and WhereIs/Select</H1>
4873 Aggregate operations give you the ability to process a group of messages
4874 at once.  Acting on multiple messages requires two steps: (1) selecting a
4875 set of messages and then; (2) applying a command to that set. The first
4876 part is handled by the select command.  Select allows you to
4877 select messages based on their status (read, answered, etc.), contents,
4878 date, size, or keywords.
4879 You may also select based on one of your Rules or based on threads,
4880 and there are quick options to select a specific message or range of messages,
4881 to select the current message, or to select all messages.
4884 We describe the various selection criteria briefly:
4887 <DL>
4888 <DT>select All</DT>
4889 <DD> Marks all the messages in the folder as selected.
4890 </DD>
4892 <DT>select Cur</DT>
4893 <DD> Selects the currently highlighted message or currently highlighted
4894 set of messages if in a threaded view.
4895 </DD>
4897 <DT>select by Number</DT>
4898 <DD> Select by message number. This may be a comma-separated list instead or
4899 a single entry.
4900 Each element in the list may be either a single message number or a range
4901 of numbers with a dash between the lowest and highest member of the range.
4902 Some examples are 7 to select only message number 7; 2-5 to select messages
4903 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
4904 The word &quot;end&quot; may be used as a substitute for the highest numbered
4905 message in the folder.
4906 If in a separate thread index where the numbers refer to threads instead of
4907 to messages, then you will be selecting all of the messages in the
4908 referenced threads instead of selecting by message number.
4909 </DD>
4911 <DT>select by Date</DT>
4912 <DD> Select by either the date stored in the Date headers of each message,
4913 or by the date when the messages arrived.
4914 This does not adjust for different time zones, but just checks to see what
4915 day the message was sent on.
4916 You may type in a date. If you do, the date should be in the form
4917 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
4918 For example,
4919 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
4921 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
4922 If the date you want is close to the current date, it is probably
4923 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
4924 is displayed, instead of typing in the date yourself.
4925 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
4926 the date of the currently highlighted message. 
4928 There are six possible settings that are selected using the
4929 &quot;^W&nbsp;Toggle When&quot; command.
4930 Three of them select messages based on the Date headers.
4931 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
4932 and &quot;SENT ON&quot;.
4933 SINCE is all messages with the selected date or later.
4934 BEFORE is all messages earlier than the selected date (not including the day
4935 itself).
4936 ON is all messages sent on the selected date.
4937 The other three select messages in the same way but they use the arrival
4938 times of the messages instead of the Date headers included in the messages.
4939 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
4940 and &quot;ARRIVED ON&quot;.
4941 When you save a message from one folder to another the arrival time is
4942 preserved.
4943 </DD>
4945 <DT>select by Text</DT>
4946 <DD> Selects messages based on the message contents.
4947 This allows you to select a set of messages based on whether or not the
4948 message headers or message body contain specified text.
4949 You may look for text in the Subject, the From header,
4950 the To header, or the Cc header.
4951 You may also choose Recipient, which searches for the text in
4952 either the To or the Cc header;
4953 or Participant, which means To or Cc or From.
4954 Besides those specific header searches, you may also search the entire
4955 header and text of the message with &quot;All Text&quot;, or just the
4956 body of the message.
4958 To search for the absence of text, first type the &quot;! Not&quot; command
4959 before typing the specific type of text search.
4960 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
4961 search for all messages that do not contain a particular word in their
4962 Subjects.
4964 If you choose a Subject search, you may use the subject from the current
4965 message by typing the &quot;^X Cur Subject&quot; command.
4966 You may then edit it further if you wish.
4967 For example, you might select the subject of a reply and edit the
4968 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
4969 the original message being replied to.
4970 All of the other header searches allow you to use addresses from the
4971 headers of the current message if you want to.
4972 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
4973 &quot;^W Cur Cc&quot;.
4974 In each case, if there is more than one address, only the first is offered.
4975 </DD>
4977 <DT>select by Status</DT>
4978 <DD> Selects messages based on their status.
4979 You may select all New, Important, Deleted, Answered, Recent, or Unseen
4980 messages.
4981 Or, if you first type the &quot;! Not&quot; command, you get not New,
4982 or not Important, and so on.
4983 If you select Deleted messages, you will get all messages with their
4984 Deleted flag set.
4985 Likewise for Important messages, all messages that you have flagged as
4986 being Important with the
4987 <A HREF="h_common_flag">Flag</A> command.
4988 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
4989 because they try to match what you see on the screen by default.
4990 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
4991 and Unanswered.
4992 If you have looked at the message, or deleted it, or answered it; then it
4993 is not considered &quot;New &quot;.
4994 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
4996 &quot;Answered&quot; is another one that is a little different.
4997 It means that the message has been Answered <EM>and</EM> is not deleted.
4998 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
4999 the opposite of &quot;Answered&quot;!
5000 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5001 both Unanswered <EM>and</EM> not deleted.
5003 The other two types were added later because the special nature of the
5004 New flag was not what was wanted by all users.
5005 New does match what you see in the index by default, but if you use
5006 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5007 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5008 be exactly what you want.
5009 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5010 they are deleted or answered, and
5011 &quot;Recent&quot; selects all of the messages that have been added to
5012 the folder since you started this Alpine session.
5013 (That's not technically quite true. If there are multiple mail clients
5014 reading an IMAP mailbox, each message will be marked as Recent in only
5015 one of the client's sessions.)
5016 </DD>
5018 <DT>select by siZe</DT>
5019 <DD> Selects messages based on their size being smaller than or larger
5020 than the size you specify.
5021 The size is the number of bytes.
5022 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5023 the number.
5024 For example, 7K is the same as 7000.
5025 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5026 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5027 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5028 and Larger.
5029 </DD>
5031 <DT>select by Keyword</DT>
5032 <DD> Selects messages that either have or do not have
5033 (using the &quot;!&nbsp;Not&quot; command)
5034 a particular <A HREF="h_config_keywords">Keyword</A> set.
5035 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5036 command to select one from your list of keywords.
5038 <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.
5039 </DD>
5041 <DT>select by Rule</DT>
5042 <DD> Selects messages that either match or don't match
5043 (using the &quot;!&nbsp;Not&quot; command)
5044 one of the Rules you have defined.
5045 The most likely method of filling in the Rule is to use the
5046 &quot;^T&nbsp;To&nbsp;List&quot;
5047 command to select one of your Rules.
5048 All of the Rules you have defined will be in the list, including
5049 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5050 They may not all make sense for this purpose, but they are all there for
5051 flexibility.
5052 You might find it useful to define some rules solely for the purpose
5053 of being used by the Select command.
5054 There is a special category for such Rules. They are called Search Rules.
5056 Unfortunately, Alpine does not allow all possible Rules to be defined.
5057 For example, there is no logical OR operation.
5058 OR is accomplished in the Filter Rules or the other types of Rules by
5059 simply defining two rules, one that matches the first part of the OR
5060 and another that matches the second part.
5061 But you can't do that here, since you only have a single Rule to work with.
5062 Likewise, the order of Rules is usually important.
5063 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5064 a message, then that stops the search for a further match.
5065 This means that you may be confused if you try to use Select by Rule to
5066 check your Filter rules because the order is important when filtering but
5067 is not considered here.
5068 </DD>
5070 <DT>select by tHread</DT>
5071 <DD> Selects all of the messages in the current thread.
5072 </DD>
5073 </DL>
5075 After you have an initial selection, the next and subsequent selection
5076 commands modify the selection.
5077 The select command changes. It first gives
5078 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5079 &quot;unselect Current&quot;,
5080 &quot;Broaden selection&quot; (implements a logical OR), and
5081 &quot;Narrow selection&quot; (implements a logical AND).
5082 After you choose either Broaden or Narrow, you then choose one of the
5083 selection criteria listed above (by Text or Number or ...).
5084 You may use select as many times as you wish to get the selected set right.
5087 The WhereIs command has a feature (Ctrl-X) to
5088 select all the messages that match the WhereIs search. WhereIs searches
5089 through just the text that appears on the MESSAGE INDEX screen.
5090 This method is often slower than using the select command itself, unless the
5091 line you are looking for is not too far away in the index.
5094 The availability of the aggregate operations commands is determined by the
5095 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5096 Feature-List option in your Alpine
5097 configuration, which defaults to set.
5098 The features
5099 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5101 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5102 affect the behavior of the Select command.
5105 &lt;End of help on this topic&gt;
5106 </BODY>
5107 </HTML>
5108 ======= h_select_rule =======
5109 <HTML>
5110 <HEAD>
5111 <TITLE>Select: Rule</TITLE>
5112 </HEAD>
5113 <BODY>
5114 <H1>Select: Rule</H1>
5116 You are selecting messages that either match or don't match
5117 one of the Rules you have defined.
5118 You may either type the nickname of the Rule at the prompt, or use the
5119 &quot;^T&nbsp;To&nbsp;List&quot;
5120 command to select one of your Rules.
5121 All of the Rules you have defined will be in the list, including
5122 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5123 They may not all make sense for this purpose, but they are all there for
5124 flexibility.
5125 Rules may be added by using the Setup/Rules screen off of the main Alpine
5126 menu.
5128 Unfortunately, Alpine does not allow all possible Rules to be defined.
5129 For example, there is no logical OR operation.
5130 OR is accomplished in the Filter Rules or the other types of Rules by
5131 simply defining two rules, one that matches the first part of the OR
5132 and another that matches the second part.
5133 But you can't do that here, since you only have a single Rule to work with.
5134 Likewise, the order of Rules is usually important.
5135 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5136 a message, then that stops the search for a further match.
5137 This means that you may be confused if you try to use Select by Rule to
5138 check your Filter rules because the order is important when filtering but
5139 is not considered here.
5142 &lt;End of help on this topic&gt;
5143 </BODY>
5144 </HTML>
5145 ======= h_select_text =======
5146 <HTML>
5147 <HEAD>
5148 <TITLE>Select: Text</TITLE>
5149 </HEAD>
5150 <BODY>
5151 <H1>Select: Text</H1>
5153 You are selecting messages based on the contents of the message.
5154 This allows you to select a set of messages based on whether or not the
5155 message headers or message body contain specified text.
5156 You may look for text in the Subject, the From header,
5157 the To header, or the Cc header.
5158 You may also choose Recipient, which searches for the text in
5159 either the To or the Cc header;
5160 or Participant, which means either the To header, or the Cc header,
5161 or the From header.
5162 Besides those specific header searches, you may also search the entire
5163 header and text of the message with &quot;All Text&quot;, or just the
5164 body of the message with &quot;Body&quot;.
5166 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5167 before typing the specific type of text search.
5168 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5169 search for all messages that do not contain a particular word in their
5170 Subjects.
5172 If you choose a Subject search, you may use the subject from the current
5173 message by typing the &quot;^X Cur Subject&quot; command.
5174 You may then edit it further if you wish.
5175 For example, you might select the subject of a reply and edit the
5176 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5177 the original message being replied to.
5178 All of the other header searches allow you to use addresses from the
5179 headers of the current message if you want to.
5180 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5181 &quot;^W Cur Cc&quot;.
5182 In each case, if there is more than one address, only the first is offered.
5185 &lt;End of help on this topic&gt;
5186 </BODY>
5187 </HTML>
5188 ======= h_select_status =======
5189 <HTML>
5190 <HEAD>
5191 <TITLE>Select: Status</TITLE>
5192 </HEAD>
5193 <BODY>
5194 <H1>Select: Status</H1>
5196 You are selecting messages based on the status of the message.
5197 For example, whether or not the message has been marked Deleted or Important,
5198 or whether or not it has been Answered or is New.
5199 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5200 opposite: not Deleted, not Important, and so on.
5202 If you select Deleted messages, you will get all messages with their
5203 Deleted flag set.
5204 Likewise for Important messages, all messages that you have flagged as
5205 being Important with the
5206 <A HREF="h_common_flag">Flag</A> command.
5207 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5208 because they try to match what you see on the screen by default.
5209 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5210 and Unanswered.
5211 If you have looked at the message, or deleted it, or answered it; then it
5212 is not considered &quot;New &quot;.
5213 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5215 &quot;Answered&quot; is another one that is a little different.
5216 It means that the message has been Answered <EM>and</EM> is not deleted.
5217 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5218 the opposite of &quot;Answered&quot;!
5219 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5220 both Unanswered <EM>and</EM> not deleted.
5222 (The New and Answered options may seem counter-intuitive.
5223 The reason it is done this way is
5224 because, by default, a Deleted message will show up with the &quot;D&quot;
5225 symbol in the MAIL INDEX screen even if it is New or Answered.
5226 The Delete symbol overrides the New and Answered symbols, because you
5227 usually don't care about the message anymore once you've deleted it.
5228 Similarly, you usually only care about whether a message is Answered or
5229 not if it is not Deleted.
5230 Once it is Deleted you've put it out of your mind.)
5232 The other two options were added later because the special nature of the
5233 New flag was not what was wanted by all users.
5234 New does match what you see in the index by default, but if you use
5235 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5236 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5237 be exactly what you expect.
5238 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5239 they are deleted or answered, and
5240 &quot;Recent&quot; selects all of the messages that have been added to
5241 the folder since you started this Alpine session.
5242 (That's not technically quite true. If there are multiple mail clients
5243 reading an IMAP mailbox, each message will be marked as Recent in only
5244 one of the client's sessions.
5245 That behavior can be convenienent for some purposes, like filtering, but
5246 it isn't usually what you expect when selecting.)
5249 &lt;End of help on this topic&gt;
5250 </BODY>
5251 </HTML>
5252 ======= h_index_cmd_apply =======
5253 <HTML>
5254 <HEAD>
5255 <TITLE>Apply Command</TITLE>
5256 </HEAD>
5257 <BODY>
5258 <H1>Apply Command</H1>
5260 Apply
5261 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5262 is the second step of most aggregate operations.  Apply
5263 becomes active any time there is a defined set of selected messages.  The
5264 following commands can be applied to a selected message set: delete,
5265 undelete, reply, forward,
5266 <!--chtml if pinemode="os_windows"-->
5267 <!--chtml else--> 
5268 pipe,
5269 <!--chtml endif-->
5270 print, take address, save, export, bounce, and flag.
5273 The behavior of some of these commands in an aggregate sense is not easy to
5274 explain.  Try them out to see what they do.
5275 The feature
5276 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5277 affects the behavior of the Apply command, as does the feature
5278 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5281 &lt;End of help on this topic&gt;
5282 </BODY>
5283 </HTML>
5284 ======= h_index_cmd_zoom =======
5285 <HTML>
5286 <HEAD>
5287 <TITLE>ZoomMode Command</TITLE>
5288 </HEAD>
5289 <BODY>
5290 <H1>ZoomMode Command</H1>
5292 Another action you might want to take on a set of selected messages is to
5293 zoom in on them.  Like apply, zoom only becomes active when messages have
5294 been selected.
5295 ZoomMode
5296 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5297 is a toggle command that allows you to
5298 zoom-in (and only see the selected messages) and zoom-out (to see all
5299 messages in the folder).  Neither apply nor zoom removes the markings that
5300 define the selected set; you need to use a select command in order
5301 to do that.
5304 &lt;End of help on this topic&gt;
5305 </BODY>
5306 </HTML>
5307 ======= h_index_collapse_expand =======
5308 <HTML>
5309 <HEAD>
5310 <TITLE>Collapse/Expand Command</TITLE>
5311 </HEAD>
5312 <BODY>
5313 <H1>Collapse/Expand Command</H1>
5315 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5316 the folder is sorted by either Threads or OrderedSubject, and the
5317 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5318 is set to something other than &quot;none&quot;.
5319 By default, this command collapses or expands the subthread that starts at
5320 the currently highlighted message, if any.
5321 If the subthread is already collapsed, then this command expands it.
5322 If the subthread is expanded, then this command collapses it.
5323 If there are no more messages below the current message in the
5324 thread tree (that is, there are no replies to the current message) then
5325 this command does nothing.
5328 The behavior of this command is affected by the option
5329 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5330 Normally, this command Collapses or Expands the subthread that
5331 starts at the currently highlighted message.
5332 If the above option is set, then this command Collapses or Expands the
5333 entire current thread instead of just the subthread.
5334 The current thread is simply the top-level thread that contains the
5335 current message.
5338 &lt;End of help on this topic&gt;
5339 </BODY>
5340 </HTML>
5341 ======= h_index_cmd_sort =======
5342 <HTML>
5343 <HEAD>
5344 <TITLE>Sort Command</TITLE>
5345 </HEAD>
5346 <BODY>
5347 <H1>Sort Command</H1>
5349 In Alpine's generic configuration, messages are presented in the order in
5350 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5351 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5352 You can also re-sort the folder on demand with the sort
5353 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5354 command.
5355 Your sorting options are:
5357 <UL>
5358  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5359  <LI> <A HREF="h_index_sort_date">D</A>ate
5360  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5361  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5362  <LI> t<A HREF="h_index_sort_thread">H</A>read
5363  <LI> <A HREF="h_index_sort_from">F</A>rom
5364  <LI> si<A HREF="h_index_sort_size">Z</A>e
5365  <LI> scor<A HREF="h_index_sort_score">E</A>,
5366  <LI> <A HREF="h_index_sort_to">T</A>o
5367  <LI> <A HREF="h_index_sort_cc">C</A>c
5368 </UL>
5371 The Reverse option will toggle the order the index is currently
5372 sorted by, but will not change the relative sort order.
5375 Sorting a folder does not actually rearrange the way the folder is saved,
5376 it just re-arranges how the messages are presented to you.  This means
5377 that Alpine has to do the work of sorting every time you change sort order.
5378 Sometimes, especially with PC-Alpine or with large folders, this could take
5379 a while.
5382 &lt;End of help on this topic&gt;
5383 </BODY>
5384 </HTML>
5385 ======= h_index_sort_default =======
5386 <HTML>
5387 <HEAD>
5388 <TITLE>SORT OPTION: Default</TITLE>
5389 </HEAD>
5390 <BODY>
5391 <H1>SORT OPTION: Default</H1>
5393 The <EM>Default</EM> sort option just means to use the default sort order
5394 set in the
5395 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5396 option in Setup/Config.
5399 &lt;End of help on this topic&gt;
5400 </BODY>
5401 </HTML>
5402 ======= h_index_sort_arrival =======
5403 <HTML>
5404 <HEAD>
5405 <TITLE>SORT OPTION: Arrival</TITLE>
5406 </HEAD>
5407 <BODY>
5408 <H1>SORT OPTION: Arrival</H1>
5410 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5411 in the order that they exist in the folder.  This is usually the same as the
5412 order in which they arrived.  This option is comparable to not sorting
5413 the messages at all.
5416 &lt;End of help on this topic&gt;
5417 </BODY>
5418 </HTML>
5419 ======= h_index_sort_date =======
5420 <HTML>
5421 <HEAD>
5422 <TITLE>SORT OPTION: Date</TITLE>
5423 </HEAD>
5424 <BODY>
5425 <H1>SORT OPTION: Date</H1>
5427 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5428 according to the date and time they were
5429 sent.
5432 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5433 identical to sorting by &quot;Arrival&quot;.
5436 &lt;End of help on this topic&gt;
5437 </BODY>
5438 </HTML>
5439 ======= h_index_sort_subj =======
5440 <HTML>
5441 <HEAD>
5442 <TITLE>SORT OPTION: Subject</TITLE>
5443 </HEAD>
5444 <BODY>
5445 <H1>SORT OPTION: Subject</H1>
5447 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5448 by subject. 
5451 Messages with the same subject are
5452 first grouped together, and then the groups of like-subject messages
5453 are arranged alphabetically.
5456 Alpine ignores leading &quot;Re:&quot; and
5457 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5458 likeness and alphabetical order of subject lines.
5461 &lt;End of help on this topic&gt;
5462 </BODY>
5463 </HTML>
5464 ======= h_index_sort_ordsubj =======
5465 <HTML>
5466 <HEAD>
5467 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5468 </HEAD>
5469 <BODY>
5470 <H1>SORT OPTION: OrderedSubject</H1>
5472 The <EM>OrderedSubject</EM> sort option arranges messages in the
5473 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5474 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5477 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5478 messages by the date of the oldest message in the group.
5481 This sort method provides for pseudo threading of conversations within
5482 a folder.
5483 You may want to try sorting by Thread instead.
5486 &lt;End of help on this topic&gt;
5487 </BODY>
5488 </HTML>
5489 ======= h_index_sort_thread =======
5490 <HTML>
5491 <HEAD>
5492 <TITLE>SORT OPTION: Thread</TITLE>
5493 </HEAD>
5494 <BODY>
5495 <H1>SORT OPTION: Thread</H1>
5497 The <EM>Thread</EM> sort option arranges messages in the
5498 MESSAGE&nbsp;INDEX by grouping all messages that indicate
5499 they are part of a conversation (discussion thread) taking
5500 place within a mailbox or newsgroup.  This indication is
5501 based on information in the message's header -- specifically
5502 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
5505 &lt;End of help on this topic&gt;
5506 </BODY>
5507 </HTML>
5508 ======= h_index_sort_from =======
5509 <HTML>
5510 <HEAD>
5511 <TITLE>SORT OPTION: From</TITLE>
5512 </HEAD>
5513 <BODY>
5514 <H1>SORT OPTION: From</H1>
5516 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5517 by the name of the author of the message.
5520 Messages with the same author are grouped together. Groups of
5521 messages are then put into alphabetical order according to message
5522 author.
5525 &lt;End of help on this topic&gt;
5526 </BODY>
5527 </HTML>
5528 ======= h_index_sort_size =======
5529 <HTML>
5530 <HEAD>
5531 <TITLE>SORT OPTION: Size</TITLE>
5532 </HEAD>
5533 <BODY>
5534 <H1>SORT OPTION: Size</H1>
5536 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5537 by their relative sizes.
5540 &lt;End of help on this topic&gt;
5541 </BODY>
5542 </HTML>
5543 ======= h_index_sort_score =======
5544 <HTML>
5545 <HEAD>
5546 <TITLE>SORT OPTION: Score</TITLE>
5547 </HEAD>
5548 <BODY>
5549 <H1>SORT OPTION: Score</H1>
5551 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5552 by their scores.
5555 Messages with the same score are sorted in arrival order.
5556 Scores are something you create using the
5557 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
5560 &lt;End of help on this topic&gt;
5561 </BODY>
5562 </HTML>
5563 ======= h_index_sort_to =======
5564 <HTML>
5565 <HEAD>
5566 <TITLE>SORT OPTION: To</TITLE>
5567 </HEAD>
5568 <BODY>
5569 <H1>SORT OPTION: To</H1>
5571 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
5572 by the names of the recipients of the message.
5575 Messages with the same recipients are grouped together. Groups of
5576 messages are then put into alphabetical order according to message
5577 recipients.
5580 &lt;End of help on this topic&gt;
5581 </BODY>
5582 </HTML>
5583 ======= h_index_sort_cc =======
5584 <HTML>
5585 <HEAD>
5586 <TITLE>SORT OPTION: Cc</TITLE>
5587 </HEAD>
5588 <BODY>
5589 <H1>SORT OPTION: Cc</H1>
5591 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
5592 the names of the carbon copy addresses of the message.
5595 &lt;End of help on this topic&gt;
5596 </BODY>
5597 </HTML>
5598 ======= h_index_cmd_whereis =======
5599 <HTML>
5600 <HEAD>
5601 <TITLE>WhereIs Command</TITLE>
5602 </HEAD>
5603 <BODY>
5604 <H1>WhereIs Command</H1>
5606 The WhereIs
5607 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5608 command lets you search the MESSAGE INDEX for a word.
5609 It scans through whatever you see, usually the name of the author
5610 and the Subject line.
5611 WhereIs has special subcommands to let you find the beginning of the
5612 index (Ctrl-Y -- first message)
5613 or the end of the index (Ctrl-V -- last message).
5615 Note that WhereIs only searches through the visible text on the screen.
5616 For example, if only part of the Subject of a message is shown because it
5617 is long, then only the visible portion of the Subject is searched.
5618 Also note that WhereIs does not &quot;see&quot; the 
5619 &quot;X&quot; in column one of Index entries for selected messages
5620 so it can't be used to search for
5621 selected messages (use &quot;Zoom&quot; instead).
5623 If the feature
5624 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5625 is turned on,
5626 WhereIs can also be used as a quick way to select messages that match the
5627 string being searched for.
5628 Instead of typing carriage return to search for the next match, type
5629 Ctrl-X to select all matches.
5630 Once again, this only selects matches that are (or would be if the right
5631 index line was on the screen) visible.
5632 Truncated From lines or Subjects will cause matches to be missed.
5633 Although WhereIs is sometimes convenient for quick matching, the Select
5634 command is usually more powerful and usually faster.
5637 &lt;End of help on this topic&gt;
5638 </BODY>
5639 </HTML>
5640 ======= h_view_cmd_whereis =======
5641 <HTML>
5642 <HEAD>
5643 <TITLE>WhereIs Command</TITLE>
5644 </HEAD>
5645 <BODY>
5646 <H1>WhereIs Command</H1>
5648 The WhereIs
5649 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5650 command does a &quot;find in current message&quot; operation.  You
5651 type in text and Alpine will try to find it in the message you are
5652 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
5653 or end (Ctrl-V) of the message.
5654 That is, to rapidly move to the end of a message, hit the 
5655 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5656 (or Ctrl-W) key followed
5657 by Ctrl-V.  Similarly,
5658 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5659 followed by Ctrl-Y will take you to the beginning of a message.
5662 &lt;End of help on this topic&gt;
5663 </BODY>
5664 </HTML>
5665 ======= h_view_cmd_hilite =======
5666 <HTML>
5667 <HEAD>
5668 <TITLE>View Hilite and Next item/Previous item</TITLE>
5669 </HEAD>
5670 <BODY>
5671 <H1>View Hilite and Next item/Previous item</H1>
5673 Sometimes messages may be in the form of formatted HTML text
5674 or they may contain URLs or Web server hostnames.
5675 When any of the features
5676 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
5677 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
5678 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
5680 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
5681 are enabled, Alpine will represent such selectable items in the text
5682 in bold typeface.  One of the selectable items will be displayed in
5683 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
5684 Press the Return key to view the currently selected item.
5687 The Up and Down Arrows keys can be used to change the selected item
5688 (also see the feature
5689 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
5690 If there are no selectable items in the direction of the arrow you
5691 pressed, Alpine will scroll the display in that direction until one
5692 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
5693 items in the message text, use the Previous and Next item commands,
5694 <!--chtml if pinemode="function_key"-->F5 and F6
5695 <!--chtml else-->^B and ^F<!--chtml endif-->.
5698 &lt;End of help on this topic&gt;
5699 </BODY>
5700 </HTML>
5701 ======= h_view_cmd_viewattch =======
5702 <HTML>
5703 <HEAD>
5704 <TITLE>ViewAttch Command</TITLE>
5705 </HEAD>
5706 <BODY>
5707 <H1>ViewAttch Command</H1>
5710 The View/Save Attachment
5711 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
5712 command allows you to handle MIME attachments to a message you have
5713 received.  Alpine shows you a list of the message attachments -- you just
5714 choose the attachment you want.  You may either view or save the
5715 selected attachment.
5718 Because many attachments require external programs for display, there
5719 is some system configuration that has to happen before you can
5720 actually display attachments.  Hopefully much of that will have been
5721 done already by your system administrator.  MIME configuration is
5722 handled with the &quot;mailcap&quot; configuration file.  (See the section 
5723 on configuration in the
5724 <A HREF="h_news">release notes</A> for more information.)
5727 &lt;End of help on this topic&gt;
5728 </BODY>
5729 </HTML>
5730 ======= h_index_cmd_expunge =======
5731 <HTML>
5732 <HEAD>
5733 <TITLE>Expunge/Exclude Command</TITLE>
5734 </HEAD>
5735 <BODY>
5736 <H1>Expunge/Exclude Command</H1>
5738 Expunge/Exclude
5739 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
5740 is the command Alpine uses to actually remove all messages
5741 marked for deletion.  With regular email files, expunge literally deletes
5742 the text from the current folder.  With newsgroups or shared mailboxes,
5743 you don't have permission to actually remove the message, so it is an
5744 exclude -- Alpine removes the message from your view of the folder even
5745 though it is not technically gone.
5747 <P> A selective expunge command is available in IMAP folders that support 
5748 the UID EXPUNGE extension in <A 
5749 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
5750 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
5751 as a subcommand of the apply command. If some selected messages are marked 
5752 deleted, then the apply command will offer the eXpunge command, which when 
5753 executed will only expunge those messages that are selected and deleted.
5755 <P> 
5756 Observe that the expunge command (when not used from the apply command) 
5757 will expunge/exclude all deleted messages from the folder, and so all 
5758 messages marked deleted will be expunged, regardless of if they are 
5759 selected or not. In other words, there is no protection against 
5760 potentially expunging more messages than only those that have been 
5761 selected and deleted.
5764 The configuration features
5765 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
5767 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
5768 affect the behavior of the Expunge command.
5771 &lt;End of help on this topic&gt;
5772 </BODY>
5773 </HTML>
5774 ======= h_common_compose =======
5775 <HTML>
5776 <HEAD>
5777 <TITLE>Compose Command</TITLE>
5778 </HEAD>
5779 <BODY>
5780 <H1>Compose Command</H1>
5782 The Compose command takes you into the Alpine message composer where you
5783 can start a new message for sending.  This is where you type in the
5784 message's text and specify its recipient list (the &quot;To:&quot;
5785 address), where copies should be directed (e.g., &quot;Fcc&quot;,
5786 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
5787 be attached to the message.
5790 When you type this command, Alpine will also automatically check for any
5791 interrupted (i.e., a message that was being composed when your modem
5792 or network connection was broken) or previously postponed messages and
5793 offer you a chance to continue working on those.
5796 <UL>   
5797 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5798 </UL><P>
5799 &lt;End of help on this topic&gt;
5800 </BODY>
5801 </HTML>
5802 ======= h_common_index =======
5803 <HTML>
5804 <HEAD>
5805 <TITLE>Message Index Command</TITLE>
5806 </HEAD>
5807 <BODY>
5808 <H1>Message Index Command</H1>
5810 The Index command takes you to the MESSAGE INDEX screen that displays a
5811 summary caption for each message in the currently-open folder. One
5812 message will be highlighted; this is the &quot;Current&quot; message.
5813 The message commands available from this screen (e.g. View, Reply,
5814 Forward, Delete, Print, Save, etc) apply to the current message.
5817 &lt;End of help on this topic&gt;
5818 </BODY>
5819 </HTML>
5820 ======= h_common_folders =======
5821 <HTML>
5822 <HEAD>
5823 <TITLE>Folder List Command</TITLE>
5824 </HEAD>
5825 <BODY>
5826 <H1>Folder List Command</H1>
5828 This Folder List command takes you to the FOLDER LIST screen that displays
5829 the names of all your message folders and allows you to view, rename,
5830 delete, and add folders.  You can open (view) a different folder than the
5831 one currently open by highlighting the desired one (using the arrow keys
5832 or their control-key equivalents) and pressing RETURN.
5835 If you have multiple folder collections defined (see the Help text for
5836 the FOLDER LIST screen to learn more about Collections), you may need
5837 to press Return to expand the collection and display all of the
5838 folders in it.
5841 &lt;End of help on this topic&gt;
5842 </BODY>
5843 </HTML>
5844 ======= h_main_addrbook =======
5845 <HTML>
5846 <HEAD>
5847 <TITLE>Address Book Command</TITLE>
5848 </HEAD>
5849 <BODY>
5850 <H1>Address Book Command</H1>
5852 This command, available only from the MAIN MENU, takes you
5853 to the ADDRESS BOOK management screen.  From here, your personal address
5854 book(s) may be updated.
5857 &lt;End of help on this topic&gt;
5858 </BODY>
5859 </HTML>
5860 ======= h_main_setup =======
5861 <HTML>
5862 <HEAD>
5863 <TITLE>Setup Command</TITLE>
5864 </HEAD>
5865 <BODY>
5866 <H1>Setup Command</H1>
5868 The Setup command, available only from the MAIN MENU, prompts you for
5869 one of several configuration screens, including the SETUP CONFIGURATION 
5870 screen, by which you may activate optional Alpine features.
5873 &lt;End of help on this topic&gt;
5874 </BODY>
5875 </HTML>
5876 ======= h_main_release_notes =======
5877 <HTML>
5878 <HEAD>
5879 <TITLE>Release Notes Command</TITLE>
5880 </HEAD>
5881 <BODY>
5882 <H1>Release Notes Command</H1>
5884 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
5885 as well as pointers to further information such as history and legal notes.
5888 &lt;End of help on this topic&gt;
5889 </BODY>
5890 </HTML>
5891 ======= h_main_kblock =======
5892 <HTML>
5893 <HEAD>
5894 <TITLE>Keyboard Lock Command</TITLE>
5895 </HEAD>
5896 <BODY>
5897 <H1>Keyboard Lock Command</H1>
5899 This command allows your Alpine session to be protected
5900 during a temporary absence from your terminal.
5903 &lt;End of help on this topic&gt;
5904 </BODY>
5905 </HTML>
5906 ======= h_main_journal =======
5907 <HTML>
5908 <HEAD>
5909 <TITLE>Journal Command</TITLE>
5910 </HEAD>
5911 <BODY>
5912 <H1>Journal Command</H1>
5914 This command displays a list of all the status messages Alpine has
5915 displayed (on the third line from the bottom of the screen). This may
5916 be useful if a message disappeared before you had a chance to read it.
5919 &lt;End of help on this topic&gt;
5920 </BODY>
5921 </HTML>
5922 ======= h_common_role =======
5923 <HTML>
5924 <HEAD>
5925 <TITLE>Role Command</TITLE>
5926 </HEAD>
5927 <BODY>
5928 <H1>Role Command</H1>
5930 The Role command is similar to the Compose command except that it starts
5931 off by letting you select a <A HREF="h_rules_roles">role</A>
5932 to be used for the composition.
5933 You may set up alternate roles by using Setup/Rules/Roles.
5936 &lt;End of help on this topic&gt;
5937 </BODY>
5938 </HTML>
5939 ======= h_common_conditional_cmds =======
5940 <HTML>
5941 <HEAD>
5942 <TITLE>Conditional Commands</TITLE>
5943 </HEAD>
5944 <BODY>
5945 <H1>Conditional Commands</H1>
5947 The presence or absence of certain commands, particularly in the
5948 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
5949 whether or not specific features are set in your Alpine configuration.  
5950 (You can access the SETUP CONFIGURATION screen, where they are found, from 
5951 Alpine's MAIN MENU.)  To see if a desired command's availability is
5952 conditioned on a feature setting, see the command's help text (highlight
5953 the phrase associated with the command and hit Return).
5956 Also note that some
5957 commands may be administratively disabled by your system manager;
5958 if they don't work, please check with your local help desk.
5961 <UL>   
5962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5963 </UL><P>
5964 &lt;End of help on this topic&gt;
5965 </BODY>
5966 </HTML>
5967 ======= h_common_pipe =======
5968 <HTML>
5969 <HEAD>
5970 <TITLE>Pipe Command</TITLE>
5971 </HEAD>
5972 <BODY>
5973 <H1>Pipe Command</H1>
5975 Pipe
5976 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
5977 allows you to send a message to a specified Unix command for external
5978 processing.
5979 This command's availability is controlled by the
5980 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
5981 feature.
5982 By default, the processed text of the message is sent to the command
5983 you specify and the output is captured by Alpine and shown to you.
5984 When you run the pipe command, there are some sub-commands which may be
5985 used to alter this behavior.
5986 These sub-commands are described <A HREF="h_pipe_command">here</A>.
5989 &lt;End of help on this topic&gt;
5990 </BODY>
5991 </HTML>
5992 ======= h_common_goto =======
5993 <HTML>
5994 <HEAD>
5995 <TITLE>Goto Command</TITLE>
5996 </HEAD>
5997 <BODY>
5998 <H1>Goto Command</H1>
6000 Goto
6001 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6002 is the command that lets you bypass Alpine's folder selection screens
6003 and jump directly to a new folder.  You can select any folder in the
6004 world: one in your current collection, one in a different collection or
6005 one in a collection you've never even used before.
6008 Alpine will help you as much as possible to narrow in on the folder you want.
6009 However, if the folder is outside of your defined collections, you are
6010 going to have to enter the exact folder location using the correct
6011 <A HREF="h_valid_folder_names">syntax</A>
6012 for a remote folder and/or fully-qualified path name.
6015 &lt;End of help on this topic&gt;
6016 </BODY>
6017 </HTML>
6018 ======= h_common_nextnew =======
6019 <HTML>
6020 <HEAD>
6021 <TITLE>NextNew Command</TITLE>
6022 </HEAD>
6023 <BODY>
6024 <H1>NextNew Command</H1>
6026 When you press the TAB key, Alpine advances to the next
6027 &quot;interesting&quot; message.
6028 This will be the next message you have not seen before, or the next message
6029 you have flagged Important, whichever comes first.
6030 Unread messages that have been deleted are not considered interesting.
6031 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6032 articles after you have read them if you want to remove them from future
6033 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6034 more information.)
6037 The NextNew command is affected by the feature
6038 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6039 which causes Alpine to only consider Unread messages interesting, not messages
6040 flagged Important.
6043 This command behaves a little differently when it finds there are no more
6044 interesting messages left in the current folder.
6045 If the current folder is one of your Incoming Message Folders
6046 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6047 or it is a newsgroup, then Alpine will try to find the next folder or
6048 newsgroup that contains <EM>Recent</EM> messages and will ask you
6049 if you want to open that folder.
6050 This behavior may be modified by using the
6051 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6052 feature that causes Alpine to look for Unseen messages instead of Recent
6053 messages.
6054 The NextNew command's behavior is also affected by the configuration features
6055 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6057 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6060 &lt;End of help on this topic&gt;
6061 </BODY>
6062 </HTML>
6063 ======= h_common_jump =======
6064 <HTML>
6065 <HEAD>
6066 <TITLE>Jump Command</TITLE>
6067 </HEAD>
6068 <BODY>
6069 <H1>Jump Command</H1>
6071 This is Alpine's way of allowing you to go straight to a specific message.
6072 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6073 configured such that typing in any number automatically jumps you to that
6074 message 
6075 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6076 in the SETUP CONFIGURATION).
6079 &lt;End of help on this topic&gt;
6080 </BODY>
6081 </HTML>
6082 ======= h_common_flag =======
6083 <HTML>
6084 <HEAD>
6085 <TITLE>Flag Command</TITLE>
6086 </HEAD>
6087 <BODY>
6088 <H1>Flag Command</H1>
6090 Flag
6091 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6092 is the command that allows users to manipulate the status flags that
6093 appear on the left side of the MESSAGE INDEX screen.  The most common
6094 use of this is to mark a message as important. This is something of a
6095 note to yourself to get back to that message.  You may also use the
6096 flag command to set (or unset) the flags that indicate that a message
6097 is new, answered, deleted, or forwarded.<P>
6099 Provided the mail server supports it,
6100 you may also manipulate user-defined keywords
6101 for a message using the flag command.
6102 These keywords will be available if you use the Flag Details screen that you
6103 can get to after typing the
6104 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6105 command.
6106 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6107 which are always present.
6108 You may add new keywords by using the Add KW command from the Flag Details screen
6109 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6111 The availability of the flag command is determined by the
6112 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6113 feature in your Alpine configuration. Also, it is possible that Flag could be
6114 administratively disabled by your system manager; if it doesn't work,
6115 please check with your local help desk before reporting a bug.
6116 The behavior of the flag command may be modified by the
6117 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6118 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6121 &lt;End of help on this topic&gt;
6122 </BODY>
6123 </HTML>
6124 ======= h_common_hdrmode =======
6125 <HTML>
6126 <HEAD>
6127 <TITLE>HdrMode Command</TITLE>
6128 </HEAD>
6129 <BODY>
6130 <H1>HdrMode Command</H1>
6132 Every email message comes with some header lines that you normally
6133 don't see (and don't want to see).
6134 These include anywhere from 3-20 lines (or more) added by the
6135 Internet mail transport system to record the route your message took,
6136 for diagnostic purposes.
6137 These are normally of no import and simply
6138 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6139 This also includes other non-standard headers the message may contain.
6140 If you want to see these headers, there is a way to reveal them.
6143 The Header Mode
6144 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6145 command is a toggle that controls Alpine's handling of these header
6146 lines.  Normally, full headers is &quot;off&quot; and you only see a
6147 few lines about who a message is to and who it is from.  When you
6148 press
6149 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6150 to turn full headers on, Alpine will show you
6151 the normal header lines as well as delivery headers, comment headers,
6152 MIME headers, and any other headers present.
6155 Several different Alpine commands honor the header mode -- it affects how
6156 messages are displayed, how they appear in forward and reply email, how
6157 they are printed, how they are saved, and how they are exported.
6158 <!--chtml if pinemode="os_windows"-->
6159 <!--chtml else--> 
6160 The pipe command is also affected.
6161 <!--chtml endif-->
6164 The presence or absence of the Header Mode command is determined by the
6165 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6166 Feature-List option in your Alpine configuration.
6169 If you have also turned on the
6170 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6171 option then the HdrMode command actually rotates through three states
6172 instead of just two.
6173 The first is the normal view with long quotes suppressed.
6174 The second is the normal view but with the long quotes included.
6175 The last enables the display of all headers in the message.
6176 When using Export, Pipe, Print, Forward, or Reply the quotes are
6177 never suppressed, so the first two states are identical.
6180 The behavior of the Header Mode command may be altered slightly by
6181 turning on the
6182 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6183 Feature-List option in your Alpine configuration.
6184 In particular, it will cause the Header Mode to be persistent when moving
6185 from message to message instead of resetting to the default for each message.
6188 <UL>   
6189 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6190 </UL><P>
6191 &lt;End of help on this topic&gt;
6192 </BODY>
6193 </HTML>
6194 ======= h_common_print =======
6195 <HTML>
6196 <HEAD>
6197 <TITLE>Print Command</TITLE>
6198 </HEAD>
6199 <BODY>
6200 <H1>Print Command</H1>
6202 The Print
6203 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6204 command allows you to print a copy of a message.
6205 There are many SETUP CONFIGURATION features that affect the
6206 Print command, including
6207 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6208 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6209 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6210 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6211 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6212 You set up for printing by using the Printer option of the Setup command
6213 on the MAIN MENU.
6217 &lt;End of help on this topic&gt;
6218 </BODY>
6219 </HTML>
6220 ======= h_common_take =======
6221 <HTML>
6222 <HEAD>
6223 <TITLE>TakeAddr Command</TITLE>
6224 </HEAD>
6225 <BODY>
6226 <H1>TakeAddr Command</H1>
6229 With the Take Address
6230 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6231 command, you can extract email addresses from an
6232 incoming message and save them in an address book.  This is an easy way
6233 to add to your address book and avoid having to remember the email
6234 addresses of the people who write to you.
6237 If the message is just to you individually, then you will only need to
6238 provide a nickname.  If the message contains more than one email address,
6239 then you will see an address
6240 selection screen that lets you choose the address you want to save into
6241 your address book, or lets you choose several of them add to a
6242 personal distribution list.
6245 Once you've added an entry to your address book, you can use it from the
6246 message composer by typing the nickname of the entry into one of the
6247 header fields (for example, into the To: field), or you can use ^T from
6248 the header field to select the entry from your address book.
6251 If the configuration feature
6252 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6253 is set, the behavior of the Take command is altered slightly.
6256 &lt;End of help on this topic&gt;
6257 </BODY>
6258 </HTML>
6259 ======= h_ge_import =======
6260 <HTML>
6261 <HEAD>
6262 <TITLE>Import File Selection</TITLE>
6263 </HEAD>
6264 <BODY>
6265 <H1>Import File Selection</H1>
6267 You are importing a file that you previously
6268 exported from Alpine.
6269 You are now being asked for the name of that file.
6270 The easiest way to select a file is probably with the &quot;^T&quot;
6271 &quot;To Files&quot; command.
6272 Alternatively, you may type in a file name.
6273 It may be an absolute pathname.
6274 Otherwise, it is a file located in your home directory
6275 or current working directory
6276 <!--chtml if pinemode="running"-->
6277 (which, at least for your current Alpine &quot;session,&quot; 
6278 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6279 <!--chtml endif-->, depending on the
6280 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6281 In any case, you finish by typing a carriage return to accept the
6282 file name that is displayed.
6283 When the feature
6284 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6285 is turned on you may use TAB to complete partially typed in names.
6287 You may cancel the import operation by typing &quot;^C&quot; after exiting
6288 this help.
6290 &lt;End of help on this topic&gt;
6291 </BODY>
6292 </HTML>
6293 ======= h_ge_allparts =======
6294 <HTML>
6295 <HEAD>
6296 <TITLE>Export Message File Selection</TITLE>
6297 </HEAD>
6298 <BODY>
6299 <H1>Export Message File Selection</H1>
6301 You are Exporting a message from an Alpine mail folder
6302 to a plain text file.
6303 You also have the option of exporting all of the attachments associated
6304 with the message.
6305 You are now being asked for the name of the file to export <EM>to</EM>.
6306 The easiest way to select a file is probably with the &quot;^T&quot;
6307 &quot;To Files&quot; subcommand.
6308 After returning from that subcommand you will still be allowed to
6309 edit the name you have selected.
6310 Alternatively, you may type in a file name.
6311 It may be an absolute pathname.
6312 Otherwise, it is a file located in your home directory
6313 or current working directory
6314 <!--chtml if pinemode="running"-->
6315 (which, at least for your current Alpine &quot;session,&quot; 
6316 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6317 <!--chtml endif-->, depending on the
6318 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6319 In any case, you finish by typing a carriage return to accept the
6320 file name that is displayed.
6321 When the feature
6322 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6323 is turned on you may use TAB to complete partially typed in names.
6325 The message you are exporting appears to have some attachments.
6326 If you wish to save <EM>all</EM> of the attachments at once,
6327 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6328 saving of the attachments.
6329 You may turn it back off by typing &quot;^P&quot; again, which will now
6330 be labeled &quot;NoAllParts&quot; instead.
6331 If you want to save the parts the command displayed should be
6332 &quot;NoAllParts&quot;!
6333 When you choose to save attachments like this, the attachments will be saved
6334 in a newly created directory.
6335 That directory will have the same name as the file name you choose here,
6336 with the letters &quot;.d&quot; appended.
6337 If that directory already exists, then the letters &quot;.d_1&quot; will
6338 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6339 is found.
6340 For example, if you select the file name
6342 <CENTER><SAMP>filename</SAMP></CENTER>
6344 to export the message to, then the directory used for the attachments will be
6346 <CENTER><SAMP>filename.d</SAMP></CENTER>
6348 or perhaps
6350 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6352 The attachments will then be put into files inside that directory.
6353 The names for the attachment files will be derived from the attachments
6354 if possible.
6355 This is done in the same way as the default values are derived if you
6356 save them one at a time.
6357 (The &quot;filename&quot; parameter from the Content-Disposition header
6358 is the first choice. If that doesn't exist, the &quot;name&quot;
6359 parameter from the Content-Type header is used.)
6360 If a name for a particular attachment is not available, then the
6361 part number of the attachment is used, with the characters &quot;part_&quot;
6362 prepended.
6363 An example of that would be
6365 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6367 If you want to save only some of the attachments or if you want more control
6368 over the directory and filename where an attachment is saved you may
6369 cancel out of this command and View the attachment list.
6370 From there you can save each attachment individually.
6372 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6373 this help.
6375 &lt;End of help on this topic&gt;
6376 </BODY>
6377 </HTML>
6378 ======= h_ge_export =======
6379 <HTML>
6380 <HEAD>
6381 <TITLE>Export File Selection</TITLE>
6382 </HEAD>
6383 <BODY>
6384 <H1>Export File Selection</H1>
6386 You are Exporting or Saving something from within the Alpine world
6387 (a message, an attachment, etc.)
6388 to a plain text file.
6389 You are now being asked for the name of the file to export <EM>to</EM>.
6390 The easiest way to select a file is probably with the &quot;^T&quot;
6391 &quot;To Files&quot; subcommand.
6392 After returning from that subcommand you will still be allowed to
6393 edit the name you have selected.
6394 Alternatively, you may type in a file name.
6395 It may be an absolute pathname.
6396 Otherwise, it is a file located in your home directory
6397 or current working directory
6398 <!--chtml if pinemode="running"-->
6399 (which, at least for your current Alpine &quot;session,&quot; 
6400 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6401 <!--chtml endif-->, depending on the
6402 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6403 In any case, you finish by typing a carriage return to accept the
6404 file name that is displayed.
6405 When the feature
6406 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6407 is turned on you may use TAB to complete partially typed in names.
6409 If the object you are exporting is a message with some attachments,
6410 you may wish to save all of the attachments by typing the &quot;^P&quot;
6411 &quot;AllParts&quot; command to turn on saving of the attachments.
6412 This subcommand will only be visible if the message actually has attachments.
6413 You may also View the attachment list and save individual attachments from
6414 there.
6416 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6417 this help.
6419 &lt;End of help on this topic&gt;
6420 </BODY>
6421 </HTML>
6422 ======= h_common_save =======
6423 <HTML>
6424 <HEAD>
6425 <TITLE>Save and Export Commands</TITLE>
6426 </HEAD>
6427 <BODY>
6428 <H1>Save and Export Commands</H1>
6430 Save
6431 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6432 and Export
6433 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6434 are the two alternatives Alpine gives you to keep a copy of the message
6435 you are reading. If you want to keep the message within Alpine's email
6436 world, use &quot;Save&quot;; if you want to use the message in another
6437 program, use &quot;Export&quot;.
6440 When you Save a message, it is put into an existing folder or into a new
6441 folder in one of your existing folder collections.  The message stays in
6442 email format and can be read by Alpine again.  Alpine may use a special format
6443 for its mail folders -- never edit an Alpine folder by hand or with any
6444 program other than Alpine.  The exact behavior of the Save command can be
6445 configured with the
6446 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6447 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6448 and 
6449 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6450 feature list settings.
6451 The name of the folder offered as a default is controlled by the option
6452 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6455 When you use Export, the message is placed in a plain text file in your
6456 home directory 
6457 <!--chtml if pinemode="running"-->
6458 (which, in the present configuration of your system, is
6459  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6460 <!--chtml endif-->
6461 or current working directory
6462 <!--chtml if pinemode="running"-->
6463 (which, at least for your current Alpine &quot;session,&quot; 
6464 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6465 <!--chtml endif-->, depending on the
6466 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6467 configuration setting.  In the normal case, only minimal
6468 headers are exported with the message; however, if the full header mode 
6469 (whose availability may be disabled  by setting the feature 
6470 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6471 in SETUP CONFIGURATION) is
6472 toggled on, then complete headers are exported along with the message
6473 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6474 defined, they may affect the contents of the exported file.)
6477 &lt;End of help on this topic&gt;
6478 </BODY>
6479 </HTML>
6480 ======= h_common_bounce =======
6481 <HTML>
6482 <HEAD>
6483 <TITLE>Bounce Command</TITLE>
6484 </HEAD>
6485 <BODY>
6486 <H1>Bounce Command</H1>
6488 The Bounce 
6489 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
6490 command allows you to re-send, or &quot;remail&quot;, a
6491 message, as if you were never in the loop.  It is analogous to crossing
6492 out your address on a postal letter, writing a different address on the
6493 envelope, and putting it into the mailbox. Bounce is used primarily to
6494 redirect email that was sent to you in error.
6495 Also, some owners of email
6496 lists need the bounce command to handle list traffic.
6497 Bounce is not anonymous.
6498 A ReSent-From header is added to the message so that the recipient may
6499 tell that you Bounced it to them.
6502 The presence or absence of the Bounce command is determined by the
6503 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
6504 feature in your Alpine configuration.
6505 The feature
6506 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
6507 affects the behavior of the Bounce command.
6508 Also, it is possible that Bounce could be
6509 administratively disabled by your system manager; if it doesn't work,
6510 please check with your local help desk before reporting a bug.
6513 &lt;End of help on this topic&gt;
6514 </BODY>
6515 </HTML>
6516 ======= h_common_reply =======
6517 <HTML>
6518 <HEAD>
6519 <TITLE>Reply and Forward Commands</TITLE>
6520 </HEAD>
6521 <BODY>
6523 <H1>Reply and Forward Commands</H1>
6525 Replying 
6526 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
6527 and Forwarding 
6528 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
6529 are your two alternatives for following up on the
6530 message you are reading.  You would use reply if you want to get email
6531 back to the author of the message and/or the other people who have
6532 already seen it.  You use forward if you want somebody new to see the
6533 message.
6536 In the normal case, the only thing that you must supply when forwarding a
6537 message is the name/email address of the new recipient.
6538 Alpine will include the text of the forwarded message.
6539 Alpine will also include any attachments to the message.
6540 There is space above the forwarded text for you to include additional comments.
6543 When replying, you usually have to answer some questions.
6544 If the message is to multiple people and/or specified with a Reply-To: header,
6545 then you will have to decide who should get the reply.
6546 You also need to decide whether or not to include the previous
6547 message in your reply.
6548 Some of this is configurable.
6549 Specifically, see the
6550 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
6551 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
6552 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
6554 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
6555 configuration features.
6558 Both the Reply and Forward commands react to the full header mode toggle.
6559 If the full header mode is on, then all the header and delivery lines are
6560 included with the text of the message in your reply/forward.
6563 Other configuration features that affect the Reply command are
6564 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
6565 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
6566 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
6569 &lt;End of help on this topic&gt;
6570 </BODY>
6571 </HTML>
6572 ======= h_common_delete =======
6573 <HTML>
6574 <HEAD>
6575 <TITLE>Delete and Undelete Commands</TITLE>
6576 </HEAD>
6577 <BODY>
6578 <H1>Delete and Undelete Commands</H1>
6580 Delete 
6581 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
6582 and Undelete 
6583 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
6584 allow you to change the Deleted flag for the current message.
6585 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
6586 removes the mark.
6587 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
6588 at the left hand edge of the index line.
6589 When viewing a deleted message, the letters &quot;DEL&quot; will be present
6590 in the upper right hand corner of the screen.
6591 Delete simply <EM>marks</EM> a message Deleted, it does not actually
6592 get rid of the message.
6593 The eXpunge command (available from the MESSAGE INDEX screen) actually
6594 removes all of the deleted messages in a folder.
6595 Once a message is eXpunged, it can't be retrieved.
6598 The Delete command is affected by the setting of the configuration feature
6599 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
6602 &lt;End of help on this topic&gt;
6603 </BODY>
6604 </HTML>
6605 ======= h_common_postpone =======
6606 <HTML>
6607 <HEAD>
6608 <TITLE>Postpone Command</TITLE>
6609 </HEAD>
6610 <BODY>
6611 <H1>Postpone Command</H1>
6613 The postpone
6614 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
6615 command allows you to temporarily stop working on the current
6616 message so you may read
6617 other messages or compose another message.  When you want to resume a
6618 message later, start to compose and answer &quot;yes&quot; to the
6619 &quot;Continue postponed composition?&quot; question.  You may
6620 postpone as many messages as you like.
6623 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
6624 in the Setup/Config screen, then the Postpone command will prompt you for
6625 the folder in which to store your outgoing message.
6628 &lt;End of help on this topic&gt;
6629 </BODY>
6630 </HTML>
6631 ======= h_compose_cancel =======
6632 <HTML>
6633 <HEAD>
6634 <TITLE>Cancel Command</TITLE>
6635 </HEAD>
6636 <BODY>
6637 <H1>Cancel Command</H1>
6639 Cancel
6640 <!--chtml if pinemode="function_key"-->
6641 (F2)
6642 <!--chtml else-->
6643 (^C) 
6644 <!--chtml endif-->
6646 The Cancel command returns you to Alpine's normal mail processing and
6647 causes the message currently under composition to be thrown out.
6648 The message text <EM>will be lost</EM>.
6651 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
6652 will be preserved in the file named
6653 <!--chtml if pinemode="os_windows"-->
6654 &quot;DEADLETR&quot;.
6655 <!--chtml else-->
6656 &quot;dead.letter&quot; in your home directory.
6657 <!--chtml endif-->
6658 If you unintentionally cancel a message, look there for its text.
6661 &lt;End of help on this topic&gt;
6662 </BODY>
6663 </HTML>
6664 ======= h_compose_addrcomplete =======
6665 <HTML>
6666 <HEAD>
6667 <TITLE>Address Completion</TITLE>
6668 </HEAD>
6669 <BODY>
6670 <H1>Address Completion</H1>
6672 When entering addresses in the address fields of the composer (To, Cc, etc.)
6673 the TAB key may be used to help complete the address.
6674 Type a partial nickname and tap the TAB key to complete the typing.
6675 The unambiguous part of the name will be filled in automatically.
6676 Typing TAB twice in succession will bring up a selection list of possibilities,
6677 making it easy to find and choose the correct address.
6680 The matching algorithm is rather ad hoc.
6681 The search starts with a search of your address book.
6682 It counts as a match if the nickname, address, or fullname field of an
6683 entry begins with the text typed in so far. It is also a match if
6684 a later word in the fullname (for example, the middle name or last name)
6685 begins with the entered text.
6687 Next comes an LDAP search.
6688 The search will happen for any servers that have the
6689 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
6690 feature set. You can set or unset the feature for each server independently
6691 in the Setup/Directory screen.
6693 Finally, if you are replying to or forwarding a message, that message is
6694 searched for likely candidate addresses that match the typed-in text.
6697 &lt;End of help on this topic&gt;
6698 </BODY>
6699 </HTML>
6700 ======= h_compose_richhdr =======
6701 <HTML>
6702 <HEAD>
6703 <TITLE>Rich Header Command</TITLE>
6704 </HEAD>
6705 <BODY>
6706 <H1>Rich Header Command</H1>
6708 The Rich Header command allows you to toggle between the list of 
6709 all message headers available for editing and those that are most
6710 common.
6713 Use this toggle to expose headers that are not normally visible by
6714 default.
6715 This set usually includes the
6716 &quot;Bcc:&quot;,
6717 &quot;Fcc:&quot;,
6718 &quot;Lcc:&quot;,
6719 and &quot;Newsgroups&quot;
6720 headers.
6721 If you are posting to a newsgroup the set of defaults is a little different.
6722 Obviously, in that case, the Newsgroups header is of interest so is not
6723 hidden.
6724 For news posting the hidden set includes the
6725 &quot;To:&quot;,
6726 &quot;Cc:&quot;,
6727 &quot;Bcc:&quot;,
6728 &quot;Fcc:&quot;,
6729 and &quot;Lcc:&quot;
6730 headers.
6731 You won't normally want to edit these, which is why they are hidden,
6732 but it is sometimes useful to be able to set them manually.
6735 The default sets of headers listed above can be altered.
6736 Any header that you have added to the
6737 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
6738 option, but not to the
6739 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
6740 option will appear when you use the Rich Headers command to
6741 make the Rich Headers visible.
6742 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
6743 even without toggling the Rich Headers command.)
6746 &lt;End of help on this topic&gt;
6747 </BODY>
6748 </HTML>
6749 ======= h_compose_send =======
6750 <HTML>
6751 <HEAD>
6752 <TITLE>Send Command</TITLE>
6753 </HEAD>
6754 <BODY>
6755 <H1>Send Command</H1>
6757 The Send command
6758 <!--chtml if pinemode="function_key"-->
6759 (F3)
6760 <!--chtml else-->
6761 (^X) 
6762 <!--chtml endif-->
6763 tells Alpine you are finished composing.
6764 Before actually sending it, though, Alpine will ask you to confirm 
6765 your intention, and, at the same time, redisplayed the message text
6766 with the recipients at the top of the screen to give you the opportunity
6767 to review and verify that the message is addressed to the people
6768 you intended.
6770 If the feature
6771 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
6772 then this confirmation prompt and any options it allows are skipped.
6775 This confirmation prompt may also offer, depending
6776 on your particular Setup/Config, options allowing you to set
6777 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
6778 include attachments in the &quot;Fcc&quot; (if you had previously
6779 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
6780 observe details of the
6781 <A HREF="h_config_verbose_post">message submission process</A>,
6782 choose the filter through which the
6783 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
6784 or turn of flowed text generation.
6787 &lt;End of help on this topic&gt;
6788 </BODY>
6789 </HTML>
6790 ======= h_compose_markcutpaste =======
6791 <HTML>
6792 <HEAD>
6793 <TITLE>Mark, Cut and Paste Commands</TITLE>
6794 </HEAD>
6795 <BODY>
6796 <H1>Mark, Cut and Paste Commands</H1>
6798 You can define a &quot;block&quot; of text, which can subsequently
6799  be deleted or
6800 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
6801 then moving the cursor to the end of the desired text block.  You can then
6802 &quot;cut&quot; the block out 
6803 <!--chtml if pinemode="function_key"-->
6804 &quot;F9&quot;,
6805 <!--chtml else-->
6806 &quot;Ctrl-K&quot;,
6807 <!--chtml endif-->
6808 move the cursor, and &quot;paste&quot; it
6809 <!--chtml if pinemode="function_key"-->
6810 &quot;F10&quot;,
6811 <!--chtml else-->
6812 &quot;Ctrl-U&quot;,
6813 <!--chtml endif-->
6814 in the new location.  Also, you can paste more than once, allowing you
6815 to use this feature to copy a block of text.<P>
6817 If you press 
6818 <!--chtml if pinemode="function_key"-->
6819 &quot;F9&quot;
6820 <!--chtml else-->
6821 &quot;^K&quot;
6822 <!--chtml endif-->
6823 without having marked anything, Alpine will delete
6824 a single line.  If you delete a group of lines together, Alpine keeps them
6825 in the same buffer, so 
6826 <!--chtml if pinemode="function_key"-->
6828 <!--chtml else-->
6830 <!--chtml endif-->
6831 will restore them as a block.  About
6832 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
6833 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
6834 &quot;type the character ^&quot;.
6837 &lt;End of help on this topic&gt;
6838 </BODY>
6839 </HTML>
6840 ======= h_compose_justify =======
6841 <HTML>
6842 <HEAD>
6843 <TITLE>Justify Command</TITLE>
6844 </HEAD>
6845 <BODY>
6846 <H1>Justify Command</H1>
6848 The Justify
6849 <!--chtml if pinemode="function_key"-->
6850 (F4)
6851 <!--chtml else-->
6852 (^J) 
6853 <!--chtml endif-->
6854 command reformats the text in the paragraph the cursor is in.
6855 Paragraphs are separated by one blank line or a line beginning with a space.
6856 This is useful when you have been editing a paragraph and the lines become
6857 uneven.  The text is left aligned or justified and the right is ragged.  If
6858 the text is already justified as typed with auto-wrap, no justification will
6859 be done.
6862 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
6863 block of text, the Justify command is modified.
6864 Instead of automatically justifying the current paragraph you will be
6865 asked if you want to justify the paragraph, justify the selected region,
6866 or adjust the quote level of the selected region.
6867 Adjusting the quote level only works if you are using standard
6868 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
6869 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
6872 When composing a reply containing included text, the justify command
6873 will reformat text to the right of the 
6874 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
6875 adding or removing indented lines as needed.  Paragraphs are separated
6876 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
6877 line containing the indent string and one or more blank spaces.
6878 Included text that was previously indented (or &quot;quoted&quot;) is
6879 not preserved.
6882 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
6883 in 1999 and its wide-spread adoption since then, you will usually be better off if you
6884 use the standard
6885 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
6888 &lt;End of help on this topic&gt;
6889 </BODY>
6890 </HTML>
6891 ======= h_compose_spell =======
6892 <HTML>
6893 <HEAD>
6894 <TITLE>Spell Check Command</TITLE>
6895 </HEAD>
6896 <BODY>
6897 <H1>Spell Check Command</H1>
6899 The &quot;To Spell&quot;
6900 <!--chtml if pinemode="function_key"-->
6901 (F12)
6902 <!--chtml else-->
6903 (^T) 
6904 <!--chtml endif-->
6905 command calls an external spell checking program to look over the
6906 message you are composing.  By default, Alpine uses
6908 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
6910 if it knows where to find &quot;aspell&quot;.
6911 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
6912 then the command used is
6914 <CENTER><SAMP>ispell -l</SAMP></CENTER>
6916 Otherwise, the ancient &quot;spell&quot; command is used.
6918 For PC-Alpine, you must install the aspell library code that you
6919 may get from
6920 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
6923 &lt;End of help on this topic&gt;
6924 </BODY>
6925 </HTML>
6926 ======= h_compose_alted =======
6927 <HTML>
6928 <HEAD>
6929 <TITLE>Alt Editor Command</TITLE>
6930 </HEAD>
6931 <BODY>
6932 <H1>Alt Editor Command</H1>
6934 The &quot;Alt Editor&quot; command's availability depends on the
6935 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
6938 When the variable specifies a valid editor on your system, this
6939 command will launch it with the current text of your message
6940 already filled in.
6943 &lt;End of help on this topic&gt;
6944 </BODY>
6945 </HTML>
6946 ======= h_compose_readfile =======
6947 <HTML>
6948 <HEAD>
6949 <TITLE>Read File Command</TITLE>
6950 </HEAD>
6951 <BODY>
6952 <H1>Read File Command</H1>
6954 The &quot;Read File&quot;
6955 <!--chtml if pinemode="function_key"-->
6956 (F5)
6957 <!--chtml else-->
6958 (^R) 
6959 <!--chtml endif-->
6960 command allows you to copy in text from an existing file. You will be
6961 prompted for the name of a file to be inserted into the message.  The file
6962 name is relative to your home directory 
6963 <!--chtml if pinemode="running"-->
6964 (which, in the present configuration of your system, is
6965  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6966 <!--chtml endif-->
6967 or current working directory
6968 <!--chtml if pinemode="running"-->
6969 (which, at least for your current Alpine &quot;session,&quot; 
6970 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6971 <!--chtml endif-->, depending on the
6972 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6973 configuration setting; or, the file name must be specified as a full path name 
6974 <!--chtml if pinemode="os_windows"-->
6975 -- for example: &quot;A:&#92;PAPER.TXT&quot;
6976 <!--chtml else-->
6977 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
6978 <!--chtml endif-->
6979 (without the quotation marks).
6982 The file will be inserted where the cursor is located.  <B>The
6983 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
6984 Unix machine but have files on a PC or Mac, the files must be transferred
6985 to the system Alpine is running on before they can be read.  Please ask your
6986 local computer support people about the correct way to transfer a file to 
6987 your Alpine system.
6990 &lt;End of help on this topic&gt;
6991 </BODY>
6992 </HTML>
6993 ======= h_config_tray_icon =======
6994 <HTML>
6995 <HEAD>
6996 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
6997 </HEAD>
6998 <BODY>
6999 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7001 PC-Alpine only.
7003 This option restores a behavior of previous versions of PC-Alpine.
7004 These
7005 versions, when started, installed a PC-Alpine icon in the notification 
7006 tray of Window's Taskbar.  The primary use of this icon was to indicate
7007 new mail arrival by turning red (while the Taskbar icon remained green).
7008 Additionally, the icon now changes to yellow to signify that a mail folder
7009 has been closed unexpectedly.
7012 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7013 color its Taskbar entry's icon red (as well as the icon in the Window
7014 Title).  This feature is only provided for backwards compatibility.
7017 &lt;End of help on this topic&gt;
7018 </BODY>
7019 </HTML>
7020 ======= h_common_suspend =======
7021 <HTML>
7022 <HEAD>
7023 <TITLE>Suspend Command</TITLE>
7024 </HEAD>
7025 <BODY>
7026 <H1>Suspend Command</H1>
7028 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7029 enabled, you can, at almost any time, temporarily halt your Alpine session,
7030 <!--chtml if pinemode="os_windows"-->
7031 minimizing it into an icon.
7032 <!--chtml else-->
7033 and return to your system prompt.
7034 <!--chtml endif-->
7037 &lt;End of help on this topic&gt;
7038 </BODY>
7039 </HTML>
7040 ======= h_pipe_command =======
7041 <HTML>
7042 <HEAD>
7043 <TITLE>Pipe Command SubOptions</TITLE>
7044 </HEAD>
7045 <BODY>
7046 <H1>Pipe Command SubOptions</H1>
7048 By default, when you use the Pipe command, the processed text of the
7049 message is sent to the Unix command
7050 you specify and the output is captured by Alpine and shown to you.
7051 (This command is available in PC-Alpine, as well, but there aren't many
7052 Windows commands that work well with piping.)
7053 There are some sub-commands that may be used to alter this behavior.
7054 These are toggles that switch the behavior between two possibilities.
7055 They can be combined in any way you wish.
7057 By default, the prompt at the bottom of the screen looks like
7059 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7063 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7065 if you are piping more than one message.
7067 The sub-command options are:
7068 <DL>
7069    <DT>Shown Text or Raw Text</DT>
7070    <DD>This option toggles between sending the shown (processed) text
7071 of the message to the Unix command, and sending the
7072 raw (unprocessed) text of the message to the Unix command.
7073 The default is to send the shown text.
7074 The raw version of the message will contain all of the headers and any
7075 MIME encoding that the message contains.
7076 If you've selected the Raw Text then the prompt will have the additional word
7077 &quot;RAW&quot; in it, like
7079 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7081 You can experiment with this option by piping to something simple like the
7082 Unix &quot;cat&quot; command.
7083    </DD>
7084    <DT>Captured Output or Free Output</DT>
7085    <DD>This option toggles between having Alpine capture the output of
7086 the Unix pipe command for display, and not capturing it.
7087 If the command you are piping to is a filter that will produce output
7088 you want to view, then you want to capture that output
7089 for display (the default).
7090 If the Unix command doesn't produce output or handles the display itself,
7091 then you want free output.
7092 When you've selected the Free Output option the prompt will change to
7094 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7096    </DD>
7097    <DT>No Delimiter or With Delimiter</DT>
7098    <DD>This option controls whether or not a Unix mailbox style delimiter
7099 will come before the text of the message.
7100 This is the delimiter used in the common Unix mailbox format.
7101 It's the single line that begins with the five characters
7102 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7103 You'll usually only want to include this if the Unix command requires
7104 input in the format of a traditional Unix mailbox file.
7105 When you've selected the With Delimiter option the prompt will change to
7107 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7109    </DD>
7110    <DT>To Same Pipe or To Individual Pipes</DT>
7111    <DD>This option only shows up if you are running an aggregate
7112 pipe command.
7113 That is, the command was Apply Pipe, not just Pipe.
7114 You have the option of piping all of the selected messages through a
7115 single pipe to a single instance of the Unix command,
7116 or piping each individual message through a separate pipe to separate
7117 instances of the Unix command.
7118 The default is that all of the output will go through a single pipe
7119 to a single instance of the command.
7120 You can try this option with a command like &quot;less&quot;, with Free
7121 Output enabled.
7122 When you've selected the Individual Pipes option the prompt will change to
7124 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7126    </DD>
7127 </DL>
7130 As mentioned earlier, the options can be combined in any way you wish.
7131 You may leave them all off, turn them all on, or turn some of them on
7132 and some of them off.
7133 If you use the pipe command a second time in the same session the default
7134 options will be what you used the last time.
7137 &lt;End of help on this topic&gt;
7138 </BODY>
7139 </HTML>
7140 ========== h_emptydir_subfolder_name =========
7141 <HTML>
7142 <HEAD>
7143 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7144 </HEAD>
7145 <BODY>
7146 <H1>Enter Subfolder Name</H1>
7148 <P> 
7149 This is the name of a new subfolder in the directory you are creating.
7150 Because empty directories are hidden and therefore not useful, you must also
7151 create a subfolder in the directory you are creating in order that the
7152 directory remains visible.
7154 Alternatively, you may turn off the configuration feature
7155 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7156 so that empty directories remain visible.
7157 If you do that, you will not be required to create the subfolder when you
7158 create a directory.
7161 &lt;End of help on this topic&gt;
7162 </BODY>
7163 </HTML>
7164 ========== h_incoming_add_folder_name =========
7165 <HTML>
7166 <HEAD>
7167 <TITLE>ENTER FOLDER NAME</TITLE>
7168 </HEAD>
7169 <BODY>
7170 <H1>Enter Folder Name</H1>
7172 <P> 
7173 This is the name of the folder on the previously specified server.
7174 By default the folder name is interpreted as defining a section of your personal
7175 folder area.  This area and how you specify it are defined by the
7176 server, if one is specified.
7179 To define a folder outside the default area, prefix
7180 the path with the namespace to use when interpreting the
7181 given path.  If a namespace is specified, the folder name begins with the
7182 sharp (#) character followed by the name of the namespace
7183 and then the namespace's path-element-delimiter.  Aside from the
7184 name's format, namespaces can also imply access rights, content
7185 policy, audience, location, and, occasionally, access methods.
7188 Each server exports its own set (possibly of size one) of 
7189 namespaces.
7190 For a more detailed explanation read about
7191 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7194 To specify the default for INBOX on the server you can usually just enter
7195 &quot;INBOX&quot;, and the server will understand the special meaning of
7196 that word.
7199 &lt;End of help on this topic&gt;
7200 </BODY>
7201 </HTML>
7202 ========== h_incoming_add_folder_host =========
7203 <HTML>
7204 <HEAD>
7205 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7206 </HEAD>
7207 <BODY>
7208 <H1>Enter Incoming Folder Server</H1>
7210 You are being asked for the name of the server for use with this incoming
7211 folder.
7212 If the folder is on the machine where Alpine is running, then just enter
7213 RETURN without typing a server name.
7216 If the folder is on an IMAP server then type the server's name followed
7217 by RETURN.
7218 You may use the ^X command if the server is the same as the server that
7219 the INBOX is on.
7222 You may have to add optional extra information to the server name.
7223 For example, if the IMAP server is using a non-standard port number you
7224 would specify that by appending a colon (:) followed by the port number
7225 to the server name
7228 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7231 or you may need to specify a different protocol if the server is not an
7232 IMAP server. For example:
7235 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7238 for a POP server or
7241 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7244 for an NNTP news server.
7245 For an explanation of all of the possibilities, see
7246 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7247 for folders.
7250 There is a special command (^W) if you want to set up a folder that gets its
7251 mail from a
7252 <A HREF="h_maildrop">Mail Drop</A>.
7253 If you type that command, you will be prompted for the information for
7254 both the Mail Drop folder and the destination folder.
7257 &lt;End of help on this topic&gt;
7258 </BODY>
7259 </HTML>
7260 ========== h_incoming_add_inbox =========
7261 <HTML>
7262 <HEAD>
7263 <TITLE>ENTER INBOX SERVER</TITLE>
7264 </HEAD>
7265 <BODY>
7266 <H1>Enter INBOX Server</H1>
7268 You are being asked for the name of the server for use with
7269 the INBOX folder.
7270 Type the server's name followed by RETURN.
7273 You may have to add optional extra information to the server name.
7274 For example, if the server is using a non-standard port number you
7275 would specify that by appending a colon (:) followed by the port number
7276 to the server name
7279 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7282 or you may need to specify a different protocol if the server is not an
7283 IMAP server. For example:
7286 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7289 for a POP server.
7292 For an explanation of all of the possibilities, see
7293 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7294 for folders.
7297 If the INBOX folder is on the machine where Alpine is running, then just enter
7298 RETURN without typing a server name.
7301 There is a special command (^W) if you want to set up a folder that gets its
7302 mail from a
7303 <A HREF="h_maildrop">Mail Drop</A>.
7304 If you type that command, you will be prompted for the information for
7305 both the Mail Drop folder and the destination folder, which will be used
7306 as your INBOX folder.
7309 &lt;End of help on this topic&gt;
7310 </BODY>
7311 </HTML>
7312 ========== h_incoming_add_maildrop_destn =========
7313 <HTML>
7314 <HEAD>
7315 <TITLE>ENTER DESTINATION SERVER</TITLE>
7316 </HEAD>
7317 <BODY>
7318 <H1>Enter Destination Server</H1>
7320 You are being asked for the name of the server where the destination
7321 folder is for use with this Mail Drop incoming folder.
7322 That is, you are using a Mail Drop for this incoming folder and
7323 you've already entered
7324 the server and folder name for the Mail Drop.
7325 Now you need to enter the server for the destination folder
7326 where the mail should be copied to.
7327 Mail will come from the Mail Drop and be copied to the destination folder.
7330 Type the server's name followed by RETURN.
7331 If the folder is local to this computer, just type RETURN without entering
7332 a server name.
7335 You may have to add optional extra information to the server name.
7336 For example, if the server is using a non-standard port number you
7337 would specify that by appending a colon (:) followed by the port number
7338 to the server name
7341 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7344 For an explanation of all of the possibilities, see
7345 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7346 for folders.
7349 &lt;End of help on this topic&gt;
7350 </BODY>
7351 </HTML>
7352 ========== h_inbox_add_maildrop_destn =========
7353 <HTML>
7354 <HEAD>
7355 <TITLE>ENTER DESTINATION SERVER</TITLE>
7356 </HEAD>
7357 <BODY>
7358 <H1>Enter Destination Server</H1>
7360 You are being asked for the name of the server where the destination
7361 folder is for use with your Mail Drop INBOX.
7362 That is, you are using a Mail Drop for your INBOX and you've already entered
7363 the server and folder name for the Mail Drop.
7364 Now you need to enter the server for the destination folder
7365 where the mail should be copied to.
7366 Mail will come from the Mail Drop and be copied to the destination folder.
7369 Type the server's name followed by RETURN.
7370 If the folder is local to this computer, just type RETURN without entering
7371 a server name.
7374 You may have to add optional extra information to the server name.
7375 For example, if the server is using a non-standard port number you
7376 would specify that by appending a colon (:) followed by the port number
7377 to the server name
7380 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7383 For an explanation of all of the possibilities, see
7384 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7385 for folders.
7388 &lt;End of help on this topic&gt;
7389 </BODY>
7390 </HTML>
7391 ========== h_inbox_add_maildrop =========
7392 <HTML>
7393 <HEAD>
7394 <TITLE>ENTER MAILDROP SERVER</TITLE>
7395 </HEAD>
7396 <BODY>
7397 <H1>Enter Mail Drop Server</H1>
7399 You are being asked for the name of the Mail Drop server for use with
7400 your INBOX.
7403 Type the server's name followed by RETURN.
7406 You may have to add optional extra information to the server name.
7407 For example, if the server is using a non-standard port number you
7408 would specify that by appending a colon (:) followed by the port number
7409 to the server name
7412 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7415 or you may need to specify a different protocol if the server is not an
7416 IMAP server. For example:
7419 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7422 for a POP server or
7425 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7428 for an NNTP news server.
7429 For an explanation of all of the possibilities, see
7430 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7431 for folders.
7434 &lt;End of help on this topic&gt;
7435 </BODY>
7436 </HTML>
7437 ========== h_incoming_add_maildrop =========
7438 <HTML>
7439 <HEAD>
7440 <TITLE>ENTER MAILDROP SERVER</TITLE>
7441 </HEAD>
7442 <BODY>
7443 <H1>Enter Mail Drop Server</H1>
7445 You are being asked for the name of the Mail Drop server for use with
7446 this incoming folder.
7449 Type the server's name followed by RETURN.
7450 You may use the ^X command if the server is the same as the server that
7451 the INBOX is on.
7454 You may have to add optional extra information to the server name.
7455 For example, if the server is using a non-standard port number you
7456 would specify that by appending a colon (:) followed by the port number
7457 to the server name
7460 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7463 or you may need to specify a different protocol if the server is not an
7464 IMAP server. For example:
7467 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7470 for a POP server or
7473 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7476 for an NNTP news server.
7477 For an explanation of all of the possibilities, see
7478 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7479 for folders.
7482 If the Mail Drop folder is on the machine where Alpine is running, then just enter
7483 RETURN without typing a server name.
7486 &lt;End of help on this topic&gt;
7487 </BODY>
7488 </HTML>
7489 ========== h_maildrop =========
7490 <HTML>
7491 <HEAD>
7492 <TITLE>WHAT IS A MAIL DROP?</TITLE>
7493 </HEAD>
7494 <BODY>
7495 <H1>What is a Mail Drop?</H1>
7497 In some situaions it may make sense to have your mail delivered to one
7498 folder (the Mail Drop) and then when you want to read mail that has been
7499 delivered to the Mail Drop folder Alpine will move it to another
7500 destination folder.
7501 Often the Mail Drop will be a remote folder and messages will be moved from
7502 there to a local destination folder.
7505 One example where this might make sense is if the Mail Drop folder is accessible
7506 only with the POP protocol.
7507 You could designate your POP inbox as the Mail Drop folder and have Alpine move
7508 mail from there to a local (on the same machine Alpine is running on)
7509 destination folder, where you'll read it.
7512 A Mail Drop may only be used as your Inbox or as an
7513 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
7516 There is no attempt to synchronize the contents of the destination folder
7517 with the contents of the Mail Drop folder.
7518 All that happens is that all of the messages in the Mail Drop folder are
7519 copied to the destination folder and then they are deleted and expunged (if possible)
7520 from the Mail Drop folder.
7521 The next time a check for new mail is made, any messages in the Mail 
7522 Drop folder are once again copied to the destination folder and deleted
7523 and expunged from the Mail Drop folder.
7524 (If the Mail Drop folder is a news group, then the messages can't be
7525 expunged from the newsgroup. Instead, only Recent messages are copied from
7526 the newsgroup to the destination folder.)
7529 Configuration of a Mail Drop is a little different from configuration of
7530 a folder that does not use a Mail Drop because you have to specify two
7531 folder names instead of one.
7532 The two folders may be any types of folders that Alpine can normally use.
7533 They don't have to be a remote folder and a local folder, that is
7534 simply the most common usage.
7535 When you use a Mail Drop folder Alpine will periodically re-open the Mail
7536 Drop to check for new mail.
7537 The new-mail checks will happen at the frequency set with the
7538 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
7539 but with a minimum time
7540 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
7541 between checks.
7542 Because of this minimum you may notice that new mail does not
7543 appear promptly when you expect it.
7544 The reason for this is to protect the server from over-zealous opening and
7545 closing of the Mail Drop folder.
7546 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
7547 the end of the folder index, then the check will happen, regardless of how
7548 long it has been since the previous check.
7550 If there is new mail, that mail will be copied to the destination folder
7551 and then will be deleted from the Mail Drop.
7552 Note that using a Mail Drop with a local destination folder does not make
7553 sense if you read mail from more than one machine, because the mail is
7554 downloaded to the destination folder (which is accessible from only one
7555 machine) and deleted from the Mail Drop.
7557 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
7560 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
7563 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
7565 The brackets are not literal.
7567 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
7569 is a single character that does not appear in the MailDropFolder name.
7570 If the name doesn't contain spaces then it can be a space character.
7571 The two folder names are full technical
7572 <A HREF="h_valid_folder_names">folder names</A>
7573 as used by Alpine.
7574 Here are a couple examples to give you an idea what is being talked about:
7577 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
7579 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
7582 A #move folder may only be used as an
7583 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
7584 an Inbox.
7585 When you are in the FOLDER LIST of Incoming Message Folders (after turning
7586 on the
7587 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7588 option)
7589 the Add command has a subcommand &quot;Use Mail Drop&quot;
7590 which may be helpful for defining the folder in your Alpine configuration.
7591 The same is true when you edit the
7592 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
7593 option in Setup/Config.
7594 Each of these configuration methods will also create the DestinationFolder
7595 if it doesn't already exist.
7596 If you are having problems, make sure the DestinationFolder exists.
7599 &lt;End of help on this topic&gt;
7600 </BODY>
7601 </HTML>
7602 ========== h_save =========
7603 <HTML>
7604 <HEAD>
7605 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
7606 </HEAD>
7607 <BODY>
7608 <H1>Choose a Folder to Save Into</H1>
7610 After Exiting from this help text,
7611 type the name of the folder you want to save into and press RETURN.
7613 Press ^T to get a list of your folders to choose from.
7614 Press ^C to cancel the Save.
7616 If you have Folder Collections defined you may use
7617 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
7618 the collection being saved to.
7620 If Tab Completion is enabled (it is enabled by default)
7621 you may type a Tab character to have Alpine complete the folder name for you.
7623 If Partial Match Lists is enabled (it is enabled by default) you may type
7624 Ctrl-X to get a list of matches to the prefix you've typed in so far.
7626 If the Ctrl-R subcommand is present that means you can decide to Delete or
7627 not Delete the message you are saving after you save it.
7628 The label on that key gives the action to switch to.
7629 If it says Delete and you type Ctrl-R the label displayed will change to
7630 No Delete and the source message will be deleted after the save. If it
7631 says No Delete and you type Ctrl-R the label displayed will change to
7632 Delete and the message will not be deleted.
7633 You can control the default for the Delete parameter with the
7634 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
7636 Similarly, if the Ctrl-W subcommand is present that means you can decide
7637 to Preserve the order of the messages being saved or not.
7638 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
7639 will be in the same order as you see them in the source folder now.
7640 The opposite action (which is usually the default) is that you don't care
7641 about the order.
7642 The Saved messages may or may not be in the same order in the destination folder.
7643 There may be a performance penalty for choosing to save the messages in order.
7644 You can control the default for the Preserve Order parameter with the
7645 configuration feature
7646 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
7649 If you haven't disabled the Save Input History and you've already done a
7650 Save earlier in this session then you may use the Up and Down arrows to retrieve
7651 a folder name used in a previous Save.
7654 &lt;End of help on this topic&gt;
7655 </BODY>
7656 </HTML>
7657 ============= h_simple_index ========================
7658 <HTML>
7659 <HEAD>
7660 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
7661 </HEAD>
7662 <BODY>
7663 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
7664 <!--chtml if pinemode="function_key"-->
7665 <PRE>
7666 Navigating the List of Messages               General Alpine Commands
7667 -------------------------------               ---------------------
7668  F5   Move to previous message                 F1   Show this help text
7669  F6   Move to next message
7670  F7   Show previous screen of messages
7671  F8   Show next screen of messages
7673 Message Selection Commands
7674 --------------------------
7675  F3   Exit the Message Select menu (canceling Send command)
7676  F4   Select the currently highlighted message
7677  F9   Mark the currently highlighted message as deleted
7678  F10  Undelete (remove deletion mark from) the highlighted message
7679 </PRE>
7680 <!--chtml else-->
7681 <PRE>
7682 Navigating the List of Messages               General Alpine Commands
7683 -------------------------------               ---------------------
7684   P  Move to previous message                  ?  Show this help text
7685   N  Move to next message
7686   -  Show previous screen of messages
7687  Spc (space bar) Show next screen of messages
7689 Message Selection Commands
7690 --------------------------
7691   E  Exit the Message Select menu (canceling Send command)
7692   S  Select the currently highlighted message
7693   D  Mark the currently highlighted message as deleted
7694   U  Undelete (remove deletion mark from) the highlighted message
7695 </PRE>
7696 <!--chtml endif-->
7698 <H2>Description of the Select Postponed Message Screen</H2>
7700 This screen allows you to select one of several previously postponed
7701 messages in order to continue composition.  Your options are very limited
7702 -- the screen is not meant to let you manipulate these messages.  However,
7703 you may now delete messages from this list.  Once you choose a message,
7704 Alpine reads it in and puts you into the regular message composer.
7707 Messages do not stay in this postponed state automatically.  If you select
7708 a message and then want to postpone it again, use the normal postpone
7709 (Ctrl-O) command in the composer.
7712 If you exit this screen without selecting a message, the Compose command
7713 that got you here is canceled.  Other than messages explicitly marked
7714 &quot;Deleted&quot;, no messages will be removed.
7717 &lt;End of help on this topic&gt;
7718 </BODY>
7719 </HTML>
7720 ============= h_collection_screen ========================
7721 <HTML>
7722 <HEAD>
7723 <TITLE>COLLECTION LIST screen</TITLE>
7724 </HEAD>
7725 <BODY>
7726 <H1>COLLECTION LIST screen</H1>
7728 The COLLECTION LIST screen is used to select one of your  
7729 collection definitions to display the folders they contain.  See
7730 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
7731 detailed explanation of collections.<P>
7733 To manage your collection definitions (Add, Change, Delete, etc.), use
7734 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
7735 MAIN MENU.
7738 &lt;End of help on this topic&gt;
7739 </BODY>
7740 </HTML>
7741 ============= h_collection_maint ========================
7742 <HTML>
7743 <HEAD>
7744 <TITLE>SETUP COLLECTION LIST screen</TITLE>
7745 </HEAD>
7746 <BODY>
7747 <H1>SETUP COLLECTION LIST screen</H1>
7749 The SETUP COLLECTION LIST screen lets you manage your collection
7750 definitions.  See 
7751 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
7752 for detailed explanation of collections.<P>
7754 Maintenance commands include:
7755 <DL>
7756 <DT>Change
7757 <!--chtml if pinemode="function_key"-->
7758 (F4)
7759 <!--chtml else-->
7761 <!--chtml endif-->
7762 </DT>
7764 <DD>Modify attributes of the selected collection definition.
7766 <DT>Add Cltn
7767 <!--chtml if pinemode="function_key"-->
7768 (F9)
7769 <!--chtml else-->
7771 <!--chtml endif-->
7772 </DT>
7774 <DD>Create a new collection definition.
7775 </DD>
7777 <DT>Del Cltn
7778 <!--chtml if pinemode="function_key"-->
7779 (F10)
7780 <!--chtml else-->
7782 <!--chtml endif-->
7783 </DT>
7785 <DD>Delete the selected collection definition.<BR>
7786 NOTE: The folders and directories referred to by the
7787 collection definition are <EM>NOT</EM> deleted.  Folders must
7788 be deleted, if that's what you wish to do, from the 
7789 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
7790 individual folders in a collection.
7791 </DD>
7793 <DT>Shuffle
7794 <!--chtml if pinemode="function_key"-->
7795 (F11)
7796 <!--chtml else-->
7798 <!--chtml endif-->
7799 </DT>
7801 <DD>Change the order of the displayed collections.  Alpine will offer
7802 to move the currently selected collection one position UP
7803 or DOWN.
7804 </DD>
7805 </DL>
7808 &lt;End of help on this topic&gt;
7809 </BODY>
7810 </HTML>
7811 ============ h_what_are_collections ==========
7812 <HTML>
7813 <HEAD>
7814 <TITLE>Folder Collections Explained</TITLE>
7815 </HEAD>
7816 <BODY>
7817 <H1>Folder Collections Explained</H1>
7820 Those of you with simple mail configurations will just see a list of all the
7821 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
7822 The special folders for INBOX, sent mail and saved messages
7823 will appear at the top of the list.  All others are in alphabetical order.
7825 If you
7826 or your system administrator have defined more than one collection or if
7827 you have a collection (for newsgroups or email folders) defined on your 
7828 system, then you will see the COLLECTION LIST screen first when choosing 
7829 FOLDER LIST from Alpine's MAIN MENU.
7831 <H2>Why have multiple folder collections?</H2>
7833 For Alpine users who only maintain email folders (and not too many) on one host, 
7834 a single folder collection is probably sufficient.<P>
7836 However, people who have more than one email account - for example, one 
7837 at their university, and one with their personal Internet Service Provider - 
7838 will have different sets of folders on different hosts, and they may want to
7839 access them all from the same installation of Alpine, rather than use different 
7840 software and/or log into other hosts to manipulate messages in different 
7841 accounts.  (If in doubt whether one of your email accounts can be accessed 
7842 with Alpine, contact the technical support people for that account.)  Even people
7843 who have only one email account on one host, but have dozens or
7844 hundreds of email folders, may want to arrange these folders together in a 
7845 meaningful way.<BR>
7846 That is where multiple collections come in.
7848 <H2>Types of Collections</H2>
7849 <DL>
7850 <DT>INCOMING FOLDERS</DT>
7851 <DD>&quot;Incoming Message Folders&quot; 
7852 is a special collection typically used to supplement your single INBOX.  
7853 All the folders here are meant to be ones that receive incoming messages, 
7854 which you intend to check more or less frequently.  
7855 You may have multiple folders like this because you or your systems 
7856 administrator have set up an external program or you may have set up
7857 Alpine to filter incoming 
7858 messages into different folders, based on certain criteria such as 
7859 sender, recipient, or subject; or because you have multiple accounts and 
7860 wish to check their INBOXes easily.  This collection is established by 
7861 setting the 
7862 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7863 feature in the SETUP CONFIGURATION screen, which is accessed from the 
7864 MAIN MENU.
7865 </DD>
7867 <DT>NEWS</DT>
7868 <DD>You can also define a collection specifically for
7869 newsgroups.  Alpine does this for you implicitly when you 
7870 <A HREF="h_config_nntp_server">define an NNTP Server</A>
7871 in your Alpine configuration.  The news collection appears last in the 
7872 COLLECTION LIST (though you can shuffle it up in the order of presentation),
7873 and Alpine knows not to save messages there.
7874 </DD>
7876 <DT>DEFAULT COLLECTION</DT>
7877 <DD>This is the default collection for your saved and sent messages folders.
7878 </DD>
7879 </DL>
7883 <H2>Defining Collections</H2>
7885 In the absence of any folder-collection definitions, Alpine will assume a
7886 single default folder collection.
7887 <!--chtml if pinemode="os_windows"-->
7888 <!--chtml else-->
7889 If necessary, Alpine will create the directory
7890 &quot;mail&quot; in your Unix home directory 
7891 to hold your folders.
7892 <!--chtml endif-->
7894 You can use the 
7895 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
7896 the MAIN MENU, to manage your collection list.  
7898 &lt;End of help on this topic&gt;
7899 </BODY>
7900 </HTML>
7901 ===== h_select_address_screen =====
7902 <HTML>
7903 <HEAD>
7904 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
7905 </HEAD>
7906 <BODY>
7907 <H1>SELECT AN ADDRESS SCREEN</H1>
7908 <H2>COMMANDS</H2>
7909 <!--chtml if pinemode="function_key"-->
7910 <PRE>
7911 Available  Commands                        
7912 -------------------------------            
7913 F1  Show Help Text
7914 F3  Exit without selecting anything
7915 F4  Select the highlighted address
7916 F5  Move highlight to previous address
7917 F6  Move highlight to next address
7918 F7  Previous page of addresses
7919 F8  Next page of addresses
7920 F11 Print
7921 F12 WhereIs
7922 </PRE>
7923 <!--chtml else-->
7924 <PRE>
7925 Navigation                     General Alpine Commands
7926 -----------------------        ---------------------
7927  P  Prev Address                ?  Display this help text
7928  N  Next Address                E  Exit without selecting anything
7929  -  Previous page               %  Print
7930 Spc (space bar) Next page
7931  W  WhereIs
7933 Select Command
7934 ------------------------------------------------
7935  S  Select the highlighted address
7936 </PRE>
7937 <!--chtml endif-->
7939 <H2>Description of the Select Address Screen</H2>
7941 This screen gives you an easy way to select an address from all of
7942 the address book entries that match the prefix typed so far.
7944 <P><UL>
7945 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7946 </UL>
7948 &lt;End of help on this topic&gt;
7949 </BODY>
7950 </HTML>
7951 ===== h_select_rule_screen =====
7952 <HTML>
7953 <HEAD>
7954 <TITLE>SELECT A RULE SCREEN</TITLE>
7955 </HEAD>
7956 <BODY>
7957 <H1>SELECT A RULE SCREEN</H1>
7958 <H2>COMMANDS</H2>
7959 <!--chtml if pinemode="function_key"-->
7960 <PRE>
7961 Available  Commands                        
7962 -------------------------------            
7963 F1  Show Help Text
7964 F3  Exit without selecting anything
7965 F4  Select the highlighted rule
7966 F5  Move highlight to previous rule
7967 F6  Move highlight to next rule
7968 F7  Previous page of rules
7969 F8  Next page of rules
7970 F11 Print
7971 F12 WhereIs
7972 </PRE>
7973 <!--chtml else-->
7974 <PRE>
7975 Navigation                     General Alpine Commands
7976 -----------------------        ---------------------
7977  P  Prev Rule                   ?  Display this help text
7978  N  Next Rule                   E  Exit without selecting anything
7979  -  Previous page               %  Print
7980 Spc (space bar) Next page
7981  W  WhereIs
7983 Select Command
7984 ------------------------------------------------
7985  S  Select the highlighted rule
7986 </PRE>
7987 <!--chtml endif-->
7989 <H2>Description of the Select Rule Screen</H2>
7991 This screen just gives you an easy way to select a rule from all of your
7992 defined rules.
7993 The list of rules presented is the list of nicknames of all of the rules
7994 defined using Setup/Rules.
7995 For selecting messages, it is likely that the Indexcolor rules and possibly
7996 the Roles rules will be most useful.
7997 The others are there also, in case you find a use for them.
7999 In order for this to be useful for selecting messages, the nicknames of
8000 the rules have to be different.
8001 Alpine actually just gets the nickname of the rule that you select and then
8002 looks up that rule using the nickname.
8003 So if there are duplicate nicknames, the first rule that has that
8004 nickname will be used.
8006 <P><UL>
8007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8008 </UL>
8010 &lt;End of help on this topic&gt;
8011 </BODY>
8012 </HTML>
8013 ===== h_select_priority_screen =====
8014 <HTML>
8015 <HEAD>
8016 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8017 </HEAD>
8018 <BODY>
8019 <H1>SELECT A PRIORITY SCREEN</H1>
8020 <H2>COMMANDS</H2>
8021 <!--chtml if pinemode="function_key"-->
8022 <PRE>
8023 Available  Commands                        
8024 -------------------------------            
8025 F1  Show Help Text
8026 F3  Exit without selecting anything
8027 F4  Select the highlighted priority
8028 F5  Move highlight to previous priority
8029 F6  Move highlight to next priority
8030 F7  Previous page of priorities
8031 F8  Next page of priorities
8032 F11 Print
8033 F12 WhereIs
8034 </PRE>
8035 <!--chtml else-->
8036 <PRE>
8037 Navigation                     General Alpine Commands
8038 -----------------------        ---------------------
8039  P  Prev Priority               ?  Display this help text
8040  N  Next Priority               E  Exit without selecting anything
8041  -  Previous page               %  Print
8042 Spc (space bar) Next page
8043  W  WhereIs
8045 Select Command
8046 ------------------------------------------------
8047  S  Select the highlighted priority
8048 </PRE>
8049 <!--chtml endif-->
8051 <H2>Description of the Select Priority Screen</H2>
8053 This screen gives you a way to select a priority for the message you are sending.
8054 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8055 Some mail programs will display an indication of the priority level to
8056 the recipient of the message, some will ignore it.
8057 Even in cases where the mail programs of both the sender and the recipient
8058 agree on the meaning of this header, keep in mind that it is
8059 something that the sender sets so it is only an indication
8060 of the priority that the sender attaches to the mail.
8061 Alpine can be made to display an indication of this priority in incoming
8062 messages by use of one of the tokens
8063 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8064 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8065 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8067 <P><UL>
8068 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8069 </UL>
8071 &lt;End of help on this topic&gt;
8072 </BODY>
8073 </HTML>
8074 ===== h_select_keyword_screen =====
8075 <HTML>
8076 <HEAD>
8077 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8078 </HEAD>
8079 <BODY>
8080 <H1>SELECT A KEYWORD SCREEN</H1>
8081 <H2>COMMANDS</H2>
8082 <!--chtml if pinemode="function_key"-->
8083 <PRE>
8084 Available  Commands                        
8085 -------------------------------            
8086 F1  Show Help Text
8087 F3  Exit without selecting anything
8088 F4  Select the highlighted keyword
8089 F5  Move highlight to previous keyword
8090 F6  Move highlight to next keyword
8091 F7  Previous page of keywords
8092 F8  Next page of keywords
8093 F11 Print
8094 F12 WhereIs
8095 </PRE>
8096 <!--chtml else-->
8097 <PRE>
8098 Navigation                     General Alpine Commands
8099 -----------------------        ---------------------
8100  P  Prev Keyword                ?  Display this help text
8101  N  Next Keyword                E  Exit without selecting anything
8102  -  Previous page               %  Print
8103 Spc (space bar) Next page
8104  W  WhereIs
8106 Select Command
8107 ------------------------------------------------
8108  S  Select the highlighted keyword
8109 </PRE>
8110 <!--chtml endif-->
8112 <H2>Description of the Select Keyword Screen</H2>
8114 This screen just gives you an easy way to select a keyword.
8115 The list of keywords presented is the list of all keywords defined in your 
8116 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8117 If you have given a keyword a nickname, that nickname is displayed
8118 instead of the actual keyword.
8120 <P><UL>
8121 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8122 </UL>
8124 &lt;End of help on this topic&gt;
8125 </BODY>
8126 </HTML>
8127 ===== h_select_charset_screen =====
8128 <HTML>
8129 <HEAD>
8130 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8131 </HEAD>
8132 <BODY>
8133 <H1>SELECT A CHARACTER SET SCREEN</H1>
8134 <H2>COMMANDS</H2>
8135 <!--chtml if pinemode="function_key"-->
8136 <PRE>
8137 Available  Commands                        
8138 -------------------------------            
8139 F1  Show Help Text
8140 F3  Exit without selecting anything
8141 F4  Select the highlighted character set
8142 F5  Move highlight to previous character set
8143 F6  Move highlight to next character set
8144 F7  Previous page of character sets
8145 F8  Next page of character sets
8146 F11 Print
8147 F12 WhereIs
8148 </PRE>
8149 <!--chtml else-->
8150 <PRE>
8151 Navigation                     General Alpine Commands
8152 -----------------------        ---------------------
8153  P  Prev Character Set          ?  Display this help text
8154  N  Next Character Set          E  Exit without selecting anything
8155  -  Previous page               %  Print
8156 Spc (space bar) Next page
8157  W  WhereIs
8159 Select Command
8160 ------------------------------------------------
8161  S  Select the highlighted character set
8162 </PRE>
8163 <!--chtml endif-->
8165 <H2>Description of the Select A Character Set Screen</H2>
8167 This screen just gives you an easy way to select a character set from the
8168 set of character sets Alpine knows about.
8169 The list presented will vary slightly depending on what option you are
8170 selecting the character set for.
8172 <P><UL>
8173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8174 </UL>
8176 &lt;End of help on this topic&gt;
8177 </BODY>
8178 </HTML>
8179 ===== h_select_multcharsets_screen =====
8180 <HTML>
8181 <HEAD>
8182 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8183 </HEAD>
8184 <BODY>
8185 <H1>SELECT CHARACTER SETS SCREEN</H1>
8186 <H2>COMMANDS</H2>
8187 <!--chtml if pinemode="function_key"-->
8188 <PRE>
8189 Available  Commands
8190 -------------------------------            
8191 F1  Show Help Text
8192 F3  Exit without selecting anything
8193 F4  Select the highlighted charset (or chosen charsets in ListMode)
8194 F5  Move highlight to previous charset
8195 F6  Move highlight to next charset
8196 F7  Previous page of charsets
8197 F8  Next page of charsets
8198 F9  Toggle choices when using ListMode
8199 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8200 F11 Print
8201 F12 WhereIs
8202 </PRE>
8203 <!--chtml else-->
8204 <PRE>
8205 Navigation                     General Alpine Commands
8206 -----------------------        ---------------------
8207  P  Prev Charset                ?  Display this help text
8208  N  Next Charset                E  Exit without selecting anything
8209  -  Previous page               %  Print
8210 Spc (space bar) Next page
8211  W  WhereIs
8213 Select Command
8214 ------------------------------------------------
8215  S  Select the highlighted charset (or chosen charsets in ListMode)
8216  L  Turn on ListMode (makes it easy to choose multiple charsets)
8217  1  Turn off ListMode
8218  X  Toggle choices when using ListMode
8219 </PRE>
8220 <!--chtml endif-->
8222 <H2>Description of the Select Character Set Screen</H2>
8224 This screen just gives you an easy way to select a character set or a list of
8225 character sets.
8226 The list of character sets presented is the list of all character sets known to
8227 Alpine.
8228 You may select other character sets by typing them in directly.
8230 <P><UL>
8231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8232 </UL>
8234 &lt;End of help on this topic&gt;
8235 </BODY>
8236 </HTML>
8237 ===== h_select_multkeyword_screen =====
8238 <HTML>
8239 <HEAD>
8240 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8241 </HEAD>
8242 <BODY>
8243 <H1>SELECT KEYWORDS SCREEN</H1>
8244 <H2>COMMANDS</H2>
8245 <!--chtml if pinemode="function_key"-->
8246 <PRE>
8247 Available  Commands
8248 -------------------------------            
8249 F1  Show Help Text
8250 F3  Exit without selecting anything
8251 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8252 F5  Move highlight to previous keyword
8253 F6  Move highlight to next keyword
8254 F7  Previous page of keywords
8255 F8  Next page of keywords
8256 F9  Toggle choices when using ListMode
8257 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8258 F11 Print
8259 F12 WhereIs
8260 </PRE>
8261 <!--chtml else-->
8262 <PRE>
8263 Navigation                     General Alpine Commands
8264 -----------------------        ---------------------
8265  P  Prev Keyword                ?  Display this help text
8266  N  Next Keyword                E  Exit without selecting anything
8267  -  Previous page               %  Print
8268 Spc (space bar) Next page
8269  W  WhereIs
8271 Select Command
8272 ------------------------------------------------
8273  S  Select the highlighted keyword (or chosen keywords in ListMode)
8274  L  Turn on ListMode (makes it easy to choose multiple keywords)
8275  1  Turn off ListMode
8276  X  Toggle choices when using ListMode
8277 </PRE>
8278 <!--chtml endif-->
8280 <H2>Description of the Select Keyword Screen</H2>
8282 This screen just gives you an easy way to select a keyword or a list of
8283 keywords.
8284 The list of keywords presented is the list of all keywords defined in your 
8285 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8286 If you have given a keyword a nickname, that nickname is displayed
8287 instead of the actual keyword.
8289 <P><UL>
8290 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8291 </UL>
8293 &lt;End of help on this topic&gt;
8294 </BODY>
8295 </HTML>
8296 ===== h_select_incoming_to_monitor =====
8297 <HTML>
8298 <HEAD>
8299 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8300 </HEAD>
8301 <BODY>
8302 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8303 <H2>COMMANDS</H2>
8304 <!--chtml if pinemode="function_key"-->
8305 <PRE>
8306 Available  Commands
8307 -------------------------------            
8308 F1  Show Help Text
8309 F3  Exit without selecting anything
8310 F4  Select the marked folders
8311 F5  Move highlight to previous folder
8312 F6  Move highlight to next folder
8313 F7  Previous page of folders
8314 F8  Next page of folders
8315 F9  Toggle choices on or off
8316 F11 Print
8317 F12 WhereIs
8318 </PRE>
8319 <!--chtml else-->
8320 <PRE>
8321 Navigation                     General Alpine Commands
8322 -----------------------        ---------------------
8323  P  Prev Folder                 ?  Display this help text
8324  N  Next Folder                ^C  exit without changing anything
8325  -  Previous page               %  Print
8326 Spc (space bar) Next page
8327  W  WhereIs
8329 Select Command
8330 ------------------------------------------------
8331  S  Select the marked folders
8332  X  Toggle choices on or off
8333 </PRE>
8334 <!--chtml endif-->
8336 <H2>Description of the Select Folders to Check Screen</H2>
8338 This screen is only useful if the feature
8339 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8340 is set.
8341 By default, when you set that feature all of your incoming folders
8342 will be checked periodically for Unseen messages.
8343 By using this screen, you may restrict the set of monitored folders to
8344 a subset of all of the incoming folders.
8346 Mark the folders you want to monitor for Unseen messages with
8347 an &quot;X&quot;.
8348 When you've finished marking all your selections use the Select
8349 command to register your choices.
8350 To return to the default of checking all incoming folders
8351 delete all folders or unmark all folders.
8353 <P><UL>
8354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8355 </UL>
8357 &lt;End of help on this topic&gt;
8358 </BODY>
8359 </HTML>
8360 ===== h_role_select =====
8361 <HTML>
8362 <HEAD>
8363 <TITLE>ROLES SCREEN</TITLE>
8364 </HEAD>
8365 <BODY>
8366 <H1>ROLES SCREEN</H1>
8367 <H2>ROLES COMMANDS</H2>
8368 <!--chtml if pinemode="function_key"-->
8369 <PRE>
8370 Available  Commands                        
8371 -------------------------------            
8372 F1  Show Help Text
8373 F3  Exit without a selection
8374 F4  Select a role to use in composition
8375 F5  Move to previous role
8376 F6  Move to next role
8377 F7  Previous page of roles
8378 F8  Next page of roles
8379 F11 Change Default Role
8380 F12 Whereis (search role nicknames)
8381 </PRE>
8382 <!--chtml else-->
8383 <PRE>
8384 Navigation                     General Alpine Commands
8385 -----------------------        ---------------------
8386  P  Prev Role                     ?  Display this help text
8387  N  Next Role                     E  Exit without a selection
8388  -  Previous page
8389 Spc (space bar) Next page
8390  W  WhereIs (search for word in role nicknames)
8392 Select Role Commands
8393 ------------------------------------------------
8394  [Return]  Select highlighted role
8395  D         Change Default Role
8396 </PRE>
8397 <!--chtml endif-->
8399 <H2>Description of the Roles Screen</H2>
8401 With this screen you select a role to be used in the composition of a
8402 message.
8403 Use the Previous and Next commands to highlight the role you wish to
8404 use.
8405 When you type carriage return you will be placed in the composer using the highlighted role.
8407 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8408 available unless you set them up.
8409 You may do so by using the Setup/Rules command on the MAIN MENU.
8411 By using the D command, you may set a default role that will persist until
8412 you change it or until you exit Alpine.
8413 The D command toggles through three states: set the default role, unset the
8414 default role, and leave the default role as it is.
8415 <P><UL>
8416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8417 </UL>
8419 &lt;End of help on this topic&gt;
8420 </BODY>
8421 </HTML>
8422 ===== h_role_abook_select =====
8423 <HTML>
8424 <HEAD>
8425 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8426 </HEAD>
8427 <BODY>
8428 <H1>SELECT ADDRESS BOOK SCREEN</H1>
8429 <H2>COMMANDS</H2>
8430 <!--chtml if pinemode="function_key"-->
8431 <PRE>
8432 Available  Commands                        
8433 -------------------------------            
8434 F1  Show Help Text
8435 F3  Exit screen without selecting anything
8436 F4  Select highlighted address book
8437 F5  Move to previous address book
8438 F6  Move to next address book
8439 F7  Previous page of address books
8440 F8  Next page of address books
8441 F12 Whereis
8442 </PRE>
8443 <!--chtml else-->
8444 <PRE>
8445 Navigation                     General Alpine Commands
8446 -----------------------        ---------------------
8447  P  Previous addrbook          ?  Display this help text
8448  N  Next addrbook
8449  -  Previous page
8450 Spc (space bar) Next page
8451  W  WhereIs
8453 Select Role Commands
8454 ------------------------------------------------
8455  S  Select highlighted address book
8456  E  Exit screen without selecting anything
8457 </PRE>
8458 <!--chtml endif-->
8460 <H2>Description of the Select Address Book Screen</H2>
8462 This screen helps you select one of your address books.
8463 Use the Previous and Next commands to highlight the address book you wish to
8464 select.
8465 <P><UL>
8466 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8467 </UL>
8469 &lt;End of help on this topic&gt;
8470 </BODY>
8471 </HTML>
8472 ======== h_rule_patterns =============
8473 <HTML>
8474 <HEAD>
8475 <TITLE>PATTERNS</TITLE>
8476 </HEAD>
8477 <BODY>
8478 <H1>PATTERNS</H1>
8479 Patterns are used with Roles, Filtering, Index Coloring,
8480 Scoring, Other Rules, and Search Rules.
8481 Patterns are compared with a message to see if there is a match.
8482 For Filtering, the messages being checked are all the messages in the
8483 folder, one at a time.
8484 For Index Line Coloring, each message that is visible on the screen is
8485 checked for matches with the Index Coloring Patterns.
8486 Roles are used with the Reply, Forward, and Compose commands.
8487 For Reply, the message used to compare the Pattern with is the message
8488 being replied to;
8489 for Forward, the message used to compare the Pattern with is the message
8490 being forwarded;
8491 and for Compose, there is no message, so the parts of the Pattern that depend
8492 on a message (everything other than Current Folder Type and the
8493 Beginning of Month and Year)
8494 are not used.
8495 Only the Current Folder Type matters for Compose (plus the Beginning of
8496 Month or Year, which you wouldn't usually use for a Role).
8497 For Scoring, the message being scored is compared with all of the Score
8498 Patterns, and the Score Values from the ones that match are added together to 
8499 get the message's score.
8500 For Other Rules, there is no message. Only the Current Folder Type is checked
8501 for Other Rules.
8503 Each Pattern has several possible parts, all of which are optional.
8504 In order for there to be a match, <EM>ALL</EM> of the
8505 <EM>defined</EM> parts of the Pattern must match the message.
8506 If a part is not defined it is considered a match, but note that a filtering
8507 Pattern must have at least one defined part or it will be ignored.
8508 For example, if the To pattern is not defined it will be
8509 displayed as
8511 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
8513 That is considered a match because it is not defined.
8514 This means that the Pattern with nothing defined is a match if the
8515 Current Folder Type matches, but there is an exception that was mentioned
8516 in the previous paragraph.
8517 Because filtering is a potentially destructive action, filtering Patterns
8518 with nothing other than Current Folder Type defined are ignored.
8519 If you really want a filtering Pattern to match all messages (subject to
8520 Current Folder Type) the best way to do it is to define a Score interval
8521 that includes all possible scores.
8522 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
8523 This can be used even if you haven't defined any rules to Set Scores.
8525 There are six predefined header patterns called the To, From, Sender, Cc, News,
8526 and Subject patterns.
8527 Besides those six predefined header patterns, you may add
8528 additional header patterns with header fieldnames of your choosing.
8529 You add an extra header pattern by placing the cursor on one of the
8530 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
8531 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
8532 and the Partic pattern is a header pattern that stands for
8533 Participant (From OR To OR Cc).
8534 (Defining the Recip pattern does not have the same effect as defining both
8535 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
8536 Similar to the header patterns are the AllText pattern and the BodyText pattern.
8537 Instead of comparing this pattern's text against only the contents of
8538 a particular header field, the text for the AllText pattern is compared
8539 with text anywhere in the message's header or body, and the text for the
8540 BodyText pattern is compared with text anywhere in the message's body.
8542 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
8543 &quot;!&quot; &quot;toggle NOT&quot; command.
8544 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8545 &quot;!&quot; at the beginning of the pattern line.
8546 When the &quot;!&quot; is present, it reverses the meaning of the match.
8547 That is, if the pattern matches then it is considered to NOT be a match, and
8548 if it does not match it is considered to be a match.
8550 Don't make the mistake of putting the &quot;!&quot; in the data field for
8551 a pattern.
8552 For example, if you type the characters &quot;!urgent&quot; into the Subject
8553 pattern, the pattern will look like:
8555 <PRE>
8556  Subject pattern = !urgent
8557 </PRE>
8559 This means you want to match the 7 character sequence &quot;!urgent&quot;.
8560 In order to match messages that do not have &quot;urgent&quot; in
8561 their Subject field, first type the characters &quot;urgent&quot; followed
8562 by carriage return for the value of the Subject pattern, then negate it
8563 by typing the &quot;!&quot; command.
8564 It should look like
8566 <PRE>
8567  ! Subject pattern = urgent
8568 </PRE>
8570 The contents of each of these header patterns (or the AllText or BodyText patterns) may
8571 be a complete email address, part of an address, or a random set of
8572 characters to match against.
8573 It may also be a list of such patterns, which means you
8574 are looking for a match against the first pattern in the list <EM>OR</EM>
8575 the second pattern <EM>OR</EM> the third and so on.
8576 For example, a Subject pattern equal to
8578 <PRE>
8579  Subject pattern = urgent
8580                    emergency
8581                    alert
8582 </PRE>
8584 would match all messages with a subject that contained at least one
8585 of those words.
8586 It would also match subjects containing the words &quot;alerts&quot; or
8587 &quot;Urgently&quot;.
8589 The same example with &quot;NOT&quot; turned on would be
8591 <PRE>
8592  ! Subject pattern = urgent
8593                      emergency
8594                      alert
8595 </PRE>
8597 which would match all messages with a subject that did <EM>NOT</EM> contain any of
8598 those words.
8599 You can use the &quot;Add Value&quot; command to add new words to the list,
8600 or you can enter them as a comma-separated list.
8602 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
8603 present for a match.
8604 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
8605 pattern2 must be present,
8606 and that is exactly what using a list does.)
8608 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
8609 also part of the Pattern, although the &quot;Score Interval&quot; is not used
8610 when checking for matches for Scoring.
8611 There are five similar settings that relate to the status of the message.
8612 These settings rely on the message being New or not, Deleted or not,
8613 Answered or not, Important or not, and Recent or not.
8614 There are also some other miscellaneous settings.
8615 The first is the Age of the message in days.
8616 Another is the Size of the message, in bytes.
8617 The third is a setting that detects whether or not the Subject of a
8618 message contains raw 8-bit characters (unencoded characters with the most
8619 significant bit set).
8620 There is a setting that detects whether or not this is the first time
8621 Alpine has been run this month (doesn't depend on individual messages),
8622 and another that detects whether or not this is the first time Alpine has
8623 been run this year.
8624 Other parts of the Pattern detect whether or not the From address of a
8625 message appears in your address book, whether or not certain keywords
8626 are set for a message, and whether or not certain character sets are
8627 used in a message.
8629 <H2>Parts of a Pattern</H2>
8631 <H3>Header patterns</H3>
8633 A header pattern is simply text that is searched for in the corresponding
8634 header field.
8635 For example, if a Pattern has a From header pattern with the value
8636 &quot;@company.com&quot;, then only messages that have a From header
8637 that contains the text &quot;@company.com&quot; will be possible
8638 matches.
8639 Matches don't have to be exact.
8640 For example, if the relevant field of a message contains the text
8641 &quot;mailbox@domain&quot; somewhere
8642 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
8643 &quot;mailbox@domain&quot; are all matches.
8645 All parts of the Pattern must match so, for example,
8646 if a message matches a defined
8647 From pattern, it still must be checked against the other parts of the
8648 Pattern that have been defined.
8649 The To header pattern is a slightly special case.
8650 If the message being checked has a Resent-To header
8651 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
8652 there are used in place of the addresses in the To header.
8653 This is only true for the To header.
8654 Resent-cc and Resent-From headers are never used unless you add them
8655 with the eXtraHdrs command.
8657 The meaning of a header pattern may be negated with the
8658 &quot;!&quot; &quot;toggle NOT&quot; command.
8659 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8660 &quot;!&quot; at the beginning of the pattern line.
8661 It would look something like
8663 <PRE>
8664  ! From pattern = susan@example.com
8665 </PRE>
8667 When the &quot;!&quot; is present, it reverses the meaning of the match.
8669 If you want to check for the presence of a header field but don't care
8670 about its value, then
8671 the empty pattern that you get by entering a pair of
8672 double quotes (&quot;&quot;) should match any message that
8673 has the corresponding header field.
8675 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
8677 AllText patterns are just like header patterns except that the text is
8678 searched for anywhere in the message's headers or body, not just in the
8679 contents of a particular header field.
8682 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
8684 BodyText patterns are just like header patterns except that the text is
8685 searched for anywhere in the message's body, not just in the
8686 contents of a particular header field.
8689 If there is more than one header pattern or AllText pattern or BodyText pattern
8690 for which you want to take the
8691 same action there is a shorthand notation that may be used.
8692 Any of these patterns may be a list of patterns instead of
8693 just a single pattern.
8694 If any one of the patterns in the list matches the message
8695 then it is considered a match.
8696 For example, if &quot;company1&quot; and &quot;company2&quot; both required
8697 you to use the same role when replying to messages, you might have
8698 a To pattern that looks like
8700 <PRE>
8701  To pattern = company1.com
8702               company2.com
8703 </PRE>
8705 This means that if the mail you are replying to was addressed to
8706 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
8707 then this Pattern is a match and the same actions will be taken.
8709 The meaning of an AllText or BodyText pattern may be negated with the
8710 &quot;!&quot; &quot;toggle NOT&quot; command.
8711 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8712 &quot;!&quot; at the beginning of the pattern line.
8713 When the &quot;!&quot; is present, it reverses the meaning of the match.
8715 A technicality: Since comma is the character used to separate multiple values
8716 in any of the fields that may have multiple values (such as header patterns,
8717 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
8718 you must escape comma with a
8719 backslash (&#92;) if you want to include a literal comma in one of those fields.
8720 In other words, if you type a backslash followed by a comma it will
8721 be interpreted as a comma by Alpine, instead of as a separator between
8722 pattern values.
8723 All other backslashes (those not followed by a comma) are literal
8724 backslashes and should not be escaped.
8725 It's unlikely you'll ever need to enter a literal comma or backslash in
8726 any of the patterns.
8728 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
8730 The &quot;Current Folder Type&quot; may be set to one of four different
8731 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
8732 &quot;Specific&quot;.
8733 If the value is set to &quot;News&quot;, then the
8734 Pattern will only match if the currently open folder is a newsgroup.
8735 The value &quot;Email&quot; only matches if the current folder is not news and
8736 the value &quot;Any&quot; causes any folder to match.
8737 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
8738 then you must fill in a value for &quot;Folder&quot;, which is on the line
8739 below the &quot;Specific&quot; line.
8740 In this case you will only get a match if the currently open folder is
8741 the specific folder you list.
8742 You may give a list of folders instead of just a single
8743 folder name, in which case the Pattern will match if the open folder is
8744 any one of the folders in the list.
8745 The name of each folder in the list may be either &quot;INBOX&quot;,
8746 the technical specification
8747 of the folder (like what appears in your configuration file) or, if the
8748 folder is one of your incoming folders, it may be the nickname you've given
8749 the folder.
8750 Here are some samples of specific folder names:
8752 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
8754 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
8756 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
8758 The easiest way to fill in the &quot;Folder&quot; field is to use
8759 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
8760 highlighted, or to use the &quot;Take&quot; command with the configuration
8761 feature
8762 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
8763 turned on.
8765 When reading a newsgroup, there may be a performance penalty
8766 incurred when collecting the information necessary to check whether
8767 or not a Pattern matches a message.
8768 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
8769 If you have Patterns with a Current Folder Type of either
8770 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
8771 Index Line Coloring or Scoring, you may experience
8772 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
8774 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
8776 The &quot;Age Interval&quot; may be set to an interval of message
8777 ages that should be considered a match.
8778 Like the other parts of the Pattern, if it is unset it will be ignored.
8779 The Age Interval looks like
8781 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
8783 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
8784 than or equal to zero.
8785 The special value &quot;INF&quot; may be used for
8786 the max value. It represents infinity.
8788 Actually, this option may be defined as a list of intervals instead
8789 of just a single interval.
8790 The list is separated by commas.
8791 It can look like
8793 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
8795 When there is an Age Interval defined, it is a match if the age, in days, of
8796 the message is contained in any of the intervals.
8797 The intervals include both endpoints.
8799 Even though this option is called Age, it isn't actually
8800 the <EM>age</EM> of the message.
8801 Instead, it is how many days ago the message arrived in one of your folders.
8802 If the current time is a little past midnight, then a message that arrived
8803 just before midnight arrived yesterday, even though the message is only
8804 a few minutes old.
8805 By default, the date being used is not the date in the Date
8806 header of the message.
8807 It is the date that the message arrived in one of your folders.
8808 When you Save a message from one folder to another that arrival date
8809 is preserved.
8810 If you would like to use the date in the Date header that is possible.
8811 Turn on the option
8812 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
8813 near the bottom of the rule definition.
8814 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
8816 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
8818 The &quot;Size Interval&quot; may be set to an interval of message
8819 sizes that should be considered a match.
8820 Like the other parts of the Pattern, if it is unset it will be ignored.
8821 The Size Interval looks like
8823 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
8825 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
8826 than or equal to zero.
8827 The special value &quot;INF&quot; may be used for
8828 the max value. It represents infinity.
8830 Actually, this option may be defined as a list of intervals instead
8831 of just a single interval.
8832 The list is separated by commas.
8833 It can look like
8835 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
8837 When there is a Size Interval defined, it is a match if the size, in bytes, of
8838 the message is contained in any of the intervals.
8839 The intervals include both endpoints.
8841 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
8843 The &quot;Score Interval&quot; may be set to an interval of message
8844 scores that should be considered a match.
8845 Like the other parts of the Pattern, if it is unset it will be ignored.
8846 The Score Interval looks like
8848 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
8850 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
8851 negative integers, with min_score less than or equal to max_score.
8852 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
8853 the min and max values to represent negative and positive infinity.
8855 Actually, a list of intervals may be used if you wish.
8856 A list would look like
8858 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
8860 When there is a Score Interval defined, it is a match if the score for
8861 the message is contained in any of the intervals in the list.
8862 The intervals include the endpoints.
8863 The score for a message is calculated by looking at every Score rule defined and
8864 adding up the Score Values for the ones that match the message.
8865 When deciding whether or not a Pattern matches a message for purposes of
8866 calculating the score, the Score Interval is ignored.
8868 <H3><A NAME="pattern_message_status">Message Status</A></H3>
8870 There are five separate message status settings.
8871 By default, all five are set to the value &quot;Don't care&quot;, which
8872 will match any message.
8873 The value &quot;Yes&quot; means that the particular status must be true
8874 for a match, and the value &quot;No&quot; means that the particular
8875 status must not be true for a match.
8876 For example, one of the five Message Status settings is whether a message
8877 is marked Important or not.
8878 A &quot;Yes&quot; means that the message must be Important to be
8879 considered a match and &quot;No&quot; means that the message must not be
8880 Important to be considered a match.
8881 The same is true of the other four message status settings that depend
8882 on whether or not the message is New; whether the message has 
8883 been Answered or not; whether the message has been Deleted or not, and
8884 whether the message is Recent or not. 
8886 The nomenclature for New and Recent is a bit confusing:
8888 New means that the message is Unseen.
8889 It could have been in your mailbox for a long time but if you haven't looked
8890 at it, it is still considered New.
8891 That matches the default Alpine index display that shows an N for such a
8892 message.
8894 Recent means that the message was added to this folder since the last time
8895 you opened the folder.
8896 Alpine also shows an N by default for these types of messages.
8897 If you were to run two copies of Alpine that opened a folder one right after
8898 the other, a message would only show up as Recent in (at most) the first
8899 Alpine session.
8901 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
8903 Keywords are similar to Message Status, but they are chosen by the user.
8904 Provided the mail server allows for it, you may add a set of possible keywords
8905 to a folder and then you may set those keywords or not for each message
8906 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
8907 The syntax of this part of the Pattern is similar to the header patterns.
8908 It is a list of keywords.
8909 The Keyword part of the Pattern is a match if the message has any of
8910 the keywords in the list set.
8911 Like other parts of the Pattern, if this is unset it will be ignored.
8913 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
8915 A message may use one or more character sets.
8916 This part of the Pattern matches messages that make use of one or more of
8917 the character sets specified in the pattern.
8918 It will be considered a match if a message uses any of the character
8919 sets in the list you give here.
8922 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
8923 GB2312) you may also use some shorthand names that Alpine provides.
8924 These names are more understandable shorthand names for sets of 
8925 character set names.
8926 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
8927 Selecting one of these shorthand names is equivalent to selecting all of
8928 the character sets that make up the set.
8929 You can see all of these shorthand names and the lists of character sets
8930 they stand for by typing the &quot;T&quot; command with the Character
8931 Set pattern highlighted.
8932 The syntax of this part of the Pattern is similar to the header patterns
8933 and the Message Keywords pattern.
8934 It is a list of character sets (or shorthand names).
8935 The Character Set part of the Pattern is a match if the message uses any
8936 of the character sets in the list.
8937 Like other parts of the Pattern, if this is unset it will be ignored.
8939 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
8941 It seems that lots of unwanted email contains unencoded 8-bit characters
8942 in the Subject.
8943 Normally, characters with the 8th bit set are not allowed in the Subject
8944 header unless they are MIME-encoded.
8945 This option gives you a way to match messages that have Subjects that
8946 contain unencoded 8-bit characters.
8947 By default, the value of this option is &quot;Don't care&quot;, which
8948 will match any message.
8949 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
8950 the Subject of the message in order for there to be a match,
8951 and the value &quot;No&quot; is the opposite.
8952 Setting this option will affect performance in large folders because the
8953 subject of each message in the folder has to be checked.
8955 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
8957 This option gives you a way to take some action once per month.
8958 By default, the value of this option is &quot;Don't care&quot;, which
8959 will always match.
8960 The value &quot;Yes&quot; means that this must be the first time Alpine has
8961 been run this month in order to count as a match,
8962 and the value &quot;No&quot; is the opposite.
8964 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
8966 This option gives you a way to take some action once per year.
8967 By default, the value of this option is &quot;Don't care&quot;, which
8968 will always match.
8969 The value &quot;Yes&quot; means that this must be the first time Alpine has
8970 been run this year in order to count as a match,
8971 and the value &quot;No&quot; is the opposite.
8973 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
8975 This option gives you a way to match messages that have an address
8976 that is in one of your address books.
8977 Only the simple entries in your address books are searched.
8978 Address book distribution lists are ignored!
8979 By default, the value of this option is &quot;Don't care&quot;, which
8980 will match any message.
8981 The value &quot;Yes, in any address book&quot; means the address
8982 from the message must be in at least one of your
8983 address books in order to be a match.
8984 The value &quot;No, not in any address book&quot;
8985 means none of the addresses may
8986 be in any of your address books in order to be a match.
8987 The values &quot;Yes, in specific address books&quot; and
8988 &quot;No, not in any of specific address books&quot; are similar but instead
8989 of depending on all address books you are allowed to give a list of address
8990 books to look in.
8991 The addresses from the message that are checked for are determined by the
8992 setting you have for &quot;Types of addresses to check for in address book&quot;.
8993 If you set this to &quot;From&quot; the From address from the message will
8994 be looked up in the address book.
8995 If you set it to only &quot;To&quot; then the To addresses will be used.
8996 If any of the To addresses are in the address book then it is considered
8997 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
8998 You could set it to both From and To, in which case all of the From and To
8999 addresses are used.
9000 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9001 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9002 exists or the From address if there is no Reply-To address.
9003 Same for the Sender address.
9004 Setting this option may affect performance in large folders because the
9005 From and Reply-To of each message in the folder have to be checked.
9007 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9009 This is a command that is run with its standard input set to the message
9010 being checked and its standard output discarded.
9011 The full directory path should be specified.
9012 The command will be run and then its exit status will be checked against
9013 the Exit Status Interval, which defaults to just the value zero.
9014 If the exit status of the command falls in the interval, it is considered
9015 a match, otherwise it is not a match.
9018 This option may actually be a list of commands.
9019 The first one that exists and is executable is used.
9020 That makes it possible to use the same configuration with Unix Alpine and
9021 PC-Alpine.
9024 If none of the commands in the list exists and is executable then the rule
9025 is <EM>not</EM> a match.
9026 If it is possible that the command may not exist, you should be careful
9027 to structure your rules so that nothing destructive
9028 happens when the command does not exist.
9029 For example, you might have a filter that filters away spam when there is
9030 a match but does nothing when there is not a match.
9031 That would continue to work correctly if the command didn't exist.
9032 However, if you have a filter that filters away spam when there is not
9033 a match and keeps it when there is a match, that would filter everything
9034 if the categorizer command didn't exist.
9036 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9037 setup for the bogofilter filter.
9040 &lt;End of help on this topic&gt;
9041 </BODY>
9042 </HTML>
9043 ===== h_rules_roles =====
9044 <HTML>
9045 <HEAD>
9046 <TITLE>SETUP ROLES SCREEN</TITLE>
9047 </HEAD>
9048 <BODY>
9049 <H1>SETUP ROLES SCREEN</H1>
9050 <H2>SETUP ROLES COMMANDS</H2>
9051 <!--chtml if pinemode="function_key"-->
9052 <PRE>
9053 Available  Commands -- Group 1         Available Commands -- Group 2   
9054 -------------------------------        ------------------------------  
9055 F1  Show Help Text                      F1  Show Help Text             
9056 F2  See commands in next group          F2  See commands in next group
9057 F3  Back to MAIN Alpine menu
9058 F4  Change configuration for role
9059 F5  Move to previous role               F5  Include file in role config
9060 F6  Move to next role                   F6  Exclude file from config
9061 F7  Previous page of roles
9062 F8  Next page of roles
9063 F9  Add new role                        F9  Replicate existing role
9064 F10 Delete existing role
9065 F11 Shuffle the order of roles
9066 F12 Whereis (search role nicknames)
9067 </PRE>
9068 <!--chtml else-->
9069 <PRE>
9070 Navigation                     General Alpine Commands
9071 -----------------------        ---------------------
9072  P  Prev Role                     ?  Display this help text
9073  N  Next Role                     E  Back to MAIN Alpine menu
9074  -  Previous page
9075 Spc (space bar) Next page
9076  W  WhereIs (search for word in role nicknames)
9078 Setup Roles Commands
9079 ------------------------------------------------
9080  A  Add new role                  $  Shuffle the order of roles
9081  D  Delete existing role          C  Change configuration for highlighted role
9082  R  Replicate existing role
9083  I  Include file in role config   X  Exclude file from role config
9084 </PRE>
9085 <!--chtml endif-->
9087 <H2>Description of the Setup Roles Screen</H2>
9089 This screen lets you add, delete, modify, or change the order of the rules
9090 that determine the role you are playing when composing a message.
9092 You may play different roles depending on who you are replying to.
9093 For example, if you are replying to a message addressed to help-desk you
9094 may be acting as a Help Desk Worker.
9095 That role may require that you use a different return address and/or
9096 a different signature.
9098 Roles are optional.
9099 If you set up roles they work like this:  Each role has a set of
9100 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9101 considered for a particular use; a &quot;Pattern&quot;,
9102 which is used to decide which of the eligible roles is used; and a set
9103 of &quot;Actions&quot;, which are taken when that role is used.
9104 When you reply to a message, the message you are replying to is compared
9105 with the Patterns of the roles marked as eligible for use when replying.
9106 The comparisons start with the first eligible role and keep going until there
9107 is a match.
9108 If a match is found, the matching role's Actions are taken.
9110 It is also possible to set a default role and to change that role during
9111 your Alpine session.
9112 When you start Alpine no default role will be set.
9113 You may set or change the current default role by using the &quot;D&quot;
9114 command in the role selection screen.
9115 You'll see that screen while composing a message and being asked to select
9116 a role.
9117 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9118 compose a message.
9119 You may find a default role useful if you normally perform the duties of one
9120 of your roles for a while, then you switch to another role and stay in the
9121 new role for another period of time.
9122 It may be easier than using the Role Command to select the role each time you
9123 compose a message.
9125 <H2>Role Uses</H2>
9127 There are three types of use to be configured;
9128 one for Replying, one for Forwarding, and one for Composing.
9129 These indicate whether or not you want a role to be considered when you
9130 type the Reply, Forward, or Compose commands.
9131 (The Role command is an alternate form of the Compose command, and it is
9132 not affected by these settings.)
9133 Each of these Use types has three possible values.
9134 The value &quot;Never&quot;
9135 means that the role will never be considered as a candidate for use with
9136 the corresponding command.
9137 For example, if you set a role's Reply Use to Never, then when you Reply to
9138 a message, that role won't even be considered.
9139 (That isn't quite true. If the message you are replying to matches some other
9140 role that requires confirmation,
9141 then there will be a ^T command available which allows you to select a role
9142 from all of your roles, not just the reply-eligible roles.)
9145 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9146 both mean that you do want to consider this role when using the corresponding
9147 command.
9148 For either of these settings the role's Pattern will
9149 be checked to see if it matches the message.
9150 For Reply Use, the message used to compare the Pattern with is the message
9151 being replied to.
9152 For Forward Use, the message used to compare the Pattern with is the message
9153 being forwarded.
9154 For Compose Use, there is no message, so the parts of the Pattern that depend
9155 on a message (everything other than Current Folder Type) are ignored.
9156 In all cases, the Current Folder Type is checked if defined.
9157 If there is a match then this role will either be used without confirmation
9158 or will be the default when confirmation is asked for, depending on
9159 which of the two options is selected.
9160 If confirmation is requested, you will have a chance to
9161 choose No Role instead of the offered role, or to
9162 change the role to any one of your other roles (with the ^T command).
9164 <H2>Role Patterns</H2>
9166 In order to determine whether or not a message matches a role the message is
9167 compared with the Role's Pattern.
9168 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9169 Scoring, Other Rules, and Search Rules, so are described in only one place,
9170 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9172 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9173 a role that has all header patterns unset, the AllText pattern unset,
9174 the BodyText pattern unset,
9175 the Score Interval unset, and the Current Folder Type set to
9176 &quot;Any&quot; may be used as a default role.
9177 It should be put last in the list of roles since the matching
9178 starts at the beginning and proceeds until one of the roles is a match.
9179 If no roles at all match, then Alpine will
9180 use its regular methods of defining the role.
9181 If you wanted to, you could define a different &quot;default&quot; role
9182 for Replying, Forwarding, and Composing by setting the
9183 &quot;Use&quot; fields appropriately.
9185 <H2>Role Actions</H2>
9187 Once a role match is found, the role's Actions are taken.
9188 For each role there are several possible actions that may be defined.
9189 They are actions to set the From address, the Reply-To address,
9190 the Fcc, the Signature, the Template file, and Other Headers.
9192 <H3>Set From</H3>
9194 The From address is the address used on the From line of the message
9195 you are sending.
9197 <H3>Set Reply-To</H3>
9199 The Reply-To address is the address used on the Reply-To line of the message
9200 you are sending.
9201 You don't need a Reply-To address unless it is different from the From address.
9203 <H3>Set Other Headers</H3>
9205 If you want to set the value of the From or Reply-To headers, use
9206 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9207 If you want to set the values of other headers, use this field.
9208 This field is similar to the
9209 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9210 Each header you specify here must include the header tag
9211 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9212 and may optionally include a value for that header.
9213 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9214 for a header here will replace any value that already exists.
9215 For example, if you are Replying to a message there will be at least one
9216 address in the To header (the address you are Replying to).
9217 However, if you Reply using a role that sets the To header, that role's
9218 To header value will be used instead.
9220 <H3>Set Fcc</H3>
9222 The Fcc is used as the Fcc for the message you are sending.
9224 <H3>Set Signature or Set LiteralSig</H3>
9226 The Signature is the name of a file to be used as the signature file when
9227 this role is being used.
9228 If the name of the file has a vertical bar following it (|)
9229 then it is assumed that the file is a program that should be run to
9230 produce the signature.
9231 If the LiteralSig is set, then it is used instead of the signature file.
9232 LiteralSig is just a different way to store the signature.
9233 It is stored in the pine configuration file instead of in a separate
9234 signature file.
9235 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9236 either in the role or as the default signature in the Setup/Config screen,
9237 then the signature file is ignored.
9239 <H3>Set Template</H3>
9241 A Template is the name of a file to be included in the message when this
9242 role is being used.
9243 If the name of the file has a vertical bar following it (|)
9244 then it is assumed that the file is a program that should be run to
9245 produce the template.
9248 Both signature files and template files may be stored remotely on an IMAP
9249 server.
9250 In order to do that you just give the file a remote name.
9251 This works just like the regular
9252 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9253 option that is configured from the Setup/Configuration screen.
9254 A remote signature file name might look like:
9256 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9258 Once you have named the remote signature or template file you create its
9259 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9260 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9261 line of the role editor.
9264 Both signature files and template files (or the output of signature programs
9265 and template file programs) may contain special tokens
9266 that are replaced with contents
9267 that depend on the message being replied to or forwarded.
9268 See the help for the individual fields inside the role editor for more
9269 information on tokens.
9271 <H3>Use SMTP Server</H3>
9273 If this field has a value, then it will be used as the SMTP server
9274 to send mail when this role is being used (unless the SMTP server variable
9275 is set in the system-wide fixed configuration file).
9276 It has the same semantics as the
9277 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9278 variable in the Setup/Config screen.
9279 When you postpone the composition this SMTP server list will be saved
9280 with the postponed composition and it cannot be changed later.
9281 Because of that, you may want to make this a list of SMTP servers
9282 with the preferred server at the front of the list and alternate servers
9283 later in the list.
9286 If any of the actions are left unset, then the action depends on what
9287 is present in the &quot;Initialize settings using role&quot; field.
9288 If you've listed the nickname of another one of your roles there, then the
9289 corresponding action from that role will be used here.
9290 If that action is also blank, or if there is no nickname specified,
9291 then Alpine will do whatever it normally does to set these actions.
9292 This depends on other configuration options and features you've set.
9294 <H2>Command Descriptions</H2>
9296 <H3>Add</H3>
9298 The Add command is used to add a new role definition to your set of
9299 roles.
9300 The new role will be added after the highlighted role.
9302 <H3>Delete</H3>
9304 The Delete command deletes the currently highlighted role.
9306 <H3>Change</H3>
9308 The Change command lets you edit the nickname, Uses, Pattern,
9309 and Actions of the currently highlighted role.
9311 <H3>Shuffle</H3>
9313 The Shuffle command allows you to change the order of the roles.
9314 You may move the currently highlighted role up or down in the list.
9315 The order of the roles is important since the roles are tested for a
9316 match starting with the first role and continuing until a match is found.
9317 You should place the roles with more specific Patterns near the beginning
9318 of the list, and those with more general Patterns near the end so that
9319 the more specific matches will happen when appropriate.
9321 <H3>Replicate</H3>
9323 The Replicate command is used to copy an existing role and modify it.
9324 The new role will be added after the highlighted role.
9326 <H3>IncludeFile</H3>
9328 The IncludeFile command allows you to add a roles file to your configuration.
9329 Usually, your roles will be contained in your Alpine configuration file.
9330 If you wish, some or all of your roles may be stored in a separate file.
9331 If a roles file already exists (maybe it was made by somebody else using
9332 Alpine), you may insert it before the currently highlighted role.
9333 You may also insert an empty file or a file that does not yet exist.
9334 Once you have an empty roles file in your configuration, you may use
9335 the Shuffle command to move roles into it.
9336 In fact, that's the only way to get the initial role into the file.
9338 <H3>eXcludeFile</H3>
9340 The eXcludeFile command removes a roles file from your roles configuration.
9341 A limitation of the program is that in order to exclude a roles file
9342 that file must have at least one role
9343 in it, otherwise you won't be able to highlight a line in the file.
9344 So you may have to add a dummy role to the file in order to exclude the file.
9345 <P><UL>
9346 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9347 </UL>
9349 &lt;End of help on this topic&gt;
9350 </BODY>
9351 </HTML>
9352 ===== h_rules_other =====
9353 <HTML>
9354 <HEAD>
9355 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9356 </HEAD>
9357 <BODY>
9358 <H1>SETUP OTHER RULES SCREEN</H1>
9359 <H2>SETUP OTHER RULES COMMANDS</H2>
9360 <!--chtml if pinemode="function_key"-->
9361 <PRE>
9362 Available  Commands -- Group 1         Available Commands -- Group 2   
9363 -------------------------------        ------------------------------  
9364 F1  Show Help Text                      F1  Show Help Text             
9365 F2  See commands in next group          F2  See commands in next group
9366 F3  Back to MAIN Alpine menu
9367 F4  Change configuration for rule
9368 F5  Move to previous rule               F5  Include file in rule config
9369 F6  Move to next rule                   F6  Exclude file from config
9370 F7  Previous page of rules
9371 F8  Next page of rules
9372 F9  Add new rule                        F9  Replicate existing rule
9373 F10 Delete existing rule
9374 F11 Shuffle the order of rules
9375 F12 Whereis (search rule nicknames)
9376 </PRE>
9377 <!--chtml else-->
9378 <PRE>
9379 Navigation                     General Alpine Commands
9380 -----------------------        ---------------------
9381  P  Prev rule                     ?  Display this help text
9382  N  Next rule                     E  Back to MAIN Alpine menu
9383  -  Previous page
9384 Spc (space bar) Next page
9385  W  WhereIs (search for word in rule nicknames)
9387 Setup Other Rules Commands
9388 ------------------------------------------------
9389  A  Add new rule                  $  Shuffle the order of rules
9390  D  Delete existing rule          C  Change configuration for highlighted rule
9391  R  Replicate existing rule
9392  I  Include file in rule config   X  Exclude file from rule config
9393 </PRE>
9394 <!--chtml endif-->
9396 <H2>Description of the Setup Other Rules Screen</H2>
9398 This is where you may set various actions that do not fit well into the
9399 other Rules categories.
9401 <H2>Patterns</H2>
9403 Other Rules are a little different from the rest of the Rules because
9404 they depend only on the current folder, and not on a particular message.
9405 In order to determine whether or not a rule's actions should be applied
9406 the current folder is compared with the rule's Pattern, which consists
9407 of only the Current Folder Type.
9408 Current Folder Type works the same for Other Rules as it does for Roles,
9409 Filtering, Index Coloring, and Scoring.
9410 Keep in mind that the only part of the Pattern that applies to Other
9411 Rules is the Current Folder Type when looking at the description of
9412 Patterns given
9413 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9415 <H2>The Actions</H2>
9417 <H3>Set Sort Order</H3>
9419 When you enter a new folder, these rules will be checked to see if you
9420 have set a sort order that is different from your default sort order.
9421 The default is set in the Setup/Config screen with
9422 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9423 If the Sort Order action is set, then the folder will be displayed sorted in
9424 that sort order instead of in the default order.
9426 A possible point of confusion arises when you change the configuration
9427 of the Sort Order for the currently open folder.
9428 The folder will normally be re-sorted when you go back to viewing the
9429 index.
9430 However, if you have manually sorted the folder with the
9431 Sort
9432 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9433 command, then it will not be re-sorted until the next time it is opened.
9435 <H3>Set Index Format</H3>
9437 When you enter a new folder, these rules will be checked to see if you
9438 have set an Index Format that is different from your default Index Format,
9439 which is set with the
9440 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9441 If so, the index will be displayed with this format instead of the default.
9443 <H3>Set Startup Rule</H3>
9445 When you enter a new folder, these rules will be checked to see if you
9446 have set a startup rule that is different from the default startup rule.
9447 The default for incoming folders is set in the Setup/Config screen with
9448 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9449 The default for folders other than INBOX that are not part of your
9450 incoming collection
9451 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9452 is to start with the last message in the folder.
9453 If the Startup Rule is set to something other than &quot;default&quot;,
9454 then the rule will determine which message will be the current message when
9455 the folder is first opened.
9457 The various startup rule possibilities work the same here as they do in
9458 the incoming collection, so check
9459 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9460 for more help.
9462 <H2>Command Descriptions</H2>
9464 <H3>Add</H3>
9466 The Add command is used to add a new rule definition to your set of
9467 rules.
9468 The new rule will be added after the highlighted rule.
9470 <H3>Delete</H3>
9472 The Delete command deletes the currently highlighted rule.
9474 <H3>Change</H3>
9476 The Change command lets you edit the nickname, Pattern,
9477 and Action of the currently highlighted rule.
9479 <H3>Shuffle</H3>
9481 The Shuffle command allows you to change the order of the rules.
9482 You may move the currently highlighted rule up or down in the list.
9483 The order of the rules is important since the rules are tested for a
9484 match starting with the first rule and continuing until a match is found.
9485 You should place the rules with more specific Patterns near the beginning
9486 of the list, and those with more general Patterns near the end so that
9487 the more specific matches will happen when appropriate.
9489 <H3>Replicate</H3>
9491 The Replicate command is used to copy an existing rule definition and modify it.
9492 The new rule will be added after the highlighted rule.
9494 <H3>IncludeFile</H3>
9496 The IncludeFile command allows you to add a rules file to your configuration.
9497 Usually, your rules will be contained in your Alpine configuration file.
9498 If you wish, some or all of your rules may be stored in a separate file.
9499 If a rules file already exists (maybe it was made by somebody else using
9500 Alpine), you may insert it before the currently highlighted rule.
9501 You may also insert an empty file or a file that does not yet exist.
9502 Once you have an empty rules file in your configuration, you may use
9503 the Shuffle command to move rules into it.
9504 In fact, that's the only way to get the initial rule into the file.
9506 <H3>eXcludeFile</H3>
9508 The eXcludeFile command removes a rules file from your rules configuration.
9509 A limitation of the program is that in order to exclude a rules file
9510 that file must have at least one rule
9511 in it, otherwise you won't be able to highlight a line in the file.
9512 So you may have to add a dummy rule to the file in order to exclude the file.
9513 <P><UL>
9514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9515 </UL>
9517 &lt;End of help on this topic&gt;
9518 </BODY>
9519 </HTML>
9520 ===== h_rules_srch =====
9521 <HTML>
9522 <HEAD>
9523 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
9524 </HEAD>
9525 <BODY>
9526 <H1>SETUP SEARCH RULES SCREEN</H1>
9527 <H2>SETUP SEARCH RULES COMMANDS</H2>
9528 <!--chtml if pinemode="function_key"-->
9529 <PRE>
9530 Available  Commands -- Group 1         Available Commands -- Group 2   
9531 -------------------------------        ------------------------------  
9532 F1  Show Help Text                      F1  Show Help Text             
9533 F2  See commands in next group          F2  See commands in next group
9534 F3  Back to MAIN Alpine menu
9535 F4  Change configuration for rule
9536 F5  Move to previous rule               F5  Include file in rule config
9537 F6  Move to next rule                   F6  Exclude file from config
9538 F7  Previous page of rules
9539 F8  Next page of rules
9540 F9  Add new rule                        F9  Replicate existing rule
9541 F10 Delete existing rule
9542 F11 Shuffle the order of rules
9543 F12 Whereis (search rule nicknames)
9544 </PRE>
9545 <!--chtml else-->
9546 <PRE>
9547 Navigation                     General Alpine Commands
9548 -----------------------        ---------------------
9549  P  Prev rule                     ?  Display this help text
9550  N  Next rule                     E  Back to MAIN Alpine menu
9551  -  Previous page
9552 Spc (space bar) Next page
9553  W  WhereIs (search for word in rule nicknames)
9555 Setup Search Rules Commands
9556 ------------------------------------------------
9557  A  Add new rule                  $  Shuffle the order of rules
9558  D  Delete existing rule          C  Change configuration for highlighted rule
9559  R  Replicate existing rule
9560  I  Include file in rule config   X  Exclude file from rule config
9561 </PRE>
9562 <!--chtml endif-->
9564 <H2>Description of the Setup Search Rules Screen</H2>
9566 One of the commands that becomes available when that feature is turned on
9567 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
9568 screen to select a set of messages.
9569 One way of selecting messages is to use a Rule.
9570 All of the messages that match (or don't match if you wish)
9571 a Rule's Pattern will be selected.
9573 Any of your Rules may be used for this purpose.
9574 You might already have Rules set up for filtering, index line color, scores, or roles;
9575 and you may use any of those Rules with the Select command.
9576 However, you might find it more convenient to set up a separate set of Rules
9577 just for this purpose without having to worry about what other effects
9578 they may cause.
9579 That is the purpose of these Select Rules.
9582 Each rule has a &quot;Pattern&quot;
9583 that is used to decide which messages are selected when you use it with
9584 the Select command.
9586 <H2>Patterns</H2>
9588 In order to determine whether or not a message should be selected
9589 the message is compared with the rule's Pattern.
9590 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9591 Scoring, Other Rules, and Search Rules, so are described in only one place,
9592 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9594 <H2>Command Descriptions</H2>
9596 <H3>Add</H3>
9598 The Add command is used to add a new rule definition to your set of
9599 rules.
9600 The new rule will be added after the highlighted rule.
9602 <H3>Delete</H3>
9604 The Delete command deletes the currently highlighted rule.
9606 <H3>Change</H3>
9608 The Change command lets you edit the nickname and Pattern
9609 of the currently highlighted rule.
9611 <H3>Shuffle</H3>
9613 The Shuffle command allows you to change the order of the rules.
9614 This affects only the order they are presented in when you use the
9615 ^T subcommand of the Select by Rule command.
9616 You may move the currently highlighted rule up or down in the list.
9618 <H3>Replicate</H3>
9620 The Replicate command is used to copy an existing rule definition and modify it.
9621 The new rule will be added after the highlighted rule.
9623 <H3>IncludeFile</H3>
9625 The IncludeFile command allows you to add a rules file to your configuration.
9626 Usually, your rules will be contained in your Alpine configuration file.
9627 If you wish, some or all of your rules may be stored in a separate file.
9628 If a rules file already exists (maybe it was made by somebody else using
9629 Alpine), you may insert it before the currently highlighted rule.
9630 You may also insert an empty file or a file that does not yet exist.
9631 Once you have an empty rules file in your configuration, you may use
9632 the Shuffle command to move rules into it.
9633 In fact, that's the only way to get the initial rule into the file.
9635 <H3>eXcludeFile</H3>
9637 The eXcludeFile command removes a rules file from your rules configuration.
9638 A limitation of the program is that in order to exclude a rules file
9639 that file must have at least one rule
9640 in it, otherwise you won't be able to highlight a line in the file.
9641 So you may have to add a dummy rule to the file in order to exclude the file.
9642 <P><UL>
9643 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9644 </UL>
9646 &lt;End of help on this topic&gt;
9647 </BODY>
9648 </HTML>
9649 ===== h_rules_incols =====
9650 <HTML>
9651 <HEAD>
9652 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
9653 </HEAD>
9654 <BODY>
9655 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
9656 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
9657 <!--chtml if pinemode="function_key"-->
9658 <PRE>
9659 Available  Commands -- Group 1         Available Commands -- Group 2   
9660 -------------------------------        ------------------------------  
9661 F1  Show Help Text                      F1  Show Help Text             
9662 F2  See commands in next group          F2  See commands in next group
9663 F3  Back to MAIN Alpine menu
9664 F4  Change configuration for rule
9665 F5  Move to previous rule               F5  Include file in rule config
9666 F6  Move to next rule                   F6  Exclude file from config
9667 F7  Previous page of rules
9668 F8  Next page of rules
9669 F9  Add new rule                        F9  Replicate existing rule
9670 F10 Delete existing rule
9671 F11 Shuffle the order of rules
9672 F12 Whereis (search rule nicknames)
9673 </PRE>
9674 <!--chtml else-->
9675 <PRE>
9676 Navigation                     General Alpine Commands
9677 -----------------------        ---------------------
9678  P  Prev rule                     ?  Display this help text
9679  N  Next rule                     E  Back to MAIN Alpine menu
9680  -  Previous page
9681 Spc (space bar) Next page
9682  W  WhereIs (search for word in rule nicknames)
9684 Setup Index Color Commands
9685 ------------------------------------------------
9686  A  Add new rule                  $  Shuffle the order of rules
9687  D  Delete existing rule          C  Change configuration for highlighted rule
9688  R  Replicate existing rule
9689  I  Include file in rule config   X  Exclude file from rule config
9690 </PRE>
9691 <!--chtml endif-->
9693 <H2>Description of the Setup Index Line Colors Screen</H2>
9695 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
9696 This action is only available if your terminal is capable of displaying
9697 color and color display has been enabled with the
9698 <A HREF="h_config_color_style">Color Style</A> option within the
9699 Setup Color screen.
9700 (In PC-Alpine, color is always enabled so there is no option to turn on.)
9701 This screen lets you add, delete, modify, or change the order of the rules
9702 that cause the lines in the MESSAGE INDEX to be displayed in different
9703 colors.
9705 Each rule has a &quot;Pattern&quot;,
9706 which is used to decide which of the rules is used; and the color that
9707 is used if the Pattern matches a particular message.
9709 <H2>Index Color Patterns</H2>
9711 In order to determine whether or not a message matches an Index Color Rule
9712 the message is compared with the rule's Pattern.
9713 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9714 Scoring, Other Rules, and Search Rules, so are described in only one place,
9715 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9718 If none of the Index Color rules is a match for a particular index line,
9719 then the color used is set using
9720 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9722 <H2>Index Line Color</H2>
9724 This is the color that index lines are colored when there is a matching
9725 Pattern.
9726 This colors the whole index line, except possibly the status letters,
9727 which may be colored separately using
9728 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9730 <H2>Command Descriptions</H2>
9732 <H3>Add</H3>
9734 The Add command is used to add a new rule definition to your set of
9735 rules.
9736 The new rule will be added after the highlighted rule.
9738 <H3>Delete</H3>
9740 The Delete command deletes the currently highlighted rule.
9742 <H3>Change</H3>
9744 The Change command lets you edit the nickname, Pattern,
9745 and Index Line Color of the currently highlighted rule.
9747 <H3>Shuffle</H3>
9749 The Shuffle command allows you to change the order of the rules.
9750 You may move the currently highlighted rule up or down in the list.
9751 The order of the rules is important since the rules are tested for a
9752 match starting with the first rule and continuing until a match is found.
9753 You should place the rules with more specific Patterns near the beginning
9754 of the list, and those with more general Patterns near the end so that
9755 the more specific matches will happen when appropriate.
9757 <H3>Replicate</H3>
9759 The Replicate command is used to copy an existing rule definition and modify it.
9760 The new rule will be added after the highlighted rule.
9762 <H3>IncludeFile</H3>
9764 The IncludeFile command allows you to add a rules file to your configuration.
9765 Usually, your rules will be contained in your Alpine configuration file.
9766 If you wish, some or all of your rules may be stored in a separate file.
9767 If a rules file already exists (maybe it was made by somebody else using
9768 Alpine), you may insert it before the currently highlighted rule.
9769 You may also insert an empty file or a file that does not yet exist.
9770 Once you have an empty rules file in your configuration, you may use
9771 the Shuffle command to move rules into it.
9772 In fact, that's the only way to get the initial rule into the file.
9774 <H3>eXcludeFile</H3>
9776 The eXcludeFile command removes a rules file from your rules configuration.
9777 A limitation of the program is that in order to exclude a rules file
9778 that file must have at least one rule
9779 in it, otherwise you won't be able to highlight a line in the file.
9780 So you may have to add a dummy rule to the file in order to exclude the file.
9781 <P><UL>
9782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9783 </UL>
9785 &lt;End of help on this topic&gt;
9786 </BODY>
9787 </HTML>
9788 ===== h_rules_filter =====
9789 <HTML>
9790 <HEAD>
9791 <TITLE>SETUP FILTERING SCREEN</TITLE>
9792 </HEAD>
9793 <BODY>
9794 <H1>SETUP FILTERING SCREEN</H1>
9795 <H2>SETUP FILTERING COMMANDS</H2>
9796 <!--chtml if pinemode="function_key"-->
9797 <PRE>
9798 Available  Commands -- Group 1         Available Commands -- Group 2   
9799 -------------------------------        ------------------------------  
9800 F1  Show Help Text                      F1  Show Help Text             
9801 F2  See commands in next group          F2  See commands in next group
9802 F3  Back to MAIN Alpine menu
9803 F4  Change configuration for filter
9804 F5  Move to previous filter             F5  Include file in filter config
9805 F6  Move to next filter                 F6  Exclude file from config
9806 F7  Previous page of filters
9807 F8  Next page of filters
9808 F9  Add new filter                      F9  Replicate existing filter
9809 F10 Delete existing filter
9810 F11 Shuffle the order of filters
9811 F12 Whereis (search filter nicknames)
9812 </PRE>
9813 <!--chtml else-->
9814 <PRE>
9815 Navigation                     General Alpine Commands
9816 -----------------------        ---------------------
9817  P  Prev Filter                   ?  Display this help text
9818  N  Next Filter                   E  Back to MAIN Alpine menu
9819  -  Previous page
9820 Spc (space bar) Next page
9821  W  WhereIs (search for word in filter nicknames)
9823 Setup Filters Commands
9824 ------------------------------------------------
9825  A  Add new filter                $  Shuffle the order of filters
9826  D  Delete existing filter        C  Change configuration for highlighted filter
9827  R  Replicate existing filter
9828  I  Include file in filter config X  Exclude file from filter config
9829 </PRE>
9830 <!--chtml endif-->
9832 <H2>Description of the Setup Filtering Screen</H2>
9834 This screen lets you add, delete, modify, or change the order of the rules
9835 that determine the filtering Alpine does on folders you view.
9837 The software that actually delivers mail (the stuff that happens
9838 before Alpine is involved) for you is in a better position to do mail filtering
9839 than Alpine itself.
9840 If possible, you may want to look into using that sort of mail filtering to
9841 deliver mail to different folders, delete it, or forward it.
9842 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
9844 Filtering is a way to automatically move certain messages from one folder
9845 to another or to delete messages.
9846 It can also be used to set message status (Important, Deleted, New,
9847 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
9848 Alpine doesn't have the ability to forward mail to another address or
9849 to deliver vacation messages.
9851 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
9852 When a folder is opened, when new mail arrives in an open folder, or
9853 when mail is Expunged from a folder; each
9854 message is compared with the Patterns of your filtering rules.
9855 The comparisons start with the first rule and keep going until there
9856 is a match.
9857 If a match is found, the message may be deleted or moved, depending on
9858 the setting of the Filter Action.
9859 If the message is not deleted, it may have its status altered.
9862 <EM>NOTE:</EM>
9863 When setting up a Pattern used to delete messages,
9864 it is recommended that you test the Pattern first with a &quot;Move&quot;
9865 folder specified in
9866 case unintended matches occur.  Messages that are deleted will be removed 
9867 from the folder and <EM>unrecoverable</EM> from within Alpine after the
9868 next Expunge command or once the folder being filtered has been closed.
9870 <H2>Filter Patterns</H2>
9872 In order to determine whether or not a message matches a filter the message is
9873 compared with the Filter's Pattern.
9874 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9875 Scoring, Other Rules, and Search Rules, so are described in only one place,
9876 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9878 Since filtering is a potentially destructive action, if you have a filtering
9879 Pattern with nothing other than Current Folder Type set, that filtering
9880 rule is ignored.
9882 <H2>Filter Actions</H2>
9884 Once a filter match is found for a particular message, there are some actions
9885 that may be taken.
9886 First, the message may have its status changed.
9887 This is the same message status that you can manipulate manually using the
9888 <a href="h_common_flag">Flag Command</a>.
9889 There are always four elements of message status that you can control.
9890 You can set or clear the Important status, the New status, the Deleted
9891 status, and the Answered status.
9892 Of course, if the filter is going to delete the message,
9893 then there is no point in setting message status.
9894 You may also be able to set user-defined keywords for a message.
9895 Read a little about keywords in the help text for the
9896 <A HREF="h_common_flag">Flag</A> command.
9898 Second, the filter may delete or move the message.
9899 Deleting the message marks it Deleted and removes it from view.
9900 It is effectively gone forever (though it technically is still there until
9901 the next expunge command, which may happen implicitly).
9902 Moving the message moves it from the open folder into the folder
9903 listed on the &quot;Folder List&quot; line of the filter configuration.
9904 If you list more than one folder name (separated by commas) then the message
9905 will be copied to each of those folders.
9906 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
9907 message is removed from the current folder.
9908 If you just want to set the messages status without deleting it from
9909 the folder, then set the filter action to
9910 &quot;Just Set Message Status&quot;.
9912 (There is no way to do a Copy instead of a Move, due to the difficulties
9913 involved in keeping track of whether or not a message has
9914 already been copied.)
9916 <H2>Command Descriptions</H2>
9918 <H3>Add</H3>
9920 The Add command is used to add a new filter definition to your set of
9921 filters.
9922 The new filter will be added after the highlighted filter.
9924 <H3>Delete</H3>
9926 The Delete command deletes the currently highlighted filter.
9928 <H3>Change</H3>
9930 The Change command lets you edit the nickname, Pattern,
9931 and Folder of the currently highlighted filter.
9933 <H3>Shuffle</H3>
9935 The Shuffle command allows you to change the order of the filters.
9936 You may move the currently highlighted filter up or down in the list.
9937 The order of the filters is important since the filters are tested for a
9938 match starting with the first filter and continuing until a match is found.
9939 You should place the filters with more specific Patterns near the beginning
9940 of the list, and those with more general Patterns near the end so that
9941 the more specific matches will happen when appropriate.
9943 <H3>Replicate</H3>
9945 The Replicate command is used to copy an existing filter and modify it.
9946 The new filter will be added after the highlighted filter.
9948 <H3>IncludeFile</H3>
9950 The IncludeFile command allows you to add a filters file to your configuration.
9951 Usually, your filters will be contained in your Alpine configuration file.
9952 If you wish, some or all of your filters may be stored in a separate file.
9953 If a filters file already exists (maybe it was made by somebody else using
9954 Alpine), you may insert it before the currently highlighted filter.
9955 You may also insert an empty file or a file that does not yet exist.
9956 Once you have an empty filters file in your configuration, you may use
9957 the Shuffle command to move filters into it.
9958 In fact, that's the only way to get the initial filter into the file.
9960 <H3>eXcludeFile</H3>
9962 The eXcludeFile command removes a filters file from your filters configuration.
9963 A limitation of the program is that in order to exclude a filters file
9964 that file must have at least one filter
9965 in it, otherwise you won't be able to highlight a line in the file.
9966 So you may have to add a dummy filter to the file in order to exclude the file.
9967 <P><UL>
9968 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9969 </UL>
9971 <H3>Performance Considerations</H3>
9972 The number and type of patterns being tested can 
9973 adversely effect performance.  Issues to be aware
9974 of include:
9976 <UL>
9977   <LI> The more filters you have defined the longer it will take to run down
9978 the list.  Deleting unused filters is a good idea.
9979   <LI> Filtering in newsgroups served by an NNTP server will be slow
9980 if your patterns include tests other than &quot;From:&quot;
9981 or &quot;Subject:&quot;.
9982 </UL>
9984 &lt;End of help on this topic&gt;
9985 </BODY>
9986 </HTML>
9987 ===== h_rules_score =====
9988 <HTML>
9989 <HEAD>
9990 <TITLE>SETUP SCORING SCREEN</TITLE>
9991 </HEAD>
9992 <BODY>
9993 <H1>SETUP SCORING SCREEN</H1>
9994 <H2>SETUP SCORING COMMANDS</H2>
9995 <!--chtml if pinemode="function_key"-->
9996 <PRE>
9997 Available  Commands -- Group 1         Available Commands -- Group 2   
9998 -------------------------------        ------------------------------  
9999 F1  Show Help Text                      F1  Show Help Text             
10000 F2  See commands in next group          F2  See commands in next group
10001 F3  Back to MAIN Alpine menu
10002 F4  Change configuration for rule
10003 F5  Move to previous rule               F5  Include file in rule config
10004 F6  Move to next rule                   F6  Exclude file from config
10005 F7  Previous page of rules
10006 F8  Next page of rules
10007 F9  Add new rule                        F9  Replicate existing rule
10008 F10 Delete existing rule
10009 F11 Shuffle the order of rules
10010 F12 Whereis (search rule nicknames)
10011 </PRE>
10012 <!--chtml else-->
10013 <PRE>
10014 Navigation                     General Alpine Commands
10015 -----------------------        ---------------------
10016  P  Prev rule                     ?  Display this help text
10017  N  Next rule                     E  Back to MAIN Alpine menu
10018  -  Previous page
10019 Spc (space bar) Next page
10020  W  WhereIs (search for word in rule nicknames)
10022 Setup Scoring Commands
10023 ------------------------------------------------
10024  A  Add new rule                  $  Shuffle the order of rules
10025  D  Delete existing rule          C  Change configuration for highlighted rule
10026  R  Replicate existing rule
10027  I  Include file in rule config   X  Exclude file from rule config
10028 </PRE>
10029 <!--chtml endif-->
10031 <H2>Description of the Setup Scoring Screen</H2>
10033 Most people will not use scores at all, but if you do use them, here's how
10034 they work in Alpine.
10035 Using this screen, you may define Scoring rules.
10036 The score for a message is calculated by looking at every Score rule defined
10037 and adding up the Score Values for the ones that match the message.
10038 If there are no matches for a message, it has a score of zero.
10039 Message scores may be used a couple of ways in Alpine.
10041 <H3>Sorting by Score</H3>
10043 One of the methods you may use to sort message indexes is to sort by
10044 score.
10045 The scores of all the messages in a folder will be calculated and then
10046 the index will be ordered by placing the messages in order of ascending or
10047 descending score.
10049 <H3>Scores for use in Patterns</H3>
10051 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10052 category labeled &quot;Score Interval&quot;.
10053 When a message is being compared with a Pattern to check for a match, if
10054 the Score Interval is set only messages that have a score somewhere in
10055 the interval are a match.
10057 <H2>Scoring Rule Patterns</H2>
10059 In order to determine whether or not a message matches a scoring rule
10060 the message is compared with the rule's Pattern.
10061 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10062 Scoring, Other Rules, and Search Rules, so are described in only one place,
10063 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10066 Actually, Scoring rule Patterns are slightly different from the other types of
10067 Patterns because Scoring rule Patterns don't contain a Score Interval.
10068 In other words, when calculating the score for a message, which is done
10069 by looking at the Scoring rule Patterns, scores aren't used.
10071 <H2>Score Value</H2>
10073 This is the value that will be added to the score for a message if the
10074 rule's Pattern is a match.
10075 Each individual Score Value is an integer between -100 and 100, and the
10076 values from matching rules are added together to get a message's score.
10077 There is also a way to extract the value from a particular header of each
10078 message. See the help text for Score Value for further information.
10080 <H2>Command Descriptions</H2>
10082 <H3>Add</H3>
10084 The Add command is used to add a new scoring rule definition.
10085 The new rule will be added after the highlighted rule.
10087 <H3>Delete</H3>
10089 The Delete command deletes the currently highlighted scoring rule.
10091 <H3>Change</H3>
10093 The Change command lets you edit the nickname, Pattern,
10094 and Score Value of the currently highlighted scoring rule.
10096 <H3>Shuffle</H3>
10098 The Shuffle command allows you to change the order of the scoring rules.
10099 You may move the currently highlighted rule up or down in the list.
10100 The order of the rules is important since the rules are tested for a
10101 match starting with the first rule and continuing until a match is found.
10102 You should place the rules with more specific Patterns near the beginning
10103 of the list, and those with more general Patterns near the end so that
10104 the more specific matches will happen when appropriate.
10106 <H3>Replicate</H3>
10108 The Replicate command is used to copy an existing rule and modify it.
10109 The new rule will be added after the highlighted rule.
10111 <H3>IncludeFile</H3>
10113 The IncludeFile command allows you to add a rules file to your configuration.
10114 Usually, your rules will be contained in your Alpine configuration file.
10115 If you wish, some or all of your rules may be stored in a separate file.
10116 If a rules file already exists (maybe it was made by somebody else using
10117 Alpine), you may insert it before the currently highlighted rule.
10118 You may also insert an empty file or a file that does not yet exist.
10119 Once you have an empty rules file in your configuration, you may use
10120 the Shuffle command to move rules into it.
10121 In fact, that's the only way to get the initial rule into the file.
10123 <H3>eXcludeFile</H3>
10125 The eXcludeFile command removes a rules file from your rules configuration.
10126 A limitation of the program is that in order to exclude a rules file
10127 that file must have at least one rule
10128 in it, otherwise you won't be able to highlight a line in the file.
10129 So you may have to add a dummy rule to the file in order to exclude the file.
10130 <P><UL>
10131 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10132 </UL>
10134 &lt;End of help on this topic&gt;
10135 </BODY>
10136 </HTML>
10137 ===== h_direct_config =====
10138 <HTML>
10139 <HEAD>
10140 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10141 </HEAD>
10142 <BODY>
10143 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10144 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10145 <!--chtml if pinemode="function_key"-->
10146 <PRE>
10147 Available  Commands                        
10148 -------------------------------            
10149 F1  Show Help Text                         
10150 F3  Back to MAIN Alpine menu                 
10151 F4  Change configuration for directory server  
10152 F5  Move to previous directory server          
10153 F6  Move to next directory server              
10154 F7  Previous page of directory servers         
10155 F8  Next page of directory servers
10156 F9  Add new directory server
10157 F10 Delete existing directory server
10158 F11 Shuffle the order of directory servers
10159 F12 Whereis (search directory server titles)   
10160 </PRE>
10161 <!--chtml else-->
10162 <PRE>
10163 Navigation                     General Alpine Commands
10164 -----------------------        ---------------------
10165  P  Prev Directory Server         ?  Display this help text
10166  N  Next Directory Server         E  Back to MAIN Alpine menu
10167  -  Previous page
10168 Spc (space bar) Next page
10169  W  WhereIs (search for word in directory server titles)
10171 Setup LDAP Directory Server Commands
10172 ------------------------------------------------
10173  A  Add new directory server      $  Shuffle the order of directory servers
10174  D  Delete existing dir server    C  Change configuration for highlighted server
10175 </PRE>
10176 <!--chtml endif-->
10178 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10180 This screen lets you add, delete, modify, or change the order of your
10181 directory servers. You may also set some optional behavior for each server.
10182 The &quot;Add Dir&quot; command brings up a blank form to 
10183 fill in. You will have to supply at least the name of the LDAP server.
10184 You will often have to supply a search base to be used with that server,
10185 as well. Once the form has been brought up on your screen, there is help
10186 available for each of the options you may set.
10188 The &quot;Del Dir&quot; command allows you to remove a directory server
10189 from your configuration.
10191 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10192 The difference is that instead of bringing up a form for a new server
10193 configuration, you are changing the configuration of an existing entry.
10194 For example, you might want to correct a typing error, change a
10195 nickname, or change one of the options set for that server.
10197 The &quot;Shuffle&quot; command is used to change the order of directory
10198 servers.
10199 <P><UL>
10200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10201 </UL>
10203 &lt;End of help on this topic&gt;
10204 </BODY>
10205 </HTML>
10206 ============= h_address_display ========================
10207 <HTML>
10208 <HEAD>
10209 <TITLE>SEARCH RESULTS INDEX</TITLE>
10210 </HEAD>
10211 <BODY>
10212 <H1>SEARCH RESULTS INDEX</H1>
10213 This screen shows the results, if any, of your Directory Server search.  
10214 Commands (besides those for screen navigation) are:
10215 <DL>
10216 <DT>View
10217 <!--chtml if pinemode="function_key"-->
10218 (F4)
10219 <!--chtml else-->
10221 <!--chtml endif-->
10222 </DT>
10223 <DD>See the full information for the selected entry.
10225 <DT>Compose
10226 <!--chtml if pinemode="function_key"-->
10227 (F9)
10228 <!--chtml else-->
10230 <!--chtml endif--></DT>
10231 <DD>Compose a message with the selected entry as the recipient.
10233 <DT>Role
10234 <!--chtml if pinemode="function_key"-->
10235 (F2)
10236 <!--chtml else-->
10238 <!--chtml endif--></DT>
10239 <DD>Compose a message with the selected entry as the recipient. This differs
10240 from Compose in that you may select a role before beginning your composition.
10242 <DT>Forward
10243 <!--chtml if pinemode="function_key"-->
10244 (F10)
10245 <!--chtml else-->
10247 <!--chtml endif--></DT>
10248 <DD>Send the full information for the selected entry as an 
10249 email message to someone else.
10251 <DT>Save
10252 <!--chtml if pinemode="function_key"-->
10253 (F11)
10254 <!--chtml else-->
10256 <!--chtml endif-->
10257 </DT>
10258 <DD>Save to your address book:
10259 <UL>
10260 <LI>the result of the search (as just found through your query) for the 
10261 selected entry; or 
10262 <LI>the selected entry for repeated Directory Server searching when used 
10263 in the future.
10264 </UL>
10265 or<BR>
10266 Export to a file (external to Alpine):
10267 <UL>
10268 <LI>the full information for the selected entry; or
10269 <LI>the email address from the selected entry; or
10270 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10271 </UL>
10272 <DT>WhereIs
10273 <!--chtml if pinemode="function_key"-->
10274 (F12)
10275 <!--chtml else-->
10277 <!--chtml endif-->
10278 </DT>
10279 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10280 displayed text, not the full records for each entry.)  
10281 </DL>
10282 &lt;End of help on this topic&gt;
10283 </BODY>
10284 </HTML>
10285 ============= h_address_select ========================
10286 <HTML>
10287 <HEAD>
10288 <TITLE>SEARCH RESULTS INDEX</TITLE>
10289 </HEAD>
10290 <BODY>
10291 <H1>SEARCH RESULTS INDEX</H1>
10292 This screen shows the results, if any, of your Directory Server search.  
10293 Commands (besides those for screen navigation) are:
10294 <DL>
10295 <DT>Select
10296 </DT>
10297 <DD>Select this entry for use.
10299 <DT>ExitSelect
10300 <DD>Exit without selecting any of the entries.
10302 <DT>WhereIs
10303 </DT>
10304 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10305 displayed text, not the full records for each entry.)  
10306 </DL>
10307 &lt;End of help on this topic&gt;
10308 </BODY>
10309 </HTML>
10310 ===== h_folder_maint =====
10311 <HTML>
10312 <HEAD>
10313 <TITLE>Help for Folder List</TITLE>
10314 </HEAD>
10315 <BODY>
10316 <H1>FOLDER LIST COMMANDS</H1>
10317 <!--chtml if pinemode="function_key"-->
10318 <PRE>
10319 Available Commands -- Group 1        Available Commands -- Group 2
10320 -------------------------------      ------------------------------
10321 F1  Show Help Text                    F1  Show Help Text               
10322 F2  See commands in next group        F2  See commands in next group  
10323 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10324 F4  Select folder and view it         F4  MAIN MENU Screen
10325 F5  Move to previous folder
10326 F6  Move to next folder               F6  Specify a folder to go to
10327 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10328 F8  Show next screen of listing       F8  Compose a message
10329 F9  Add a new folder                  F9  Print folder listing
10330 F10 Delete selected folder
10331 F11 Rename selected folder
10332 F12 Whereis (search folder names)
10334 Available Commands -- Group 3
10335 F1  Show Help Text
10336 F2  See commands in next group
10337 F5  Go to next new message
10338     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10339 F8  Compose a message using roles
10340 F9  Export folder to a file
10341 F10 Import the file back to a folder
10342 </PRE>
10343 <!--chtml else-->
10344 <PRE>
10345 Navigating the Folder Screen            Operations on the Selected Folder
10346 ----------------------------            ---------------------------------
10347  P   Move to previous folder              V  View Index of selected folder
10348  N   Move to next folder                  D  Delete
10349  -   Show previous page of listing        R  Rename
10350 Spc  (space bar) Show next page           E  Export to file
10351                                           U  Import from file to folder
10353 FOLDER LIST Screen Commands              General Alpine Command
10354 ---------------------------              ---------------------
10355  A  Add a folder                          O  Show all other available commands
10356  G  Specify a folder to go to             ?  Show Help text
10357  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10358  W  Whereis (search folder names)         Q  Quit Alpine
10359  %  Print folder listing                  C  Compose a message
10360                                           #  Compose a message using roles
10361 </PRE>
10362 <!--chtml endif-->
10364 These commands are only available in the FOLDER LIST screen when the 
10365 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10366 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10367 <DT>Select:</DT>
10368 <DD>Select folders by certain criteria:<UL>
10369 <LI>All: of limited use, since there is no Apply command.
10370 <LI>by Property: <UL>
10371         <LI>folder contains messages not yet seen 
10372         <LI>folder contains new messages
10373         <LI>folder contains exactly as many, more, or fewer messages 
10374 than a given number
10375         </UL>
10376 <LI>by Text: <UL>
10377         <LI>contained in name of folder (Name Select)
10378         <LI>contained in messages in folder (Content Select)
10379         </UL>
10380 </UL></DD>
10382 <DT>Select current:</DT>
10383 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10384 add one or more folders to a set created with the Select command described 
10385 above.)</DD>
10386 <DT>Zoom mode:</DT>
10387 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10388 </DL>
10390 If the feature
10391 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10392 is set then the TAB key will display the number of recent messages and
10393 the total number of messages in the highlighted folder.
10395 The &quot;Export&quot; command causes the lowest common denominator style
10396 mailbox to be written to a file.
10397 If the file already exists, you are asked if you want to delete it.
10398 If you say No, then the operation is aborted.
10399 Export might be a reasonable way to store a backup or an archival copy of
10400 a folder.
10401 The exported-to file is a local file on the system where you are running Alpine.
10402 The &quot;Import&quot; command is the opposite of the Export command.
10403 It reads a file created by Export and asks where it should save it in your
10404 folders.
10405 This could be a new folder or an existing folder.
10406 If the folder already exists, the messages from the exported file will be
10407 appended to the folder.
10409 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10411 The purpose of the FOLDER LIST screen is to help you browse and manage
10412 the folders and directories (also known as &quot;hierarchy&quot;)
10413 contained within a collection.
10416 Folders and directories are arranged alphabetically across lines of
10417 the screen.  Directories, if present, are denoted by a special
10418 character at the end of the name known as the hierarchy delimiter
10419 (typically, &quot;/&quot;).  By default, folders and directories are
10420 mixed together.  The
10421 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10422 configuration option can be used to group directories toward the 
10423 beginning or end of the list.
10426 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10427 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10428 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10429 selected item.  Folder and directory management is provided via the
10430 Rename, Delete and Add commands.
10432 <P><CENTER>About Folders</CENTER>
10433 What are Folders?<P>
10435 Folders are simply files where messages are kept.  Every message has to be
10436 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10437 folder for sent mail and a folder for saved messages.<P>
10439 You may create as many other folders as you wish.  They must be given
10440 names that can be filenames on the filesystem.  
10443 You can move messages from one folder to another by opening the original
10444 folder and saving messages into the other folder just as you can save
10445 message from your INBOX to any other folder.<P>
10447 Folders are typically just files in the filesystem.  However, the files
10448 that are
10449 folders have some special formatting in them (so that Alpine knows where one
10450 message ends and another begins) and should <EM>not</EM> be edited outside of
10451 Alpine.  If you want copies of your messages in text files that you can edit
10452 or otherwise manipulate, use the Export command to copy them from Alpine into
10453 your regular file area.
10456 FOR MORE INFORMATION: See the section on
10457 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10459 <CENTER>About Directories</CENTER>
10461 A directory is simply a container used to group folders within a
10462 folder list.  You can create as many directories as you like.  And 
10463 directories can even contain directories themselves.
10466 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10467 to note that not all IMAP servers support directories.  If you find that
10468 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10469 then it's likely that directories are not supported by the server serving
10470 in that collection.
10473 Similarly, servers that do provide for directories may not do so in
10474 the same way.  On some servers, for example, each folder name you
10475 create is at the same time capable of being a directory.  When this
10476 happens, Alpine will display both the folder name and the name of the
10477 directory (with trailing hierarchy delimiter) in the folder list.
10480 Another issue with IMAP access, though with a much smaller set of servers,
10481 is that not all servers accept the request to list out the available
10482 folders and directories in the same way.  If you find yourself having
10483 trouble viewing folders on your server, you might investigate the
10484 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
10485 feature.
10487 <UL>
10488 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10489 </UL>
10491 &lt;End of help on this topic&gt;
10492 </BODY>
10493 </HTML>
10494 ========= h_valid_folder_names ========
10495 <HTML>
10496 <HEAD>
10497 <TITLE>Explanation of Valid Folder Names</TITLE>
10498 </HEAD>
10499 <BODY>
10500 <H1>Folder Name Syntax Explained</H1>
10502 Once your folder collections are defined, you can usually refer to
10503 folders by their simple (unqualified) name, or pick from a FOLDER LIST
10504 display.  However, understanding the complete syntax for folder names,
10505 both local and remote, is handy when using the Goto command and when
10506 you are adding new folder collections via the Setups/collectionList screen.
10508 An Alpine folder name looks like
10511 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
10514 The square brackets ([]) mean that the part is optional.
10517 If there is no remote-specification, then the folder name is interpreted
10518 locally on the computer running Alpine.
10519 Local folder names depend on the operating system used by the computer 
10520 running Alpine, as well as the configuration of that system.  For example,
10521 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
10522 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
10523 system running Unix.
10526 Alpine users have the option of using folders that are stored on some other
10527 computer.  Alpine accesses remote folders via IMAP (the Internet Message
10528 Access Protocol), or in the case of news, via NNTP (the Network News
10529 Transport Protocol).  To be able to access remote folders in Alpine, the
10530 remote host must be running the appropriate server software (imapd or
10531 nntpd) and you must correctly specify the name of the folder to Alpine,
10532 including the domain name of the remote machine. For example,
10534 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
10536 could be a remote folder specification, and so could
10538 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
10541 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
10543 Note that in the case of remote folders, the directory/file path in the specification is 
10544 determined by the operating system of the remote computer, <B>not</B> by
10545 the operating system of the computer on which you are running Alpine.
10547 As you can tell, the name of the computer is in &#123;} brackets
10548 followed immediately by the name of the folder.  (In each of these cases the
10549 optional namespace is missing.)  If, as in these
10550 examples, there is no remote access protocol specified, then IMAP is
10551 assumed.  Check
10552 <A HREF="h_folder_server_syntax">here</A>
10553 for a more detailed look at what options can be placed between the brackets.
10554 If there are no brackets at all, then the folder name is interpreted locally
10555 on the computer on which you are running Alpine.
10558 To the right of the brackets when a server name is present, or at the
10559 start of the foldername if no server is present, the sharp sign,
10560 &quot;#&quot;, holds special meaning.  It indicates a folder name
10561 outside the area reserved for your personal folders.  In fact, it's
10562 used to indicate both the name of the folder, and a special phrase
10563 telling Alpine how to interpret the name that follows.
10566 So, for example, Alpine can be used to access a newsgroup that might be 
10567 available on your computer using:
10569 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10571 The sharp sign indicates the folder name is outside your personal
10572 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
10573 interpret the remainder of the name as a newsgroup.
10576 Similarly, to access a newsgroup on your IMAP server, you might
10577 use something like:
10579 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
10582 There are a number of such special phrases (or &quot;namespaces&quot;)
10583 available.  For a more detailed explanation read about
10584 <A HREF="h_folder_name_namespaces">Namespaces</A>.
10587 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
10588 names.  The name INBOX refers to your &quot;principal incoming
10589 message folder&quot; and will be mapped to the actual file name used for your
10590 INBOX on any given host.  Therefore, a name like
10591 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
10592 store incoming mail for you on that particular host.
10595 &lt;End of help on this topic&gt;
10596 </BODY>
10597 </HTML>
10598 ======= h_folder_name_namespaces =======
10599 <HTML>
10600 <HEAD>
10601 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
10602 </HEAD>
10603 <BODY>
10604 <H1>Folder Name Namespaces Explained</H1>
10606 An Alpine folder name looks like
10609 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
10612 The local part of a folder name has an optional &quot;Namespace&quot; which
10613 tells Alpine how to interpret the rest of the name.
10615 <P> 
10616 By default the folder name is interpreted as defining a section of your personal
10617 folder area.  This area and how you specify it are defined by the
10618 server, if one is specified, or, typically, the home
10619 directory, if no server is defined.
10622 If a namespace is specified, it begins with the
10623 sharp, &quot;#&quot;, character followed by the name of the namespace
10624 and then the namespace's path-element-delimiter.  Aside from the
10625 path's format, namespaces can also imply access rights, content
10626 policy, audience, location, and, occasionally, access methods.
10629 Each server exports its own set (possibly of size one) of 
10630 namespaces.  Hence, it's likely communication with your server's
10631 administrator will be required for specific configurations.  Some of
10632 the more common namespaces, however, include:
10634 <DL>
10635 <DT>#news.</DT>
10636 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
10637 names are hierarchically defined with each level delimited by a period.
10639 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10641 </DD>
10642 <DT>#public/</DT>
10643 <DD>This specifies a folder area that the server may export to the general
10644 public.
10645 </DD>
10646 <DT>#shared/</DT>
10647 <DD>This specifies a folder area that the server may export to groups
10648 of users.
10649 </DD>
10650 <DT>#ftp/</DT>
10651 <DD>This specifies a folder area that is the same as that it may have 
10652 exported via the &quot;File Transfer Protocol&quot;.
10653 </DD>
10654 <DT>#mh/</DT>
10655 <DD>This specifies the personal folder area associated with folders
10656 and directories that were created using the MH message handling system.
10657 </DD>
10658 <DT>#move/</DT>
10659 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
10661 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
10663 The #move namespace is followed by two folder names separated by a delimiter
10664 character.
10665 The delimiter character may be any character that does not appear in
10666 the MailDropFolder name.
10667 The meaning of #move is that mail will be copied from the MailDropFolder to
10668 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
10669 Periodic checks at frequency
10670 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
10671 time between checks set by
10672 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
10673 are made for new mail arriving in the MailDropFolder.
10674 An example that copies mail from a POP inbox to a local folder follows
10676 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
10678 To you it appears that mail is being delivered to the local folder when it
10679 is copied from the MailDropFolder, and you read mail from the local folder.
10681 Note that if the DestinationFolder does not exist then the messages are not
10682 copied from the MailDropFolder.
10683 A #move folder may only be used as an
10684 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
10685 an Inbox.
10686 When you are in the FOLDER LIST of Incoming Message Folders (after turning
10687 on the
10688 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
10689 option)
10690 the Add command has a subcommand &quot;Use Mail Drop&quot;
10691 which may be helpful for defining the folder in your Alpine configuration.
10692 The same is true when you edit the
10693 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
10694 option in Setup/Config.
10695 Each of these configuration methods will also create the DestinationFolder
10696 if it doesn't already exist.
10697 If you are having problems, make sure the DestinationFolder exists.
10698 You may find some more useful information about Mail Drops at
10699 <A HREF="h_maildrop">What is a Mail Drop?</A>.
10700 </DD>
10701 </DL>
10704 In addition, the server may support access to other user's folders,
10705 provided you have suitable permissions.  Common methods use a prefix
10706 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
10707 indicate the root of the other user's folder area.
10710 No, nothing's simple.
10713 &lt;End of help on this topic&gt;
10714 </BODY>
10715 </HTML>
10716 ============= h_whatis_vcard ========================
10717 <HTML>
10718 <HEAD>
10719 <TITLE>VCARD EXPLAINED</TITLE>
10720 </HEAD>
10721 <BODY>
10722 <H1>What is the vCard format?</H1>
10723 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
10724 information about and among people and organizations electronically.  
10725 More information about vCard can be found (as of May 1998) on the WWW site 
10726 of the Internet Mail Consortium at the URL:
10728 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
10730 &lt;End of help on this topic&gt;
10731 </BODY>
10732 </HTML>
10733 ===== h_folder_open =====
10734 <HTML>
10735 <HEAD>
10736 <TITLE>Explanation of Folder Selection</TITLE>
10737 </HEAD>
10738 <BODY>
10739 <BR>
10740 <BR>
10741 This screen is designed to allow you to quickly and easily survey your
10742 folders and select one to open.
10743 <!--chtml if pinemode="function_key"-->
10744 <PRE>
10745 Navigating the List of Folders             General Alpine Commands
10746 ------------------------------             ---------------------
10747  P   Move to previous folder               ?   Show this help text
10748  N   Move to next folder
10749  -   Show previous screen of folders
10750 Spc  (space bar) Show next screen
10751  W   WhereIs (search folder names)
10753 Folder Selection Commands
10754 -------------------------
10755  E   Exit the Folder Select menu (without selecting a folder)
10756  S   Select the currently highlighted folder
10757 </PRE>
10758 <!--chtml else-->
10759 <PRE>
10760 Navigating the List of Folders             General Alpine Commands
10761 ------------------------------             ---------------------
10762 F5   Move to previous folder               F1  Show this help text
10763 F6   Move to next folder
10764 F7   Show previous screen of folders
10765 F8   Show next screen of folders
10766 F12  WhereIs (search folder names)
10768 Folder Selection Commands
10769 -------------------------
10770 F3   Exit the Folder Select menu (without selecting a folder)
10771 F4   Select the currently highlighted folder
10772 </PRE>
10773 <!--chtml endif-->
10775 FOR MORE INFORMATION: See the section on
10776 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10778 &lt;End of help on this topic&gt;
10779 </BODY>
10780 </HTML>
10781 ===== h_folder_subscribe =====
10782 <HTML>
10783 <HEAD>
10784 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
10785 </HEAD>
10786 <BODY>
10787 <H1>FOLDER SUBSCRIBE HELP</H1>
10789 This screen is designed to help you subscribe to newsgroups you are
10790 not currently subscribed to.  The screen display is a list of all
10791 available newsgroups (or possibly a partial list if you specified a
10792 partial name when entering the screen).  Groups you have already
10793 subscribed to have the letters &quot;SUB&quot; next to them.  You may
10794 select a single new group to subscribe to by moving the cursor to that
10795 group and pressing &quot;S&quot; or carriage return.  Alternatively,
10796 you may change into ListMode with the &quot;ListMode&quot; command.
10797 The display will change slightly so that each group has a checkbox in
10798 front of it.  Use the cursor and the Set/Unset command to place an
10799 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
10802 When you are finished marking groups, the &quot;Subscribe&quot;
10803 command will subscribe you to those groups you have marked.  Note, you
10804 may not unsubscribe to groups with this command.  Instead of the
10805 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
10806 UnSbscrbe command.
10809 <!--chtml if pinemode="function_key"-->
10810 <PRE>
10811 Navigating the List of Newsgroups          General Alpine Commands
10812 ---------------------------------          ---------------------
10813 F5   Move to previous group                F1   Show this help text
10814 F6   Move to next group
10815 F7   Show previous screen of groups
10816 F8   Show next screen of groups
10817 F12  WhereIs (search group names)
10818 F9   Use ListMode
10820 Group Selection Commands
10821 -------------------------
10822 F3  Exit the News Subscribe menu (without selecting any groups)
10823 F4  Subscribe to the currently highlighted newsgroup
10824 </PRE>
10825 <!--chtml else-->
10826 <PRE>
10827 Navigating the List of Newsgroups          General Alpine Commands
10828 ---------------------------------          ---------------------
10829  P   Move to previous group                ?   Show this help text
10830  N   Move to next group
10831  -   Show previous screen of groups
10832 Spc  (space bar) Show next screen
10833  W   WhereIs (search group names)
10834  L   Use ListMode
10836 Group Selection Commands
10837 -------------------------
10838  E   Exit the News Subscribe menu (without selecting any groups)
10839  S   Subscribe to the currently highlighted newsgroup
10840 </PRE>
10841 <!--chtml endif-->
10843 When in ListMode, there is an additional command for marking groups to
10844 subscribe to:
10846 <!--chtml if pinemode="function_key"-->
10847 <PRE>
10848 ListMode Commands
10849 -------------------------
10850 F9  Set or unset the highlighted group
10851 </PRE>
10852 <!--chtml else-->
10853 <PRE>
10854 ListMode Commands
10855 -------------------------
10856 X   Set or unset the highlighted group
10857 </PRE>
10858 <!--chtml endif-->
10860 &lt;End of help on this topic&gt;
10861 </BODY>
10862 </HTML>
10863 ===== h_folder_postnews =====
10864 <HTML>
10865 <HEAD>
10866 <TITLE>Newsgroup selecting for Posting explained</TITLE>
10867 </HEAD>
10868 <BODY>
10869 This screen is designed to allow you to quickly and easily survey
10870 the available newsgroups and select one to post news to.
10872 <!--chtml if pinemode="function_key"-->
10873 <PRE>
10874 Navigating the List of Newsgroups          General Alpine Commands
10875 ---------------------------------          ---------------------
10876 F5   Move to previous group                F1  Show this help text
10877 F6   Move to next group
10878 F7   Show previous screen of groups
10879 F8   Show next screen of groups
10880 F12  WhereIs (search group names)
10882 Group Selection Commands
10883 -------------------------
10884 F3   Exit the Selection menu (without selecting a group)
10885 F4   Select the currently highlighted newsgroup
10886 </PRE>
10887 <!--chtml else-->
10888 <PRE>
10889 Navigating the List of Newsgroups          General Alpine Commands
10890 ---------------------------------          ---------------------
10891  P   Move to previous group                ?  Show this help text
10892  N   Move to next group
10893  -   Show previous screen of groups
10894 Spc  (space bar) Show next screen of groups
10895  W   WhereIs (search group names)
10897 Group Selection Commands
10898 -------------------------
10899  E   Exit the Selection menu (without selecting a group)
10900  S   Select the currently highlighted newsgroup
10901 </PRE>
10902 <!--chtml endif-->
10904 &lt;End of help on this topic&gt;
10905 </BODY>
10906 </HTML>
10907 ===== h_folder_save =====
10908 <HTML>
10909 <HEAD>
10910 <TITLE>Folder Select for Save Explained</TITLE>
10911 </HEAD>
10912 <BODY>
10913 This screen is designed to allow you to quickly and easily survey your
10914 folders and select one to use for saving the current message.
10917 <!--chtml if pinemode="function_key"-->
10918 <PRE>
10919 Navigating the List of Folders             General Alpine Commands
10920 ------------------------------             ---------------------
10921 F5   Move to previous folder               F1  Show this help text
10922 F6   Move to next folder
10923 F7   Show previous screen of folders
10924 F8   Show next screen of folders
10925 F12  WhereIs (search folder names)
10927 Folder Selection Commands
10928 -------------------------
10929 F3   Exit the Folder Select menu (without selecting a folder)
10930 F4   Select the currently highlighted folder
10931 F11  AddNew folder (just like Select, but you type in a new folder name)
10932 </PRE>
10933 <!--chtml else-->
10934 <PRE>
10935 Navigating the List of Folders             General Alpine Commands
10936 ------------------------------             ---------------------
10937  P   Move to previous folder               ?  Show this help text
10938  N   Move to next folder
10939  -   Show previous screen of folders
10940 Spc  (space bar) Show next screen of folders
10941  W   WhereIs (search folder names)
10943 Folder Selection Commands
10944 -------------------------
10945  E   Exit the Folder Select menu (without selecting a folder)
10946  S   Select the currently highlighted folder
10947  A   AddNew folder (just like Select, but you type in a new folder name)
10948 </PRE>
10949 <!--chtml endif-->
10951 FOR MORE INFORMATION: See the section on
10952 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10954 &lt;End of help on this topic&gt;
10955 </BODY>
10956 </HTML>
10957 ===== h_folder_fcc =====
10958 <HTML>
10959 <HEAD>
10960 <TITLE>Folder Select for Fcc Explained</TITLE>
10961 </HEAD>
10962 <BODY>
10963 This screen is designed to allow you to quickly and easily survey your
10964 folders and select one to use as the file carbon copy (fcc) for the
10965 current message.
10968 <!--chtml if pinemode="function_key"-->
10969 <PRE>
10970 Navigating the List of Folders             General Alpine Commands
10971 ------------------------------             ---------------------
10972 F5   Move to previous folder               F1  Show this help text
10973 F6   Move to next folder
10974 F7   Show previous screen of folders
10975 F8   Show next screen of folders
10976 F12  WhereIs (search folder names)
10978 Folder Selection Commands
10979 -------------------------
10980 F3   Exit the Folder Select menu (without selecting a folder)
10981 F4   Select the currently highlighted folder
10982 F11  AddNew folder (just like Select, but you type in a new folder name)
10983 </PRE>
10984 <!--chtml else-->
10985 <PRE>
10986 Navigating the List of Folders             General Alpine Commands
10987 ------------------------------             ---------------------
10988  P   Move to previous folder               ?  Show this help text
10989  N   Move to next folder
10990  -   Show previous screen of folders
10991 Spc  (space bar) Show next screen of folders
10992  W   WhereIs (search folder names)
10994 Folder Selection Commands
10995 -------------------------
10996  E   Exit the Folder Select menu (without selecting a folder)
10997  S   Select the currently highlighted folder
10998  A   AddNew folder (just like Select, but you type in a new folder name)
10999 </PRE>
11000 <!--chtml endif-->
11002 FOR MORE INFORMATION: See the section on
11003 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11005 &lt;End of help on this topic&gt;
11006 </BODY>
11007 </HTML>
11008 ===== h_folder_pattern_roles =====
11009 <HTML>
11010 <HEAD>
11011 <TITLE>Folder Select for Current Folder Explained</TITLE>
11012 </HEAD>
11013 <BODY>
11014 This screen is designed to allow you to quickly and easily survey your
11015 folders and select one to use as the specific Current Folder
11016 in a Pattern.
11019 <!--chtml if pinemode="function_key"-->
11020 <PRE>
11021 Navigating the List of Folders             General Alpine Commands
11022 ------------------------------             ---------------------
11023 F5   Move to previous folder               F1  Show this help text
11024 F6   Move to next folder
11025 F7   Show previous screen of folders
11026 F8   Show next screen of folders
11027 F12  WhereIs (search folder names)
11029 Folder Selection Commands
11030 -------------------------
11031 F3   Exit the Folder Select menu (without selecting a folder)
11032 F4   Select the currently highlighted folder
11033 F11  AddNew folder (just like Select, but you type in a new folder name)
11034 </PRE>
11035 <!--chtml else-->
11036 <PRE>
11037 Navigating the List of Folders             General Alpine Commands
11038 ------------------------------             ---------------------
11039  P   Move to previous folder               ?  Show this help text
11040  N   Move to next folder
11041  -   Show previous screen of folders
11042 Spc  (space bar) Show next screen of folders
11043  W   WhereIs (search folder names)
11045 Folder Selection Commands
11046 -------------------------
11047  E   Exit the Folder Select menu (without selecting a folder)
11048  S   Select the currently highlighted folder
11049  A   AddNew folder (just like Select, but you type in a new folder name)
11050 </PRE>
11051 <!--chtml endif-->
11053 FOR MORE INFORMATION: See the section on
11054 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11056 &lt;End of help on this topic&gt;
11057 </BODY>
11058 </HTML>
11059 ===== h_folder_stayopen_folders =====
11060 <HTML>
11061 <HEAD>
11062 <TITLE>Folder Select Explained</TITLE>
11063 </HEAD>
11064 <BODY>
11065 This screen is designed to allow you to quickly and easily survey your
11066 folders and select one to use as a Stay-Open folder.
11069 <!--chtml if pinemode="function_key"-->
11070 <PRE>
11071 Navigating the List of Folders             General Alpine Commands
11072 ------------------------------             ---------------------
11073 F5   Move to previous folder               F1  Show this help text
11074 F6   Move to next folder
11075 F7   Show previous screen of folders
11076 F8   Show next screen of folders
11077 F12  WhereIs (search folder names)
11079 Folder Selection Commands
11080 -------------------------
11081 F3   Exit the Folder Select menu (without selecting a folder)
11082 F4   Select the currently highlighted folder
11083 F11  AddNew folder (just like Select, but you type in a new folder name)
11084 </PRE>
11085 <!--chtml else-->
11086 <PRE>
11087 Navigating the List of Folders             General Alpine Commands
11088 ------------------------------             ---------------------
11089  P   Move to previous folder               ?  Show this help text
11090  N   Move to next folder
11091  -   Show previous screen of folders
11092 Spc  (space bar) Show next screen of folders
11093  W   WhereIs (search folder names)
11095 Folder Selection Commands
11096 -------------------------
11097  E   Exit the Folder Select menu (without selecting a folder)
11098  S   Select the currently highlighted folder
11099  A   AddNew folder (just like Select, but you type in a new folder name)
11100 </PRE>
11101 <!--chtml endif-->
11103 FOR MORE INFORMATION: See the section on
11104 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11106 &lt;End of help on this topic&gt;
11107 </BODY>
11108 </HTML>
11109 ===== h_folder_action_roles =====
11110 <HTML>
11111 <HEAD>
11112 <TITLE>Folder Select Explained</TITLE>
11113 </HEAD>
11114 <BODY>
11115 This screen is designed to allow you to quickly and easily survey your
11116 folders and select one to use as the folder into which messages
11117 matching this filter will be moved.
11120 <!--chtml if pinemode="function_key"-->
11121 <PRE>
11122 Navigating the List of Folders             General Alpine Commands
11123 ------------------------------             ---------------------
11124 F5   Move to previous folder               F1  Show this help text
11125 F6   Move to next folder
11126 F7   Show previous screen of folders
11127 F8   Show next screen of folders
11128 F12  WhereIs (search folder names)
11130 Folder Selection Commands
11131 -------------------------
11132 F3   Exit the Folder Select menu (without selecting a folder)
11133 F4   Select the currently highlighted folder
11134 F11  AddNew folder (just like Select, but you type in a new folder name)
11135 </PRE>
11136 <!--chtml else-->
11137 <PRE>
11138 Navigating the List of Folders             General Alpine Commands
11139 ------------------------------             ---------------------
11140  P   Move to previous folder               ?  Show this help text
11141  N   Move to next folder
11142  -   Show previous screen of folders
11143 Spc  (space bar) Show next screen of folders
11144  W   WhereIs (search folder names)
11146 Folder Selection Commands
11147 -------------------------
11148  E   Exit the Folder Select menu (without selecting a folder)
11149  S   Select the currently highlighted folder
11150  A   AddNew folder (just like Select, but you type in a new folder name)
11151 </PRE>
11152 <!--chtml endif-->
11154 FOR MORE INFORMATION: See the section on
11155 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11157 &lt;End of help on this topic&gt;
11158 </BODY>
11159 </HTML>
11160 ===== h_abook_config =====
11161 <HTML>
11162 <HEAD>
11163 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11164 </HEAD>
11165 <BODY>
11166 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11167 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11168 <!--chtml if pinemode="function_key"-->
11169 <PRE>
11170 Available  Commands                        
11171 -------------------------------            
11172 F1  Show Help Text                         
11173 F3  Back to MAIN Alpine menu                 
11174 F4  Change configuration for address book  
11175 F5  Move to previous address book          
11176 F6  Move to next address book              
11177 F7  Previous page of address books         
11178 F8  Next page of address books             
11179 F9  Add new address book                   
11180 F10 Delete existing address book           
11181 F11 Shuffle the order of address books     
11182 F12 Whereis (search address book titles)   
11183 </PRE>
11184 <!--chtml else-->
11185 <PRE>
11186 Navigation                     General Alpine Commands
11187 -----------------------        ---------------------
11188  P  Prev Address Book             ?  Display this help text
11189  N  Next Address Book             E  Back to MAIN Alpine menu
11190  -  Previous page
11191 Spc (space bar) Next page
11192  W  WhereIs (search for word in address book titles)
11194 Setup Address Books Commands
11195 ------------------------------------------------
11196  A  Add new address book          $  Shuffle the order of address books
11197  D  Delete existing address book  C  Change configuration for address book
11198 </PRE>
11199 <!--chtml endif-->
11201 <H2>Description of the Setup Address Books Screen</H2>
11203 This screen lets you add, delete, modify, or change the order of your
11204 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11205 fill in.  If you are adding a remote address book on an IMAP server
11206 you should fill in the name of the IMAP server.  Otherwise, leave
11207 that field blank.  (Note that remote IMAP address books are an Alpine
11208 concept and are unlikely to interoperate with other mail clients.)
11209 For a remote address book, fill in the name of the remote folder
11210 in the Folder field.  This should be a folder that is used only for
11211 this one purpose, not a general purpose folder you expect to store
11212 messages in.
11213 <P>If you are adding a local address book, fill in the
11214 Folder Name field with a local file name (e.g., .addressbook).
11216 <B>Please note:</B> Remote address books stored on an IMAP server are 
11217 of an entirely different format (namely, a special-purpose 
11218 &quot;mail folder&quot;) than that of the local addressbook familiar 
11219 to Alpine users.  Therefore, 
11220 you cannot use &quot;add a remote address book&quot; to make an existing 
11221 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11222 Alpine running on a different host.  
11225 The &quot;Del Abook&quot; command allows you to remove an address book
11226 from your configuration.  It will also ask you if you wish to remove
11227 the data for that address book, which would erase all traces of the
11228 address book if you answer Yes.
11231 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11232 The difference is that instead of adding a new address book to your
11233 configuration, you are changing the configuration of an existing entry.
11234 For example, you might want to correct a typing error or change a
11235 nickname.  The &quot;Change&quot; command is not a move command.  If you
11236 change the folder name or server name the data will not be moved for you.
11239 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11240 an address book toward another address book in the same group then
11241 the order of those two address books will be swapped.  If you shuffle
11242 the last Personal address book down towards the Global address book
11243 section, it will become a Global address book.  If you shuffle
11244 the first Global address book up it will become a Personal address
11245 book.  The main difference between Personal and Global address
11246 books is that Global address books are forced read-only.
11247 <P><UL>
11248 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11249 </UL>
11251 &lt;End of help on this topic&gt;
11252 </BODY>
11253 </HTML>
11254 ===== h_abook_top =====
11255 <HTML>
11256 <HEAD>
11257 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11258 </HEAD>
11259 <BODY>
11260 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11261 <!--chtml if pinemode="function_key"-->
11262 <PRE>
11263 Available  Commands -- Group 1         Available Commands -- Group 2
11264 -------------------------------        ------------------------------
11265 F1  Show Help Text                      F1  Show Help Text
11266 F2  See commands in next group          F2  See commands in next group
11267 F3  Exit to MAIN MENU                   F3  Quit Alpine
11268 F4  View/Edit selected address book
11269 F5  Move to previous address book       F5  FOLDER LIST screen
11270 F6  Move to next address book           F6  Specify a folder to go to
11271 F7  Previous page                       F7  MESSAGE INDEX screen
11272 F8  Next page                           F9  Print list of address books
11273 F12 Whereis (search for word)
11274 </PRE>
11275 <!--chtml else-->
11276 <PRE>
11277 Navigation                       General Alpine Commands
11278 -----------------------          ---------------------
11279  P  Previous Entry                ?  Display this help text
11280  N  Next Entry                    O  Show all other available commands
11281  -  Previous page                 &lt;  Back to MAIN Alpine menu
11282 Spc (space bar) Next page         Q  Quit Alpine
11283  W  WhereIs (search for word)     L  FOLDER LIST screen
11284                                   G  Specify a folder to go to
11285 Address Book Commands             I  MESSAGE INDEX screen
11286 ------------------------------------------------
11287  &gt;  View/Edit selected address book
11288               or
11289  &gt;  Search on selected directory server
11291  %  Print list of address books and directory servers
11292 </PRE>
11293 <!--chtml endif-->
11295 <H2>Description of the Address Book List Screen</H2>
11297 From this screen you may choose which address book you wish to view
11298 or edit. For more information on address books, view one of your
11299 address books (with
11300 <!--chtml if pinemode="function_key"-->
11302 <!--chtml else-->
11303 &quot;&gt;&quot;
11304 <!--chtml endif-->)
11305 and see the Help Text there.<P>
11307 You may also choose a directory server on which to search for entries.
11308 You do that by highlighting the directory server line and using
11309 <!--chtml if pinemode="function_key"-->
11311 <!--chtml else-->
11312 &quot;&gt;&quot;
11313 <!--chtml endif-->.<P>
11315 If you wish to define new address books or directory servers go to the Main
11316 menu and choose Setup. You may then either choose to setup AddressBooks or
11317 Directory (among other things). It's possible that the Directory option
11318 will not be there if the Alpine you are using does not contain LDAP directory
11319 lookup functionality.
11321 <P><UL>
11322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11323 </UL><P>
11324 &lt;End of help on this topic&gt;
11325 </BODY>
11326 </HTML>
11327 ===== h_abook_opened =====
11328 <HTML>
11329 <HEAD>
11330 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11331 </HEAD>
11332 <BODY>
11333 <H1>THE ALPINE ADDRESS BOOK</H1>
11334 <H2>ADDRESS BOOK COMMANDS</H2>
11335 <PRE>
11336 <!--chtml if pinemode="function_key"-->
11337 Available  Commands -- Group 1         Available Commands -- Group 2   
11338 -------------------------------        ------------------------------  
11339 F1  Show Help Text                      F1  Show Help Text             
11340 F2  See commands in next group          F2  See commands in next group
11341 F3  Exit this screen                    F3  Quit Alpine                  
11342 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11343 F5  Move to previous entry              F5  FOLDER LIST screen         
11344 F6  Move to next entry                  F6  Specify a folder to go to  
11345 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11346 F8  Next page of address book           F8  Compose to entry using roles
11347 F9  Add new entry to address book       F9  Print address book         
11348 F10 Delete selected entry               F10 TakeAddr to another addrbook
11349 F11 Compose to selected entry           F11 Save or Export addrbook selections
11350 F12 Whereis (search address book)       F12 Forward entry by mail       
11352 Available Commands -- Group 3                                           
11353 ------------------------------                                          
11354 F3  Select                              F6  Zoom (or unZoom)            
11355 F5  Select Current                      F7  Apply Command to Selection  
11356 <!--chtml else-->
11357 Address Book Navigation        General Alpine Commands
11358 -----------------------        ---------------------
11359  P  Prev Address                  ?  Display this help text
11360  N  Next Address                  O  Show all other available commands
11361  -  Previous page of address book M  Back to MAIN MENU
11362 Spc (space bar) Next page         Q  Quit Alpine
11363  W  WhereIs (search for word      C  Compose message to selected addr
11364      or name in address book)     #  Compose to addr using roles
11365  &lt;  To List of Address Books if   L  FOLDER LIST screen
11366      more than one, else to MAIN  G  Specify a folder to go to
11367                                   I  MESSAGE INDEX screen
11369 Address Book Commands
11370 ----------------------------------------------------
11371  &gt;  View/Update selected entry    D  Delete selected entries
11372  %  Print address book            S  Save or Export address book selections
11373  F  Forward entries by mail       @  Add new entry to address book
11375  ;  Select command                Z  Toggle Zoom Mode
11376  :  Select highlighted entry      A  Apply command to selected entries
11378 <!--chtml endif-->
11379 </PRE>
11380 Note:  The presence or absence of the final four commands above is
11381 controlled by the option 
11382 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11385 <H2>Description of the Address Book Screen</H2>
11387 This screen lets you edit and manage entries in your address book.  It
11388 also acts as a short-cut for composing messages to people in the address
11389 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11390 message starts &quot;pre-addressed&quot; to whatever address book entry is
11391 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
11392 role to use in your composition.
11394 Alpine's address book helps you keep a list of addresses you send email to so
11395 you do not have to remember addresses that are often complex.  Each entry
11396 in the address book has five fields, all of them optional.  The three
11397 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11399         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11400         This is what you type in as you are addressing the message in the
11401         composer.  If there is a matching entry in your address book(s),
11402         Alpine will extract the corresponding FullName and Address fields to
11403         generate the actual address for your message.
11405         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11406 of the
11407         person or organization.  Usually the full names are put in last
11408         name first so they sort nicely in alphabetical order.  Whatever
11409         you put as the name here will appear on the message when it is
11410         finally delivered.  Examples:<PRE>
11411            Garcia Marquez, Gabriel
11412            Henscheid, Eckhard
11413            Alpine-Info mailing list
11414            Library materials renewal requests
11415            Kim An-guk
11416            &quot;George III, King of Great Britain, 1738-1820&quot;
11417 </PRE>
11418 (In the second-to-last example, no comma is used in the name so that 
11419 the family name appears first in the address book and when the entry is 
11420 used in the composer.
11421 In the last example, retaining the commas is intended; 
11422 double-quotation marks surround the name to 
11423 prevent the transposition of its parts when the entry is used in 
11424 the composer.)
11426         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11427         a valid Internet address that conforms to the Internet message
11428         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11430 The two fields that aren't usually visible are:<DL>
11432   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11433         message to this address to be saved in.  If this field is set, and
11434         this address is the first one in the message's To: header, then
11435         Alpine will use this folder name for the FCC in lieu of the normal
11436         FCC folder name.
11438   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11439         </DL>
11441 Due to screen width limitations, these last two fields do not show up in
11442 the normal ADDRESS BOOK display.  You may select the 
11443 &quot;View/Update&quot; command to
11444 view or modify them.  You may use the configuration variable
11445 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11446 to add these fields to your ADDRESS BOOK 
11447 display, or to modify the format of the display.
11449 <H2>Sorting the Address book</H2>
11451 By default, address book entries are sorted alphabetically on the full
11452 name with distribution lists sorted to the end.  Sorting can be changed by
11453 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11454 --assuming you have &quot;write&quot; permission for the address book file.
11456 Unlike the sorting of folders (which only changes presentation), sorting an
11457 address book actually changes the file as it is kept on the computer.  For
11458 this reason you won't be able to sort a shared or system-wide address
11459 book.
11461 <H2>Adding New Entries</H2>
11463 The easiest way to add new entries to your address book is to use the
11464 &quot;TakeAddr&quot; command when viewing a message.
11465 This command allows you to take addresses from the header and body of the
11466 message and put them into your address book, without having to type
11467 them in.
11470 To manually add a new entry from within the address book screen, use the AddNew
11471 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11472 Use this command both for adding a simple alias and for adding a
11473 distribution list.
11475 <H2>Distribution Lists</H2>
11477 Address book entries can be simple cases of aliases (a single nickname is linked
11478 to a single email address) or distribution lists (a single nickname
11479 pointing at more than one email address).  Each distribution list has a
11480 nickname, a full name and a list of addresses.  The addresses may be
11481 actual addresses or they may be other nicknames in your address book.
11482 They may even refer to other distribution lists.
11483 There's really no difference between a simple alias and a distribution list,
11484 other than the number of addresses.
11485 Therefore, you can turn a simple alias with one address into a distribution
11486 list simply by adding more addresses.
11487 To add entries to an existing list or alias
11488 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
11489 a single address from the list if the cursor is placed on the address;
11490 it will delete the entire distribution list if the cursor is on the
11491 nickname/fullname line.  View/Update may also be used to delete addresses
11492 from a list.
11494 Address field entries in distribution lists may take any one of three
11495 forms: a nickname existing in any of the defined address books, a normal
11496 address of the form &quot;jsmith@art.example.com&quot;, or a complete
11497 fullname/address combination, e.g. &quot;John Smith
11498 &lt;jsmith@art.example.com&gt;&quot;.
11500 Distribution lists in Alpine address books can only be used by the person or
11501 people who have access to that address book.  They are not usually used to
11502 implement discussion groups, but can be used to facilitate small
11503 discussion groups if all the participants have access to the same shared
11504 address book.
11506 <H2>FCC and Comments</H2>
11508 As mentioned above, each entry in the address book also has two other optional
11509 fields, Fcc and Comments.  The command to look at or change either of these
11510 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
11511 Comments field is just for your own use.  The Fcc field overrides the
11512 default Fcc if this address is the first one on the To line.  The WhereIs
11513 command may be used to search for particular strings in the address book,
11514 including fields that are not visible (like Comment and Fcc by default).
11516 <H2>Aggregate Operations</H2>
11518 If the feature
11519 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
11520 is turned on (the default), then the four commands &quot;Select&quot;,
11521 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
11522 are available.  The two selection commands allow you to mark a set of
11523 address book entries as being selected.  If you have more than one address
11524 book, the selections may be in more than one of those address books.
11525 The &quot;Zoom&quot; command will toggle between displaying only the selected
11526 entries and all of the entries.  The &quot;Apply&quot; command allows you to
11527 apply one of the regular address book commands to all of the selected
11528 entries.  Usually the address book commands apply to only the entry
11529 highlighted by the cursor.  The &quot;Apply&quot; command works with the
11530 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
11531 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
11533 <H2>Exporting and Forwarding Address book entries</H2>
11535 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
11536 address book entry is placed in a plain text file in your home directory
11537 <!--chtml if pinemode="running"-->
11538 (which, in the present configuration of your system, is
11539  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
11540 <!--chtml endif-->
11541 or current working directory
11542 <!--chtml if pinemode="running"-->
11543 (which, at least for your current Alpine &quot;session,&quot; 
11544 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
11545 <!--chtml endif-->, depending on the 
11546 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
11547 configuration setting.  If you have some entries selected and use the
11548 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
11549 placed in the text file.
11551 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
11552 address book entry is placed in a special attachment and you are put into
11553 the composer.  You can fill in some comments in the body of the message,
11554 if you'd like, and send it to somebody else who uses Alpine.  The recipient
11555 may use the TakeAddr command on that message to insert the address book
11556 entry you sent in their own address book.  If you have some entries
11557 selected and use the Apply Forward command all of the selected entries
11558 will be forwarded in a single message.  You may
11559 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.
11560 The recipient must be using Alpine in order to receive this correctly.
11561 One way for the recipient to handle this might be to create an empty
11562 address book and then &quot;Take&quot; your forwarded address book entries into
11563 that empty address book.
11565 <H2>Multiple and/or Site-Wide Address books</H2>
11567 You may have more than one personal address book.  In addition, there may
11568 be one or more global address books.  This capability allows you to have
11569 multiple personal address books (some of which may be shared) and it also
11570 allows system administrators to implement site-wide address books that
11571 contain entries for users on multiple machines within the organization.
11572 <P><DL>
11573 <DT>Searching
11574   <DD> If you enter a nickname when composing a message, your
11575   personal address books will be searched through in order, and then the
11576   global address book(s) searched. If more than one address book has an entry
11577   for the nickname, Alpine uses the first one that it finds, so an entry in
11578   your personal address book would override a global address book entry. If
11579   after searching all the address books there is still no match, (Unix) Alpine
11580   then searches the local host password file on the assumption that you have
11581   entered a local user name rather than an address book nickname.
11582   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
11583   command, but global address books are always searched after personal
11584   address books.
11586   <P><DT>Tab completion
11587   <DD> If the
11588   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
11589   feature is turned on (the default) then the Tab key may be used
11590   in the composer to complete partially typed nicknames in the To
11591   or Cc lines. You type the first few letters of a nickname and then
11592   press the Tab key. It there is only one nickname that matches it will
11593   be filled in by Alpine. If there is more than one the unambiguous part
11594   of the nicknames will be filled in. For example, if your address book or
11595   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
11596   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
11597   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
11598   If you then type a second Tab character you will be presented with a list
11599   of matching nicknames to select from. Alternatively, you could type another
11600   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
11601   in the entire &quot;barbecue&quot; entry.
11603   <P><DT>Defining
11604   <DD> You define multiple personal address books in the 
11605   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
11606   from the MAIN MENU.  
11607   You may add as many as you like.  Global address books are usually
11608   site-wide address books defined by the System administrator, but
11609   you may define global address books of your own just like you define
11610   personal address books.
11612   <P><DT>Creating and updating
11613   <DD> Personal address books are normally created empty
11614   and populated by explicit additions from within Alpine, e.g. via the
11615   TakeAddr command.  Unlike personal address books, global address books may
11616   not be modified/updated from within Alpine; that is, they are Read-Only.
11617   Thus, global address books are created, populated and updated outside of
11618   Alpine. They might be hand-edited, generated by a program from another
11619   database, or by copying an existing address book.  They might also be
11620   some other user's personal address book, and so be modified normally by
11621   that user but accessed Read-Only by you.  See the Alpine Technical
11622   Notes document (included in the Alpine distribution) for more information on
11623   this.
11625   <P><DT>Accessing
11626   <DD>There are two different types of address books in Alpine.
11627   A local address book is stored in a regular file and the normal file
11628   access permissions apply.  A remote address book is stored on an IMAP
11629   server in a special folder that contains only messages pertaining to
11630   that address book.  The last message in the remote folder contains a
11631   copy of the address book data, and that data is copied to a local cache
11632   file in your home directory.  From there it is accessed just like a local
11633   address book.  The name of the cache file is kept track of in a special
11634   file called the
11635   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
11636   the name of which is stored in
11637   your Alpine configuration file the first time you use a remote address book.
11638   Just as local Alpine address books use a format that only Alpine understands,
11639   remote Alpine address books do the same and other mail reading programs
11640   are unlikely to be able to understand them.<P>
11641   While global address books are explicitly intended to be shared, there is
11642   nothing to prevent you from sharing a personal address book with other
11643   Alpine users. This might be useful in the case of a small workgroup.
11644   However, it is recommended that updates to shared personal address books
11645   be done when other Alpine users are not accessing the address book. Alpine
11646   does not do any file-locking to manage concurrent updates to the
11647   addressbook, but it does check to see if the file has been modified before
11648   making any changes.  Consequently, inadvertent concurrent updates will
11649   only cause other Alpine users to have to restart their address book
11650   operation, which will cause Alpine to reopen the updated file.
11652   <P><DT>Converting to Remote
11653   <DD>The easiest way to convert an existing local
11654   address book into a remote address book is to create an empty new remote
11655   personal address book by typing &quot;A&quot; to execute the
11656   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
11657   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
11658   address book.
11659   After you have added the empty
11660   remote address book, go into the screen for the address book you wish
11661   to copy and &quot;Select&quot; &quot;All&quot;.
11662   This selects every entry in that
11663   address book.  Then type the command &quot;Apply Save&quot;.
11664   You will be asked for the address book to save to.  You may use ^P and ^N
11665   to get to the new empty address book, then hit RETURN and the addresses
11666   will be copied.
11667   At this point you'll probably want to unselect all the entries in the local
11668   address book before proceeding. You do that with
11669   &quot;Select&quot; &quot;unselect All&quot;.
11671 </DL>
11672 <UL>
11673 <LI><A HREF="h_address_format">Explanation of Address formats</A>
11674 </UL>
11675 <P><UL>
11676 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11677 </UL>
11679 &lt;End of help on this topic&gt;
11680 </BODY>
11681 </HTML>
11682 ===== h_abook_select_addr =====
11683 <HTML>
11684 <HEAD>
11685 <TITLE>Addressbook Selection Explained</TITLE>
11686 </HEAD>
11687 <BODY>
11688 <H1>SELECT ADDRESS</H1>
11689 <!--chtml if pinemode="function_key"-->
11690 <PRE>
11691 Navigating the List of Messages               General Alpine Commands
11692 -------------------------------               ---------------------
11693 F5   Move to previous entry                   F1  Show this help text
11694 F6   Move to next entry
11695 F7   Show previous screen of address book
11696 F8   Show next screen of address book
11697 F12  WhereIs (search through address book)
11699 Address Selection Commands
11700 --------------------------
11701 F3   Exit the Address Select screen (without selecting an address)
11702 F4   Select the currently highlighted entry
11703 </PRE>
11704 <!--chtml else-->
11705 <PRE>
11706 Navigating the List of Messages               General Alpine Commands
11707 -------------------------------               ---------------------
11708  P   Move to previous entry                   ?  Show this help text
11709  N   Move to next entry
11710  -   Show previous screen of address book
11711 Spc  (space bar) Show next screen of address book
11712  W   WhereIs (search through address book)
11714 Address Selection Commands
11715 --------------------------
11716  E   Exit the Address Select screen (without selecting an address)
11717  S   Select the currently highlighted entry
11718 </PRE>
11719 <!--chtml endif-->
11722 This screen is designed to let you easily scan your address book(s) in
11723 order to select an entry for the message you are composing.  You cannot
11724 edit your address book in any way at this time, for address book
11725 maintenance, select the address book command when not composing a message.
11728 If you are composing a message and know the nickname of the person/list you
11729 want, you can bypass this screen by simply typing in the nickname on the
11730 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11731 selecting an entry does not cancel your message.
11734 FOR MORE INFORMATION on addressing see
11735 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11736 <A HREF="h_abook_opened">Address Book Screen's</A>
11737 help text.
11739 &lt;End of help on this topic&gt;
11740 </BODY>
11741 </HTML>
11742 ===== h_abook_select_top =====
11743 <HTML>
11744 <HEAD>
11745 <TITLE>Addressbook Selection Navigation Explained</TITLE>
11746 </HEAD>
11747 <BODY>
11748 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
11749 <!--chtml if pinemode="function_key"-->
11750 <PRE>
11751 Navigating the List of Address Books       General Alpine Commands
11752 -------------------------------            ---------------------
11753 F4   View the highlighted address book
11754 F5   Move to previous address book         F1  Show this help text
11755 F6   Move to next address book
11756 F7   Show previous screen of address books
11757 F8   Show next screen of address books
11758 F12  WhereIs (search through address books)
11760 Address Selection Commands
11761 --------------------------
11762 F3   Exit the Address Select screen (without selecting an address)
11763 F4   Select the currently selected entries (if using ListMode)
11764 F9   Change to ListMode
11765 </PRE>
11766 <!--chtml else-->
11767 <PRE>
11768 Navigating the List of Address Books       General Alpine Commands
11769 -------------------------------            ---------------------
11770  &gt;   View the highlighted address book
11771  P   Move to previous address book         ?  Show this help text
11772  N   Move to next address book
11773  -   Show previous screen of address books
11774 Spc  (space bar) Show next screen of address books
11775  W   WhereIs (search through address books)
11777 Address Selection Commands
11778 --------------------------
11779  E   Exit the Address Select screen (without selecting an address)
11780  S   Select the currently selected entries (if using ListMode)
11781  L   Change to ListMode
11782 </PRE>
11783 <!--chtml endif-->
11786 This screen is designed to let you easily scan your address book(s) in
11787 order to select entries for the message you are composing.  You cannot
11788 edit your address book in any way at this time.  For address book
11789 maintenance, select the address book command when not composing a message.
11792 If you are composing a message and know the nickname of the person/list you
11793 want, you can bypass this screen by simply typing in the nickname on the
11794 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11795 selecting an entry does not cancel your message.
11798 The ListMode command will add a column at the left edge of the screen.
11799 You mark the entries that you wish to select with the &quot;X&quot; command.
11800 This allows you to choose more than one entry at a time.
11803 An alternative method of composing a message to entries in your
11804 address book(s) is to first use the &quot;Select&quot; command from
11805 the address book maintenance screen and then the &quot;Apply&quot;
11806 &quot;ComposeTo&quot; command to start the composer composing to the
11807 selected entries.
11810 FOR MORE INFORMATION on addressing see
11811 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11812 <A HREF="h_abook_opened">Address Book Screen's</A>
11813 help text.
11815 &lt;End of help on this topic&gt;
11816 </BODY>
11817 </HTML>
11818 ===== h_abook_select_listmode =====
11819 <HTML>
11820 <HEAD>
11821 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
11822 </HEAD>
11823 <BODY>
11824 <H1>COMPOSER: SELECT ADDRESSES</H1>
11825 <!--chtml if pinemode="function_key"-->
11826 <PRE>
11827 Navigating the List of Messages                 General Alpine Commands
11828 -------------------------------                 ---------------------
11829 F5   Move to previous entry                     F1  Show this help text
11830 F6   Move to next entry
11831 F7   Show previous screen of address book
11832 F8   Show next screen of address book
11833 F12  WhereIs (search through address book)
11835 Address Selection Commands
11836 --------------------------
11837 F3   Exit the Address Select screen (without selecting an address)
11838 F4   Select the currently highlighted entry
11839 F9   Change to ListMode
11840 </PRE>
11841 <!--chtml else-->
11842 <PRE>
11843 Navigating the List of Messages                 General Alpine Commands
11844 -------------------------------                 ---------------------
11845  P   Move to previous entry                     ?  Show this help text
11846  N   Move to next entry
11847  -   Show previous screen of address book
11848 Spc  (space bar) Show next screen of address book
11849  W   WhereIs (search through address book)
11851 Address Selection Commands
11852 --------------------------
11853  E   Exit the Address Select screen (without selecting an address)
11854  S   Select the currently highlighted entry
11855  L   Change to ListMode
11856 </PRE>
11857 <!--chtml endif-->
11860 This screen is designed to let you easily scan your address book(s) in
11861 order to select entries for the message you are composing.  You cannot
11862 edit your address book in any way at this time, for address book
11863 maintenance, select the address book command when not composing a message.
11866 If you are composing a message and know the nickname of the person/list you
11867 want, you can bypass this screen by simply typing in the nickname on the
11868 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11869 selecting an entry does not cancel your message.
11872 The ListMode command will add a column at the left edge of the screen.
11873 You mark the entries that you wish to select with the &quot;X&quot; command.
11874 This allows you to choose more than one entry at a time.
11877 An alternative method of composing a message to entries in your
11878 address book(s) is to first use the &quot;Select&quot; command from
11879 the address book maintenance screen and then the &quot;Apply&quot;
11880 &quot;ComposeTo&quot; command to start the composer composing to the
11881 selected entries.
11884 FOR MORE INFORMATION on addressing see
11885 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11886 <A HREF="h_abook_opened">Address Book Screen's</A>
11887 help text.
11889 &lt;End of help on this topic&gt;
11890 </BODY>
11891 </HTML>
11892 ===== h_abook_select_checks =====
11893 <HTML>
11894 <HEAD>
11895 <TITLE>Address Selection from Composer Explained</TITLE>
11896 </HEAD>
11897 <BODY>
11898 <H1>COMPOSER: SELECT ADDRESSES</H1>
11899 <!--chtml if pinemode="function_key"-->
11900 <PRE>
11901 Navigating the List of Messages                 General Alpine Commands
11902 -------------------------------                 ---------------------
11903 F5   Move to previous entry                     F1  Show this help text
11904 F6   Move to next entry
11905 F7   Show previous screen of address book
11906 F8   Show next screen of address book
11907 F12  WhereIs (search through address book)
11909 Address Selection Commands
11910 --------------------------
11911 F3   Exit the Address Select screen (without selecting an address)
11912 F4   Select the currently highlighted entry
11913 F8   Either Sets or Unsets all entries in this address book
11914 F9   Set or Unset the highlighted entry
11915 </PRE>
11916 <!--chtml else-->
11917 <PRE>
11918 Navigating the List of Messages                 General Alpine Commands
11919 -------------------------------                 ---------------------
11920  P   Move to previous entry                     ?  Show this help text
11921  N   Move to next entry
11922  -   Show previous screen of address book
11923 Spc  (space bar) Show next screen of address book
11924  W   WhereIs (search through address book)
11926 Address Selection Commands
11927 --------------------------
11928  E   Exit the Address Select screen (without selecting an address)
11929  S   Select the currently highlighted entry
11930  X   Set or Unset the highlighted entry
11931  A   Either Sets or Unsets all entries in this address book
11932 </PRE>
11933 <!--chtml endif-->
11936 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
11937 command.  Type &quot;S Select&quot; to select all of the entries you
11938 have marked, just as if you had typed them in by hand.
11941 An alternative method of composing a message to entries in your
11942 address book(s) is to first use the &quot;Select&quot; command from
11943 the address book maintenance screen and then the &quot;Apply&quot;
11944 &quot;ComposeTo&quot; command to start the composer composing to the
11945 selected entries.
11948 FOR MORE INFORMATION on addressing see
11949 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11950 <A HREF="h_abook_opened">Address Book Screen's</A>
11951 help text.
11953 &lt;End of help on this topic&gt;
11954 </BODY>
11955 </HTML>
11956 ===== h_abook_select_nicks_take =====
11957 <HTML>
11958 <HEAD>
11959 <TITLE>Take Address Nickname Selection Explained</TITLE>
11960 </HEAD>
11961 <BODY>
11962 <H1>TAKEADDR: SELECT NICKNAME</H1>
11963 <!--chtml if pinemode="function_key"-->
11964 <PRE>
11965 Navigating the List of Messages                 General Alpine Commands
11966 -------------------------------                 ---------------------
11967 F5   Move to previous entry                     F1  Show this help text
11968 F6   Move to next entry
11969 F7   Show previous screen of address book
11970 F8   Show next screen of address book
11971 F12  WhereIs (search through address book)
11973 Message Selection Commands
11974 --------------------------
11975 F3   Exit the Nickname Select screen (without selecting an address)
11976 F4   Select the currently highlighted entry
11977 </PRE>
11978 <!--chtml else-->
11979 <PRE>
11980 Navigating the List of Messages                 General Alpine Commands
11981 -------------------------------                 ---------------------
11982  P   Move to previous entry                     ?  Show this help text
11983  N   Move to next entry
11984  -   Show previous screen of address book
11985 Spc  (space bar) Show next screen of address book
11986  W   WhereIs (search through address book)
11988 Message Selection Commands
11989 --------------------------
11990  E   Exit the Nickname Select screen (without selecting an address)
11991  S   Select the currently highlighted entry
11992 </PRE>
11993 <!--chtml endif-->
11996 This screen is designed to let you modify or add to an existing
11997 address book entry.  You have already selected the name(s) and
11998 address(es) through &quot;Take Address&quot;.  This screen simply lets
11999 you scan your address books and select the nickname to be
12000 changed/augmented.  If you want to add a new entry, then you are in
12001 the wrong place-- Select &quot;Exit&quot; command.
12004 FOR MORE INFORMATION on addressing see
12005 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12006 <A HREF="h_abook_opened">Address Book Screen's</A>
12007 help text.
12009 &lt;End of help on this topic&gt;
12010 </BODY>
12011 </HTML>
12012 ===== h_abook_select_nick =====
12013 <HTML>
12014 <HEAD>
12015 <TITLE>Nickname Selection Explained</TITLE>
12016 </HEAD>
12017 <BODY>
12018 <H1>SELECT NICKNAME</H1>
12019 <!--chtml if pinemode="function_key"-->
12020 <PRE>
12021 Navigating the List of Messages                 General Alpine Commands
12022 -------------------------------                 ---------------------
12023 F5   Move to previous entry                     F1  Show this help text
12024 F6   Move to next entry
12025 F7   Show previous screen of address book
12026 F8   Show next screen of address book
12027 F12  WhereIs (search through address book)
12029 Message Selection Commands
12030 --------------------------
12031 F3   Exit the Nickname Select screen (without selecting an address)
12032 F4   Select the currently highlighted entry
12033 </PRE>
12034 <!--chtml else-->
12035 <PRE>
12036 Navigating the List of Messages                 General Alpine Commands
12037 -------------------------------                 ---------------------
12038  P   Move to previous entry                     ?  Show this help text
12039  N   Move to next entry
12040  -   Show previous screen of address book
12041 Spc  (space bar) Show next screen of address book
12042  W   WhereIs (search through address book)
12044 Message Selection Commands
12045 --------------------------
12046  E   Exit the Nickname Select screen (without selecting an address)
12047  S   Select the currently highlighted entry
12048 </PRE>
12049 <!--chtml endif-->
12052 This screen is designed to let you look at the nicknames in your address
12053 books before choosing a new one.
12056 FOR MORE INFORMATION on addressing see
12057 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12058 <A HREF="h_abook_opened">Address Book Screen's</A>
12059 help text.
12061 &lt;End of help on this topic&gt;
12062 </BODY>
12063 </HTML>
12064 ===== h_takeaddr_screen =====
12065 <HTML>
12066 <HEAD>
12067 <TITLE>Take Address Screen Explained</TITLE>
12068 </HEAD>
12069 <BODY>
12070 <H1>TAKE ADDRESS COMMANDS</H1>
12071 <!--chtml if pinemode="function_key"-->
12072 <PRE>
12073 Navigating the List of Addresses       Address Selection Commands        
12074 --------------------------------       --------------------------        
12075  F5  Move to previous entry            F3  Exit without taking address
12076  F6  Move to next entry                F4  Take current address(es)
12077  F7  Show previous page of address list
12078  F8  Show next page of address list
12079  F2  WhereIs (search list)
12080                                --------------
12081 Mode Toggle            F9  Set/Unset current address
12082 -----------            F10 Set all
12083  F12 Toggle between List and single mode       F11 Unset all
12084 </PRE>
12085 <!--chtml else-->
12086 <PRE>
12087 Navigating the List of Addresses       Address Selection Commands
12088 --------------------------------       --------------------------
12089  P  Move to previous entry              &lt;  Exit without taking address
12090  N  Move to next entry                  T  Take address
12091  -  Show previous page of address list
12092 Spc (space bar) Show next page of address list
12093  W  WhereIs (search list)              List Mode
12094                                        ---------
12095 Single Mode                             X  Set/Unset current address
12096 -----------                             A  Set all addresses
12097  L  Switch to list mode                 U  Unset all addresses
12098                                         S  Switch to single mode
12099 </PRE>
12100 <!--chtml endif-->
12102 <H2>Description of the Take Address Screen</H2>
12104 This screen is designed to let you select one or more address/name
12105 combinations from the current message and put them into your address book.
12106 The cursor is initially placed on the line with the message author.
12107 Other lines include the names of people and/or mailing lists who also
12108 received the message.  Other people &quot;involved&quot; in the
12109 message (e.g. the person named as Reply-To:) are also listed here.
12112 The simple case is adding a new, single entry into your address book. To
12113 do this, simply highlight the correct line and press 
12114 <!--chtml if pinemode="function_key"-->
12116 <!--chtml else-->
12117 &quot;T&quot;.
12118 <!--chtml endif-->
12119 To create a new list or add to an existing list, switch the screen display
12120 into List Mode by pressing
12121 <!--chtml if pinemode="function_key"-->
12122 F12.
12123 <!--chtml else-->
12124 &quot;L&quot;.
12125 <!--chtml endif-->
12126 In List Mode, you select the
12127 group of addresses you wish to manipulate by marking them with an
12128 &quot;X&quot;.
12129 The Set/Unset
12130 <!--chtml if pinemode="function_key"-->
12131 (F9)
12132 <!--chtml else-->
12133 (&quot;X&quot;)
12134 <!--chtml endif-->
12135 command will turn the &quot;X&quot; on for the
12136 highlighted address if it was off or turn it off if it was previously on.
12137 The SetAll command will select all of the addresses, and the UnSetAll
12138 command will turn off all the selections.  Once you've gotten the
12139 selection the way you want it, you may create a new list by pressing
12140 <!--chtml if pinemode="function_key"-->
12142 <!--chtml else-->
12143 &quot;T&quot;.
12144 <!--chtml endif-->
12147 In both the simple and list cases, after choosing to take the address,
12148 you will be asked for the nickname of the entry.  Typing in a new name
12149 creates the new entry/list.  Entering an existing nickname will replace
12150 the entry (simple case) or add to the list (list case).  Alternatively,
12151 you can press Ctrl-T at the nickname prompt and select an existing
12152 nickname from your address book.
12155 You will normally start in Single Mode, unless you used the Apply command
12156 to startup the TakeAddr screen, in which case you will start in List Mode.
12157 You may switch between the two modes at any time.  If you've already
12158 selected several addresses in List Mode, those will be remembered when you
12159 switch to Single Mode and then back to List Mode.  The set of addresses
12160 that are pre-selected when you start in List Mode are the From addresses
12161 of all of the messages you are operating on.  You may, of course, easily
12162 erase those selections with the UnSetAll command.
12165 If you have more than one writable address book, you will be prompted for
12166 the name of the address book you wish to add the new entry to before
12167 anything else. You can use ^N and ^P to choose among the defined address
12168 books, or type in the address book name.
12171 FOR MORE INFORMATION on addressing see
12172 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12173 <A HREF="h_abook_opened">Address Book Screen's</A>
12174 help text.
12176 &lt;End of help on this topic&gt;
12177 </BODY>
12178 </HTML>
12179 ===== h_takeexport_screen =====
12180 <HTML>
12181 <HEAD>
12182 <TITLE>Take Export Screen Explained</TITLE>
12183 </HEAD>
12184 <BODY>
12185 <H1>TAKE EXPORT COMMANDS</H1>
12186 <!--chtml if pinemode="function_key"-->
12187 <PRE>
12188 Navigating the List of Addresses       Address Selection Commands        
12189 --------------------------------       --------------------------        
12190  F5  Move to previous entry            F3  Exit without taking address
12191  F6  Move to next entry                F4  Take current address(es)
12192  F7  Show previous page of address list
12193  F8  Show next page of address list
12194  F2  WhereIs (search list)
12195                                --------------
12196 Mode Toggle            F9  Set/Unset current address
12197 -----------            F10 Set all
12198  F12 Toggle between List and single mode       F11 Unset all
12199 </PRE>
12200 <!--chtml else-->
12201 <PRE>
12202 Navigating the List of Addresses       Address Selection Commands
12203 --------------------------------       --------------------------
12204  P  Move to previous entry              &lt;  Exit without taking address
12205  N  Move to next entry                  T  Take address
12206  -  Show previous page of address list
12207 Spc (space bar) Show next page of address list
12208  W  WhereIs (search list)              List Mode
12209                                        ---------
12210 Single Mode                             X  Set/Unset current address
12211 -----------                             A  Set all addresses
12212  L  Switch to list mode                 U  Unset all addresses
12213                                         S  Switch to single mode
12214 </PRE>
12215 <!--chtml endif-->
12217 <H2>Description of the Take Export Screen</H2>
12219 This screen is designed to let you select one or more addresses
12220 from the current message and put them into a file.
12221 Only the user@domain_name part of each address is put into the file.
12224 To put a single entry into a file simply highlight the correct line and press 
12225 <!--chtml if pinemode="function_key"-->
12227 <!--chtml else-->
12228 &quot;T&quot;.
12229 <!--chtml endif-->
12230 To put more than one entry into a file
12231 switch the screen display
12232 into List Mode by pressing
12233 <!--chtml if pinemode="function_key"-->
12234 F12.
12235 <!--chtml else-->
12236 &quot;L&quot;.
12237 <!--chtml endif-->
12238 In List Mode, you select the
12239 group of addresses you wish to manipulate by marking them with an
12240 &quot;X&quot;.
12241 The Set/Unset
12242 <!--chtml if pinemode="function_key"-->
12243 (F9)
12244 <!--chtml else-->
12245 (&quot;X&quot;)
12246 <!--chtml endif-->
12247 command will turn the &quot;X&quot; on for the
12248 highlighted address if it was off or turn it off if it was previously on.
12249 The SetAll command will select all of the addresses, and the UnSetAll
12250 command will turn off all the selections.  Once you've gotten the
12251 selection the way you want it, you may put the addresses in a file by typing
12252 <!--chtml if pinemode="function_key"-->
12254 <!--chtml else-->
12255 &quot;T&quot;.
12256 <!--chtml endif-->
12259 You will be asked for the name of a file to put the addresses in.
12260 If the file already exists, you will be asked whether you want to Overwrite
12261 (replace) the contents of the file or Append to the contents of the file.
12264 &lt;End of help on this topic&gt;
12265 </BODY>
12266 </HTML>
12267 ============= h_abook_view ========================
12268 <HTML>
12269 <HEAD>
12270 <TITLE>Address Book View Explained</TITLE>
12271 </HEAD>
12272 <BODY>
12273 This function allows you to view the contents of an address book entry. You
12274 can only view one entry at a time.
12276 <DL>
12277 <DT>Help
12278 <!--chtml if pinemode="function_key"-->
12279 (F1)
12280 <!--chtml else-->
12282 <!--chtml endif-->
12283 </DT>
12284 <DD>
12285 Display this help text.
12287 <DT>Abook
12288 <!--chtml if pinemode="function_key"-->
12289 (F3)
12290 <!--chtml else-->
12291 (&lt;)
12292 <!--chtml endif-->
12293 </DT>
12294 <DD>
12295 Go back to index of address book entries.
12297 <DT>Update
12298 <!--chtml if pinemode="function_key"-->
12299 (F4)
12300 <!--chtml else-->
12302 <!--chtml endif-->
12303 </DT>
12304 <DD>
12305 Update (modify) this entry.
12307 <DT>ComposeTo
12308 <!--chtml if pinemode="function_key"-->
12309 (F5)
12310 <!--chtml else-->
12312 <!--chtml endif-->
12313 </DT>
12314 <DD>Compose a message to the address(es) in this entry.
12316 <DT>Role
12317 <!--chtml if pinemode="function_key"-->
12318 (F6)
12319 <!--chtml else-->
12321 <!--chtml endif-->
12322 </DT>
12323 <DD>Compose a message to the address(es) in this entry using roles.
12325 <DT>Prev Page
12326 <!--chtml if pinemode="function_key"-->
12327 (F7)
12328 <!--chtml else-->
12330 <!--chtml endif-->
12331 </DT>
12332 <DD>
12333 Show the previous page of the current entry.
12335 <DT>Next Page
12336 <!--chtml if pinemode="function_key"-->
12337 (F8)
12338 <!--chtml else-->
12339 (Space)
12340 <!--chtml endif-->
12341 </DT>
12342 <DD>
12343 Show the next page of the current entry.
12345 <DT>Print
12346 <!--chtml if pinemode="function_key"-->
12347 (F9)
12348 <!--chtml else-->
12350 <!--chtml endif-->
12351 </DT>
12352 <DD>Print the current entry.  You can select the
12353 printer or the print command via the &quot;Setup&quot; command
12354 on the MAIN MENU.
12356 <DT>WhereIs
12357 <!--chtml if pinemode="function_key"-->
12358 (F10)
12359 <!--chtml else-->
12361 <!--chtml endif-->
12362 </DT>
12363 <DD>Search the entry for a string of letters.  If it is
12364 found, move to it.  The string can be one word or a phrase.
12365 If there are multiple occurrences, the cursor moves to the
12366 first occurrence beyond the current cursor position.
12368 <DT>Fwd Email
12369 <!--chtml if pinemode="function_key"-->
12370 (F11)
12371 <!--chtml else-->
12373 <!--chtml endif-->
12374 </DT>
12375 <DD>Begin composition of a new mail message with the displayed
12376 text already inserted in the message body.
12378 </DL>
12380 &lt;End of help on this topic&gt;
12381 </BODY>
12382 </HTML>
12383 ============= h_ldap_view ========================
12384 <HTML>
12385 <HEAD>
12386 <TITLE>LDAP Response View Explained</TITLE>
12387 </HEAD>
12388 <BODY>
12389 This function allows you to view the contents of a directory entry. You
12390 can only view one entry at a time.
12392 <DL>
12393 <DT>Help
12394 <!--chtml if pinemode="function_key"-->
12395 (F1)
12396 <!--chtml else-->
12398 <!--chtml endif-->
12399 </DT>
12400 <DD>
12401 Display this help text.
12403 <DT>Results Index
12404 <!--chtml if pinemode="function_key"-->
12405 (F3)
12406 <!--chtml else-->
12407 (&lt;)
12408 <!--chtml endif-->
12409 </DT>
12410 <DD>Go back to index of search results.
12412 <DT>ComposeTo
12413 <!--chtml if pinemode="function_key"-->
12414 (F5)
12415 <!--chtml else-->
12417 <!--chtml endif-->
12418 </DT>
12419 <DD>Compose a message to the address(es) in this entry.
12421 <DT>Role
12422 <!--chtml if pinemode="function_key"-->
12423 (F6)
12424 <!--chtml else-->
12426 <!--chtml endif-->
12427 </DT>
12428 <DD>Compose a message to the address(es) in this entry using roles.
12430 <DT>Prev Page
12431 <!--chtml if pinemode="function_key"-->
12432 (F7)
12433 <!--chtml else-->
12435 <!--chtml endif-->
12436 </DT>
12437 <DD>
12438 Show the previous page of the current entry.
12440 <DT>Next Page
12441 <!--chtml if pinemode="function_key"-->
12442 (F8)
12443 <!--chtml else-->
12444 (Space)
12445 <!--chtml endif-->
12446 </DT>
12447 <DD>
12448 Show the next page of the current entry.
12450 <DT>Print
12451 <!--chtml if pinemode="function_key"-->
12452 (F9)
12453 <!--chtml else-->
12455 <!--chtml endif-->
12456 </DT>
12457 <DD>Print the current entry on paper.  You can select the
12458 printer or the print command via the &quot;Setup&quot; command
12459 on the MAIN MENU.
12461 <DT>WhereIs
12462 <!--chtml if pinemode="function_key"-->
12463 (F10)
12464 <!--chtml else-->
12466 <!--chtml endif-->
12467 </DT>
12468 <DD>Search the entry for a string of letters.  If it is
12469 found, move to it.  The string can be one word or a phrase.
12470 If there are multiple occurrences, the cursor moves to the
12471 first occurrence beyond the current cursor position.
12473 <DT>Fwd Email
12474 <!--chtml if pinemode="function_key"-->
12475 (F11)
12476 <!--chtml else-->
12478 <!--chtml endif-->
12479 </DT>
12480 <DD>Begin composition of a new mail message with the displayed
12481 text already inserted in the message body.
12483 <DT>Save
12484 <!--chtml if pinemode="function_key"-->
12485 (F12)
12486 <!--chtml else-->
12488 <!--chtml endif-->
12489 </DT>
12490 <DD>Save the displayed entry to one of your address books or export
12491 it to a file.
12492 </DL>
12494 &lt;End of help on this topic&gt;
12495 </BODY>
12496 </HTML>
12497 ===== h_attachment_screen =====
12498 <HTML>
12499 <HEAD>
12500 <TITLE>Attachment Index Screen Explained</TITLE>
12501 </HEAD>
12502 <BODY>
12503 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
12504 message's attachments, and allows various operations on them.  The
12505 first attachment is usually the message text, but does not include the
12506 header portion of the message.
12508 Available commands include:
12510 <DL>
12512 <DT>Help</DT>
12513 <DD>Show this help text.
12515 <DT>Msg #<I>num</I></DT>
12516 <DD>Leave this screen without displaying or saving any attachments.
12518 <DT>View</DT>
12519 <DD>View the currently selected attachment.
12521 <DT>Prev Attach</DT>
12522 <DD>Move to previous attachment.
12524 <DT>Next Attach</DT>
12525 <DD>Move to next attachment.
12527 <DT>Prev Page</DT>
12528 <DD>Previous page of the listed attachments.
12530 <DT>Next Page</DT>
12531 <DD>Next page of the listed attachments.
12533 <DT>Delete</DT>
12534 <DD>Mark the currently selected attachment for Deletion.
12535 This does not modify the current message by deleting the attachment from
12536 it, but instead the delete flag <EM>only</EM> has an effect when saving
12537 the message to a folder.
12538 Attachments marked for deletion are not copied to the destination folder
12539 along with the rest of the message when it is saved.
12540 It is ok for the destination folder to be the same as the current folder.
12541 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
12543 <DT>Undelete</DT>
12544 <DD>Turn off the Delete flag for the selected attachment.
12546 <DT>Save</DT>
12547 <DD>Save the selected attachment to a file.  If the attachment is of
12548 type &quot;RFC822/Message&quot;, then the attachment will be saved to
12549 the specified mail folder.
12551 <DT>Export</DT>
12552 <DD>If the attachment is of
12553 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12554 copy the message to a file in the same way this command works on 
12555 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12557 <DT>Pipe</DT>
12558 <DD>Pipe the attachment contents into a UNIX command (if enabled).
12559 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
12561 <DT>WhereIs</DT>
12562 <DD>Find a matching string in the attachment list.
12564 <DT>AboutAttch</DT>
12565 <DD>Examine various aspects of the selected attachment.
12567 <DT>Print</DT>
12568 <DD>Print the selected attachment.
12570 <DT>Forward</DT>
12571 <DD>Forward the selected attachment as an attachment.
12572 </DL>
12576 All attachments can be saved or piped into a UNIX command, but some may
12577 not be readily displayed by either Alpine or an external tool.  In such
12578 cases, the reason why the message cannot be displayed is displayed on
12579 Alpine's message line.
12581 &lt;End of help on this topic&gt;
12582 </BODY>
12583 </HTML>
12584 ============= h_mail_text_att_view ========================
12585 <HTML>
12586 <HEAD>
12587 <TITLE>Attachment View Screen Explained</TITLE>
12588 </HEAD>
12589 <BODY>
12590 This function allows you to view the contents of a text attachment. You
12591 can only view one attachment at a time.
12593 Available commands include:
12595 <DL>
12597 <DT>Help</DT>
12598 <DD>Display this help text
12600 <DT>AttchIndex</DT>
12601 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
12603 <DT>Prev Page</DT>
12604 <DD>Show the previous page of the current attachment.
12606 <DT>Next Page</DT>
12607 <DD>Show the next page of the current attachment by pressing the space bar.
12609 <DT>Delete</DT>
12610 <DD>Mark the viewed attachment for Deletion.  The delete
12611 flag <EM>only</EM> has affect when saving the message to a folder.
12612 Attachments marked for deletion are exluded from the messsage when
12613 it is saved.  In addition, the delete mark <EM>only</EM> applies to
12614 this Alpine session.
12616 <DT>Undelete</DT>
12617 <DD>Turn off the Delete flag for the selected attachment.
12619 <DT>Save</DT>
12620 <DD>Copy the current attachment to a file.  If you just enter
12621 a filename, the attachment will be saved with that name in
12622 your home directory 
12623 <!--chtml if pinemode="running"-->
12624 (which, in the present configuration of your system, is
12625  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12626 <!--chtml endif-->
12627 or current working directory
12628 <!--chtml if pinemode="running"-->
12629 (which, at least for your current Alpine &quot;session,&quot; 
12630 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12631 <!--chtml endif-->, depending on the
12632 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12633 configuration setting.  You may enter the full
12634 path and filename to save it in another directory instead.
12636 <DT>Export</DT>
12637 <DD>If the attachment is of
12638 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12639 copy the message to a file in the same way this command works on 
12640 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12641 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
12642 defined, they may affect the contents of the exported file.)
12644 <DT>Pipe</DT>
12645 <DD>Pipe the attachment contents into a UNIX command (if enabled)
12647 <DT>WhereIs</DT>
12648 <DD>Search the attachment for a string of letters.  If it is
12649 found, move to it.  The string can be one word or a phrase.
12650 If there are multiple occurrences, the cursor moves to the
12651 first occurrence beyond the current cursor position.
12653 <DT>Print</DT>
12654 <DD>Print the current attachment on paper.  You can select the
12655 printer or the print command via the &quot;Setup&quot; command
12656 on the MAIN MENU.
12658 <DT>Forward</DT>
12659 <DD>Forward the selected attachment as an attachment.
12660 </DL>
12662 &lt;End of help on this topic&gt;
12663 </BODY>
12664 </HTML>
12665 ============= h_journal ==============
12666 <HTML>
12667 <HEAD>
12668 <TITLE>Recent Message Journal Explained</TITLE>
12669 </HEAD>
12670 <BODY>
12672 The following commands are available on this screen:
12674 <DL>
12675 <DT>Help</DT>
12676 <DD>Show this help text
12678 <DT>Exit</DT>
12679 <DD>Exit Viewer, and go back to mail processing
12681 <DT>Prev Page</DT>
12682 <DD>Show the previous page text
12684 <DT>Next Page</DT>
12685 <DD>Show the next page of text by pressing the space bar
12687 <DT>Print</DT>
12688 <DD>Print the displayed text on paper.  You can select the
12689 printer or the print command via the &quot;Setup&quot; command
12690 on the MAIN MENU.
12692 <DT>Fwd Email</DT>
12693 <DD>Begin composition of a new mail message with the displayed
12694 text already inserted in the message body.
12696 <DT>Save</DT>
12697 <DD>Copy the displayed text to a file.  If you just enter
12698 a filename, the text will be saved with that name in
12699 your 
12700 home directory 
12701 <!--chtml if pinemode="running"-->
12702 (which, in the present configuration of your system, is
12703  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12704 <!--chtml endif-->
12705 or current working directory
12706 <!--chtml if pinemode="running"-->
12707 (which, at least for your current Alpine &quot;session,&quot; 
12708 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12709 <!--chtml endif-->, depending on the
12710 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12711 configuration setting.   You may enter the full
12712 path and filename to save it in another directory instead.
12714 <DT>WhereIs</DT>
12715 <DD>Search the text for a string of letters.  If it is
12716 found, move to it.  The string can be one word or a phrase.
12717 If there are multiple occurrences, the cursor moves to the
12718 first occurrence beyond the current cursor position.
12719 </DL>
12721 &lt;End of help on this topic&gt;
12722 </BODY>
12723 </HTML>
12724 ============= h_debugjournal ==============
12725 <HTML>
12726 <HEAD>
12727 <TITLE>Debug Journal Explained</TITLE>
12728 </HEAD>
12729 <BODY>
12731 The following commands are available on this screen:
12733 <DL>
12734 <DT>Help</DT>
12735 <DD>Show this help text
12737 <DT>Exit</DT>
12738 <DD>Exit Viewer, and go back to mail processing
12740 <DT>Timestamps</DT>
12741 <DD>Turn on or off timestamps.
12743 <DT>DebugView</DT>
12744 <DD>Set the level of debugging you want to see. The level may be any number
12745 in the range 0-9. Higher numbers show more debugging detail. Note that the
12746 debugging information has already been captured. This setting just causes the
12747 debugging information that you see to be filtered. If you set this to
12748 the number &quot;5&quot; then you will be shown all of the debugging information
12749 at levels 5 and below.
12750 It's actually a bit more complicated than that. A fixed amount of memory
12751 is used to store the debug information.
12752 Since the amount of memory used is limited the debugging information
12753 has to be trimmed back when it gets too large.
12755 <DT>Prev Page</DT>
12756 <DD>Show the previous page text
12758 <DT>Next Page</DT>
12759 <DD>Show the next page of text by pressing the space bar
12761 <DT>Print</DT>
12762 <DD>Print the displayed text on paper.  You can select the
12763 printer or the print command via the &quot;Setup&quot; command
12764 on the MAIN MENU.
12766 <DT>Fwd Email</DT>
12767 <DD>Begin composition of a new mail message with the displayed
12768 text already inserted in the message body.
12770 <DT>Save</DT>
12771 <DD>Copy the displayed text to a file.  If you just enter
12772 a filename, the text will be saved with that name in
12773 your 
12774 home directory 
12775 <!--chtml if pinemode="running"-->
12776 (which, in the present configuration of your system, is
12777  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12778 <!--chtml endif-->
12779 or current working directory
12780 <!--chtml if pinemode="running"-->
12781 (which, at least for your current Alpine &quot;session,&quot; 
12782 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12783 <!--chtml endif-->, depending on the
12784 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12785 configuration setting.   You may enter the full
12786 path and filename to save it in another directory instead.
12788 <DT>WhereIs</DT>
12789 <DD>Search the text for a string of letters.  If it is
12790 found, move to it.  The string can be one word or a phrase.
12791 If there are multiple occurrences, the cursor moves to the
12792 first occurrence beyond the current cursor position.
12793 </DL>
12795 &lt;End of help on this topic&gt;
12796 </BODY>
12797 </HTML>
12798 ============= h_simple_text_view ==============
12799 <HTML>
12800 <HEAD>
12801 <TITLE>Simple Text View Screen Explained</TITLE>
12802 </HEAD>
12803 <BODY>
12805 The following commands are available on this screen:
12807 <DL>
12808 <DT>Help</DT>
12809 <DD>Show this help text
12811 <DT>Exit</DT>
12812 <DD>Exit Viewer, and go back to mail processing
12814 <DT>Prev Page</DT>
12815 <DD>Show the previous page text
12817 <DT>Next Page</DT>
12818 <DD>Show the next page of text by pressing the space bar
12820 <DT>Print</DT>
12821 <DD>Print the displayed text on paper.  You can select the
12822 printer or the print command via the &quot;Setup&quot; command
12823 on the MAIN MENU.
12825 <DT>Fwd Email</DT>
12826 <DD>Begin composition of a new mail message with the displayed
12827 text already inserted in the message body.
12829 <DT>Save</DT>
12830 <DD>Copy the displayed text to a file.  If you just enter
12831 a filename, the attachment will be saved with that name in
12832 your 
12833 home directory 
12834 <!--chtml if pinemode="running"-->
12835 (which, in the present configuration of your system, is
12836  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12837 <!--chtml endif-->
12838 or current working directory
12839 <!--chtml if pinemode="running"-->
12840 (which, at least for your current Alpine &quot;session,&quot; 
12841 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12842 <!--chtml endif-->, depending on the
12843 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12844 configuration setting.   You may enter the full
12845 path and filename to save it in another directory instead.
12847 <DT>WhereIs</DT>
12848 <DD>Search the attachment for a string of letters.  If it is
12849 found, move to it.  The string can be one word or a phrase.
12850 If there are multiple occurrences, the cursor moves to the
12851 first occurrence beyond the current cursor position.
12852 </DL>
12854 &lt;End of help on this topic&gt;
12855 </BODY>
12856 </HTML>
12857 ======= h_pine_for_windows ========
12858 <HTML>
12859 <HEAD>
12860 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
12861 </HEAD>
12862 <BODY>
12863 <H1>Getting Help In PC-Alpine</H1>
12866 PC-Alpine offers general and specific help text. From the <A
12867 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
12868 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
12869 specific help for that screen is available from the toolbar Help menu or
12870 with the 
12871 <!--chtml if pinemode="function_key"-->
12872 &quot;F1&quot; key.
12873 <!--chtml else-->
12874 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
12875 typing &quot;?&quot; would be mistaken as entering text.
12876 <!--chtml endif-->
12879 Although this version of Alpine is for Microsoft Windows, it is not
12880 considered a full &quot;Graphical User Interface&quot; application. 
12881 Yet, many of the controls that Windows users are accustomed to seeing, 
12882 such as scrollbars and toolbars, are available.
12885 PC-Alpine offers considerable mouse support.  You can view what is
12886 &quot;click-able&quot; by dragging your mouse over any screen; when the
12887 arrow cursor changes into a hand, you found something. Mouse-click
12888 possibilities include navigating between screens and folders and
12889 double-clicking on hyperlinks to open your Web browser.
12890 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
12891 screen.  Examples of right-click options include &quot;copy&quot; after
12892 selecting text to copy and &quot;View in New Window&quot; when you click
12893 on a particular message in the Message Index. The menu choices available
12894 to you will vary based upon what screen is open, where on the screen your
12895 cursor is located, and even what action you have already taken.
12898 &lt;End of help on this topic&gt;
12899 </BODY>
12900 </HTML>
12901 ===== h_composer =====
12902 <HTML>
12903 <HEAD>
12904 <TITLE>COMPOSER COMMANDS</TITLE>
12905 </HEAD>
12906 <BODY>
12907 <H1>COMPOSER COMMANDS</H1>
12909 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>
12910 &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>
12911 &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>
12912 &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>
12913 &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>
12914 &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>
12915 &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>
12916 &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>
12917 &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>
12918 &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>
12919 ---------------------------------------|&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>
12920 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>
12921 &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>
12922 &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>
12923 &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>
12926 NOTE:
12927 <OL>
12928  <LI>For help on a particular command, highlight the bold text associated
12929 with it above and hit Return.
12930  <LI> The availability of certain commands
12931 is determined by Alpine configuration files and system capabilities.
12932 At some sites, certain commands may not be available due to security or
12933 support concerns.
12934  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
12935 Ctrl-&#92;, ESC.
12936  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
12937 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
12938 </OL>
12941 HINT: To move rapidly to the bottom of a message you are composing,
12942 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
12943 with the Mark and Cut commands to eliminate large amounts of unwanted
12944 text in a Reply.
12946 <H2>Description of Composer</H2>
12948 Alpine has a built-in editing program that allows you to compose messages
12949 without having to leave Alpine.  The editor is designed to be very simple to
12950 use so that you can get started writing email right away.
12953 Messages are usually just text, about 80 columns wide.  Using upper and
12954 lower case is encouraged.  On some systems the size limit of the message
12955 is about 100,000 characters, which is about 2,000 lines.  You can include
12956 punctuation and special characters found on most keyboards, but you can't
12957 include characters with diacritical marks and certain special symbols.
12960 Text automatically wraps as you type past the end of a line so you do not
12961 have to hit return.  Using the
12962 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
12963 you can also reformat text explicitly, perhaps after you have
12964 deleted some text.
12967 You can include other text files with the 
12968 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
12969 which will prompt you for the name of the file to insert at the
12970 current cursor postion.
12973 <UL>
12974 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12975 </UL>
12977 &lt;End of help on this topic&gt;
12978 </BODY>
12979 </HTML>
12980 ====== h_composer_browse =====
12981 <HTML>
12982 <HEAD>
12983 <TITLE>BROWSER</TITLE>
12984 </HEAD>
12985 <BODY>
12986 <H1>BROWSER</H1>
12987 This screen lets you browse your files and directories.  To go to another 
12988 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
12989 choose &quot;Select&quot; (the default choice on the menu); 
12990 or choose &quot;Goto&quot; and enter the name of the directory.
12991 <!--chtml if pinemode="os_windows"-->
12992 <!--chtml else--> 
12993 In Unix Alpine, you may use 
12994 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
12995 to another's home directory.  
12996 <!--chtml endif--><P>
12997 To select a file, move the cursor to it and 
12998 choose &quot;Select&quot; (the default choice on the menu).  
13000 <UL>
13001 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13002 inclusion in the 
13003 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13004 the 
13005 &quot;----- Message Text -----&quot; line
13006 while composing, then &quot;To Files&quot;):  Since the file 
13007 selected will become part of the message text, it must be in a format 
13008 suitable for that (Alpine does not check!), such as a plain text file.
13009 Files of other formats (for example, graphics, databases, software 
13010 programs) should be 
13011 <B>attached</B> to the message instead --
13012 by moving the cursor in the COMPOSE MESSAGE screen into the 
13013 message header area and pressing 
13014 <!--chtml if pinemode="function_key"-->
13016 <!--chtml else-->
13017 Ctrl-J.
13018 <!--chtml endif--> 
13020 <P><LI>
13021 Note <B>if</B> you are currently using the BROWSER for saving a message 
13022 attachment, or exporting a message, to a file: You can use the Add command to 
13023 provide the name for a new file to save/export to, and then select that name 
13024 to use it for the save/export operation.  Back at the prompt 
13025 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13026 either Overwrite or Append (it doesn't make a difference, since the file is 
13027 so far empty).  Note: If you cancel the 
13028 operation at that point, the file created with the Add command will remain 
13029 0 bytes in size.
13031 </UL>
13032 <P><UL>
13033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13034 </UL>
13036 &lt;End of help on this topic&gt;
13037 </BODY>
13038 </HTML>
13039 ====== h_composer_ins =====
13040 <HTML>
13041 <HEAD>
13042 <TITLE>INSERT TEXT FILE</TITLE>
13043 </HEAD>
13044 <BODY>
13045 <H1>INSERT TEXT FILE</H1>
13047 Use this function to insert a text file. The file name
13048 given can be an absolute file path name for your system
13049 <!--chtml if pinemode="os_windows"-->
13050 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13051 with a relative pathname, or simply a file name without
13052 drive or directory specification.  
13053 <!--chtml else-->
13054 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13055 a file in your home directory, or a file path relative to your 
13056 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13057 your home directory or &quot;~user&quot; to refer to another
13058 account's home directory.
13059 <!--chtml endif-->
13061 No wild card characters may be used.  
13062 The file must reside on the system running Alpine.
13064 If the 
13065 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13066 feature is set, names are relative to your current working directory 
13067 <!--chtml if pinemode="running"-->
13068 (which, at least for your current Alpine &quot;session,&quot; 
13069 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13070 <!--chtml endif-->
13071 rather than your home directory
13072 <!--chtml if pinemode="running"-->
13073 (which, in the present configuration of your system, is
13074  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13075 <!--chtml endif-->
13077 <P><UL>
13078 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13079 </UL>
13081 &lt;End of help on this topic&gt;
13082 </BODY>
13083 </HTML>
13084 ====== h_composer_ins_m =====
13085 <HTML>
13086 <HEAD>
13087 <TITLE>INSERT MESSAGE</TITLE>
13088 </HEAD>
13089 <BODY>
13090 <H1>INSERT MESSAGE</H1>
13092 Type in the number of a message in the currently open folder to insert it
13093 into your message.
13094 <P><UL>
13095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13096 </UL>
13098 &lt;End of help on this topic&gt;
13099 </BODY>
13100 </HTML>
13101 ====== h_composer_search =====
13102 <HTML>
13103 <HEAD>
13104 <TITLE>Explanation of Composer Whereis Command </TITLE>
13105 </HEAD>
13106 <BODY>
13107 <H1>Help For Whereis Command</H1>
13109 Whereis is used to search the message for a word or part of a word.
13110 When searching in the composer, only the message part of your mail is
13111 searched, and the cursor is put on the first occurrence appearing
13112 after the location of the cursor.  The search will wrap to the
13113 beginning of the message when it no longer finds matches in the
13114 remainder of the message.
13116 To search for the same string a second time, press 
13117 <!--chtml if pinemode="function_key"-->
13118 &quot;F6&quot;
13119 <!--chtml else-->
13120 &quot;^W&quot;
13121 <!--chtml endif-->
13122 to begin search and then just press RETURN to accept the previous
13123 search string shown in square brackets rather than entering a new
13124 search string.<P>
13126 The &quot;Search&quot; prompt has several sub-command available:
13128 <DL>
13129 <DT>Get Help</DT>
13130 <DD> Takes you to this help page.
13132 <DT>Cancel</DT>
13133 <DD> Cancels the prompt.  No search takes place.
13135 <DT>First Line</DT>
13136 <DD> Takes you back to the composer with the cursor on the first character
13137 of the first line of text.
13139 <DT>Last Line</DT>
13140 <DD> Takes you back to the composer with the cursor on the last character
13141 of the last line of text.
13143 <DT>Replace (Optional)</DT>
13144 <DD> This sub-command is enabled by the 
13145 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13146 feature (which is on by default); see its help screen for details on how replacing works.
13148 </DL>
13150 &lt;End of help on this topic&gt;
13151 </BODY>
13152 </HTML>
13153 ====== h_sigedit_search =====
13154 <HTML>
13155 <HEAD>
13156 <TITLE>Explanation of Whereis Command </TITLE>
13157 </HEAD>
13158 <BODY>
13159 <H1>Help For Whereis Command</H1>
13161 Whereis is used to search for a word or part of a word.
13162 When searching the cursor is put on the first occurrence appearing
13163 after the location of the cursor.  The search will wrap to the
13164 beginning of the signature when it no longer finds matches in the
13165 remainder of the signature.
13167 To search for the same string a second time, press 
13168 <!--chtml if pinemode="function_key"-->
13169 &quot;F6&quot;
13170 <!--chtml else-->
13171 &quot;^W&quot;
13172 <!--chtml endif-->
13173 to begin search and then just press RETURN to accept the previous
13174 search string shown in square brackets rather than entering a new
13175 search string.<P>
13177 The &quot;Search&quot; prompt has several sub-command available:
13179 <DL>
13180 <DT>Get Help</DT>
13181 <DD> Takes you to this help page.
13183 <DT>Cancel</DT>
13184 <DD> Cancels the prompt.  No search takes place.
13186 <DT>First Line</DT>
13187 <DD> Takes you back to the composer with the cursor on the first character
13188 of the first line of text.
13190 <DT>Last Line</DT>
13191 <DD> Takes you back to the composer with the cursor on the last character
13192 of the last line of text.
13194 <DT>Replace (Optional)</DT>
13195 <DD> This sub-command is enabled by the 
13196 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13197 feature (which is on by default); see its help screen for details on how replacing works.
13199 </DL>
13201 &lt;End of help on this topic&gt;
13202 </BODY>
13203 </HTML>
13204 ======= h_composer_to ====
13205 <HTML>
13206 <HEAD>
13207 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13208 </HEAD>
13209 <BODY>
13210 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13212 <H2>The &quot;To:&quot; field</H2>
13213 The address you enter here must be a valid email address that is reachable
13214 from your site. 
13216 <H2>Email Address Format</H2>
13217 You may enter a full name and email address, 
13218 <!--chtml if pinemode="os_windows"-->
13219 <!--chtml else-->
13220 a local (meaning, on the same 
13221 host as the one you are running Alpine on) username that Alpine will
13222 complete for you, 
13223 <!--chtml endif-->
13224 the nickname of someone in a 
13225 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13226 mail alias defined by your system administrator.  When you move the cursor
13227 out of this field, the nicknames will be expanded to the addresses in your
13228 address book, and the local usernames will be expanded to include the 
13229 persons' actual names.  You may enter as many addresses as you wish, but they 
13230 must be separated by commas.  You can move around this and other header fields
13231 with the arrow keys and use many of the usual composer editing keys.
13233 <UL>
13234 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13235 </UL>
13238 <H2>MESSAGE HEADER COMMANDS</H2>
13239 <!--chtml if pinemode="function_key"-->
13240 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13241 ^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>
13242 ^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>
13243 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13244 ^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>
13245 ^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>
13246 ^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>
13247 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>
13248 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>
13249 ^@&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>
13250 ----------------------------------------|<BR>
13251 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13252 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>
13253 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>
13254 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>
13255 <!--chtml else-->
13256 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13257 ^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>
13258 ^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>
13259 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13260 ^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>
13261 ^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>
13262 ^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>
13263 ^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>
13264 ^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>
13265 ^@&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>
13266 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13267 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>
13268 ^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>
13269 ^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>
13270 ^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>
13271 <!--chtml endif-->
13274 NOTE:
13275 <OL>
13276  <LI>For help on a particular command, highlight the bold text associated
13277 with it above and hit Return.
13278  <LI> The availability of certain commands 
13279 is determined by Alpine configuration files and system capabilities.
13280 At some sites, certain commands may not be available due to security or
13281 support concerns.
13282 </OL>
13285 <UL>   
13286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13287 </UL><P>
13288 &lt;End of help on this topic&gt;
13289 </BODY>
13290 </HTML>
13291 ======= h_composer_cc ====
13292 <HTML>
13293 <HEAD>
13294 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13295 </HEAD>
13296 <BODY>
13297 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13298 The Cc: field is just like the To: field, except it is used for addressees
13299 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13300 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13301 them to see the message.  The only difference the recipients see is that their 
13302 name is in the Cc: field, rather than the To: field.
13304 For help with Cc: field editing
13305 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13307 <UL>
13308 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13309 </UL>
13311 <UL>   
13312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13313 </UL><P>
13314 &lt;End of help on this topic&gt;
13315 </BODY>
13316 </HTML>
13317 ======= h_composer_bcc ====
13318 <HTML>
13319 <HEAD>
13320 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13321 </HEAD>
13322 <BODY>
13323 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13324 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13325 a copy of the message to one or more people whose addresses you do not
13326 wish disclosed, either to reduce clutter or for confidentiality.
13328 The format of the Bcc: field is just the same as the To: and Cc: fields in
13329 the way the addresses are entered.  The recipients listed here will
13330 receive a copy of the message, but --assuming your site's mail transport
13331 software is properly configured-- their addresses will not show up in the
13332 headers of the message, as delivered to all of the recipients.  The To:
13333 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13335 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13336 will automatically generate and place in the To: field a pseudo-address of 
13337   &quot;undisclosed-recipients: ;&quot;
13338 or whatever string has been specified in the 
13339 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13340 variable.
13342 The reason for this is to avoid embarrassment caused by some Internet
13343 mail transfer software that interprets a &quot;missing&quot; To: header as 
13344 an error and replaces it with an Apparently-to: header that may contain
13345 the addresses you entered on the Bcc: line.  In addition, it may be
13346 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13348 You can manipulate what text ends up on the (originally) empty To:
13349 field.  Just remember to put a colon and semicolon at the end of the
13350 field, which is a special notation denoting that it is not a real address.
13352 For information on message header editing
13353 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13355 <UL>
13356 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13357 </UL>
13359 <UL>   
13360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13361 </UL><P>
13362 &lt;End of help on this topic&gt;
13363 </BODY>
13364 </HTML>
13365 ======= h_composer_lcc ====
13366 <HTML>
13367 <HEAD>
13368 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13369 </HEAD>
13370 <BODY>
13371 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13372 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13373 you wish to send a message to a list of people but avoid having all
13374 of their addresses visible, in order to reduce clutter when the
13375 message is received.
13377 It is similar to the 
13378 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13379 in that individual
13380 addressees are hidden, but Lcc is designed to work specifically with
13381 distribution lists you have created in your 
13382 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13383 the nickname of the list on the Lcc line will result in the full name of
13384 your Alpine Address Book list being placed on the To: line of the message,
13385 using a special notation that distinguishes it from a real address. You
13386 must leave the To: line blank for your list name to appear there.
13388 For example, if you have this list entered in your Address Book:<PRE>
13390         largo         Key Largo List       DISTRIBUTION LIST:
13391                                            bogie@mgm.com
13392                                            lauren@mgm.com
13393                                            walter@mgm.com</PRE>
13396 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13397 the result is:<PRE>
13399         To      : Key Largo List: ;
13400         Cc      :
13401         Bcc     :
13402         Fcc     : sent-mail
13403         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13404                   lauren@mgm.com,
13405                   walter@mgm.com
13406         Subject :</PRE>
13408 Each recipient listed on the Lcc: line receives a copy of the message
13409 without their address being visible (as though they were listed on the
13410 Bcc: line). The colon-semicolon notation used to put the full-name of the
13411 list on the To: line is a special address format that doesn't specify any
13412 actual addressees, but does give some information to the recipients of the
13413 message.
13415 Note: if after entering an LCC, you delete the list name that is placed
13416 on the To: line, then recipients will see <PRE>
13417        To: undisclosed-recipients: ;</PRE>
13419 (or whatever string is defined in the 
13420 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13421 variable) just as in the BCC case. 
13423 For help with Lcc: field editing
13424 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13426 <UL>
13427 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13428 </UL>
13430 <UL>   
13431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13432 </UL><P>
13433 &lt;End of help on this topic&gt;
13434 </BODY>
13435 </HTML>
13436 ======= h_composer_from =======
13437 <HTML>
13438 <HEAD>
13439 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13440 </HEAD>
13441 <BODY>
13442 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13444 This header carries your return address.  It is the address toward which
13445 replies (and often, future unrelated correspondence) will be directed,
13446 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13447 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13448 sure this address is correct.
13450 For help with message header editing
13451 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13453 <UL>
13454 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13455 </UL>
13457 <UL>   
13458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13459 </UL><P>
13460 &lt;End of help on this topic&gt;
13461 </BODY>
13462 </HTML>
13463 ======= h_composer_reply_to =======
13464 <HTML>
13465 <HEAD>
13466 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13467 </HEAD>
13468 <BODY>
13469 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13471 Most people should not need this header. The Reply-To: header is used in
13472 cases where you would like replies to your messages to be directed to an
13473 address other than your normal &quot;From:&quot; address.  This is atypical, 
13474 but can happen when you use multiple machines and do not have the same account
13475 name on each one, or when you wish to direct certain replies to accounts
13476 or folders designated for specific classes of correspondence.
13478 For help with message header editing
13479 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13481 <UL>
13482 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13483 </UL>
13486 <UL>   
13487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13488 </UL><P>
13489 &lt;End of help on this topic&gt;
13490 </BODY>
13491 </HTML>
13492 ======= h_composer_custom_addr ====
13493 <HTML>
13494 <HEAD>
13495 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13496 </HEAD>
13497 <BODY>
13498 <H1>CUSTOMIZED HEADER FIELD</H1>
13499 This is a customized header, i.e. not one that is part of Alpine's normal
13500 set of Compose headers.
13502 For help with message header editing
13503 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13505 <UL>
13506 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13507 </UL>
13509 <UL>   
13510 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13511 </UL><P>
13512 &lt;End of help on this topic&gt;
13513 </BODY>
13514 </HTML>
13515 ======= h_composer_custom_free ====
13516 <HTML>
13517 <HEAD>
13518 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13519 </HEAD>
13520 <BODY>
13521 <H1>CUSTOMIZED HEADER FIELD</H1>
13522 This is a customized header, i.e. not one that is part of Alpine's normal
13523 set of Compose headers.
13525 This field consists of arbitrary text.
13527 For help with message header editing
13528 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13530 <UL>   
13531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13532 </UL><P>
13533 &lt;End of help on this topic&gt;
13534 </BODY>
13535 </HTML>
13536 ====== h_composer_news =====
13537 <HTML>
13538 <HEAD>
13539 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
13540 </HEAD>
13541 <BODY>
13542 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
13543 Use the newsgroups line to specify any and all USENET newsgroups to which
13544 your message should be posted.  When composing a message from scratch, this
13545 line may be hidden.  If so, just press the rich headers command
13546 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
13547 to make it visible.
13549 <EM>Be aware</EM> that when you post to a newsgroup thousands of
13550 people will be reading your message.  Also, you or your system manager
13551 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
13552 in order for you to be able to post.
13554 For help with message header editing
13555 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13556 <P><UL>
13557 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13558 </UL>
13560 &lt;End of help on this topic&gt;
13561 </BODY>
13562 </HTML>
13563 ======= h_composer_fcc ====
13564 <HTML>
13565 <HEADER>
13566 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
13567 </HEADER>
13568 <BODY>
13569 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
13570 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
13571 each outgoing message.  The default value can be configured with the
13572 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
13573 the file carbon copy on any message you send by editing the FCC header.<p>
13575 You may type ^T to get a list of all your folders and select one to use as
13576 the FCC for this message.<P>
13578 For help with message header editing
13579 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13581 <UL>   
13582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13583 </UL><P>
13584 &lt;End of help on this topic&gt;
13585 </BODY>
13586 </HTML>
13587 ======= h_composer_subject ====
13588 <HTML>
13589 <HEADER>
13590 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
13591 </HEADER>
13592 <BODY>
13593 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
13595 The subject header provides a place to enter a few words that summarize
13596 the topic of the message you are sending.  You may leave this line blank,
13597 but it is considered a courtesy to use a meaningful subject.<p>
13599 For help with message header editing
13600 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13602 <UL>   
13603 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13604 </UL><P>
13605 &lt;End of help on this topic&gt;
13606 </BODY>
13607 </HTML>
13608 ======= h_composer_attachment ====
13609 <HTML>
13610 <HEAD>
13611 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
13612 </HEAD>
13613 <BODY>
13614 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
13616 The &quot;Attchmnt:&quot; field is where you specify what file or
13617 files you'd like attached to
13618 the message you are composing.  Those files must reside on the machine
13619 running Alpine. If your file is on a PC or Mac and you run Alpine with an
13620 account on a Unix machine, you'll have to transfer it before attaching it.
13621 Contact local computer support people for assistance with transferring.
13624 The file name
13625 given can be an absolute file path name for your system
13626 <!--chtml if pinemode="os_windows"-->
13627 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13628 with a relative pathname, or simply a file name without
13629 drive or directory specification.  
13630 <!--chtml else-->
13631 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13632 a file in your home directory, or a file path relative to your 
13633 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13634 your home directory or &quot;~user&quot; to refer to another
13635 account's home directory.
13636 <!--chtml endif--><P>
13637 No wild card characters may be used.
13638 <P>If the 
13639 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13640 feature is set, names are relative to your current working directory 
13641 <!--chtml if pinemode="running"-->
13642 (which, at least for your current Alpine &quot;session,&quot; 
13643 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13644 <!--chtml endif-->
13645 rather than your home directory
13646 <!--chtml if pinemode="running"-->
13647 (which, in the present configuration of your system, is
13648  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13649 <!--chtml endif-->
13652 Alpine uses MIME encoding for attachments, so binaries and files of any
13653 length can safely be delivered to any MIME-capable mail reading program.
13654 If you send an attachment to someone who does not have a MIME-capable mail
13655 reading program yet, then the main message text will be readable, but
13656 attachments (even attachments that are just plain text) are not.
13659 Typing the filename on the Attchmnt: line achieves the same
13660 result as using the 
13661 <!--chtml if pinemode="function_key"-->
13663 <!--chtml else-->
13664 Ctrl-J
13665 <!--chtml endif--> command.
13668 If you Forward a message with attachments, you may delete them from your
13669 Forwarded message by editing the Attchmnt header line.
13672 For help with message header editing
13673 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13675 <UL>   
13676 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13677 </UL><P>
13678 &lt;End of help on this topic&gt;
13679 </BODY>
13680 </HTML>
13681 ======= h_composer_ctrl_j ====
13682 <HTML>
13683 <HEAD>
13684 <TITLE>COMPOSER ATTACH</TITLE>
13685 </HEAD>
13686 <BODY>
13687 After the
13688 <!--chtml if pinemode="function_key"-->
13690 <!--chtml else-->
13691 Ctrl-J
13692 <!--chtml endif--> command:
13693 At the &quot;File to attach:&quot; prompt, enter the name of the 
13694 existing file to attach to your message.  
13695 When the feature
13696 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
13697 is set
13698 you need only enter the beginning of the filename (enough of it to uniquely 
13699 identify the file) and press TAB to complete it.
13701 Or, press ^T to use the BROWSER screen for 
13702 selecting the file.  <P>
13703 For more information on attaching files, see the help screen for the 
13704 composer's 
13705 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
13706 but can be revealed using the 
13707 <!--chtml if pinemode="function_key"-->
13709 <!--chtml else-->
13710 Ctrl-R
13711 <!--chtml endif--> 
13712 command with the cursor positioned above the
13713 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
13715 &lt;End of help on this topic&gt;
13716 </BODY>
13717 </HTML>
13718 ======= h_edit_nav_cmds =========
13719 <HTML>
13720 <HEAD>
13721 <TITLE>Composer Editing Commands Explained</TITLE>
13722 </HEAD>
13723 <BODY>
13724 <H1>EDITING and NAVIGATION COMMANDS</H1>
13725 <!--chtml if pinemode="function_key"-->
13726 <PRE>
13727 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13728 ^B (Left Arrow)    Back character       | ^D       Delete current character
13729 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13730 ^P (Up Arrow)      Previous line        |
13731 ^N (Down Arrow)    Next line            | F9       Cut marked text or
13732 ^A                 Beginning of line    |            delete current line
13733 ^E                 End of line          | F10      Undelete line(s)
13734 F7                 Previous page        |
13735 F8                 Next page            |-------------------------------------
13736 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13737 ----------------------------------------|
13738 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
13739 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
13740 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
13741 </PRE>
13742 <!--chtml else-->
13743 <PRE>
13744 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13745 ^B (Left Arrow)    Back character       | ^D       Delete current character
13746 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13747 ^P (Up Arrow)      Previous line        |
13748 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
13749 ^A                 Beginning of line    |            delete current line
13750 ^E                 End of line          | ^U       Undelete line(s)
13751 ^Y                 Previous page        |
13752 ^V                 Next page            |-------------------------------------
13753 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13754 ----------------------------------------|
13755 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
13756 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
13757 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
13758 </PRE>
13759 <!--chtml endif-->
13760 &lt;End of help on this topic&gt;
13761 </BODY>
13762 </HTML>
13763 ===== h_composer_sigedit =====
13764 <HTML>
13765 <HEAD>
13766 <TITLE>Signature Editor Commands Explained</TITLE>
13767 </HEAD>
13768 <BODY>
13769 <H1>SIGNATURE EDITOR COMMANDS</H1>
13770 <!--chtml if pinemode="function_key"-->
13771 <PRE>
13772 CURSOR MOTION KEYS                     |EDITING KEYS
13773   ^B (Left Arrow)   Back character     | ^D       Delete current character
13774   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13775   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13776   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13777   ^A                Beginning of line  |           delete current line
13778   ^E                End of line        | F10       Paste text, undelete lines
13779   F7                Previous page      |           cut with ^K, or unjustify
13780   F8                Next page          |-------------------------------------
13781   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13782 ---------------------------------------| F6       Whereis (search for string)
13783 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13784  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13785                  |  ^Z    Suspend      | ^L       Redraw Screen
13786  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13787 </PRE>
13788 <!--chtml else-->
13789 <PRE>
13790 CURSOR MOTION KEYS                     |EDITING KEYS
13791   ^B (Left Arrow)   Back character     | ^D       Delete current character
13792   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13793   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13794   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13795   ^A                Beginning of line  |           delete current line
13796   ^E                End of line        | ^U        Paste text, undelete lines
13797   ^Y                Previous page      |           cut with ^K, or unjustify
13798   ^V                Next page          |-------------------------------------
13799   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13800 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13801 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13802  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13803                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13804  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13805 </PRE>
13806 <!--chtml endif-->
13808 NOTE: The presence or absence of the following commands is determined
13809 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13810 some of these commands may be administratively disabled by your system
13811 manager; if they don't work, please check with your local help desk
13812 before reporting a bug.
13814 <UL>
13815  <LI>Suspend (suspends Alpine and gives a system prompt)
13816  <LI>Alternate editor (allows you to compose with your own editor)
13817 </UL>
13820 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13821 Ctrl-&#92;, ESC
13824 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13825 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13827 &lt;End of help on this topic&gt;
13828 </BODY>
13829 </HTML>
13830 ===== h_composer_commentedit =====
13831 <HTML>
13832 <HEAD>
13833 <TITLE>Comment Editor Commands Explained</TITLE>
13834 </HEAD>
13835 <BODY>
13836 <H1>COMMENT EDITOR COMMANDS</H1>
13837 <!--chtml if pinemode="function_key"-->
13838 <PRE>
13839 CURSOR MOTION KEYS                     |EDITING KEYS
13840   ^B (Left Arrow)   Back character     | ^D       Delete current character
13841   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13842   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13843   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13844   ^A                Beginning of line  |           delete current line
13845   ^E                End of line        | F10       Paste text, undelete lines
13846   F7                Previous page      |           cut with ^K, or unjustify
13847   F8                Next page          |-------------------------------------
13848   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13849 ---------------------------------------| F6       Whereis (search for string)
13850 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13851  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13852                  |  ^Z    Suspend      | ^L       Redraw Screen
13853  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13854 </PRE>
13855 <!--chtml else-->
13856 <PRE>
13857 CURSOR MOTION KEYS                     |EDITING KEYS
13858   ^B (Left Arrow)   Back character     | ^D       Delete current character
13859   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13860   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13861   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13862   ^A                Beginning of line  |           delete current line
13863   ^E                End of line        | ^U        Paste text, undelete lines
13864   ^Y                Previous page      |           cut with ^K, or unjustify
13865   ^V                Next page          |-------------------------------------
13866   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13867 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13868 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13869  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13870                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13871  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13872 </PRE>
13873 <!--chtml endif-->
13875 NOTE: The presence or absence of the following commands is determined
13876 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13877 some of these commands may be administratively disabled by your system
13878 manager; if they don't work, please check with your local help desk
13879 before reporting a bug.
13881 <UL>
13882  <LI>Suspend (suspends Alpine and gives a system prompt)
13883  <LI>Alternate editor (allows you to compose with your own editor)
13884 </UL>
13887 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13888 Ctrl-&#92;, ESC
13891 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13892 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13894 &lt;End of help on this topic&gt;
13895 </BODY>
13896 </HTML>
13897 ======= h_composer_abook_nick =======
13898 <HTML>
13899 <HEAD>
13900 <TITLE>Addressbook Nickname Explained</TITLE>
13901 </HEAD>
13902 <BODY>
13903 This is a short nickname for this address book entry.  If it is used in
13904 place of an address from the composer, the composer will fill in the
13905 address(es) for the entry that matches the nickname. 
13908 Look <A HREF="h_edit_nav_cmds">here</A>
13909 to see the available Editing and Navigation commands.
13911 &lt;End of help on this topic&gt;
13912 </BODY>
13913 </HTML>
13914 ======= h_composer_abook_full =======
13915 <HTML>
13916 <HEAD>
13917 <TITLE>Addressbook Fullname Explained</TITLE>
13918 </HEAD>
13919 <BODY>
13920 This is the full name field for this entry.  If this is going to be a
13921 distribution list (more than one address), it should be a descriptive
13922 phrase describing the list.  It will be included in the mail header if you
13923 put the list in the To: or CC: field, or in the To: line if you put the
13924 list in the Lcc: field.  It's OK to leave this field blank (and OK to
13925 leave any of the other fields blank, too). If this address book entry is
13926 going to be a simple entry with just one address, then this field is the
13927 person's name. When you send mail to this entry, this is the field to the
13928 left of the brackets. That is, it is the most readable part of the 
13929 address. For example, in the sample address:
13930 <PRE>
13931        John Doe &lt;jdoe@some.domain&gt;
13932 </PRE>
13933 "John Doe" is the full name field. If you are sorting your address book
13934 with one of the options that uses full names, then it might be useful to
13935 enter the full name as "Last, First", for example:
13936 <PRE>
13937        Doe, John
13938 </PRE>
13939 so that it will be sorted using Doe instead of John. This will be changed
13940 back into John Doe when you use it.
13942 Look <A HREF="h_edit_nav_cmds">here</A>
13943 to see the available Editing and Navigation commands.
13945 &lt;End of help on this topic&gt;
13946 </BODY>
13947 </HTML>
13948 ======= h_composer_abook_fcc =======
13949 <HTML>
13950 <HEAD>
13951 <TITLE>Addressbook Fcc Explained</TITLE>
13952 </HEAD>
13953 <BODY>
13954 If this entry is the first one in the To: line of an outgoing message,
13955 this field will be used for the Fcc (File Carbon Copy) instead of whatever
13956 you would normally get (which depends on which
13957 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
13958 you've chosen). 
13960 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
13961 that you don't want any Fcc associated with this entry.
13963 Look <A HREF="h_edit_nav_cmds">here</A>
13964 to see the available Editing and Navigation commands.
13966 &lt;End of help on this topic&gt;
13967 </BODY>
13968 </HTML>
13969 ====== h_config_combined_abook_display =====
13970 <HTML>
13971 <HEAD>
13972 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
13973 </HEAD>
13974 <BODY>
13975 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
13977 This feature affects the address book display screens.
13978 Normally, expanding an address book from the ADDRESS BOOK LIST screen
13979 will cause the remaining address books and directory servers to disappear
13980 from the screen, leaving only the entries of the expanded address book.
13981 If this feature is set, then the other address books will remain on the screen,
13982 so that all of the address books can be present at once.
13985 The way that commands work won't be changed.
13986 For example, the Select All command will select all of the entries in the
13987 current address book, not all of the entries in all of the address books.
13988 The WhereIs command will change a little.
13989 It will search through all of the text on the screen plus all of the entries
13990 from expanded address books.
13993 When this feature is set, the setting of the feature
13994 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
13995 has an effect.
13997 &lt;End of help on this topic&gt;
13998 </BODY>
13999 </HTML>
14000 ====== h_config_titlebar_color_style =====
14001 <HTML>
14002 <HEAD>
14003 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14004 </HEAD>
14005 <BODY>
14006 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14008 This option affects the colors used to display the titlebar (the top
14009 line on the screen) when viewing a message.
14012 The available options include:
14015 <DL>
14016 <DT>default</DT>
14017 <DD>The color of the titlebar will be the color you set for the
14018 <A HREF="h_config_title_color">Title Color</A>.
14019 The Title Color may be set by using the
14020 <A HREF="h_color_setup">Setup Kolor</A> screen.
14021 </DD>
14023 <DT>indexline</DT>
14024 <DD>The color of the titlebar will be the same as the color of the
14025 index line corresponding to the message being viewed.
14026 The rules that determine what color the index line will be may be set
14027 up by going to the Setup/Rules/Indexcolor screen.
14028 If the index line for a message is not colored explicitly by the
14029 Indexcolor rules, then the titlebar will be colored the same as for
14030 the &quot;default&quot; option above (which is not the same color that
14031 the index line itself will have).
14032 </DD>
14034 <DT>reverse-indexline</DT>
14035 <DD>This is similar to the &quot;indexline&quot; option except the
14036 foreground and background colors from the corresponding index line will
14037 be reversed.
14038 For example, if the index line color is red letters on a white background,
14039 then the titlebar will be white letters on a red background.
14040 If the index line for a message is not colored explicitly by the
14041 Indexcolor rules, then the titlebar will be colored the same as for
14042 the &quot;default&quot; option above (which is not the same color that
14043 the index line itself will have).
14044 </DD>
14045 </DL>
14049 <UL>   
14050 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14051 </UL><P>
14052 &lt;End of help on this topic&gt;
14053 </BODY>
14054 </HTML>
14055 ====== h_config_index_color_style =====
14056 <HTML>
14057 <HEAD>
14058 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14059 </HEAD>
14060 <BODY>
14061 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14063 This option affects the colors used to display the current line in the
14064 MESSAGE INDEX screen.
14065 If you do not have Index Color Rules defined, then this option will
14066 have no effect in the index.
14067 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14069 If the option
14070 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14071 is turned on and the
14072 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14073 is set to something other than the default, then
14074 this option also affects the color used to display the current folder
14075 in the Incoming FOLDER LIST screen.
14078 The available options include:
14081 <DL>
14082 <DT>flip-colors</DT>
14083 <DD>This is the default.
14084 If an index line is colored because it matches one of your
14085 Index Color Rules, then its colors will be reversed when it is the currently
14086 highlighted line.
14087 For example, if the line is normally red text on a blue background, then
14088 when it is the current line it will be drawn as blue text on a red background.
14090 The rest of the option values all revert to this flip-colors behavior if
14091 there is no Reverse Color defined.
14092 </DD>
14094 <DT>reverse</DT>
14095 <DD>With this option the Reverse color is always used to highlight the
14096 current line.
14097 </DD>
14099 <DT>reverse-fg</DT>
14100 <DD>The foreground part of the Reverse Color is used to highlight
14101 the current line.
14102 If this would cause the text to be unreadable (because the foreground and
14103 background colors are the same) or if it would cause no change in the
14104 color of the index line, then the colors are flipped instead.
14106 Some people think this works particularly well if you use different
14107 background colors to emphasize &quot;interesting&quot; lines,
14108 but always with the same Normal foreground color,
14109 and you use a different foreground color for the Reverse Color.
14110 </DD>
14112 <DT>reverse-fg-no-ambiguity</DT>
14113 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14114 the resulting color will be exactly the same as the regular Reverse
14115 Color.
14116 That can lead to some possible confusion because an
14117 &quot;interesting&quot;
14118 line that is the current line will be displayed exactly the same as a
14119 non-interesting line that is current.
14120 You can't tell whether the line is just a regular current line or if it is
14121 an &quot;interesting&quot; current line by looking at the color.
14122 Setting the option to this value removes that ambiguity.
14123 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14124 interesting current line would look just like a non-interesting current line.
14125 In that case, the interesting line's colors are simply flipped (like in the
14126 default behavior).
14128 As an alternative way to preserve the line's interestingness in this case,
14129 you may find that using both a different foreground and a different
14130 background color for the interesting line will help.
14131 </DD>
14133 <DT>reverse-bg</DT>
14134 <DD>The background part of the Reverse Color is used to highlight
14135 the current line.
14136 If this would cause the text to be unreadable (because the foreground and
14137 background colors are the same) or if it would cause no change in the
14138 color of the index line, then the colors are flipped instead.
14140 Some people think this works particularly well if you use different
14141 foreground colors to emphasize &quot;interesting&quot; lines,
14142 but always with the same Normal background color,
14143 and you use a different background color for the Reverse Color.
14144 </DD>
14146 <DT>reverse-bg-no-ambiguity</DT>
14147 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14148 rule may also result in a color that is exactly the same as the regular
14149 Reverse Color.
14150 Setting the option to this value removes that ambiguity.
14151 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14152 current line has the same color as the Reverse Color.
14153 In that case, the interesting line's colors are simply flipped (like in the
14154 default behavior).
14155 </DD>
14156 </DL>
14160 <UL>   
14161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14162 </UL><P>
14163 &lt;End of help on this topic&gt;
14164 </BODY>
14165 </HTML>
14166 ====== h_config_expanded_addrbooks =====
14167 <HTML>
14168 <HEAD>
14169 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14170 </HEAD>
14171 <BODY>
14172 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14174 If multiple address books (either personal or global) are defined, and you
14175 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14176 screen, then set this feature. This feature will have no effect unless the
14177 feature
14178 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14179 is also set.
14181 &lt;End of help on this topic&gt;
14182 </BODY>
14183 </HTML>
14184 ====== h_config_combined_folder_display =====
14185 <HTML>
14186 <HEAD>
14187 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14188 </HEAD>
14189 <BODY>
14190 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14192 This feature affects the folder list display screens.
14193 Normally, each folder list is viewed within its collection only.  This
14194 command allows folder lists to be viewed within a single screen that
14195 combines the contents of all collections.
14198 The way that commands work won't be changed.
14199 For example, the Select All command will select all of the folders in the
14200 current collection, not all of the entries in all of the collections.
14201 The WhereIs command will change a little.
14202 It will search through all of the folders in the current collection as well
14203 as all the folder in any other expanded collection.
14206 When this feature is set, the setting of the feature
14207 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14208 has an effect.
14210 &lt;End of help on this topic&gt;
14211 </BODY>
14212 </HTML>
14213 ====== h_config_combined_subdir_display =====
14214 <HTML>
14215 <HEAD>
14216 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14217 </HEAD>
14218 <BODY>
14219 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14221 This feature affects the Folder List screen when
14223 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14224 feature is enabled.  Normally, selecting a directory from the Folder
14225 List takes you into a new screen displaying only the contents of
14226 that directory.
14229 Enabling this feature will cause the contents of the selected
14230 directory to be
14231 displayed within the boundaries of the &quot;Collection&quot; it
14232 is a part of.  All previously displayed collections will remain
14233 in the screen.
14236 The way that commands work won't be changed.
14237 For example, the Select All command will select all of the folders in the
14238 directory, as opposed to all of the entries in all of the collections.
14239 The WhereIs command will change a little.
14240 It will search through all of the folders in the current collection as well
14241 as all the folder in any other expanded collection.
14244 &lt;End of help on this topic&gt;
14245 </BODY>
14246 </HTML>
14247 ====== h_config_separate_fold_dir_view =====
14248 <HTML>
14249 <HEAD>
14250 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14251 </HEAD>
14252 <BODY>
14253 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14255 This feature affects folder collections wherein a folder
14256 and directory can have the same name.  By default, Alpine displays them
14257 only once, denoting that it is both a folder and directory by appending
14258 the folder name with the hierarchy character enclosed
14259 in square brackets.
14263 Enabling this feature will cause Alpine to display such names
14264 separately marking the name representing a directory with a trailing
14265 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14268 The feature also alters the command set slightly.  By default, the
14269 right-arrow descends into the directory, while hitting the Return key will
14270 cause the folder by that name to be opened.
14273 With this feature set, the Return key will open the highlighted folder, or
14274 enter the highlighted directory.
14277 &lt;End of help on this topic&gt;
14278 </BODY>
14279 </HTML>
14280 ====== h_config_expanded_folders =====
14281 <HTML>
14282 <HEAD>
14283 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14284 </HEAD>
14285 <BODY>
14286 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14288 If multiple folder collections are defined, and you
14289 wish to have them all expanded implicitly upon entering the FOLDER LIST
14290 screen, then set this feature. This feature will have no effect unless the
14291 feature
14292 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14293 is also set.
14295 &lt;End of help on this topic&gt;
14296 </BODY>
14297 </HTML>
14298 ======= h_config_ldap_server =======
14299 <HTML>
14300 <HEAD>
14301 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14302 </HEAD>
14303 <BODY>
14304 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14305 This is the name of the host where an LDAP server is running.
14306 For redundancy, this may be a space-delimited set of server names, in which
14307 case the first server that answers is used.
14308 Each of the server names may be optionally followed by
14309 a colon and a port number.
14310 If this form is used then the port number configured below in the
14311 <EM>port</EM> field is not used.
14313 To find out whether your organization has its own LDAP server, 
14314 contact its computing support staff.
14315 <P><UL>
14316 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14317 </UL>
14319 &lt;End of help on this topic&gt;
14320 </BODY>
14321 </HTML>
14322 ======= h_config_ldap_base =======
14323 <HTML>
14324 <HEAD>
14325 <TITLE>LDAP OPTION: Search-Base</TITLE>
14326 </HEAD>
14327 <BODY>
14328 <H1>LDAP OPTION: Search-Base</H1>
14330 This is the search base to be used on this server.  It functions as a filter 
14331 by restricting your searches in the LDAP server database
14332 to the specified contents of the specified fields.  Without it, searches 
14333 submitted to this directory server may fail.  It might be something
14334 like:
14336 <PRE>
14337       O = &lt;Your Organization Name&gt;, C = US
14338 </PRE>
14339 or it might be blank.  
14340 (Some LDAP servers actually ignore anything specified here.)
14342 If in doubt what parameters you should specify here, 
14343 contact the maintainers of the LDAP server.
14344 <P><UL>
14345 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14346 </UL>
14348 &lt;End of help on this topic&gt;
14349 </BODY>
14350 </HTML>
14351 ======= h_config_ldap_port =======
14352 <HTML>
14353 <HEAD>
14354 <TITLE>LDAP OPTION: Port</TITLE>
14355 </HEAD>
14356 <BODY>
14357 <H1>LDAP OPTION: Port</H1>
14359 This is the TCP port number to be used with this LDAP server. If you leave
14360 this blank port 389 will be used.
14362 &lt;End of help on this topic&gt;
14363 </BODY>
14364 </HTML>
14365 ======= h_config_ldap_nick =======
14366 <HTML>
14367 <HEAD>
14368 <TITLE>LDAP OPTION: Nickname</TITLE>
14369 </HEAD>
14370 <BODY>
14371 <H1>LDAP OPTION: Nickname</H1>
14373 This is a nickname to be used in displays. If you don't supply a
14374 nickname the server name
14375 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14376 will be used instead.  This option is strictly for your convenience.
14378 &lt;End of help on this topic&gt;
14379 </BODY>
14380 </HTML>
14381 ======= h_config_ldap_binddn =======
14382 <HTML>
14383 <HEAD>
14384 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14385 </HEAD>
14386 <BODY>
14387 <H1>LDAP OPTION: Bind-DN</H1>
14389 You may need to authenticate to the LDAP server before you are able to use it.
14390 This is the Distinguished Name to bind to when authenticating to this server.
14391 Try leaving this blank until you know you need it.
14393 Alpine only knows about LDAP Simple authentication.
14394 It does not attempt LDAP SASL authentication.
14395 The DN and password will be sent in the clear unless TLS encryption is
14396 being used on this connection.
14397 Because of this, you may want to set the LDAP feature
14398 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14399 or the feature
14400 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14401 if you are going to be providing a password.
14402 <P><UL>
14403 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14404 </UL>
14406 &lt;End of help on this topic&gt;
14407 </BODY>
14408 </HTML>
14409 ======= h_config_ldap_opts_impl =======
14410 <HTML>
14411 <HEAD>
14412 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14413 </HEAD>
14414 <BODY>
14415 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14417 Set this to have lookups done to this server implicitly from the composer.
14418 If an address doesn't look like a fully-qualified address, it will be looked
14419 up in your address books, and if it doesn't match a nickname there, then it
14420 will be looked up on the LDAP servers that have this feature set.
14421 The lookups will also be done when using the address completion feature
14422 (TAB command) in the composer if any of the serves have this feature set.
14423 Also see the LDAP feature
14424 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14425 and the Setup/Config feature
14426 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14428 &lt;End of help on this topic&gt;
14429 </BODY>
14430 </HTML>
14431 ======= h_config_ldap_opts_tls =======
14432 <HTML>
14433 <HEAD>
14434 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14435 </HEAD>
14436 <BODY>
14437 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14439 When connecting to this server Alpine will attempt to use TLS encryption
14440 on the connection.
14441 Also see the closely related feature
14442 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14444 &lt;End of help on this topic&gt;
14445 </BODY>
14446 </HTML>
14447 ======= h_config_ldap_opts_tlsmust =======
14448 <HTML>
14449 <HEAD>
14450 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14451 </HEAD>
14452 <BODY>
14453 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14455 When connecting to this server Alpine will attempt to use TLS encryption
14456 on the connection.
14457 If the StartTLS operation fails then the connection will not be used.
14459 &lt;End of help on this topic&gt;
14460 </BODY>
14461 </HTML>
14462 ====== h_config_ldap_opts_rhs =====
14463 <HTML>
14464 <HEAD>
14465 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
14466 </HEAD>
14467 <BODY>
14468 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
14470 Normally implicit LDAP lookups from the composer are done only for the
14471 strings you type in from the composer screen. In other words, you type in
14472 something in the To or CC field and press return, then the string is looked up.
14473 First that string is looked up in your address books. If a match is found
14474 there, then the results of that match are looked up again. If you place
14475 a string in your address book that you want to have looked up on the LDAP
14476 directory server, you need to turn on this feature. If you set this feature
14477 for a server, you almost always will also want to set the
14478 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
14479 feature. An example might serve to best illustrate this feature.
14481 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
14482 entry with an
14483 address of pres@whitehouse.gov, then you might put an entry in your address
14484 book that looks like:
14486 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
14487 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
14489 Now, when you type &quot;bill&quot; into an
14490 address field in the composer Alpine will
14491 find the &quot;bill&quot; entry in your address book.
14492 It will replace &quot;bill&quot; with
14493 &quot;William Clinton&quot;.
14494 It will then search for an entry with that nickname
14495 in your address book and not find one. If this feature
14496 is set, Alpine will then attempt to lookup
14497 &quot;William Clinton&quot; on the LDAP server and find the entry with address
14498 pres@whitehouse.gov.
14500 A better way to accomplish the same thing is probably to use the feature
14501 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
14503 &lt;End of help on this topic&gt;
14504 </BODY>
14505 </HTML>
14506 ====== h_config_ldap_opts_ref =====
14507 <HTML>
14508 <HEAD>
14509 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
14510 </HEAD>
14511 <BODY>
14512 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
14514 Normally when you save the results of an LDAP directory lookup to your
14515 address book the results of the lookup are saved. If this feature is set
14516 and the entry being saved was found on this directory server, then the
14517 search criteria is saved instead of the results of the search. When this
14518 address book entry is used in the future, instead of copying the results
14519 from the address book the directory lookup will be done again. This could
14520 be useful if the copied result might become stale because the data on
14521 the directory server changes (for example, the entry's email address changes).
14522 You probably don't want to set this feature if the server is at all slow or
14523 unreliable.
14525 The way this actually works is that instead of saving the email address
14526 in your address book, Alpine saves enough information to look up the same
14527 directory entry again. In particular, it saves the server name and the
14528 distinguished name of the entry. It's possible that the server administrators
14529 might change the format of distinguished names on the server, or that the
14530 entry might be removed from the server. If Alpine notices this, you will be warned
14531 and a backup copy of the email address will be used. You may want to create
14532 a new entry in this case, since you will get the annoying warning every
14533 time you use the old entry. You may do that by Saving the entry to a new
14534 nickname in the same address book. You will be asked whether or not you
14535 want to use the backup email address.
14537 A related feature in the Setup/Config screen is
14538 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14540 &lt;End of help on this topic&gt;
14541 </BODY>
14542 </HTML>
14543 ======= h_config_ldap_opts_nosub =======
14544 <HTML>
14545 <HEAD>
14546 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
14547 </HEAD>
14548 <BODY>
14549 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
14551 Spaces in your input are normally handled specially.
14552 Each space character is replaced
14555 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
14557 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
14558 The reason this is done is so the input string
14560 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
14562 (which is converted to &quot;Greg* Donald&quot;) will match
14563 the names &quot;Greg Donald&quot;,
14564 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
14565 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
14566 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
14567 then it would also match the name &quot;Greg Donaldson&quot;.
14569 Turning on this feature will disable this substitution.
14571 &lt;End of help on this topic&gt;
14572 </BODY>
14573 </HTML>
14574 ====== h_config_ldap_searchtypes =======
14575 <HTML>
14576 <HEAD>
14577 <TITLE>LDAP OPTION: Search-Type</TITLE>
14578 </HEAD>
14579 <BODY>
14580 <H1>LDAP OPTION: Search-Type</H1>
14582 This affects the way that LDAP searches are done.
14583 In particular, this tells the server where to look for the string to be matched.
14584 If set to &quot;name&quot; then the string that is being searched for will
14585 be compared with the string in the
14586 &quot;Name&quot; field on the server
14587 (technically, it is the &quot;commonname&quot; field on the server).
14588 &quot;Surname&quot; means we're looking for a
14589 match in the &quot;Surname&quot; field on the
14590 server (actually the &quot;sn&quot; field).
14591 &quot;Givenname&quot; really is &quot;givenname&quot;
14592 and &quot;email&quot; is the electronic mail address (this is actually the field
14593 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
14594 The other three types are combinations of
14595 the types listed so far. &quot;Name-or-email&quot;
14596 means the string should appear
14597 in either the &quot;name&quot; field OR the &quot;email&quot; field.
14598 Likewise, &quot;surname-or-givenname&quot;
14599 means &quot;surname&quot; OR &quot;givenname&quot;
14600 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
14602 This search TYPE is combined with the
14603 search <A HREF="h_config_ldap_searchrules">RULE</A>
14604 to form the actual search query.
14606 The usual default value for this
14607 option is &quot;sur-or-given-or-name-or-email&quot;.
14608 This type of search may be slow on some servers.
14609 Try &quot;name-or-email&quot;, which is often
14610 faster, or just &quot;name&quot; if the performance seems to be a problem.
14612 Some servers have been configured with different attribute names for
14613 these four fields.
14614 In other words, instead of using the attribute name &quot;mail&quot;
14615 for the email address field, the server might be configured to use something
14616 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
14617 Alpine can be configured to use these different attribute names by using
14618 the four configuration options:
14619 <P><UL>
14620 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14621 </UL>
14622 <P><UL>
14623 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14624 </UL>
14625 <P><UL>
14626 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14627 </UL>
14628 <P><UL>
14629 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14630 </UL>
14632 &lt;End of help on this topic&gt;
14633 </BODY>
14634 </HTML>
14635 ====== h_config_ldap_searchrules =======
14636 <HTML>
14637 <HEAD>
14638 <TITLE>LDAP OPTION: Search-Rule</TITLE>
14639 </HEAD>
14640 <BODY>
14641 <H1>LDAP OPTION: Search-Rule</H1>
14643 This affects the way that LDAP searches are done.
14644 If set to &quot;equals&quot; then
14645 only exact matches count.
14646 &quot;Contains&quot; means that the string you type in
14647 is a substring of what you are matching against.
14648 &quot;Begins-with&quot; and &quot;ends-with&quot;
14649 mean that the string starts or ends with the string you type in.
14651 Spaces in your input are normally handled specially, but you can turn that
14652 special handling off with the
14653 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14654 feature.
14656 The usual default value for this option is &quot;begins-with&quot;.
14658 &lt;End of help on this topic&gt;
14659 </BODY>
14660 </HTML>
14661 ======= h_config_ldap_email_attr =======
14662 <HTML>
14663 <HEAD>
14664 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
14665 </HEAD>
14666 <BODY>
14667 <H1>LDAP OPTION: EmailAttribute</H1>
14669 This is the name of the attribute that is searched for when looking for
14670 an email address. The default value for this option is &quot;mail&quot; or
14671 &quot;electronicmail&quot;.
14672 If the server you are using uses a different attribute name for the email
14673 address, put that attribute name here.
14675 This will affect the search filter used if your Search-Type is one that
14676 contains a search for &quot;email&quot;.
14677 It will also cause the attribute value matching this attribute name to be used
14678 as the email address when you look up an entry from the composer.
14680 &lt;End of help on this topic&gt;
14681 </BODY>
14682 </HTML>
14683 ======= h_config_ldap_sn_attr =======
14684 <HTML>
14685 <HEAD>
14686 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
14687 </HEAD>
14688 <BODY>
14689 <H1>LDAP OPTION: SurnameAttribute</H1>
14691 This is the name of the attribute that is searched for when looking for
14692 the surname of the entry. The default value for this option is &quot;sn&quot;.
14693 If the server you are using uses a different attribute name for the surname,
14694 put that attribute name here.
14695 This will affect the search filter used if your Search-Type is one that
14696 contains a search for &quot;surname&quot;.
14698 &lt;End of help on this topic&gt;
14699 </BODY>
14700 </HTML>
14701 ======= h_config_ldap_gn_attr =======
14702 <HTML>
14703 <HEAD>
14704 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
14705 </HEAD>
14706 <BODY>
14707 <H1>LDAP OPTION: GivennameAttribute</H1>
14709 This is the name of the attribute that is searched for when looking for
14710 the given name of the entry. The default value for this option is &quot;givenname&quot;.
14711 If the server you are using uses a different attribute name for the given name,
14712 put that attribute name here.
14713 This will affect the search filter used if your Search-Type is one that
14714 contains a search for &quot;givenname&quot;.
14716 &lt;End of help on this topic&gt;
14717 </BODY>
14718 </HTML>
14719 ======= h_config_ldap_cn_attr =======
14720 <HTML>
14721 <HEAD>
14722 <TITLE>LDAP OPTION: NameAttribute</TITLE>
14723 </HEAD>
14724 <BODY>
14725 <H1>LDAP OPTION: NameAttribute</H1>
14727 This is the name of the attribute that is searched for when looking for
14728 the name of the entry. The default value for this option is &quot;cn&quot;, which
14729 stands for common name.
14730 If the server you are using uses a different attribute name for the name,
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;name&quot;.
14735 &lt;End of help on this topic&gt;
14736 </BODY>
14737 </HTML>
14738 ======= h_config_ldap_time =======
14739 <HTML>
14740 <HEAD>
14741 <TITLE>LDAP OPTION: Timelimit</TITLE>
14742 </HEAD>
14743 <BODY>
14744 <H1>LDAP OPTION: Timelimit</H1>
14746 This places a limit on the number of seconds the LDAP search will continue.
14747 The default is 30 seconds. A value of 0 means no limit. Note that some servers
14748 may place limits of their own on searches.
14750 &lt;End of help on this topic&gt;
14751 </BODY>
14752 </HTML>
14753 ======= h_config_ldap_size =======
14754 <HTML>
14755 <HEAD>
14756 <TITLE>LDAP OPTION: Sizelimit</TITLE>
14757 </HEAD>
14758 <BODY>
14759 <H1>LDAP OPTION: Sizelimit</H1>
14761 This places a limit on the number of entries returned by the LDAP server.
14762 A value of 0 means no limit. The default is 0. Note that some servers
14763 may place limits of their own on searches.
14765 &lt;End of help on this topic&gt;
14766 </BODY>
14767 </HTML>
14768 ======= h_config_ldap_cust =======
14769 <HTML>
14770 <HEAD>
14771 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
14772 </HEAD>
14773 <BODY>
14774 <H1>LDAP OPTION: Custom-Search-Filter</H1>
14776 This one is for advanced users only! If you define this, then the
14777 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
14778 However, the feature
14779 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14780 is still in effect.
14781 That is, the space substitution will take place even in a custom filter unless
14782 you disable it.
14784 If your LDAP service stops working and you suspect it might be because
14785 of your custom filter, just delete this filter and try using the
14786 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
14787 Another option that sometimes causes trouble is the
14788 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
14790 This variable may be set to the string representation of an LDAP search
14791 filter (see RFC1960). In the places where you want the address string to be
14792 substituted in, put a '%s' in this filter string. Here are some examples:
14794 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
14795 is equivalent to the &quot;Custom-Search-Filter&quot;
14796 <PRE>
14797      (cn=%s*)
14798 </PRE>
14799 When you try to match against the string &quot;string&quot; the program replaces
14800 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
14801 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
14803 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
14804 of &quot;contains&quot; is equivalent to
14805 <PRE>
14806      (|(cn=*%s*)(mail=*%s*))
14807 </PRE>
14809 If your server uses a different attribute <EM>name</EM> than
14810 Alpine uses by default,
14811 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
14812 then you may be able to use one or more of the four attribute configuration
14813 options instead of defining a custom filter:
14814 <P><UL>
14815 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14816 </UL>
14817 <P><UL>
14818 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14819 </UL>
14820 <P><UL>
14821 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14822 </UL>
14823 <P><UL>
14824 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14825 </UL>
14827 &lt;End of help on this topic&gt;
14828 </BODY>
14829 </HTML>
14830 ======= h_composer_abook_comment =======
14831 <HTML>
14832 <HEAD>
14833 <TITLE>Addressbook Comment Explained</TITLE>
14834 </HEAD>
14835 <BODY>
14836 This is a comment to help you remember what this entry is. The WhereIs
14837 command searches comments so that it is easier to find an entry with a comment
14838 you know about attached to it. This field is not used in the outgoing message.
14840 Look <A HREF="h_edit_nav_cmds">here</A>
14841 to see the available Editing and Navigation commands.
14843 &lt;End of help on this topic&gt;
14844 </BODY>
14845 </HTML>
14846 ======= h_composer_abook_addrs =======
14847 <HTML>
14848 <HEAD>
14849 <TITLE>Addressbook Lists</TITLE>
14850 </HEAD>
14851 <BODY>
14852 <H1>Addressbook Lists</H1>
14854 This is a list of addresses to send to when sending to this address book
14855 entry.  Each member of the list may be an address or another nickname from
14856 any of your address books.  If it is an address, it is OK to include the
14857 full name field as well as the electronic address portion of that address.
14858 For example, the following are all legitimate entries in this field:
14860 <DL><DT>&nbsp;</DT>
14861 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
14862 <DD>jdoe@some.domain
14863 <DD>John Doe &lt;jdoe@some.domain&gt;
14864 </DL>
14866 The addresses should be listed separated by commas, just like you would
14867 enter them from the composer.
14871 The only difference between a distribution list and a simple entry with a
14872 single address, is that a distribution list has more than one address   
14873 listed in the Addresses: field, whereas a simple personal entry has just  
14874 one address.
14878 For individual address book entries, if there is a full name in the
14879 Fullname: field (filling in the Fullname: field is not required), it is
14880 used.  If the full name is specified in the Address: field and not in the
14881 Fullname: field, then the full name from the Address: field is used.
14885 If you type the nickname of a distribution list from one of your address 
14886 books in the Lcc: field, then the full name of that list is used in the  
14887 To: field.  If you put a list in the To: or Cc: fields, that list will be
14888 expanded into all of its addresses.  If the list has a full name, then
14889 that will appear at the beginning of the addresses.
14891 <DL><DT>&nbsp;</DT>
14892 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
14893 &lt;sal@here.there&gt;
14894 </DL>
14896 If the first address in the distribution list also has a full name, then
14897 the list full name and that full name are combined into something like the
14898 following:
14900 <DL><DT>&nbsp;</DT>
14901 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
14902 </DL>
14905 If you specify a list via Lcc, the full name is used in the To: line.  If
14906 you specify a list in the To: or Cc: fields, then it uses the same method
14907 as for individual entries for filling in the full name.
14911 For help with editing and navigation commands, check the Help for the
14912 Nickname: field.
14915 &lt;End of help on this topic&gt;
14916 </BODY>
14917 </HTML>
14918 ======= h_config_role_nick =======
14919 <HTML>
14920 <HEAD>
14921 <TITLE>Nickname Explained</TITLE>
14922 </HEAD>
14923 <BODY>
14924 <H1>Nickname Explained</H1>
14926 This is a nickname to help you.
14927 You should have a different nickname for each role you define.
14928 The nickname will be used in the SETUP ROLE RULES screen to allow you to
14929 pick a role to edit.
14930 It will also be used when you send a message to let you know you are
14931 sending with a different role than you use by default, and
14932 it will be useful for choosing a role when composing with the Role command
14933 or when composing with one of the Role Uses set to With Confirmation.
14934 This field is not used in the outgoing message.
14936 Look <A HREF="h_edit_nav_cmds">here</A>
14937 to see the available Editing and Navigation commands.
14939 &lt;End of help on this topic&gt;
14940 </BODY>
14941 </HTML>
14942 ======= h_config_role_comment =======
14943 <HTML>
14944 <HEAD>
14945 <TITLE>Comment Explained</TITLE>
14946 </HEAD>
14947 <BODY>
14948 <H1>Comment Explained</H1>
14950 This is a comment to help you.
14951 This comment does not play any functional role, it is simply an optional
14952 comment to help you remember what the rule is for.
14954 Look <A HREF="h_edit_nav_cmds">here</A>
14955 to see the available Editing and Navigation commands.
14957 &lt;End of help on this topic&gt;
14958 </BODY>
14959 </HTML>
14960 ======= h_config_other_nick =======
14961 <HTML>
14962 <HEAD>
14963 <TITLE>Nickname Explained</TITLE>
14964 </HEAD>
14965 <BODY>
14966 <H1>Nickname Explained</H1>
14968 This is a nickname to help you.
14969 You should have a different nickname for each rule you define.
14970 The nickname will be used in the SETUP OTHER RULES screen to allow you to
14971 pick a rule to edit.
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_score_nick =======
14980 <HTML>
14981 <HEAD>
14982 <TITLE>Nickname Explained</TITLE>
14983 </HEAD>
14984 <BODY>
14985 <H1>Nickname Explained</H1>
14987 This is a nickname to help you.
14988 You should have a different nickname for each scoring rule you define.
14989 The nickname will be used in the SETUP SCORING RULES screen to allow you to
14990 pick a rule to edit.
14992 Look <A HREF="h_edit_nav_cmds">here</A>
14993 to see the available Editing and Navigation commands.
14995 &lt;End of help on this topic&gt;
14996 </BODY>
14997 </HTML>
14998 ======= h_config_incol_nick =======
14999 <HTML>
15000 <HEAD>
15001 <TITLE>Nickname Explained</TITLE>
15002 </HEAD>
15003 <BODY>
15004 <H1>Nickname Explained</H1>
15006 This is a nickname to help you.
15007 You should have a different nickname for each color rule you define.
15008 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15009 pick a rule to edit.
15011 Look <A HREF="h_edit_nav_cmds">here</A>
15012 to see the available Editing and Navigation commands.
15014 &lt;End of help on this topic&gt;
15015 </BODY>
15016 </HTML>
15017 ======= h_config_filt_nick =======
15018 <HTML>
15019 <HEAD>
15020 <TITLE>Nickname Explained</TITLE>
15021 </HEAD>
15022 <BODY>
15023 <H1>Nickname Explained</H1>
15025 This is a nickname to help you.
15026 You should have a different nickname for each filtering rule you define.
15027 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15028 pick a rule to edit.
15030 Look <A HREF="h_edit_nav_cmds">here</A>
15031 to see the available Editing and Navigation commands.
15033 &lt;End of help on this topic&gt;
15034 </BODY>
15035 </HTML>
15036 ======= h_config_score_topat =======
15037 <HTML>
15038 <HEAD>
15039 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15040 </HEAD>
15041 <BODY>
15042 <H1>&quot;To:&quot; Pattern Explained</H1>
15044 Any text you enter as the &quot;To pattern&quot;
15045 will be compared to the recipients from the To: line of
15046 the message being scored.
15047 When the text you entered matches
15048 all or part of the To: line of a message, then the Score Value
15049 you have specified will be added to the score for the message.
15050 (Any other non-blank parts of the Pattern must match, too.)
15053 You may enter a complete email address, part of an address, or a
15054 list of addresses or partial addresses.
15055 For example:
15058 <PRE>
15059  To pattern = friend@public.com
15061  To pattern = rated.net
15063  To pattern = xxx@adults.com
15064               admin@msn.com
15065               fool@motleyfool.com
15066 </PRE>
15069 Each of those are valid To patterns.
15072 Messages match those patterns if any of the
15073 addresses in the To: line of the message contains the pattern.
15074 If the pattern is a list of patterns
15075 (like the last example above) then it is a match if any of the patterns in
15076 the list match any of the addresses in the To: line.
15077 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15078 present for a match.
15079 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15080 address2 must be present.
15081 That is exactly what using a list does.)
15084 Some messages may be &quot;bounced&quot; to you, and will
15085 have a &quot;Resent-To:&quot; header line.
15086 If the message contains a Resent-To: line
15087 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15088 Alpine will look for
15089 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15090 the original To: line.
15093 When entering a pattern, you may choose an address from your address book
15094 with the &quot;T&quot; command.
15097 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15098 &quot;!&quot; &quot;toggle NOT&quot; command.
15099 This changes the meaning of the To pattern so that it has the opposite meaning.
15100 It will be considered a match if there are no matches between the
15101 addresses in the To: line and the list of To patterns.
15103 Don't make the mistake of putting the &quot;!&quot; in the data field for
15104 the pattern.
15105 For example, if you type the characters &quot;!frizzle&quot; into the To
15106 pattern, the pattern will look like:
15108 <PRE>
15109  To pattern = !frizzle
15110 </PRE>
15112 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15113 In order to match messages that do not have &quot;frizzle&quot; in
15114 their To field, first type the characters &quot;frizzle&quot; followed
15115 by carriage return for the value of the To pattern, then negate it
15116 by typing the &quot;!&quot; command.
15117 It should end up looking like
15119 <PRE>
15120  ! To pattern = frizzle
15121 </PRE>
15123 You are not limited to using the six standard header patterns that are
15124 normally shown (To, From, Sender, Cc, News, and Subject).
15125 You may add any other header to a Pattern by
15126 using the &quot;eXtraHdr&quot; command to specify a different
15127 message header line; and then the Add or Change command to fill in
15128 a pattern for the new header line, just like you would for a standard header.
15130 A technicality: Since comma is the character used to separate multiple
15131 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15132 you want to include a literal comma in the field.
15133 In other words, if you type a backslash followed by a comma it will
15134 be interpreted as a comma by Alpine, instead of as a separator between
15135 pattern values.
15136 All other backslashes are literal backslashes and should not be escaped.
15138 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15139 for more information on Patterns.
15141 Look <A HREF="h_edit_nav_cmds">here</A>
15142 to see the available Editing and Navigation commands.
15144 &lt;End of help on this topic&gt;
15145 </BODY>
15146 </HTML>
15147 ======= h_config_incol_topat =======
15148 <HTML>
15149 <HEAD>
15150 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15151 </HEAD>
15152 <BODY>
15153 <H1>&quot;To:&quot; Pattern Explained</H1>
15155 Any text you enter as the &quot;To pattern&quot;
15156 will be compared to the recipients from the To: lines of
15157 the messages in the index.
15158 When the text you entered matches
15159 all or part of the To: line of a message, then the Index Line Color you have
15160 specified will be used for that line in the index.
15161 (Any other non-blank parts of the Pattern must match, too.)
15164 You may enter a complete email address, part of an address, or a
15165 list of addresses or partial addresses.
15166 For example:
15169 <PRE>
15170  To pattern = friend@public.com
15171  To pattern = rated.net
15172  To pattern = xxx@adults.com
15173               admin@msn.com
15174               fool@motleyfool.com
15175 </PRE>
15178 Each of those are valid To patterns.
15181 Messages match those patterns if any of the
15182 addresses in the To: line of the message contains the pattern.
15183 If the pattern is a list of patterns
15184 (like the last example above) then it is a match if any of the patterns in
15185 the list match any of the addresses in the To: line.
15186 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15187 present for a match.
15188 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15189 address2 must be present.
15190 That is exactly what using a list does.)
15193 Some messages may be &quot;bounced&quot; to you, and will
15194 have a &quot;Resent-To:&quot; header line.
15195 If the message contains a Resent-To: line
15196 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15197 Alpine will look for
15198 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15199 the original To: line.
15202 When entering a pattern, you may choose an address from your address book
15203 with the &quot;T&quot; command.
15206 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15207 &quot;!&quot; &quot;toggle NOT&quot; command.
15208 This changes the meaning of the To pattern so that it has the opposite meaning.
15209 It will be considered a match if there are no matches between the
15210 addresses in the To: line and the list of To patterns.
15212 Don't make the mistake of putting the &quot;!&quot; in the data field for
15213 the pattern.
15214 For example, if you type the characters &quot;!frizzle&quot; into the To
15215 pattern, the pattern will look like:
15217 <PRE>
15218  To pattern = !frizzle
15219 </PRE>
15221 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15222 In order to match messages that do not have &quot;frizzle&quot; in
15223 their To field, first type the characters &quot;frizzle&quot; followed
15224 by carriage return for the value of the To pattern, then negate it
15225 by typing the &quot;!&quot; command.
15226 It should end up looking like
15228 <PRE>
15229  ! To pattern = frizzle
15230 </PRE>
15233 You are not limited to using the six standard header patterns that are
15234 normally shown (To, From, Sender, Cc, News, and Subject).
15235 You may add any other header to a Pattern by
15236 using the &quot;eXtraHdr&quot; command to specify a different
15237 message header line; and then the Add or Change command to fill in
15238 a pattern for the new header line, just like you would for a standard header.
15240 A technicality: Since comma is the character used to separate multiple
15241 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15242 you want to include a literal comma in the field.
15243 In other words, if you type a backslash followed by a comma it will
15244 be interpreted as a comma by Alpine, instead of as a separator between
15245 pattern values.
15246 All other backslashes are literal backslashes and should not be escaped.
15248 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15249 for more information on Patterns.
15251 Look <A HREF="h_edit_nav_cmds">here</A>
15252 to see the available Editing and Navigation commands.
15254 &lt;End of help on this topic&gt;
15255 </BODY>
15256 </HTML>
15257 ======= h_config_other_topat =======
15258 <HTML>
15259 <HEAD>
15260 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15261 </HEAD>
15262 <BODY>
15263 <H1>&quot;To:&quot; Pattern Explained</H1>
15265 For some of the OTHER RULES actions, there is no message that is being
15266 compared against.
15267 If that is the case, then only the Current Folder Type is checked.
15268 In particular, this To pattern is ignored.
15269 Actions that fall into this category include both
15270 Sort Order and Index Format.
15272 A technicality: Since comma is the character used to separate multiple
15273 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15274 you want to include a literal comma in the field.
15275 In other words, if you type a backslash followed by a comma it will
15276 be interpreted as a comma by Alpine, instead of as a separator between
15277 pattern values.
15278 All other backslashes are literal backslashes and should not be escaped.
15280 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15281 for more information on Patterns.
15283 Look <A HREF="h_edit_nav_cmds">here</A>
15284 to see the available Editing and Navigation commands.
15286 &lt;End of help on this topic&gt;
15287 </BODY>
15288 </HTML>
15289 ======= h_config_filt_topat =======
15290 <HTML>
15291 <HEAD>
15292 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15293 </HEAD>
15294 <BODY>
15295 <H1>&quot;To:&quot; Pattern Explained</H1>
15297 Any text you enter as the &quot;To pattern&quot;
15298 will be compared to the recipients from the To: line of
15299 messages when Alpine opens folders.
15300 When the text you entered matches
15301 all or part of the To: line of a message, then the Filter Action you have
15302 specified will be carried out.
15303 (Any other non-blank parts of the Pattern must match, too.)
15306 You may enter a complete email address, part of an address, or a
15307 list of addresses or partial addresses.
15308 For example:
15311 <PRE>
15312  To pattern = friend@public.com
15313  To pattern = rated.net
15314  To pattern = xxx@adults.com
15315               admin@msn.com
15316               fool@motleyfool.com
15317 </PRE>
15320 Each of those are valid To patterns.
15323 Messages match those patterns if any of the
15324 addresses in the To: line of the message contains the pattern.
15325 If the pattern is a list of patterns
15326 (like the last example above) then it is a match if any of the patterns in
15327 the list match any of the addresses in the To: line.
15328 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15329 present for a match.
15330 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15331 address2 must be present.
15332 That is exactly what using a list does.)
15335 Some messages may be &quot;bounced&quot; to you, and will
15336 have a &quot;Resent-To:&quot; header line.
15337 If the message contains a Resent-To: line
15338 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15339 Alpine will look for
15340 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15341 the original To: line.
15344 When entering a pattern, you may choose an address from your address book
15345 with the &quot;T&quot; command.
15348 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15349 &quot;!&quot; &quot;toggle NOT&quot; command.
15350 This changes the meaning of the To pattern so that it has the opposite meaning.
15351 It will be considered a match if there are no matches between the
15352 addresses in the To: line and the list of To patterns.
15354 Don't make the mistake of putting the &quot;!&quot; in the data field for
15355 the pattern.
15356 For example, if you type the characters &quot;!frizzle&quot; into the To
15357 pattern, the pattern will look like:
15359 <PRE>
15360  To pattern = !frizzle
15361 </PRE>
15363 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15364 In order to match messages that do not have &quot;frizzle&quot; in
15365 their To field, first type the characters &quot;frizzle&quot; followed
15366 by carriage return for the value of the To pattern, then negate it
15367 by typing the &quot;!&quot; command.
15368 It should end up looking like
15370 <PRE>
15371  ! To pattern = frizzle
15372 </PRE>
15375 You are not limited to using the six standard header patterns that are
15376 normally shown (To, From, Sender, Cc, News, and Subject).
15377 You may add any other header to a Pattern by
15378 using the &quot;eXtraHdr&quot; command to specify a different
15379 message header line; and then the Add or Change command to fill in
15380 a pattern for the new header line, just like you would for a standard header.
15382 A technicality: Since comma is the character used to separate multiple
15383 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15384 you want to include a literal comma in the field.
15385 In other words, if you type a backslash followed by a comma it will
15386 be interpreted as a comma by Alpine, instead of as a separator between
15387 pattern values.
15388 All other backslashes are literal backslashes and should not be escaped.
15390 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15391 for more information on Patterns.
15393 Look <A HREF="h_edit_nav_cmds">here</A>
15394 to see the available Editing and Navigation commands.
15396 &lt;End of help on this topic&gt;
15397 </BODY>
15398 </HTML>
15399 ======= h_config_role_topat =======
15400 <HTML>
15401 <HEAD>
15402 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15403 </HEAD>
15404 <BODY>
15405 <H1>&quot;To:&quot; Pattern Explained</H1>
15407 Any text you enter as the &quot;To pattern&quot;
15408 will be compared to the recipients from the To: line of
15409 the message being replied to or forwarded.
15410 (Any other non-blank parts of the Pattern must match, too.)
15411 In the case of the Compose command, this pattern and the other header
15412 patterns are ignored.
15415 You may enter a complete email address, part of an address, or a
15416 list of addresses or partial addresses.
15417 For example:
15420 <PRE>
15421  To pattern = friend@public.com
15422  To pattern = rated.net
15423  To pattern = xxx@adults.com
15424               admin@msn.com
15425               fool@motleyfool.com
15426 </PRE>
15429 Each of those are valid To patterns.
15432 Messages match those patterns if any of the
15433 addresses in the To: line of the message contains the pattern.
15434 If the pattern is a list of patterns
15435 (like the last example above) then it is a match if any of the patterns in
15436 the list match any of the addresses in the To: line.
15437 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15438 present for a match.
15439 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15440 address2 must be present.
15441 That is exactly what using a list does.)
15444 Some messages may be &quot;bounced&quot; to you, and will
15445 have a &quot;Resent-To:&quot; header line.
15446 If the message contains a Resent-To: line
15447 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15448 Alpine will look for
15449 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15450 the original To: line.
15453 When entering a pattern, you may choose an address from your address book
15454 with the &quot;T&quot; command.
15457 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15458 &quot;!&quot; &quot;toggle NOT&quot; command.
15459 This changes the meaning of the To pattern so that it has the opposite meaning.
15460 It will be considered a match if there are no matches between the
15461 addresses in the To: line and the list of To patterns.
15463 Don't make the mistake of putting the &quot;!&quot; in the data field for
15464 the pattern.
15465 For example, if you type the characters &quot;!frizzle&quot; into the To
15466 pattern, the pattern will look like:
15468 <PRE>
15469  To pattern = !frizzle
15470 </PRE>
15472 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15473 In order to match messages that do not have &quot;frizzle&quot; in
15474 their To field, first type the characters &quot;frizzle&quot; followed
15475 by carriage return for the value of the To pattern, then negate it
15476 by typing the &quot;!&quot; command.
15477 It should end up looking like
15479 <PRE>
15480  ! To pattern = frizzle
15481 </PRE>
15484 You are not limited to using the six standard header patterns that are
15485 normally shown (To, From, Sender, Cc, News, and Subject).
15486 You may add any other header to a Pattern by
15487 using the &quot;eXtraHdr&quot; command to specify a different
15488 message header line; and then the Add or Change command to fill in
15489 a pattern for the new header line, just like you would for a standard header.
15491 A technicality: Since comma is the character used to separate multiple
15492 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15493 you want to include a literal comma in the field.
15494 In other words, if you type a backslash followed by a comma it will
15495 be interpreted as a comma by Alpine, instead of as a separator between
15496 pattern values.
15497 All other backslashes are literal backslashes and should not be escaped.
15499 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15500 for more information on Patterns.
15502 Look <A HREF="h_edit_nav_cmds">here</A>
15503 to see the available Editing and Navigation commands.
15505 &lt;End of help on this topic&gt;
15506 </BODY>
15507 </HTML>
15508 ======= h_config_role_frompat =======
15509 <HTML>
15510 <HEAD>
15511 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
15512 </HEAD>
15513 <BODY>
15514 <H1>&quot;From:&quot; Pattern Explained</H1>
15516 This is just like the &quot;To pattern&quot; except that it is compared with
15517 the address in the From: line of the message
15518 instead of the addresses from the To: line.
15519 See the help for the To pattern for more information on header patterns.
15521 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15522 for more information on Patterns.
15524 Look <A HREF="h_edit_nav_cmds">here</A>
15525 to see the available Editing and Navigation commands.
15527 &lt;End of help on this topic&gt;
15528 </BODY>
15529 </HTML>
15530 ======= h_config_role_senderpat =======
15531 <HTML>
15532 <HEAD>
15533 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
15534 </HEAD>
15535 <BODY>
15536 <H1>&quot;Sender:&quot; Pattern Explained</H1>
15538 This is just like the &quot;To pattern&quot; except that it is compared with
15539 the address from the Sender: line of the message
15540 instead of the addresses from the To: line.
15541 See the help for the To pattern for more information on header patterns.
15543 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15544 for more information on Patterns.
15546 Look <A HREF="h_edit_nav_cmds">here</A>
15547 to see the available Editing and Navigation commands.
15549 &lt;End of help on this topic&gt;
15550 </BODY>
15551 </HTML>
15552 ======= h_config_role_ccpat =======
15553 <HTML>
15554 <HEAD>
15555 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
15556 </HEAD>
15557 <BODY>
15558 <H1>&quot;Cc:&quot; Pattern Explained</H1>
15560 This is just like the &quot;To pattern&quot; except that it is compared with
15561 the addresses from the Cc: line of the message
15562 instead of the addresses from the To: line.
15563 See the help for the To pattern for more information on header patterns.
15565 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15566 for more information on Patterns.
15568 Look <A HREF="h_edit_nav_cmds">here</A>
15569 to see the available Editing and Navigation commands.
15571 &lt;End of help on this topic&gt;
15572 </BODY>
15573 </HTML>
15574 ======= h_config_role_recippat =======
15575 <HTML>
15576 <HEAD>
15577 <TITLE>Recipient Pattern Explained</TITLE>
15578 </HEAD>
15579 <BODY>
15580 <H1>Recipient Pattern Explained</H1>
15582 This is just like the &quot;To pattern&quot; except that it is compared with
15583 the addresses from both the To: line and the Cc: line of the
15584 message instead of just the addresses from the To: line.
15585 In other words, it is considered a match if the pattern matches
15586 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
15587 in the Cc: line.
15588 (Notice that defining the Recipient pattern does not have the same
15589 effect as defining both the To and Cc patterns.
15590 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
15591 It is equivalent to having two different rules;
15592 one with a To pattern and the other with the same Cc pattern.)
15594 A technicality: Since comma is the character used to separate multiple
15595 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15596 you want to include a literal comma in the field.
15597 In other words, if you type a backslash followed by a comma it will
15598 be interpreted as a comma by Alpine, instead of as a separator between
15599 pattern values.
15600 All other backslashes are literal backslashes and should not be escaped.
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_particpat =======
15612 <HTML>
15613 <HEAD>
15614 <TITLE>Participant Pattern Explained</TITLE>
15615 </HEAD>
15616 <BODY>
15617 <H1>Participant Pattern Explained</H1>
15619 This is just like the &quot;To pattern&quot; except that it is compared with
15620 the addresses from the From: line, 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 From: line, <EM>OR</EM> an address
15624 in the To: line, <EM>OR</EM> an address in the Cc: line.
15625 (Notice that defining the Participant pattern does not have the same
15626 effect as defining all of the From, To, and Cc patterns.
15627 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
15628 From <EM>AND</EM> To <EM>AND</EM> Cc.
15629 It is equivalent to having three different rules;
15630 one with a From pattern, another with the same To pattern, and a third with
15631 the same Cc pattern.)
15633 A technicality: Since comma is the character used to separate multiple
15634 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15635 you want to include a literal comma in the field.
15636 In other words, if you type a backslash followed by a comma it will
15637 be interpreted as a comma by Alpine, instead of as a separator between
15638 pattern values.
15639 All other backslashes are literal backslashes and should not be escaped.
15641 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15642 for more information on Patterns.
15644 Look <A HREF="h_edit_nav_cmds">here</A>
15645 to see the available Editing and Navigation commands.
15647 &lt;End of help on this topic&gt;
15648 </BODY>
15649 </HTML>
15650 ======= h_config_role_newspat =======
15651 <HTML>
15652 <HEAD>
15653 <TITLE>News Pattern Explained</TITLE>
15654 </HEAD>
15655 <BODY>
15656 <H1>News Pattern Explained</H1>
15658 If this pattern is non-blank, then for this rule to be considered a
15659 match, at least one of the newsgroups from
15660 the Newsgroups line of the message must match this pattern.
15661 If this pattern is a list of patterns, then at least one of the
15662 newsgroups must match at least one of the patterns.
15663 (Any other non-blank parts of the Pattern must match, too.)
15665 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
15666 &quot;!&quot; &quot;toggle NOT&quot; command.
15667 This changes the meaning of the News pattern so that it has the opposite meaning.
15668 It will be considered a match if there are no matches between the
15669 addresses in the Newsgroups: line and the list of News patterns.
15671 Don't make the mistake of putting the &quot;!&quot; in the data field for
15672 the pattern.
15673 For example, if you type the characters &quot;!frizzle&quot; into the News
15674 pattern, the pattern will look like:
15676 <PRE>
15677  News pattern = !frizzle
15678 </PRE>
15680 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15681 In order to match messages that do not have &quot;frizzle&quot; in
15682 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
15683 by carriage return for the value of the News pattern, then negate it
15684 by typing the &quot;!&quot; command.
15685 It should end up looking like
15687 <PRE>
15688  ! News pattern = frizzle
15689 </PRE>
15691 A technicality: Since comma is the character used to separate multiple
15692 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15693 you want to include a literal comma in the field.
15694 In other words, if you type a backslash followed by a comma it will
15695 be interpreted as a comma by Alpine, instead of as a separator between
15696 pattern values.
15697 All other backslashes are literal backslashes and should not be escaped.
15700 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15701 for more information on Patterns.
15703 Look <A HREF="h_edit_nav_cmds">here</A>
15704 to see the available Editing and Navigation commands.
15706 &lt;End of help on this topic&gt;
15707 </BODY>
15708 </HTML>
15709 ======= h_config_role_subjpat =======
15710 <HTML>
15711 <HEAD>
15712 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
15713 </HEAD>
15714 <BODY>
15715 <H1>&quot;Subject:&quot; Pattern Explained</H1>
15717 This is similar to the other parts of the Pattern.
15718 It is compared with
15719 the contents from the Subject of the message.
15721 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15722 for more information on Patterns.
15724 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
15725 &quot;!&quot; &quot;toggle NOT&quot; command.
15726 This changes the meaning of the Subject pattern so that it has the opposite meaning.
15727 It will be considered a match if there are no matches between the
15728 text in the Subject: line and the list of Subject patterns.
15731 If you wish to have a header pattern that is not one of the six standard
15732 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
15734 A technicality: Since comma is the character used to separate multiple
15735 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15736 you want to include a literal comma in the field.
15737 In other words, if you type a backslash followed by a comma it will
15738 be interpreted as a comma by Alpine, instead of as a separator between
15739 pattern values.
15740 All other backslashes are literal backslashes and should not be escaped.
15742 Look <A HREF="h_edit_nav_cmds">here</A>
15743 to see the available Editing and Navigation commands.
15745 &lt;End of help on this topic&gt;
15746 </BODY>
15747 </HTML>
15748 ======= h_config_role_alltextpat =======
15749 <HTML>
15750 <HEAD>
15751 <TITLE>AllText Pattern Explained</TITLE>
15752 </HEAD>
15753 <BODY>
15754 <H1>AllText Pattern Explained</H1>
15756 This is similar to the header patterns.
15757 Instead of comparing with text in a particular header field it 
15758 is compared with all of the text in the message header and body.
15760 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
15761 &quot;!&quot; &quot;toggle NOT&quot; command.
15762 This changes the meaning of the AllText pattern so that it has the opposite meaning.
15763 It will be considered a match if there are no matches between the
15764 text of the message and the list of AllText patterns.
15766 Don't make the mistake of putting the &quot;!&quot; in the data field for
15767 the pattern.
15768 For example, if you type the characters &quot;!frizzle&quot; into the AllText
15769 pattern, the pattern will look like:
15771 <PRE>
15772  AllText pattern = !frizzle
15773 </PRE>
15775 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15776 In order to match messages that do not have &quot;frizzle&quot; in
15777 the text of the message, first type the characters &quot;frizzle&quot; followed
15778 by carriage return for the value of the AllText pattern, then negate it
15779 by typing the &quot;!&quot; command.
15780 It should end up looking like
15782 <PRE>
15783  ! AllText pattern = frizzle
15784 </PRE>
15786 It is possible that you may notice degraded performance when using
15787 AllText Patterns.
15789 A technicality: Since comma is the character used to separate multiple
15790 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15791 you want to include a literal comma in the field.
15792 In other words, if you type a backslash followed by a comma it will
15793 be interpreted as a comma by Alpine, instead of as a separator between
15794 pattern values.
15795 All other backslashes are literal backslashes and should not be escaped.
15797 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15798 for more information on Patterns.
15800 Look <A HREF="h_edit_nav_cmds">here</A>
15801 to see the available Editing and Navigation commands.
15803 &lt;End of help on this topic&gt;
15804 </BODY>
15805 </HTML>
15806 ======= h_config_role_bodytextpat =======
15807 <HTML>
15808 <HEAD>
15809 <TITLE>BodyText Pattern Explained</TITLE>
15810 </HEAD>
15811 <BODY>
15812 <H1>BodyText Pattern Explained</H1>
15814 This is similar to the header patterns.
15815 Instead of comparing with text in a particular header field it 
15816 is compared with all of the text in the message body.
15818 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
15819 &quot;!&quot; &quot;toggle NOT&quot; command.
15820 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
15821 It will be considered a match if there are no matches between the
15822 text of the body of the message and the list of BodyText patterns.
15824 Don't make the mistake of putting the &quot;!&quot; in the data field for
15825 the pattern.
15826 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
15827 pattern, the pattern will look like:
15829 <PRE>
15830  BdyText pattern = !frizzle
15831 </PRE>
15833 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15834 In order to match messages that do not have &quot;frizzle&quot; in
15835 their BodyText, first type the characters &quot;frizzle&quot; followed
15836 by carriage return for the value of the BodyText pattern, then negate it
15837 by typing the &quot;!&quot; command.
15838 It should end up looking like
15840 <PRE>
15841  ! BodyText pattern = frizzle
15842 </PRE>
15844 It is possible that you may notice degraded performance when using
15845 BodyText Patterns.
15847 A technicality: Since comma is the character used to separate multiple
15848 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15849 you want to include a literal comma in the field.
15850 In other words, if you type a backslash followed by a comma it will
15851 be interpreted as a comma by Alpine, instead of as a separator between
15852 pattern values.
15853 All other backslashes are literal backslashes and should not be escaped.
15855 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15856 for more information on Patterns.
15858 Look <A HREF="h_edit_nav_cmds">here</A>
15859 to see the available Editing and Navigation commands.
15861 &lt;End of help on this topic&gt;
15862 </BODY>
15863 </HTML>
15864 ======= h_config_role_charsetpat =======
15865 <HTML>
15866 <HEAD>
15867 <TITLE>Character Set Pattern Explained</TITLE>
15868 </HEAD>
15869 <BODY>
15870 <H1>Character Set Pattern Explained</H1>
15872 A message may use one or more character sets.
15873 This part of the Pattern matches messages that make use of
15874 certain specified character sets.
15875 It will be considered a match if a message uses any of the character
15876 sets in the list you give here.
15879 When filling in a value for this field, you may use
15880 the &quot;T&quot; command, which presents you with a large list of
15881 possible character sets to choose from.
15882 You may also just type in the name of a character set, and it need not
15883 be one that Alpine knows about.
15886 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
15887 GB2312) you may also use some shorthand names that Alpine provides.
15888 These names are more understandable shorthand names for sets of 
15889 character set names.
15890 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
15891 Selecting one of these shorthand names is equivalent to selecting all of
15892 the character sets that make up the set.
15893 You can see all of these shorthand names and the lists of character sets
15894 they stand for by typing the &quot;T&quot; command.
15897 For the purposes of this Pattern,
15898 Alpine will search through a message for all of the text parts and
15899 collect the character sets declared for each part.
15900 It will also look in the Subject line for a character set used there.
15901 Alpine does not actually look at the text of the message or the text
15902 of the Subject to determine if a declared character set is actually
15903 used, it looks only at the declarations themselves in the MIME part headers
15904 and in the Subject.
15907 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
15908 &quot;!&quot; &quot;toggle NOT&quot; command.
15909 This changes the meaning of the Character Set pattern so that
15910 it has the opposite meaning.
15911 It will be considered a match if none of the character sets in the
15912 list are used in a message.
15914 Don't make the mistake of putting the &quot;!&quot; in the data field for
15915 the pattern.
15916 For example, if you type the characters &quot;!GB2312&quot; into the
15917 Character Set pattern, the pattern will look like:
15919 <PRE>
15920  Charset pattern = !GB2312
15921 </PRE>
15923 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
15924 In order to match messages that do not have the
15925 character set &quot;GB2312&quot;
15926 set, first type the characters &quot;GB2312&quot; followed
15927 by carriage return for the value of the Character Set pattern, then negate it
15928 by typing the &quot;!&quot; command.
15929 It should end up looking like
15931 <PRE>
15932  ! Charset pattern = GB2312
15933 </PRE>
15935 A technicality: Since comma is the character used to separate multiple
15936 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15937 you want to include a literal comma in the field.
15938 In other words, if you type a backslash followed by a comma it will
15939 be interpreted as a comma by Alpine, instead of as a separator between
15940 pattern values.
15941 All other backslashes are literal backslashes and should not be escaped.
15943 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15944 for more information on Patterns.
15946 Look <A HREF="h_edit_nav_cmds">here</A>
15947 to see the available Editing and Navigation commands.
15949 &lt;End of help on this topic&gt;
15950 </BODY>
15951 </HTML>
15952 ======= h_config_role_keywordpat =======
15953 <HTML>
15954 <HEAD>
15955 <TITLE>Keyword Pattern Explained</TITLE>
15956 </HEAD>
15957 <BODY>
15958 <H1>Keyword Pattern Explained</H1>
15960 A folder may have user-defined keywords.
15961 These are similar to the Important flag, which the user may set using the
15962 Flag command.
15963 The difference is that the Important flag is always present for each folder.
15964 User-defined keywords are picked by the user.
15965 You may add new keywords by defining them in the
15966 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
15967 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
15968 the Flag command may be used to set or clear the keyword on individual messages.
15969 If you have given a keyword a nickname when configuring it,
15970 that nickname may be used instead of the actual keyword.
15973 When filling in a value for this field, it may be easiest to use
15974 the &quot;T&quot; command, which presents you with a list of the keywords
15975 you have defined to choose from.
15978 This part of the Pattern matches messages with certain keywords set.
15979 It will be considered a match if a message has any of the keywords in the
15980 list set.
15981 A keyword that you have not defined using the
15982 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
15983 will not be a match.
15986 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
15987 &quot;!&quot; &quot;toggle NOT&quot; command.
15988 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
15989 It will be considered a match if none of the keywords in the list are set
15990 for a message.
15991 A keyword that you have not defined using the
15992 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
15993 will not be a match, so a <EM>NOT</EM> of that keyword does match.
15995 Don't make the mistake of putting the &quot;!&quot; in the data field for
15996 the pattern.
15997 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
15998 pattern, the pattern will look like:
16000 <PRE>
16001  Keyword pattern = !frizzle
16002 </PRE>
16004 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16005 In order to match messages that do not have the keyword &quot;frizzle&quot;
16006 set, first type the characters &quot;frizzle&quot; followed
16007 by carriage return for the value of the Keyword pattern, then negate it
16008 by typing the &quot;!&quot; command.
16009 It should end up looking like
16011 <PRE>
16012  ! Keyword pattern = frizzle
16013 </PRE>
16015 A technicality: Since comma is the character used to separate multiple
16016 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16017 you want to include a literal comma in the field.
16018 In other words, if you type a backslash followed by a comma it will
16019 be interpreted as a comma by Alpine, instead of as a separator between
16020 pattern values.
16021 All other backslashes are literal backslashes and should not be escaped.
16023 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16024 for more information on Patterns.
16026 Look <A HREF="h_edit_nav_cmds">here</A>
16027 to see the available Editing and Navigation commands.
16029 &lt;End of help on this topic&gt;
16030 </BODY>
16031 </HTML>
16032 ======= h_config_role_arbpat =======
16033 <HTML>
16034 <HEAD>
16035 <TITLE>Extra Header Patterns Explained</TITLE>
16036 </HEAD>
16037 <BODY>
16038 <H1>Extra Header Patterns Explained</H1>
16040 The header patterns that come after the Participant pattern but before the 
16041 AllText pattern are extra header patterns that you have added to a rule's
16042 Pattern. These are just like the other header patterns except that
16043 the contents of the particular header listed on the left hand side will
16044 be used for comparisons.
16046 The &quot;eXtraHdr&quot; command may be used to add more of these
16047 header patterns to the rule you are editing.
16049 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16050 extra header pattern from the rule you are editing.
16052 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16053 &quot;!&quot; &quot;toggle NOT&quot; command.
16054 This changes the meaning of the pattern so that it has the opposite meaning.
16055 It will be considered a match if there are no matches between the
16056 text in the header line and the list of patterns.
16058 Don't make the mistake of putting the &quot;!&quot; in the data field for
16059 the pattern.
16060 For example, if you type the characters &quot;!frizzle&quot; into the
16061 pattern, the pattern will look like:
16063 <PRE>
16064  Xyz pattern = !frizzle
16065 </PRE>
16067 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16068 In order to match messages that do not have &quot;frizzle&quot; in
16069 their Xyz field, first type the characters &quot;frizzle&quot; followed
16070 by carriage return for the value of the pattern, then negate it
16071 by typing the &quot;!&quot; command.
16072 It should end up looking like
16074 <PRE>
16075  ! Xyz pattern = frizzle
16076 </PRE>
16079 A technicality: Since comma is the character used to separate multiple
16080 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16081 you want to include a literal comma in the field.
16082 In other words, if you type a backslash followed by a comma it will
16083 be interpreted as a comma by Alpine, instead of as a separator between
16084 pattern values.
16085 All other backslashes are literal backslashes and should not be escaped.
16087 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16088 for more information on Patterns.
16090 Look <A HREF="h_edit_nav_cmds">here</A>
16091 to see the available Editing and Navigation commands.
16093 &lt;End of help on this topic&gt;
16094 </BODY>
16095 </HTML>
16096 ======= h_config_role_cat_cmd =======
16097 <HTML>
16098 <HEAD>
16099 <TITLE>Categorizer Command Explained</TITLE>
16100 </HEAD>
16101 <BODY>
16102 <H1>Categorizer Command Explained</H1>
16104 This is a command that is run with its standard input set to the message
16105 being checked and its standard output discarded.
16106 The full directory path should be specified.
16107 The command will be run and then its exit status will be checked against
16108 the Exit Status Interval, which defaults to just the value zero.
16109 If the exit status of the command falls in the interval, it is considered
16110 a match, otherwise it is not a match.
16113 This option may actually be a list of commands.
16114 The first one that exists and is executable is used.
16115 That makes it possible to use the same configuration with Unix Alpine and
16116 PC-Alpine.
16119 If none of the commands in the list exists and is executable then the rule
16120 is <EM>not</EM> a match.
16121 If it is possible that the command may not exist, you should be careful
16122 to structure your rules so that nothing destructive
16123 happens when the command does not exist.
16124 For example, you might have a filter that filters away spam when there is
16125 a match but does nothing when there is not a match.
16126 That would cause no harm if the command didn't exist.
16127 However, if you have a filter that filters away spam when there is not
16128 a match and keeps it when there is a match, that would filter everything
16129 if the categorizer command didn't exist.
16131 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16132 setup for the bogofilter filter.
16135 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16136 for more information on Patterns.
16138 Look <A HREF="h_edit_nav_cmds">here</A>
16139 to see the available Editing and Navigation commands.
16141 &lt;End of help on this topic&gt;
16142 </BODY>
16143 </HTML>
16144 ======= h_config_role_cat_cmd_example =======
16145 <HTML>
16146 <HEAD>
16147 <TITLE>Categorizer Command Example</TITLE>
16148 </HEAD>
16149 <BODY>
16150 <H1>Categorizer Command Example</H1>
16152 Bogofilter
16153 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16154 is a mail filter that attempts to classify mail as spam or
16155 non-spam using statistical analysis of the message content.
16156 When run with no arguments and a message as standard input, it exits with
16157 exit status 0 if it thinks a message is spam and 1 if it thinks
16158 it is not spam.
16159 To use bogofilter as your Categorizer Command you would simply set Command to
16160 the pathname of the bogofilter program.
16161 For example,
16163 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16165 Exit status of zero is what you are interested in, so you'd set the
16166 Exit Status Interval to
16168 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16171 In order to prevent downloading an entire huge message to check for spam, you
16172 might want to set the Character Limit to a few thousand characters (the
16173 assumption being that the spam will reveal itself in those characters)
16175 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16178 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16179 be to move the message to a spam folder.
16180 It would usually be wise to also check the &quot;Message is Recent&quot;
16181 part of the rule so that messages are only checked when they first arrive,
16182 and to restrict the Current Folder Type to just your INBOX.
16183 The reason for checking only Recent messages is to save the time it takes
16184 to run bogofilter on each message.
16185 As an experiment, you might start out by using this in an Indexcolor Rule
16186 instead of a Filter Rule.
16187 In that case, you probably wouldn't check the Recent checkbox.
16189 The use described above assumes that you are somehow maintaining bogofilter's
16190 database of words associated with spam and non-spam messages.
16191 One way to start your database would be to select a bunch of spam messages
16192 in Alpine (you might Save spam messages to a special folder or use Alpine's
16193 Select command to select several) and then Apply
16194 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16195 a pipe command to the spam messages.
16196 For example, you could have a shell script or an alias
16197 called <EM>this_is_spam</EM>, which would simply be the command
16199 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16202 It is probably best to use the pipe command's Raw Text, With Delimiter,
16203 and Free Output options,
16204 which are at the bottom of the screen when you type the pipe command.
16205 That's because bogofilter expects the raw message as input, and uses
16206 the Delimiters to tell when a new message starts.
16207 You would not need to use a separate pipe for each message, because
16208 bogofilter can handle multiple messages at once.
16210 Similarly, you would select a group of non-spam messages
16211 and run them through a <EM>this_is_nonspam</EM> script
16212 that was something like
16214 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16217 For the more adventurous, the next step might be to automate the upkeep of
16218 the bogofilter database.
16219 It might make more sense to have bogofilter be part of the delivery process,
16220 but it is also possible to do it entirely from within Alpine.
16221 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16222 the &quot;-u&quot; argument will cause bogofilter to update the database.
16224 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16226 You'd want a couple more aliases or shell scripts called something like
16227 <EM>change_to_spam</EM>
16229 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16232 <EM>change_to_nonspam</EM>
16234 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16236 When you run across a message in your INBOX that should have been
16237 classified as spam you would pipe it to the change_to_spam script, and
16238 when you run across a message in your spam folder that should have been
16239 left in your INBOX you would pipe it through change_to_nonspam.
16242 There is a technical problem with this approach.
16243 Alpine may check your filters more than once.
16244 In particular, every time you start Alpine the filters will be checked for
16245 each message.
16246 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16247 then Alpine will recheck for matches in messages that have changed state
16248 at the time you close the folder and before expunging.
16249 This is usually ok.
16250 However, in this case it is a problem because the command
16252 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16254 has the side effect of updating the database.
16255 So you run the risk of updating the database multiple times for a single
16256 message instead of updating it just once per message.
16257 There are some ways to work around this problem.
16258 What you need is a way to mark the message after you have run the filter.
16259 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16260 Besides having the filter move the message to a spam folder, also have it
16261 set the Bogo keyword.
16262 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16263 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16264 This rule can only set the Bogo keyword for the messages that it matches.
16265 You will also need to add a second rule right after this one that
16266 matches all the messages that don't have the Bogo keyword set
16267 (put the keyword in the Keyword pattern and toggle
16268 the Not with the ! command)
16269 and takes the action of setting it.
16270 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16271 (and so it won't re-run the bogofilter command) if the keyword is already
16272 set.
16274 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16275 on all messages that don't have the Bogo keyword set.
16276 This will have the side effect of inserting that message in the bogofilter
16277 database, match or not.
16278 If this rule matches (it is spam), the Bogo keyword will be set and
16279 the message will be moved to a spam folder.
16280 If it does not match, the
16281 following rule will mark the message by turning on the keyword.
16282 This second rule should be a non-terminating
16283 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16284 rule so that it doesn't stop the filtering process before the rest of
16285 your rules are consulted.
16288 In summary, the first rule is something like
16289 <PRE>
16290   Nickname          = bogofilter -u rule
16291   Current Folder Type =
16292                (*) Specific
16293                    Folder = INBOX
16295   ! Keyword pattern = Bogo
16297   External Categorizer Commands =
16298        Command              = /usr/local/bin/bogofilter -u
16299        Exit Status Interval = (0,0)
16300        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16302   Filter Action =
16303        (*) Move
16304            Folder = spam
16305   
16306   Set These Keywords   = Bogo
16307 </PRE>
16309 and the following rule is
16310 <PRE>
16311   Nickname          = Set Bogo Keyword
16312   Current Folder Type =
16313                (*) Specific
16314                    Folder = INBOX
16316   ! Keyword pattern = Bogo
16318   Filter Action =
16319        (*) Just Set Message Status
16321   Set These Keywords   = Bogo
16323   Features =
16324       [X]  dont-stop-even-if-rule-matches
16325 </PRE>
16327 If it is possible for you to insert bogofilter in the delivery process instead
16328 of having it called from Alpine you could prevent having to wait
16329 for the bogofilter processing while you read your mail.
16330 You would have bogofilter add a header to the message at the time of delivery
16331 that identified it as spam or nonspam.
16332 With this method, you could avoid using a Categorizer Command while running Alpine,
16333 and just match on the header instead.
16334 You might still want to use the scripts mentioned above to initialize the
16335 database or to re-classify wrongly classified messages.
16338 Finally, it isn't for the faint-hearted,
16339 but it is also possible to run bogofilter from PC-Alpine.
16340 You can install Cygwin from
16341 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16342 then compile bogofilter in the cygwin environment, and run it from
16343 within PC-Alpine.
16344 You would end up with a Categorizer command that looked something like
16346 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16348 Note that the &quot;.exe&quot; extension is explicit,
16349 and that the bogofilter.exe executable should be in the same directory
16350 as cygwin1.dll.
16353 &lt;End of help on this topic&gt;
16354 </BODY>
16355 </HTML>
16356 ======= h_config_role_cat_status =======
16357 <HTML>
16358 <HEAD>
16359 <TITLE>Exit Status Interval Explained</TITLE>
16360 </HEAD>
16361 <BODY>
16362 <H1>Exit Status Interval Explained</H1>
16364 The categorizer command is run and the result is the exit status of
16365 that command.
16366 If that exit status falls in the Exit Status Interval
16367 then it is considered a match, otherwise it is not a match.
16368 Of course for the entire rule to match, it must also be checked against
16369 the other defined parts of the Pattern.
16371 The Exit Status Interval defaults to the single value 0 (zero).
16372 If you define it, it should be set to something like:
16374 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16376 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16377 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16378 positive and negative integers.
16380 Actually, a list of intervals may be used if you wish.
16381 A list would look like
16383 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16385 When there is an Exit Status Interval defined, it is a match if the exit status
16386 of the categorizer command is contained in any of the intervals.
16387 The intervals include both endpoints.
16389 The default interval is
16391 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16393 and it matches only if the command exits with exit status equal to zero.
16396 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16397 for more information on Patterns.
16399 Look <A HREF="h_edit_nav_cmds">here</A>
16400 to see the available Editing and Navigation commands.
16402 &lt;End of help on this topic&gt;
16403 </BODY>
16404 </HTML>
16405 ======= h_config_role_cat_limit =======
16406 <HTML>
16407 <HEAD>
16408 <TITLE>Character Limit Explained</TITLE>
16409 </HEAD>
16410 <BODY>
16411 <H1>Character Limit Explained</H1>
16413 Setting this option makes it possible to limit how much of the message
16414 is made available to the categorizer command as input.
16415 The default value (-1) means that the entire message is fed to the
16416 command.
16417 A value of 0 (zero) means that only the headers of the message are
16418 made available.
16419 A positive integer means that the headers plus that many characters from
16420 the body of the message are passed to the categorizer.
16423 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16424 for more information on Patterns.
16426 Look <A HREF="h_edit_nav_cmds">here</A>
16427 to see the available Editing and Navigation commands.
16429 &lt;End of help on this topic&gt;
16430 </BODY>
16431 </HTML>
16432 ======= h_config_role_age =======
16433 <HTML>
16434 <HEAD>
16435 <TITLE>Age Interval Explained</TITLE>
16436 </HEAD>
16437 <BODY>
16438 <H1>Age Interval Explained</H1>
16440 The Age Interval, if defined, is part of the Pattern.
16441 If you use this, it should be set to something like:
16443 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16445 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
16446 The special value &quot;INF&quot; may be used for the max value.
16447 It represents infinity.
16449 In rare cases it may be useful to use the more general form of the value,
16450 which is a comma-separated list of intervals.
16451 It would look something like:
16453 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
16455 When there is an Age Interval defined, it is a match if the age, in days, of
16456 the message is contained in the interval.
16457 The interval includes both endpoints.
16458 If the option is set to a list of intervals then it is a match if the
16459 age of the message is contained in any of the intervals.
16461 Even though this option is called Age, it isn't actually
16462 the <EM>age</EM> of the message.
16463 Instead, it is how many days ago the message arrived in one of your folders.
16464 If the current time is a little past midnight, then a message that arrived
16465 just before midnight arrived yesterday, even though the message is only
16466 a few minutes old.
16467 By default, the date being used is not the date in the Date
16468 header of the message.
16469 It is the date that the message arrived in one of your folders.
16470 When you Save a message from one folder to another that arrival date
16471 is preserved.
16472 If you would like to use the date in the Date header that is possible.
16473 Turn on the option
16474 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
16475 near the bottom of the rule definition.
16477 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
16478 The age interval
16480 <CENTER><SAMP>(2,2)</SAMP></CENTER>
16482 matches all messages that arrived on the day before yesterday.
16483 The interval
16485 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
16487 matches all messages that arrived at least 180 days before today.
16488 The interval
16490 <CENTER><SAMP>(0,1)</SAMP></CENTER>
16492 matches all messages that arrived today or yesterday.
16495 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16496 for more information on Patterns.
16498 Look <A HREF="h_edit_nav_cmds">here</A>
16499 to see the available Editing and Navigation commands.
16501 &lt;End of help on this topic&gt;
16502 </BODY>
16503 </HTML>
16504 ======= h_config_role_size =======
16505 <HTML>
16506 <HEAD>
16507 <TITLE>Size Interval Explained</TITLE>
16508 </HEAD>
16509 <BODY>
16510 <H1>Size Interval Explained</H1>
16512 The Size Interval, if defined, is part of the Pattern.
16513 If you use this, it should be set to something like:
16515 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
16517 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
16518 The special value &quot;INF&quot; may be used for the max value.
16519 It represents infinity.
16521 In rare cases it may be useful to use the more general form of the value,
16522 which is a comma-separated list of intervals.
16523 It would look something like:
16525 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
16527 When there is a Size Interval defined, it is a match if the size of
16528 the message is contained in the interval.
16529 The interval includes both endpoints.
16530 If the option is set to a list of intervals then it is a match if the
16531 size of the message is contained in any of the intervals.
16533 The size interval
16535 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
16537 matches all messages with sizes greater than or equal to 10000, and less
16538 than or equal to 50000.
16539 The interval
16541 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
16543 matches all messages with sizes greater than or equal to 100000.
16546 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16547 for more information on Patterns.
16549 Look <A HREF="h_edit_nav_cmds">here</A>
16550 to see the available Editing and Navigation commands.
16552 &lt;End of help on this topic&gt;
16553 </BODY>
16554 </HTML>
16555 ======= h_config_role_scorei =======
16556 <HTML>
16557 <HEAD>
16558 <TITLE>Score Interval Explained</TITLE>
16559 </HEAD>
16560 <BODY>
16561 <H1>Score Interval Explained</H1>
16563 The Score Interval, if defined, is part of the Pattern.
16564 If you use this, it should be set to something like:
16566 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
16568 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
16569 -32000 and 32000.
16570 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
16571 the min and max values.
16572 These represent negative and positive infinity.
16574 Actually, the value may be a list of intervals rather than just a
16575 single interval if that is useful.
16576 The elements of the list are separated by commas like:
16578 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
16580 When there is a Score Interval defined, it is a match if the score for
16581 the message is contained in any of the intervals.
16582 The intervals include both endpoints.
16583 The score for a message is calculated by looking at every scoring rule
16584 defined and adding up the Score Values for the rules that match the message.
16585 Scoring rules are created using the
16586 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
16589 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16590 for more information on Patterns.
16592 Look <A HREF="h_edit_nav_cmds">here</A>
16593 to see the available Editing and Navigation commands.
16595 &lt;End of help on this topic&gt;
16596 </BODY>
16597 </HTML>
16598 ======= h_config_role_fldr_type =======
16599 <HTML>
16600 <HEAD>
16601 <TITLE>Current Folder Type Explained</TITLE>
16602 </HEAD>
16603 <BODY>
16604 <H1>Current Folder Type Explained</H1>
16606 The Current Folder Type is part of the role's Pattern.
16607 It refers to the type of the currently open folder, which is the folder
16608 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
16609 In order for a role to be considered a match, the current folder must
16610 be of the type you set here.
16611 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16612 all what you might think.
16614 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
16615 example, then
16616 that role will only be a match if the current folder is a newsgroup and
16617 the rest of the Pattern matches.
16618 The value &quot;Specific&quot; may be used when you want to limit the match
16619 to a specific folder (not just a specific type of folder), or to a list of
16620 specific folders.
16622 In order to match a specific folder you Select the &quot;Specific&quot;
16623 button <EM>AND</EM> fill in
16624 the name (or list of names) of
16625 the folder in the &quot;Folder List&quot; field.
16626 If the current folder is any of the folders in the list, that is considered
16627 a match.
16628 The name of each folder in the list may be either &quot;INBOX&quot;,
16629 the technical specification
16630 of the folder (like what appears in your configuration file) or, if the
16631 folder is one of your incoming folders, it may be the nickname you've given
16632 the folder.
16633 Here are a couple samples of specific folder names:
16635 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16637 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16639 The easiest way to fill in the &quot;Folder List&quot; field is to use
16640 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
16641 highlighted, or to use the &quot;Take&quot; command with the configuration
16642 feature
16643 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
16644 turned on.
16645 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16646 Current Folder Type is set to &quot;Specific&quot;, and any value that
16647 &quot;Folder List&quot; has is ignored unless the type
16648 is set to &quot;Specific&quot;.
16650 When reading a newsgroup, there may be a performance penalty
16651 incurred when collecting the information necessary to check a Pattern.
16652 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16654 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16655 for more information on Patterns.
16657 Look <A HREF="h_edit_nav_cmds">here</A>
16658 to see the available Editing and Navigation commands.
16660 &lt;End of help on this topic&gt;
16661 </BODY>
16662 </HTML>
16663 ======= h_config_filt_rule_type =======
16664 <HTML>
16665 <HEAD>
16666 <TITLE>Filter Action Explained</TITLE>
16667 </HEAD>
16668 <BODY>
16669 <H1>Filter Action Explained</H1>
16671 The Filter Action specifies the action to be taken when the Pattern is a
16672 match.
16673 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
16674 &quot;Just Set Message Status&quot;.
16676 If it is set to &quot;Delete&quot;, then the message that matches the
16677 Pattern will be deleted from the open folder.
16679 If it is set to &quot;Move&quot;, then the name of the folder to which
16680 the matching message should be moved is given in the &quot;Folder List&quot; field on the
16681 next line of the screen.
16682 A list of folders separated by commas may be given, in which case the
16683 message will be copied to all of the folders in the list before it is
16684 deleted.
16686 If it is set to neither of those two values (it is set to the value
16687 labeled &quot;Just Set Message Status&quot;) then the message status
16688 setting will happen
16689 but the message will not be deleted or moved.
16691 If you are Moving a message you may also set Message Status if you wish.
16693 The easiest way to fill in the &quot;Folder List&quot; field is to use
16694 the T command that is available when the &quot;Folder List&quot; line is
16695 highlighted.
16696 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16697 Filter Action is set to &quot;Move&quot;, and any value that
16698 &quot;Folder List&quot; has is ignored unless the type
16699 is set to &quot;Move&quot;.
16701 There are a few tokens that may be used in the names in the Folder List.
16702 They are all related to the date on which the filtering is taking place.
16703 The tokens are words surrounded by underscores.
16704 For example, if you want your filter to move messages to a folder named
16705 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
16706 you could specify the folder as
16707 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
16708 which would result in a file named something like
16709 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
16711 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
16712 which would result in a file named something like
16713 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
16714 The available tokens are listed
16715 <A HREF="h_index_tokens">here</A>.
16717 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16718 for more information on Patterns.
16720 Look <A HREF="h_edit_nav_cmds">here</A>
16721 to see the available Editing and Navigation commands.
16723 &lt;End of help on this topic&gt;
16724 </BODY>
16725 </HTML>
16726 ======= h_config_score_fldr_type =======
16727 <HTML>
16728 <HEAD>
16729 <TITLE>Current Folder Type Explained</TITLE>
16730 </HEAD>
16731 <BODY>
16732 <H1>Current Folder Type Explained</H1>
16734 The Current Folder Type is part of the scoring rule's Pattern.
16735 It refers to the type of the folder that
16736 the message being scored is in.
16737 In order for a rule to be considered a match, the current folder must
16738 be of the type you set here.
16739 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16740 all what you might think.
16742 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16743 example, then
16744 that Pattern will only match if the current folder is a newsgroup and
16745 the rest of the Pattern matches.
16746 The value &quot;Specific&quot; may be used when you want to limit the match
16747 to a specific folder (not just a specific type of folder), or to a list of
16748 specific folders.
16750 In order to match a specific folder you Select the &quot;Specific&quot;
16751 button <EM>AND</EM> fill in
16752 the name (or list of names) of
16753 the folder in the &quot;Folder List&quot; field.
16754 If the current folder is any of the folders in the list, that is considered
16755 a match.
16756 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16757 of the folder (like what appears in your configuration file) or, if the
16758 folder is one of your incoming folders, it may be the nickname you've given
16759 the folder.
16760 Here are a couple samples of specific folder names:
16762 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16764 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16766 The easiest way to fill in the &quot;Folder List&quot; field is to use
16767 the T command that is available when the &quot;Folder List&quot; line is
16768 highlighted.
16769 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16770 Current Folder Type is set to &quot;Specific&quot;, and any value that
16771 &quot;Folder List&quot; has is ignored unless the type
16772 is set to &quot;Specific&quot;.
16774 When reading a newsgroup, there may be a performance penalty
16775 incurred when collecting the information necessary to check a Pattern.
16776 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16777 For example, if you have Index Line Coloring rules that have Score Intervals
16778 defined then the scores for all the visible messages will need to be calculated.
16779 If some of your Scoring rules have 
16780 a Current Folder Type of
16781 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
16782 screen to draw more slowly when in a newsgroup.
16784 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16785 for more information on Patterns.
16787 Look <A HREF="h_edit_nav_cmds">here</A>
16788 to see the available Editing and Navigation commands.
16790 &lt;End of help on this topic&gt;
16791 </BODY>
16792 </HTML>
16793 ======= h_config_other_fldr_type =======
16794 <HTML>
16795 <HEAD>
16796 <TITLE>Current Folder Type Explained</TITLE>
16797 </HEAD>
16798 <BODY>
16799 <H1>Current Folder Type Explained</H1>
16801 The Current Folder Type is part of the rule's Pattern.
16802 It refers to the type of the folder being viewed.
16803 In order for a rule to be considered a match, the current folder must
16804 be of the type you set here.
16805 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16806 all what you might think.
16808 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16809 example, then
16810 that Pattern will only match if the current folder is a newsgroup.
16811 The value &quot;Specific&quot; may be used when you want to limit the match
16812 to a specific folder (not just a specific type of folder), or to a list of
16813 specific folders.
16815 In order to match a specific folder you Select the &quot;Specific&quot;
16816 button <EM>AND</EM> fill in
16817 the name (or list of names) of
16818 the folder in the &quot;Folder List&quot; field.
16819 If the current folder is any of the folders in the list, that is considered
16820 a match.
16821 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16822 of the folder (like what appears in your configuration file) or, if the
16823 folder is one of your incoming folders, it may be the nickname you've given
16824 the folder.
16825 Here are a couple samples of specific folder names:
16827 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16829 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16831 The easiest way to fill in the &quot;Folder List&quot; field is to use
16832 the T command that is available when the &quot;Folder List&quot; line is
16833 highlighted.
16834 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16835 Current Folder Type is set to &quot;Specific&quot;, and any value that
16836 &quot;Folder List&quot; has is ignored unless the type
16837 is set to &quot;Specific&quot;.
16839 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16840 for more information on Patterns.
16842 Look <A HREF="h_edit_nav_cmds">here</A>
16843 to see the available Editing and Navigation commands.
16845 &lt;End of help on this topic&gt;
16846 </BODY>
16847 </HTML>
16848 ======= h_config_incol_fldr_type =======
16849 <HTML>
16850 <HEAD>
16851 <TITLE>Current Folder Type Explained</TITLE>
16852 </HEAD>
16853 <BODY>
16854 <H1>Current Folder Type Explained</H1>
16856 The Current Folder Type is part of the Line Coloring rule's Pattern.
16857 It refers to the type of the folder for which the MESSAGE INDEX is
16858 being viewed.
16859 In order for a rule to be considered a match, the current folder must
16860 be of the type you set here.
16861 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16862 all what you might think.
16864 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16865 example, then
16866 that Pattern will only match if the current folder is a newsgroup and
16867 the rest of the Pattern matches.
16868 The value &quot;Specific&quot; may be used when you want to limit the match
16869 to a specific folder (not just a specific type of folder), or to a list of
16870 specific folders.
16872 In order to match a specific folder you Select the &quot;Specific&quot;
16873 button <EM>AND</EM> fill in
16874 the name (or list of names) of
16875 the folder in the &quot;Folder List&quot; field.
16876 If the current folder is any of the folders in the list, that is considered
16877 a match.
16878 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16879 of the folder (like what appears in your configuration file) or, if the
16880 folder is one of your incoming folders, it may be the nickname you've given
16881 the folder.
16882 Here are a couple samples of specific folder names:
16884 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16886 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16888 The easiest way to fill in the &quot;Folder List&quot; field is to use
16889 the T command that is available when the &quot;Folder List&quot; line is
16890 highlighted.
16891 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16892 Current Folder Type is set to &quot;Specific&quot;, and any value that
16893 &quot;Folder List&quot; has is ignored unless the type
16894 is set to &quot;Specific&quot;.
16896 When reading a newsgroup, there may be a performance penalty
16897 incurred when collecting the information necessary to check a Pattern.
16898 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16899 For example, a rule with a non-Normal Index Line Color
16900 and a Current Folder Type of
16901 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
16902 screen to draw more slowly when in a newsgroup.
16904 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16905 for more information on Patterns.
16907 Look <A HREF="h_edit_nav_cmds">here</A>
16908 to see the available Editing and Navigation commands.
16910 &lt;End of help on this topic&gt;
16911 </BODY>
16912 </HTML>
16913 ======= h_config_filt_fldr_type =======
16914 <HTML>
16915 <HEAD>
16916 <TITLE>Current Folder Type Explained</TITLE>
16917 </HEAD>
16918 <BODY>
16919 <H1>Current Folder Type Explained</H1>
16921 The Current Folder Type is part of the Filtering rule's Pattern.
16922 It refers to the type of the folder for which the filtering is being done.
16923 In order for a rule to be considered a match, the current folder must
16924 be of the type you set here.
16925 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16926 all what you might think.
16928 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16929 example, then
16930 that Pattern will only match if the current folder is a newsgroup and
16931 the rest of the Pattern matches.
16932 The value &quot;Specific&quot; may be used when you want to limit the match
16933 to a specific folder (not just a specific type of folder), or to a list of
16934 specific folders.
16936 In order to match a specific folder you Select the &quot;Specific&quot;
16937 button <EM>AND</EM> fill in
16938 the name (or list of names) of
16939 the folder in the &quot;Folder List&quot; field.
16940 If the current folder is any of the folders in the list, that is considered
16941 a match.
16942 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16943 of the folder (like what appears in your configuration file) or, if the
16944 folder is one of your incoming folders, it may be the nickname you've given
16945 the folder.
16946 Here are a couple samples of specific folder names:
16948 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16950 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16952 The easiest way to fill in the &quot;Folder List&quot; field is to use
16953 the T command that is available when the &quot;Folder List&quot; line is
16954 highlighted.
16955 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16956 Current Folder Type is set to &quot;Specific&quot;, and any value that
16957 &quot;Folder List&quot; has is ignored unless the type
16958 is set to &quot;Specific&quot;.
16960 When reading a newsgroup, there may be a performance penalty
16961 incurred when collecting the information necessary to check a Pattern.
16962 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16963 For example, a rule with a Current Folder Type of either
16964 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
16965 more slowly when opening a newsgroup.
16967 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16968 for more information on Patterns.
16970 Look <A HREF="h_edit_nav_cmds">here</A>
16971 to see the available Editing and Navigation commands.
16973 &lt;End of help on this topic&gt;
16974 </BODY>
16975 </HTML>
16976 ======= h_config_role_stat_imp =======
16977 <HTML>
16978 <HEAD>
16979 <TITLE>Message Important Status Explained</TITLE>
16980 </HEAD>
16981 <BODY>
16982 <H1>Message Important Status Explained</H1>
16984 This part of the Pattern may have one of three possible values.
16985 The default value is &quot;Don't care&quot;, which matches any message.
16986 The other two values are &quot;Yes&quot;, which means the message must be
16987 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
16988 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
16989 to be a match.
16991 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16992 for more information on Patterns.
16994 Look <A HREF="h_edit_nav_cmds">here</A>
16995 to see the available Editing and Navigation commands.
16997 &lt;End of help on this topic&gt;
16998 </BODY>
16999 </HTML>
17000 ======= h_config_role_stat_new =======
17001 <HTML>
17002 <HEAD>
17003 <TITLE>Message New Status Explained</TITLE>
17004 </HEAD>
17005 <BODY>
17006 <H1>Message New Status Explained</H1>
17008 This part of the Pattern may have one of three possible values.
17009 The default value is &quot;Don't care&quot;, which matches any message.
17010 The other two values are &quot;Yes&quot;, which means the message must be
17011 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17012 means the message must <EM>not</EM> be &quot;New&quot; in order
17013 to be a match.
17014 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17015 same as <EM>Seen</EM>.
17017 The nomenclature for New and Recent is a bit confusing:
17019 New means that the message is Unseen.
17020 It could have been in your mailbox for a long time but if you haven't looked
17021 at it, it is still considered New.
17022 That matches the default Alpine index display that shows an N for such a
17023 message.
17025 Recent means that the message was added to this folder since the last time
17026 you opened the folder.
17027 Alpine also shows an N by default for these types of messages.
17028 If you were to run two copies of Alpine that opened a folder one right after
17029 the other, a message would only show up as Recent in (at most) the first
17030 Alpine session.
17032 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17033 for more information on Patterns.
17035 Look <A HREF="h_edit_nav_cmds">here</A>
17036 to see the available Editing and Navigation commands.
17038 &lt;End of help on this topic&gt;
17039 </BODY>
17040 </HTML>
17041 ======= h_config_role_stat_recent =======
17042 <HTML>
17043 <HEAD>
17044 <TITLE>Message Recent Status Explained</TITLE>
17045 </HEAD>
17046 <BODY>
17047 <H1>Message Recent Status Explained</H1>
17049 This part of the Pattern may have one of three possible values.
17050 The default value is &quot;Don't care&quot;, which matches any message.
17051 The other two values are &quot;Yes&quot;, which means the message must be
17052 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17053 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17054 to be a match.
17055 &quot;Recent&quot; means that the message was added to the folder since
17056 the last time the folder was opened.
17057 If more than one mail client has the folder opened, the message will
17058 appear to be &quot;Recent&quot; to only one of the clients.
17060 The nomenclature for New and Recent is a bit confusing:
17062 New means that the message is Unseen.
17063 It could have been in your mailbox for a long time but if you haven't looked
17064 at it, it is still considered New.
17065 That matches the default Alpine index display that shows an N for such a
17066 message.
17068 Recent means that the message was added to this folder since the last time
17069 you opened the folder.
17070 Alpine also shows an N by default for these types of messages.
17071 If you were to run two copies of Alpine that opened a folder one right after
17072 the other, a message would only show up as Recent in (at most) the first
17073 Alpine session.
17075 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17076 for more information on Patterns.
17078 Look <A HREF="h_edit_nav_cmds">here</A>
17079 to see the available Editing and Navigation commands.
17081 &lt;End of help on this topic&gt;
17082 </BODY>
17083 </HTML>
17084 ======= h_config_role_stat_del =======
17085 <HTML>
17086 <HEAD>
17087 <TITLE>Message Deleted Status Explained</TITLE>
17088 </HEAD>
17089 <BODY>
17090 <H1>Message Deleted Status Explained</H1>
17092 This part of the Pattern may have one of three possible values.
17093 The default value is &quot;Don't care&quot;, which matches any message.
17094 The other two values are &quot;Yes&quot;, which means the message must be
17095 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17096 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17097 to be a match.
17099 If you are thinking of using this part of the Pattern as a way to prevent
17100 messages from being filtered more than once in a Filter Pattern,
17101 take a look at the Filter Option
17102 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17103 instead.
17104 It should work better than using this field since it will hide the filtered
17105 messages even if they are already Deleted.
17106 That option is at the bottom of the Filter configuration screen.
17108 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17109 for more information on Patterns.
17111 Look <A HREF="h_edit_nav_cmds">here</A>
17112 to see the available Editing and Navigation commands.
17114 &lt;End of help on this topic&gt;
17115 </BODY>
17116 </HTML>
17117 ======= h_config_role_stat_ans =======
17118 <HTML>
17119 <HEAD>
17120 <TITLE>Message Answered Status Explained</TITLE>
17121 </HEAD>
17122 <BODY>
17123 <H1>Message Answered Status Explained</H1>
17125 This part of the Pattern may have one of three possible values.
17126 The default value is &quot;Don't care&quot;, which matches any message.
17127 The other two values are &quot;Yes&quot;, which means the message must be
17128 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17129 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17130 to be a match.
17132 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17133 for more information on Patterns.
17135 Look <A HREF="h_edit_nav_cmds">here</A>
17136 to see the available Editing and Navigation commands.
17138 &lt;End of help on this topic&gt;
17139 </BODY>
17140 </HTML>
17141 ======= h_config_role_abookfrom =======
17142 <HTML>
17143 <HEAD>
17144 <TITLE>Address in Address Book Explained</TITLE>
17145 </HEAD>
17146 <BODY>
17147 <H1>Address in Address Book Explained</H1>
17149 This option gives you a way to match messages that contain an address
17150 that is in one of your address books.
17151 Only the simple entries in your address books are searched.
17152 Address book distribution lists are ignored!
17154 This part of the Pattern may have one of five possible values.
17155 The default value is &quot;Don't care&quot;, which matches any message.
17156 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17157 from the message must be in at least one of your
17158 address books in order to be a match.
17159 The value &quot;No, not in any address book&quot;
17160 means none of the addresses may
17161 be in any of your address books in order to be a match.
17163 The values &quot;Yes, in specific address books&quot; and
17164 &quot;No, not in any of specific address books&quot; are similar but instead
17165 of depending on all address books you are allowed to give a list of address
17166 books to look in.
17167 Usually this would be a single address book but it may be a
17168 list of address books as well.
17169 For each of these &quot;specific&quot; address book options you Select which
17170 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17171 name (or list of names) of the address book in the
17172 &quot;Abook List&quot; field.
17173 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17174 The easiest way to fill in the Abook List field it to use
17175 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17176 line is highlighted.
17177 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17178 option is set to one of the two &quot;Specific&quot;, values.
17180 The addresses from the message that are checked for are determined by the
17181 setting you have for &quot;Types of addresses to check for in address book&quot;.
17182 If you set this to &quot;From&quot; the From address from the message will
17183 be looked up in the address book.
17184 If you set it to &quot;To&quot; instead then the To addresses will be used.
17185 If any of the To addresses are in the address book then it is considered
17186 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17187 You could set it to both From and To, in which case all of the From and To
17188 addresses are used.
17189 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17190 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17191 exists or the From address if there is no Reply-To address.
17192 Same for the Sender address.
17194 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17195 for more information on Patterns.
17197 Look <A HREF="h_edit_nav_cmds">here</A>
17198 to see the available Editing and Navigation commands.
17200 &lt;End of help on this topic&gt;
17201 </BODY>
17202 </HTML>
17203 ======= h_config_inabook_from =======
17204 <HTML>
17205 <HEAD>
17206 <TITLE>From</TITLE>
17207 </HEAD>
17208 <BODY>
17209 <H1>From</H1>
17211 Setting the From line will cause the address from the From header line
17212 of the message to be checked for in the address book.
17214 &lt;End of help on this topic&gt;
17215 </BODY>
17216 </HTML>
17217 ======= h_config_inabook_replyto =======
17218 <HTML>
17219 <HEAD>
17220 <TITLE>Reply-To</TITLE>
17221 </HEAD>
17222 <BODY>
17223 <H1>Reply-To</H1>
17225 Setting the Reply-To line will cause the address from the Reply-To header line
17226 of the message to be checked for in the address book.
17227 However, if there is no Reply-To header line in the message the From header
17228 line will be used instead.
17229 We understand this is dumb but we don't have an easy way around it.
17231 &lt;End of help on this topic&gt;
17232 </BODY>
17233 </HTML>
17234 ======= h_config_inabook_sender =======
17235 <HTML>
17236 <HEAD>
17237 <TITLE>Sender</TITLE>
17238 </HEAD>
17239 <BODY>
17240 <H1>Sender</H1>
17242 Setting the Sender line will cause the address from the Sender header line
17243 of the message to be checked for in the address book.
17244 However, if there is no Sender header line in the message the From header
17245 line will be used instead.
17246 We understand this is dumb but we don't have an easy way around it.
17248 &lt;End of help on this topic&gt;
17249 </BODY>
17250 </HTML>
17251 ======= h_config_inabook_to =======
17252 <HTML>
17253 <HEAD>
17254 <TITLE>To</TITLE>
17255 </HEAD>
17256 <BODY>
17257 <H1>To</H1>
17259 Setting the To line will cause the address from the To header line
17260 of the message to be checked for in the address book.
17262 &lt;End of help on this topic&gt;
17263 </BODY>
17264 </HTML>
17265 ======= h_config_inabook_cc =======
17266 <HTML>
17267 <HEAD>
17268 <TITLE>CC</TITLE>
17269 </HEAD>
17270 <BODY>
17271 <H1>CC</H1>
17273 Setting the CC line will cause the address from the CC header line
17274 of the message to be checked for in the address book.
17276 &lt;End of help on this topic&gt;
17277 </BODY>
17278 </HTML>
17279 ======= h_config_role_stat_8bitsubj =======
17280 <HTML>
17281 <HEAD>
17282 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17283 </HEAD>
17284 <BODY>
17285 <H1>Raw 8-bit in Subject Explained</H1>
17287 It seems that lots of unwanted email contains unencoded 8-bit characters
17288 in the Subject.
17289 Normally, characters with the 8th bit set are not allowed in the Subject
17290 header unless they are MIME-encoded.
17291 This option gives you a way to match messages that have Subjects that
17292 contain unencoded 8-bit characters.
17294 This part of the Pattern may have one of three possible values.
17295 The default value is &quot;Don't care&quot;, which matches any message.
17296 The other two values are &quot;Yes&quot;, which means the Subject of
17297 the message must contain unencoded 8-bit characters (characters with the
17298 most significant bit set)
17299 in order to be a match; or &quot;No&quot;, which
17300 means the Subject must <EM>not</EM>
17301 contain unencoded 8-bit characters in order to be a match.
17303 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17304 for more information on Patterns.
17306 Look <A HREF="h_edit_nav_cmds">here</A>
17307 to see the available Editing and Navigation commands.
17309 &lt;End of help on this topic&gt;
17310 </BODY>
17311 </HTML>
17312 ======= h_config_role_bom =======
17313 <HTML>
17314 <HEAD>
17315 <TITLE>Beginning of Month</TITLE>
17316 </HEAD>
17317 <BODY>
17318 <H1>Beginning of Month</H1>
17320 This option gives you a limited ability to take different actions depending on whether
17321 this is the first time Alpine has been run this month or not.
17322 Though it would be nice to have such an option available, this is not the
17323 same as whether or not this is the first time a paricular folder has been
17324 opened this month.
17325 If you want some action (probably Filtering) to take place in a folder each
17326 month, then you will need to be sure that the folder is opened during the
17327 first Alpine session of the month in order for this option to be helpful.
17329 This part of the Pattern may have one of three possible values.
17330 The default value is &quot;Don't care&quot;, which matches any message.
17331 The other two values are &quot;Yes&quot;, which means this is the first
17332 time Alpine has been run this month;
17333 or &quot;No&quot;, which
17334 means this is not the first time Alpine has been run this month.
17336 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17337 for more information on Patterns.
17339 Here are some technical details.
17340 The way that Alpine decides if it is the beginning of the month or not is
17341 to compare today's date with the date stored in the
17342 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17343 variable in the config file.
17344 If the month of today's date is later than the month stored in the variable,
17345 then this is considered to be the first time you have run Alpine this month, and
17346 that turns the Beginning of the Month option on.
17348 Look <A HREF="h_edit_nav_cmds">here</A>
17349 to see the available Editing and Navigation commands.
17351 &lt;End of help on this topic&gt;
17352 </BODY>
17353 </HTML>
17354 ======= h_config_role_boy =======
17355 <HTML>
17356 <HEAD>
17357 <TITLE>Beginning of Year</TITLE>
17358 </HEAD>
17359 <BODY>
17360 <H1>Beginning of Year</H1>
17362 This option gives you a limited ability to take different actions depending on whether
17363 this is the first time Alpine has been run this year or not.
17364 Though it would be nice to have such an option available, this is not the
17365 same as whether or not this is the first time a paricular folder has been
17366 opened this year.
17367 If you want some action (probably Filtering) to take place in a folder each
17368 year, then you will need to be sure that the folder is opened during the
17369 first Alpine session of the year in order for this option to be helpful.
17371 This part of the Pattern may have one of three possible values.
17372 The default value is &quot;Don't care&quot;, which matches any message.
17373 The other two values are &quot;Yes&quot;, which means this is the first
17374 time Alpine has been run this year;
17375 or &quot;No&quot;, which
17376 means this is not the first time Alpine has been run this year.
17378 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17379 for more information on Patterns.
17381 Here are some technical details.
17382 The way that Alpine decides if it is the beginning of the year or not is
17383 to compare today's date with the date stored in the
17384 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17385 variable in the config file.
17386 If the year of today's date is later than the year stored in the variable,
17387 then this is considered to be the first time you have run Alpine this year, and
17388 that turns the Beginning of the Year option on.
17390 Look <A HREF="h_edit_nav_cmds">here</A>
17391 to see the available Editing and Navigation commands.
17393 &lt;End of help on this topic&gt;
17394 </BODY>
17395 </HTML>
17396 ======= h_config_role_inick =======
17397 <HTML>
17398 <HEAD>
17399 <TITLE>Initialize Values From Role Explained</TITLE>
17400 </HEAD>
17401 <BODY>
17402 <H1>Initialize Values From Role Explained</H1>
17404 This is a power user feature.
17405 You will usually want to leave this field empty.
17406 The value of this field is the nickname of another one of your roles.
17407 The Action values from that other role
17408 are used as the initial values of the Action items for this role.
17409 If you put something in any of the action fields for this role, that will
17410 override whatever was in the corresponding field of the initializer role.
17412 You might use this field if the &quot;Action&quot; part of one of your roles
17413 is something you want to use in more than one role.
17414 Instead of filling in those action values again for each role, you
17415 may give the nickname of the role where the values are filled in.
17416 It's just a shortcut way to define Role Actions.
17418 Here's an example to help explain how this works.
17419 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17420 (among other things)
17422 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17424 set.
17425 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17426 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17427 from role1 by default (and any of the other inheritable action values
17428 that are set).
17429 So if role2 had
17431 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17433 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17434 However, if role2 had
17436 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17438 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17440 If you wish,
17441 you may choose a nickname from your list of roles by using the
17442 &quot;T&quot; command.
17443 If the role you are using to initialize also has a role it initializes from,
17444 then that initialization happens first.
17445 That is, inheritance works as expected with the grandparent and
17446 great-grandparent (and so on) roles having the expected effect.
17448 Look <A HREF="h_edit_nav_cmds">here</A>
17449 to see the available Editing and Navigation commands.
17451 &lt;End of help on this topic&gt;
17452 </BODY>
17453 </HTML>
17454 ======= h_config_role_setfrom =======
17455 <HTML>
17456 <HEAD>
17457 <TITLE>Set From Explained</TITLE>
17458 </HEAD>
17459 <BODY>
17460 <H1>Set From Explained</H1>
17462 This describes part of the action to be taken if the Pattern for this
17463 role is a match.
17464 This field consists of a single address that will be used as the From
17465 address on the message you are sending.
17466 This should be a fully-qualified address like
17468 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17470 or just
17472 <CENTER><SAMP>user@domain</SAMP></CENTER>
17474 If you wish,
17475 you may choose an address from your address book with the
17476 &quot;T&quot; command.
17478 If this is left blank, then your normal From address will be used.
17480 You may also find it useful to add the changed From address to the
17481 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
17482 configuration option.
17484 Look <A HREF="h_edit_nav_cmds">here</A>
17485 to see the available Editing and Navigation commands.
17487 &lt;End of help on this topic&gt;
17488 </BODY>
17489 </HTML>
17490 ======= h_config_role_setreplyto =======
17491 <HTML>
17492 <HEAD>
17493 <TITLE>Set Reply-To Explained</TITLE>
17494 </HEAD>
17495 <BODY>
17496 <H1>Set Reply-To Explained</H1>
17498 This describes part of the action to be taken if the Pattern for this
17499 role is a match.
17500 This field consists of a single address that will be used as the Reply-To
17501 address on the message you are sending.
17502 This may be a fully-qualified address like
17504 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17506 or just
17508 <CENTER><SAMP>user@domain</SAMP></CENTER>
17510 If you wish,
17511 you may choose an address from your address book with the
17512 &quot;T&quot; command.
17514 If this is left blank, then there won't be a Reply-To address unless
17515 you have configured one specially with the
17516 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
17517 configuration option.
17519 Look <A HREF="h_edit_nav_cmds">here</A>
17520 to see the available Editing and Navigation commands.
17522 &lt;End of help on this topic&gt;
17523 </BODY>
17524 </HTML>
17525 ======= h_config_role_setfcc =======
17526 <HTML>
17527 <HEAD>
17528 <TITLE>Set Fcc Explained</TITLE>
17529 </HEAD>
17530 <BODY>
17531 <H1>Set Fcc Explained</H1>
17533 This describes part of the action to be taken if the Pattern for this
17534 role is a match.
17535 This field consists of a single folder name that will be used in
17536 the Fcc field of the message you are sending.
17537 You may put anything here that you would normally type into the Fcc
17538 field from the composer.
17540 In addition, an fcc of &quot;&quot; (two double quotation marks) means
17541 no Fcc.
17543 A blank field here means that Alpine will use its normal rules for deciding
17544 the default value of the Fcc field.
17545 For many roles, perhaps most, it may make more sense for you to use the
17546 other Alpine facilities for setting the Fcc.
17547 In particular, if you want the Fcc to depend on who you are sending the
17548 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
17549 is probably more useful.
17550 In that case, you would want to leave the Fcc field here blank.
17551 However, if you have a role that depends on who the message you are replying
17552 to was From, or what address that message was sent to;
17553 then it might make sense to set the Fcc for that role here.
17555 If you wish,
17556 you may choose a folder from your folder collections by using the
17557 &quot;T&quot; command.
17559 Look <A HREF="h_edit_nav_cmds">here</A>
17560 to see the available Editing and Navigation commands.
17562 &lt;End of help on this topic&gt;
17563 </BODY>
17564 </HTML>
17565 ======= h_config_role_usesmtp =======
17566 <HTML>
17567 <HEAD>
17568 <TITLE>Use SMTP Server Explained</TITLE>
17569 </HEAD>
17570 <BODY>
17571 <H1>Use SMTP Server Explained</H1>
17573 This describes part of the action to be taken if the Pattern for this
17574 role is a match.
17575 If this field has a value, then it will be used as the SMTP server
17576 to send mail when this role is being used (unless the SMTP server variable
17577 is set in the system-wide fixed configuration file).
17578 It has the same semantics as the
17579 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17580 variable in the Setup/Config screen.
17582 If you are using this to post from home when you are at home and from
17583 work when you are at work you need to be careful about postponing messages.
17584 When you postpone a composition that was using a role with this variable
17585 set, the SMTP server list will be saved
17586 with the postponed composition.
17587 It cannot be changed later.
17588 Because of this, you may want to make this a list of SMTP servers
17589 with the preferred server at the front of the list and alternate servers
17590 later in the list.
17591 In your &quot;Home&quot; role you would put the home SMTP server first and
17592 the work SMTP server last.
17593 In your &quot;Work&quot; role you would put the work SMTP server first and
17594 the home SMTP server last.
17595 Then if you start a composition as &quot;Work&quot;, postpone
17596 it, and then later resume it from home the work SMTP server will fail but
17597 the home SMTP server later in the list will succeed.
17599 You may be able to simplify things by making the regular
17600 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17601 variable in the Setup/Config screen a list instead of using roles
17602 to set the SMTP server.
17605 Look <A HREF="h_edit_nav_cmds">here</A>
17606 to see the available Editing and Navigation commands.
17608 &lt;End of help on this topic&gt;
17609 </BODY>
17610 </HTML>
17611 ======= h_config_role_usenntp =======
17612 <HTML>
17613 <HEAD>
17614 <TITLE>Use NNTP Server Explained</TITLE>
17615 </HEAD>
17616 <BODY>
17617 <H1>Use NNTP Server Explained</H1>
17619 This describes part of the action to be taken if the Pattern for this
17620 role is a match.
17621 If this field has a value, then it will be used as the NNTP server
17622 to post to newsgroups when this role is being used (unless the NNTP server
17623 variable
17624 is set in the system-wide fixed configuration file).
17625 It has the same semantics as the
17626 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17627 variable in the Setup/Config screen.
17629 This role setting can facilitate posting to the right nntp server for someone
17630 who reads news from various news sources.  The feature
17631 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
17632 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
17633 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
17634 nntp servers for roles may be more desirable for some people.
17636 If you are using this to post from home when you are at home and from
17637 work when you are at work you need to be careful about postponing messages.
17638 When you postpone a composition that was using a role with this variable
17639 set, the NNTP server list will be saved
17640 with the postponed composition.
17641 It cannot be changed later.
17642 Because of this, you may want to make this a list of NNTP servers
17643 with the preferred server at the front of the list and alternate servers
17644 later in the list.
17645 In your &quot;Home&quot; role you would put the home NNTP server first and
17646 the work NNTP server last.
17647 In your &quot;Work&quot; role you would put the work NNTP server first and
17648 the home NNTP server last.
17649 Then if you start a composition as &quot;Work&quot;, postpone
17650 it, and then later resume it from home the work NNTP server will fail but
17651 the home NNTP server later in the list will succeed.
17653 You may be able to simplify things by making the regular
17654 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17655 variable in the Setup/Config screen a list instead of using roles
17656 to set the NNTP server.
17659 Look <A HREF="h_edit_nav_cmds">here</A>
17660 to see the available Editing and Navigation commands.
17662 &lt;End of help on this topic&gt;
17663 </BODY>
17664 </HTML>
17665 ======= h_config_role_setotherhdr =======
17666 <HTML>
17667 <HEAD>
17668 <TITLE>Set Other Headers Explained</TITLE>
17669 </HEAD>
17670 <BODY>
17671 <H1>Set Other Headers Explained</H1>
17673 This describes part of the action to be taken if the Pattern for this
17674 role is a match.
17675 This field gives you a way to set values for headers besides
17676 &quot;From&quot; and &quot;Reply-To&quot;.
17677 If you want to set either of those, use the specific
17678 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
17680 This field is similar to the
17681 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
17682 Each header you specify here must include the header tag 
17683 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
17684 and may optionally include a value for that header.
17685 In order to see these headers when you compose using this role you 
17686 must use the rich header
17687 <!--chtml if pinemode="function_key"-->(F5)
17688 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
17689 Here's an example that shows how you might set the To address.
17691 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
17693 Headers set in this way are different from headers set with the
17694 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
17695 will replace any value that already exists.
17696 For example, if you are Replying to a message there will already be at
17697 least one address in the To header (the address you are Replying to).
17698 However, if you Reply using a role that sets the To header, that role's
17699 To header value will be used instead.
17701 Limitation: Because commas are used to separate the list of
17702 Other Headers, it is not possible to have the value of a
17703 header contain a comma;
17704 nor is there currently an &quot;escape&quot; mechanism provided
17705 to make this work.
17707 Look <A HREF="h_edit_nav_cmds">here</A>
17708 to see the available Editing and Navigation commands.
17710 &lt;End of help on this topic&gt;
17711 </BODY>
17712 </HTML>
17713 ======= h_config_role_setlitsig =======
17714 <HTML>
17715 <HEAD>
17716 <TITLE>Set Literal Signature Explained</TITLE>
17717 </HEAD>
17718 <BODY>
17719 <H1>Set Literal Signature Explained</H1>
17721 This describes part of the action to be taken if the Pattern for this
17722 role is a match.
17723 This field contains the actual text for your signature, as opposed to
17724 the name of a file containing your signature.
17725 If this is defined it takes precedence over any value set in the
17726 &quot;Set Signature&quot; field.
17728 This is simply a different way to store the signature.
17729 The signature is stored inside your Alpine configuration file instead of in
17730 a separate file.
17731 Tokens work the same way they do with
17732 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
17733 help text there for more information.
17736 The two character sequence &#92;n (backslash followed by
17737 the character n) will be used to signify a line-break in your signature.
17738 You don't have to enter the &#92;n, but it will be visible in the
17739 CHANGE THIS ROLE RULE window after you are done editing the signature.
17741 Look <A HREF="h_edit_nav_cmds">here</A>
17742 to see the available Editing and Navigation commands.
17744 &lt;End of help on this topic&gt;
17745 </BODY>
17746 </HTML>
17747 ======= h_config_role_setsig =======
17748 <HTML>
17749 <HEAD>
17750 <TITLE>Set Signature Explained</TITLE>
17751 </HEAD>
17752 <BODY>
17753 <H1>Set Signature Explained</H1>
17755 This describes part of the action to be taken if the Pattern for this
17756 role is a match.
17758 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
17759 option from Setup/Config
17760 or the &quot;Set LiteralSig&quot; option for this role are defined,
17761 then this option will be ignored.
17762 You can tell that that is the case because the value of this
17763 option will show up as
17765 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
17767 You may either use all Literal Signatures (signatures stored in your
17768 configuration file) throughout Alpine, or all signature files.
17769 You can't mix the two.
17771 This field consists of a filename that will be used as the signature
17772 file when using this role.
17774 If the filename is followed by a vertical bar (|) then instead
17775 of reading the contents of the file the file is assumed to be a
17776 program that will produce the text to be used on its standard output.
17777 The program can't have any arguments and doesn't receive any input from Alpine,
17778 but the rest of the processing works as if the contents came from a file.
17780 Instead of storing the data in a local file, the
17781 signature data may be stored remotely in an IMAP folder.
17782 In order to do this, 
17783 you must use a remote name for the signature.
17784 A remote signature name might look like:
17786 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
17789 The syntax used here is the same as the syntax used for a remote
17790 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17791 Note that you may not access an existing signature file remotely,
17792 you have to create a new <EM>folder</EM> that contains the signature data.
17793 If the name you use here for the signature data is a remote name, then when
17794 you edit the file using the &quot;F&quot; command the data will
17795 be saved remotely in the folder.
17796 You aren't required to do anything special to create the folder, it
17797 gets created if you use a remote name.
17800 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17801 the name of the file) you have specified.
17802 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17804 Besides containing regular text, a signature file may also
17805 contain (or a signature program may produce) tokens that are replaced with text
17806 that depends on the message you are replying to or forwarding.
17807 The tokens all look like _word_ (a word surrounded by underscores).
17808 For example, if the token
17810 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17812 is included in the text of the signature file, then when you reply to
17813 or forward a message, the token will be replaced with the actual date
17814 the message you are replying to or forwarding was sent.
17816 If you use a role that has a signature file for a plain composition
17817 (that is, not a reply or forward) then there is no original message, so
17818 any tokens that depend on the message will be replaced with nothing.
17819 So if you want a signature file to be useful for new compositions it
17820 shouldn't include any of the tokens that depend on the message being
17821 replied to or forwarded.
17823 The list of available tokens is
17824 <A HREF="h_index_tokens">here</A>.
17826 Actually, for the adventurous, there is a way to conditionally include text based
17827 on whether or not a token would result in specific replacement text.
17828 For example, you could include some text based on whether or not
17829 the _NEWS_ token would result in any newsgroups if it was used.
17830 It's explained in detail
17831 <A HREF="h_reply_token_conditionals">here</A>.
17833 In the very unlikely event that you want to include a literal token in
17834 a signature file, you must precede it with a backslash character.
17835 For example, to include the literal text _DATE_ you must actually use
17836 &#92;_DATE_.
17837 It is not possible to have a literal backslash followed by an expanded token.
17839 A blank field here means that Alpine will use its normal rules for deciding
17840 which file (if any) to use for the signature file.
17842 An alternate method for storing the signature is available in
17843 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
17845 Look <A HREF="h_edit_nav_cmds">here</A>
17846 to see the available Editing and Navigation commands.
17848 &lt;End of help on this topic&gt;
17849 </BODY>
17850 </HTML>
17851 ======= h_config_role_settempl =======
17852 <HTML>
17853 <HEAD>
17854 <TITLE>Set Template Explained</TITLE>
17855 </HEAD>
17856 <BODY>
17857 <H1>Set Template Explained</H1>
17859 This describes part of the action to be taken if the Pattern for this
17860 role is a match.
17861 This field consists of a filename that will be used as the template
17862 file when using this role.
17863 The template file is a file that is included at the top of the message you
17864 are composing.
17866 If the filename is followed by a vertical bar (|) then instead
17867 of reading the contents of the file the file is assumed to be a
17868 program that will produce the text to be used on its standard output.
17869 The program can't have any arguments and doesn't receive any input from Alpine,
17870 but the rest of the processing works as if the contents came from a file.
17872 Instead of storing the data in a local file, the
17873 template may be stored remotely in an IMAP folder.
17874 In order to do this, 
17875 you must use a remote name for the template.
17876 A remote template name might look like:
17878 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
17881 The syntax used here is the same as the syntax used for a remote
17882 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17883 Note that you may not access an existing template file remotely,
17884 you have to create a new <EM>folder</EM> that contains the template data.
17885 If the name you use here for the template is a remote name, then when
17886 you edit the file using the &quot;F&quot; command the data will
17887 be saved remotely in the folder.
17888 You aren't required to do anything special to create the folder, it
17889 gets created if you use a remote name.
17891 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17892 the name of the file) you have specified.
17893 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17895 Besides containing regular text, the template file may also
17896 contain (or a template file program may produce) tokens that are replaced with text
17897 that depends on the message you are replying to or forwarding.
17898 The tokens all look like _word_ (a word surrounded by underscores).
17899 For example, if the token
17901 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17903 is included in the text of the template file, then when you reply to
17904 or forward a message, the token will be replaced with the actual date
17905 the message you are replying to or forwarding was sent.
17907 If you use a role that has a template file for a plain composition
17908 (that is, not a reply or forward) then there is no original message, so
17909 any tokens that depend on the message will be replaced with nothing.
17910 So if you want a template file to be useful for new compositions it
17911 shouldn't include any of the tokens that depend on the message being
17912 replied to or forwarded.
17914 The list of available tokens is
17915 <A HREF="h_index_tokens">here</A>.
17917 Actually, for the adventurous, there is a way to conditionally include text based
17918 on whether or not a token would result in specific replacement text.
17919 For example, you could include some text based on whether or not
17920 the _NEWS_ token would result in any newsgroups if it was used.
17921 It's explained in detail
17922 <A HREF="h_reply_token_conditionals">here</A>.
17924 In the very unlikely event that you want to include a literal token in
17925 a template file, you must precede it with a backslash character.
17926 For example, to include the literal text _DATE_ you must actually use
17927 &#92;_DATE_.
17928 It is not possible to have a literal backslash followed by an expanded token.
17930 A blank template field means that Alpine will not use a template file when
17931 this role is being used.
17933 Look <A HREF="h_edit_nav_cmds">here</A>
17934 to see the available Editing and Navigation commands.
17936 &lt;End of help on this topic&gt;
17937 </BODY>
17938 </HTML>
17939 ======= h_config_filt_stat_imp =======
17940 <HTML>
17941 <HEAD>
17942 <TITLE>Set Important Status Explained</TITLE>
17943 </HEAD>
17944 <BODY>
17945 <H1>Set Important Status Explained</H1>
17947 This describes part of the action to be taken if the Pattern for this
17948 filter is a match.
17949 If set to &quot;Don't change it&quot; then this does nothing.
17950 If set to &quot;Set this state&quot; then the Important flag is set
17951 for the matching message.
17952 If set to &quot;Clear this state&quot; then the Important flag is cleared
17953 for the matching message.
17954 The important flag usually causes an asterisk to show up in the MESSAGE
17955 INDEX.
17956 It may also be useful when selecting a set of messages
17957 with the Select command.
17959 Look <A HREF="h_edit_nav_cmds">here</A>
17960 to see the available Editing and Navigation commands.
17962 &lt;End of help on this topic&gt;
17963 </BODY>
17964 </HTML>
17965 ======= h_config_filt_stat_new =======
17966 <HTML>
17967 <HEAD>
17968 <TITLE>Set New Status Explained</TITLE>
17969 </HEAD>
17970 <BODY>
17971 <H1>Set New Status Explained</H1>
17973 This describes part of the action to be taken if the Pattern for this
17974 filter is a match.
17975 If set to &quot;Don't change it&quot; then this does nothing.
17976 If set to &quot;Set this state&quot; then the
17977 matching message is marked New.
17978 If set to &quot;Clear this state&quot; then the
17979 matching message is marked Seen.
17981 Look <A HREF="h_edit_nav_cmds">here</A>
17982 to see the available Editing and Navigation commands.
17984 &lt;End of help on this topic&gt;
17985 </BODY>
17986 </HTML>
17987 ======= h_config_filt_stat_ans =======
17988 <HTML>
17989 <HEAD>
17990 <TITLE>Set Answered Status Explained</TITLE>
17991 </HEAD>
17992 <BODY>
17993 <H1>Set Answered Status Explained</H1>
17995 This describes part of the action to be taken if the Pattern for this
17996 filter is a match.
17997 If set to &quot;Don't change it&quot; then this does nothing.
17998 If set to &quot;Set this state&quot; then the Answered flag is set
17999 for the matching message.
18000 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18001 for the matching message.
18003 Look <A HREF="h_edit_nav_cmds">here</A>
18004 to see the available Editing and Navigation commands.
18006 &lt;End of help on this topic&gt;
18007 </BODY>
18008 </HTML>
18009 ======= h_config_filt_stat_del =======
18010 <HTML>
18011 <HEAD>
18012 <TITLE>Set Deleted Status Explained</TITLE>
18013 </HEAD>
18014 <BODY>
18015 <H1>Set Deleted Status Explained</H1>
18017 This describes part of the action to be taken if the Pattern for this
18018 filter is a match.
18019 If set to &quot;Don't change it&quot; then this does nothing.
18020 If set to &quot;Set this state&quot; then the
18021 matching message is marked Deleted.
18022 If set to &quot;Clear this state&quot; then the
18023 matching message is marked UnDeleted.
18025 You should not use this option unless you are prepared to have matching
18026 messages expunged from the folder permanently.
18027 For example, if you type the Expunge command, this filter is applied
18028 before the expunge, so matching messages will be marked Deleted and then
18029 will be permanently expunged from the folder.
18030 However, since the index isn't redrawn in between the time that the message
18031 is marked Deleted and the time that you are asked to expunge, the only
18032 indication that you are expunging the message comes in the number of messages
18033 being expunged.
18034 The same thing may happen when you close a folder.
18035 It is also possible that an expunge not initiated by you will
18036 delete matching messages.
18038 Look <A HREF="h_edit_nav_cmds">here</A>
18039 to see the available Editing and Navigation commands.
18041 &lt;End of help on this topic&gt;
18042 </BODY>
18043 </HTML>
18044 ======= h_config_role_scoreval =======
18045 <HTML>
18046 <HEAD>
18047 <TITLE>Score Value Explained</TITLE>
18048 </HEAD>
18049 <BODY>
18050 <H1>Score Value Explained</H1>
18052 A message's score is the sum of the Score Values from all of the Scoring rules
18053 with Patterns that match the message.
18054 The value you give here is the Score Value associated with this rule.
18055 A Score Value is an integer between -100 and 100, with the default
18056 value of zero.
18058 Alternatively, if the
18059 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18060 field is defined
18061 (on the line right below the &quot;Score Value&quot; field)
18062 then the &quot;Score Value&quot; is ignored and
18063 the &quot;Score From Header&quot; field is used instead.
18065 Look <A HREF="h_edit_nav_cmds">here</A>
18066 to see the available Editing and Navigation commands.
18068 &lt;End of help on this topic&gt;
18069 </BODY>
18070 </HTML>
18071 ======= h_config_role_scorehdrtok =======
18072 <HTML>
18073 <HEAD>
18074 <TITLE>Score Value From Header Explained</TITLE>
18075 </HEAD>
18076 <BODY>
18077 <H1>Score Value From Header Explained</H1>
18079 This option provides a way to use a number that appears in the headers of your
18080 messages as the message's score, or as a component of that score.
18081 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18082 The idea behind this option is that there may be a score embedded in the
18083 headers of messages that has already been calculated outside of Alpine.
18084 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18085 somewhere in that header there is a score.
18087 The value for this option is the name of the header followed by parentheses
18088 with two arguments inside:
18090 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18092 No space is allowed between the comma and the start of the field_separators.
18093 It would be interpreted as the first separator if it was there.
18094 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18095 starts after that and goes to the second separator, and so on.
18096 It's easier to explain with examples.
18098 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18100 In the above example the header that is used is the &quot;X-Spam&quot; header.
18101 The value of that header (the part after the colon and the space) is split
18102 into fields separated by spaces.
18104 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18106 The second field is selected and converted to an integer. It only makes sense
18107 if Field2 really is an integer.
18109 Here's an example of a SpamAssassin header.
18110 The exact look of the header will vary, but if your incoming mail
18111 contains headers that look like the following
18113 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18115 you might want to use the hits value as a score.
18116 Since the score is an integer value you can't make use of the decimal part of
18117 the number, but
18118 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18119 and &quot;.&quot; as your separators.
18121 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18123 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18124 hits.
18125 The second field is &quot;10&quot; so the score value would be 10.
18127 Another example we've seen has headers that look like
18129 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18131 Because there are two equals before the 7% the value
18133 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18135 should capture the probability as the score.
18137 The Score From Header scoring value actually works just like the
18138 regular Score Value in that the rest of the pattern has to match before
18139 it is used and the scores from all the different scoring rules that
18140 match for a particular message are added together.
18141 When using the Score From Header method it may (or may not) make sense to
18142 use only a single scoring rule with a pattern that matches every message.
18144 Look <A HREF="h_edit_nav_cmds">here</A>
18145 to see the available Editing and Navigation commands.
18147 &lt;End of help on this topic&gt;
18148 </BODY>
18149 </HTML>
18150 ======= h_config_role_replyuse =======
18151 <HTML>
18152 <HEAD>
18153 <TITLE>Reply Use Explained</TITLE>
18154 </HEAD>
18155 <BODY>
18156 <H1>Reply Use Explained</H1>
18158 This option determines how this particular role will be used when Replying
18159 to a message.
18160 There are three possible values for this option.
18161 The value &quot;Never&quot;
18162 means that this role will not be a candidate for use when Replying.
18163 The role's Pattern will not be checked for a match, however the role will
18164 be available to be manually switched to if there is a confirmation prompt.
18167 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18168 mean that you do want to consider this role when Replying.
18169 For either of these settings, the role's Pattern will be compared with
18170 the message being replied to.
18171 If there is a match then this role will either be used without confirmation
18172 or will be the default when confirmation is asked for, depending on
18173 which of the two options is selected.
18174 If confirmation is requested, you will also have a chance to
18175 manually change the role to any one of your other roles.
18178 You won't be prompted for confirmation if none of your role Patterns
18179 match the message being replied to.
18180 This is independent of the value of the current option.
18181 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18182 feature may be used to change this behavior.
18184 &lt;End of help on this topic&gt;
18185 </BODY>
18186 </HTML>
18187 ======= h_config_role_forwarduse =======
18188 <HTML>
18189 <HEAD>
18190 <TITLE>Forward Use Explained</TITLE>
18191 </HEAD>
18192 <BODY>
18193 <H1>Forward Use Explained</H1>
18195 This option determines how this particular role will be used when Forwarding
18196 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 Forwarding.
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 Forwarding.
18206 For either of these settings, the role's Pattern will be compared with
18207 the message being forwarded.
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 forwarded.
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_composeuse =======
18225 <HTML>
18226 <HEAD>
18227 <TITLE>Compose Use Explained</TITLE>
18228 </HEAD>
18229 <BODY>
18230 <H1>Compose Use Explained</H1>
18232 This option determines how this particular role will be used when Composing
18233 a new message using the &quot;Compose&quot; command.
18234 This does not affect what happens when using the &quot;Role&quot; command
18235 to compose a new message.
18236 The &quot;Role&quot; command allows you to select a role from all of the
18237 roles you have defined, regardless of what Uses you've assigned to those
18238 roles.
18241 There are three possible values for this option.
18242 The value &quot;Never&quot;
18243 means that this role will not be a candidate for use when Composing.
18244 The role's Current Folder Type will not be checked for a match, however the role
18245 will be available to be manually switched to if there is a confirmation prompt.
18248 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18249 mean that you do want to consider this role when Composing.
18250 For either of these settings,
18251 the role's Current Folder Type will be checked (since there is no message
18252 to compare with, the rest of the Pattern is considered a match).
18253 If there is a match then this role will either be used without confirmation
18254 or will be the default when confirmation is asked for, depending on
18255 which of the two options is selected.
18256 If confirmation is requested, you will also have a chance to
18257 manually change the role to any one of your other roles.
18260 When using the Compose command the role checking is a little different
18261 because there is no message being replied to or forwarded.
18262 Because of this the Current Folder Type is checked but the header pattern
18263 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18264 A role is considered to be a match if it is a candidate for Compose Use and
18265 its Current Folder Type matches the currently open folder.
18266 This could be useful if you want to set a role based on the folder you
18267 are reading, or the type of folder you are reading.
18270 You won't be prompted for confirmation if none of your role Patterns
18271 are a match.
18272 This is independent of the value of the current option.
18273 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18274 feature may be used to change this behavior.
18276 &lt;End of help on this topic&gt;
18277 </BODY>
18278 </HTML>
18279 ======= h_config_filter_folder =======
18280 <HTML>
18281 <HEAD>
18282 <TITLE>Filter Folder Explained</TITLE>
18283 </HEAD>
18284 <BODY>
18285 <H1>Filter Folder Explained</H1>
18287 When the Filter Action is set to &quot;Move&quot;,
18288 the folder or folders specified here will be used to store messages matching
18289 the provided pattern.
18292 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18293 here.
18296 If you wish,
18297 you may choose a folder from your folder collections by using the
18298 &quot;T&quot; command.
18300 Besides regular text, the folder name may also contain
18301 tokens that are replaced with text representing the current date
18302 when you run Alpine.
18303 For example, if the folder name you use is
18305 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18307 that is replaced with something like
18309 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18313 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18315 becomes
18317 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18319 The token names must be surrounded by underscores in order to be recognized
18320 as tokens.
18321 The tokens that may be used are those that are derived from the current date.
18322 They're listed near the bottom of the list of tokens give
18323 <A HREF="h_index_tokens">here</A>.
18325 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18326 for more information on Patterns.
18328 Look <A HREF="h_edit_nav_cmds">here</A>
18329 to see the available Editing and Navigation commands.
18331 &lt;End of help on this topic&gt;
18332 </BODY>
18333 </HTML>
18334 ======= h_config_filter_kw_set =======
18335 <HTML>
18336 <HEAD>
18337 <TITLE>Set These Keywords Explained</TITLE>
18338 </HEAD>
18339 <BODY>
18340 <H1>Set These Keywords Explained</H1>
18342 This describes part of the action to be taken if the Pattern for this
18343 filter is a match.
18344 Read a little about keywords in the help text for the
18345 <A HREF="h_common_flag">Flag</A> command.
18346 This option is a list of keywords that will be Set when there is a match.
18347 If you wish, you may choose keywords from the list of keywords you have
18348 defined with the &quot;T&quot; command.
18349 You may add new keywords by defining them in the
18350 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18351 If you have given a keyword a nickname when configuring it,
18352 that nickname may be used instead of the actual keyword.
18355 Look <A HREF="h_edit_nav_cmds">here</A>
18356 to see the available Editing and Navigation commands.
18358 &lt;End of help on this topic&gt;
18359 </BODY>
18360 </HTML>
18361 ======= h_config_filter_kw_clr =======
18362 <HTML>
18363 <HEAD>
18364 <TITLE>Clear These Keywords Explained</TITLE>
18365 </HEAD>
18366 <BODY>
18367 <H1>Clear These Keywords Explained</H1>
18369 This describes part of the action to be taken if the Pattern for this
18370 filter is a match.
18371 Read a little about keywords in the help text for the
18372 <A HREF="h_common_flag">Flag</A> command.
18373 This option is a list of keywords that will be Cleared when there is a match.
18374 If you wish, you may choose keywords from the list of keywords you have
18375 defined with the &quot;T&quot; command.
18376 You may add new keywords by defining them in the
18377 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18378 If you have given a keyword a nickname when configuring it,
18379 that nickname may be used instead of the actual keyword.
18382 Look <A HREF="h_edit_nav_cmds">here</A>
18383 to see the available Editing and Navigation commands.
18385 &lt;End of help on this topic&gt;
18386 </BODY>
18387 </HTML>
18388 ======= h_index_tokens =======
18389 <HTML>
18390 <HEAD>
18391 <TITLE>Tokens for Index and Replying</TITLE>
18392 </HEAD>
18393 <BODY>
18395 This set of special tokens may be used in the
18396 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18397 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18398 in signature files,
18399 in template files used in
18400 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18401 that is the target of a Filter Rule.
18402 Some of them aren't available in all situations.
18404 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18405 option, but they must be surrounded by underscores for the
18406 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18407 and in the target of Filter Rules.
18411 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18413 <DL>
18414 <DT>SUBJECT</DT>
18415 <DD>
18416 This token represents the Subject the sender gave the message.
18417 Alternatives for use in the index screen are
18418 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18419 You may color the subject text in the MESSAGE INDEX screen differently by using the
18420 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18421 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18422 options available from
18423 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18424 </DD>
18426 <DT>FROM</DT>
18427 <DD>
18428 This token represents the personal name (or email address if the name
18429 is unavailable) of the person specified in the message's &quot;From:&quot;
18430 header field.
18431 You may color the from text in the MESSAGE INDEX screen differently by using the
18432 <A HREF="h_config_index_from_color">Index From Color</A>
18433 option available from
18434 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18435 </DD>
18437 <DT>ADDRESS</DT>
18438 <DD>
18439 This is similar to the &quot;FROM&quot; token, only it is always the
18440 email address, never the personal name.
18441 For example, &quot;mailbox@domain&quot;.
18442 </DD>
18444 <DT>MAILBOX</DT>
18445 <DD>
18446 This is the same as the &quot;ADDRESS&quot; except that the 
18447 domain part of the address is left off.
18448 For example, &quot;mailbox&quot;.
18449 </DD>
18451 <DT>SENDER</DT>
18452 <DD>
18453 This token represents the personal name (or email address) of the person
18454 listed in the message's &quot;Sender:&quot; header field.
18455 </DD>
18457 <DT>TO</DT>
18458 <DD>
18459 This token represents the personal names (or email addresses if the names
18460 are unavailable) of the persons specified in the
18461 message's &quot;To:&quot; header field.
18462 </DD>
18464 <DT>NEWSANDTO</DT>
18465 <DD>
18466 This token represents the newsgroups from the
18467 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18468 the personal names (or email addresses if the names
18469 are unavailable) of the persons specified in the
18470 message's &quot;To:&quot; header field.
18471 </DD>
18473 <DT>TOANDNEWS</DT>
18474 <DD>
18475 Same as &quot;NEWSANDTO&quot; except in the opposite order.
18476 </DD>
18478 <DT>NEWS</DT>
18479 <DD>
18480 This token represents the newsgroups from the
18481 message's &quot;Newsgroups:&quot; header field.
18482 </DD>
18484 <DT>CC</DT>
18485 <DD>
18486 This token represents the personal names (or email addresses if the names
18487 are unavailable) of the persons specified in the
18488 message's &quot;Cc:&quot; header field.
18489 </DD>
18491 <DT>RECIPS</DT>
18492 <DD>
18493 This token represents the personal names (or email addresses if the names
18494 are unavailable) of the persons specified in both the
18495 message's &quot;To:&quot; header field and
18496 the message's &quot;Cc:&quot; header field.
18497 </DD>
18499 <DT>NEWSANDRECIPS</DT>
18500 <DD>
18501 This token represents the newsgroups from the
18502 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18503 the personal names (or email addresses if the names
18504 are unavailable) of the persons specified in the
18505 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
18506 </DD>
18508 <DT>RECIPSANDNEWS</DT>
18509 <DD>
18510 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
18511 </DD>
18513 <DT>INIT</DT>
18514 <DD>
18515 This token represents the initials from the personal name
18516 of the person specified in the message's &quot;From:&quot;
18517 header field.
18518 If there is no personal name, it is blank.
18519 </DD>
18521 <DT>DATE</DT>
18522 <DD>
18523 This token represents the date on which the message was sent, according
18524 to the &quot;Date&quot; header field.
18525 It has the format MMM DD. For example, &quot;Oct 23&quot;.
18526 The feature
18527 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
18528 which adjusts for the timezone the message was sent from,
18529 may have an affect on the value of this token as well as the values of
18530 all of the other DATE or TIME tokens.
18531 Some of the DATE and TIME tokens are displayed in a locale-specific
18532 way unless the option
18533 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
18534 </DD>
18536 <DT>SMARTDATE</DT>
18537 <DD>
18538 This token represents the date on which the message was sent, according
18539 to the &quot;Date&quot; header field.
18540 It is &quot;Today&quot; if the message was sent today,
18541 &quot;Yesterday&quot; for yesterday,
18542 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
18543 message is from last year and is more than six months old it includes the year, as well.
18544 See the SMARTDATE alternatives below, as well.
18545 </DD>
18547 <DT>SMARTTIME</DT>
18548 <DD>
18549 This token represents the most relevant elements of the date on which
18550 the message was sent (according to the &quot;Date&quot; header field),
18551 in a compact form. If the message was sent today, only the time is used
18552 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
18553 the past week, the day of the week and the hour are used
18554 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
18555 given as date, month, and year (e.g. &quot;23Aug00&quot;,
18556 &quot;9Apr98&quot;).
18557 </DD>
18559 <DT>SMARTDATETIME</DT>
18560 <DD>
18561 This is a combination of SMARTDATE and SMARTTIME.
18562 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
18563 case it is SMARTTIME.
18564 See the SMARTDATETIME alternatives below, as well.
18565 </DD>
18567 <DT>DATEISO</DT>
18568 <DD>
18569 This token represents the date on which the message was sent, according
18570 to the &quot;Date&quot; header field.
18571 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
18572 </DD>
18574 <DT>SHORTDATEISO</DT>
18575 <DD>
18576 This token represents the date on which the message was sent, according
18577 to the &quot;Date&quot; header field.
18578 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
18579 </DD>
18581 <DT>SHORTDATE1</DT>
18582 <DD>
18583 This token represents the date on which the message was sent, according
18584 to the &quot;Date&quot; header field.
18585 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
18586 </DD>
18588 <DT>SHORTDATE2</DT>
18589 <DD>
18590 This token represents the date on which the message was sent, according
18591 to the &quot;Date&quot; header field.
18592 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
18593 </DD>
18595 <DT>SHORTDATE3</DT>
18596 <DD>
18597 This token represents the date on which the message was sent, according
18598 to the &quot;Date&quot; header field.
18599 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
18600 </DD>
18602 <DT>SHORTDATE4</DT>
18603 <DD>
18604 This token represents the date on which the message was sent, according
18605 to the &quot;Date&quot; header field.
18606 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
18607 </DD>
18609 <DT>LONGDATE</DT>
18610 <DD>
18611 This token represents the date on which the message was sent, according
18612 to the &quot;Date&quot; header field.
18613 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
18614 </DD>
18616 <DT>SMARTDATE alternatives</DT>
18617 <DD>
18618 There are several versions of SMARTDATE that are all the same except
18619 for the way they format dates far in the past.
18620 SMARTDATE formats the date using the information from your locale settings
18621 to format the date string. It may end up formatting dates so that they look
18622 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18623 The feature
18624 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18625 may have an affect on the values of these tokens.
18626 If you want more control you may use one of the following.
18627   <DL>
18628   <DT>SMARTDATE</DT> <DD>If the option
18629 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18630 then this will be locale specific. Control this with the
18631 LC_TIME locale setting on a UNIX system. On Windows
18632 the Regional Options control panel may be used to set the Short date
18633 format. At the programming level, the strftime routine is what Alpine
18634 uses to print the date.
18635 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18636 to SMARTDATES1.</DD>
18637   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
18638   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18639   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
18640   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
18641   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
18642   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
18643   </DL>
18644 </DD>
18646 <DT>SMARTDATETIME alternatives</DT>
18647 <DD>
18648 There are several versions of SMARTDATETIME that are all very similar.
18649 The ones that end in 24 use a 24-hour clock for Today's messages instead
18650 of a 12-hour clock.
18651 The other variation is
18652 for the way they format dates far in the past.
18653 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
18654 to format the date string. It may end up formatting dates so that they look
18655 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18656 The feature
18657 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18658 may have an affect on the values of these tokens.
18659 The possible choices are:
18660   <DL>
18661   <DT>SMARTDATETIME</DT> <DD>If the option
18662 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18663 then this will be locale specific. Control this with the
18664 LC_TIME locale setting on a UNIX system. On Windows
18665 the Regional Options control panel may be used to set the Short date
18666 format. At the programming level, the strftime routine is what Alpine
18667 uses to print the date.
18668 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18669 to SMARTDATETIMES1.</DD>
18670   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
18671   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
18672   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
18673   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18674   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
18675   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
18676   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
18677   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
18678   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
18679   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
18680   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
18681   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
18682   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
18683   </DL>
18684 </DD>
18686 <DT>DAYDATE</DT>
18687 <DD>
18688 This token represents the date on which the message was sent, according
18689 to the &quot;Date&quot; header field.
18690 It looks like &quot;Sat, 23 Oct 1998&quot;.
18691 This token is never converted in any locale-specific way.
18692 </DD>
18694 <DT>PREFDATE</DT>
18695 <DD>
18696 This token represents the date on which the message was sent, according
18697 to the &quot;Date&quot; header field.
18698 It is your operating system's idea of the preferred date representation for the current locale.
18699 Internally it uses the %x version of the date from the strftime routine.
18700 </DD>
18702 <DT>PREFTIME</DT>
18703 <DD>
18704 This token represents the time at which the message was sent, according
18705 to the &quot;Date&quot; header field.
18706 It is the preferred time representation for the current locale.
18707 Internally it uses the %X version of the time from the strftime routine.
18708 </DD>
18710 <DT>PREFDATETIME</DT>
18711 <DD>
18712 This token represents the date and time at which the message was sent, according
18713 to the &quot;Date&quot; header field.
18714 It is the preferred date and time representation for the current locale.
18715 Internally it uses the %c version of the time from the strftime routine.
18716 </DD>
18718 <DT>DAY</DT>
18719 <DD>
18720 This token represents the day of the month on which the message was sent,
18721 according to the &quot;Date&quot; header field.
18722 For example, &quot;23&quot; or &quot;9&quot;.
18723 </DD>
18725 <DT>DAY2DIGIT</DT>
18726 <DD>
18727 This token represents the day of the month on which the message was sent,
18728 according to the &quot;Date&quot; header field.
18729 For example, &quot;23&quot; or &quot;09&quot;.
18730 It is always 2 digits.
18731 </DD>
18733 <DT>DAYORDINAL</DT>
18734 <DD>
18735 This token represents the ordinal number that is the day of
18736 the month on which the message was sent,
18737 according to the &quot;Date&quot; header field.
18738 For example, &quot;23rd&quot; or &quot;9th&quot;.
18739 </DD>
18741 <DT>DAYOFWEEK</DT>
18742 <DD>
18743 This token represents the day of the week on which the message was sent,
18744 according to the &quot;Date&quot; header field.
18745 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
18746 </DD>
18748 <DT>DAYOFWEEKABBREV</DT>
18749 <DD>
18750 This token represents the day of the week on which the message was sent,
18751 according to the &quot;Date&quot; header field.
18752 For example, &quot;Sun&quot; or &quot;Wed&quot;.
18753 </DD>
18755 <DT>MONTHABBREV</DT>
18756 <DD>
18757 This token represents the month the message was sent, according
18758 to the &quot;Date&quot; header field.
18759 For example, &quot;Oct&quot;.
18760 </DD>
18762 <DT>MONTHLONG</DT>
18763 <DD>
18764 This token represents the month in which the message was sent, according
18765 to the &quot;Date&quot; header field.
18766 For example, &quot;October&quot;.
18767 </DD>
18769 <DT>MONTH</DT>
18770 <DD>
18771 This token represents the month in which the message was sent, according
18772 to the &quot;Date&quot; header field.
18773 For example, &quot;10&quot; or &quot;9&quot;.
18774 </DD>
18776 <DT>MONTH2DIGIT</DT>
18777 <DD>
18778 This token represents the month in which the message was sent, according
18779 to the &quot;Date&quot; header field.
18780 For example, &quot;10&quot; or &quot;09&quot;.
18781 It is always 2 digits.
18782 </DD>
18784 <DT>YEAR</DT>
18785 <DD>
18786 This token represents the year the message was sent, according
18787 to the &quot;Date&quot; header field.
18788 For example, &quot;1998&quot; or &quot;2001&quot;.
18789 </DD>
18791 <DT>YEAR2DIGIT</DT>
18792 <DD>
18793 This token represents the year the message was sent, according
18794 to the &quot;Date&quot; header field.
18795 For example, &quot;98&quot; or &quot;01&quot;.
18796 It is always 2 digits.
18797 </DD>
18799 <DT>TIME24</DT>
18800 <DD>
18801 This token represents the time at which the message was sent, according
18802 to the &quot;Date&quot; header field.
18803 There is no adjustment made for different time zones, so you'll get
18804 the time the message was sent according to the time zone the sender
18805 was in.
18806 It has the format HH:MM. For example, &quot;17:28&quot;.
18807 </DD>
18809 <DT>TIME12</DT>
18810 <DD>
18811 This token represents the time at which the message was sent, according
18812 to the &quot;Date&quot; header field.
18813 This time is for a 12 hour clock.
18814 It has the format HH:MMpm.
18815 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
18816 </DD>
18818 <DT>TIMEZONE</DT>
18819 <DD>
18820 This token represents the numeric timezone from
18821 the &quot;Date&quot; header field.
18822 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
18823 </DD>
18825 </DL>
18828 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
18830 <DL>
18831 <DT>MSGNO</DT>
18832 <DD>
18833 This token represents the message's current position in the folder that,
18834 of course, may change as the folder is sorted or new mail arrives.
18835 </DD>
18837 <DT>STATUS</DT>
18838 <DD>
18839 This token represents a three character wide field displaying various
18840 aspects of the message's state.
18841 The first character is either blank,
18842 a '*' for message marked Important, or a '+' indicating a message
18843 addressed directly to you (as opposed to your having received it via a
18844 mailing list, for example).
18845 When the feature
18846 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
18847 is set, if the first character would have been
18848 blank then it will instead be a '-' if the message is cc'd to you.
18849 The second character is typically blank,
18850 though the arrow cursor may occupy it if either the 
18851 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
18852 or the
18853 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
18854 is set (or you actually are on a slow link).
18855 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
18856 '<A HREF="h_flag_answered">A</A>' (Answered),
18857 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
18858 '<A HREF="h_flag_new">N</A>' (New), or blank.
18860 If you are using a threaded view of the index and this message is at the
18861 top of a collapsed portion of a thread,
18862 then this token refers to all of the messages in the collapsed portion of
18863 the thread instead of just the top message.
18864 The first character will be a '*' if <EM>any</EM> of the messages in the thread
18865 are marked Important, else a '+' if any of the messages are addressed
18866 to you, else a '-' if any of the messages are cc'd to you.
18867 The third character will be a 'D' if <EM>all</EM> of the messages
18868 in the collapsed thread are marked deleted,
18869 an 'A' if <EM>all</EM> of the messages
18870 in the collapsed thread are marked answered,
18871 it will be an 'N' if any of
18872 the messages are undeleted and unseen, and it will be blank otherwise.
18873 </DD>
18875 <DT>FULLSTATUS</DT>
18876 <DD>
18877 This token represents a less abbreviated alternative
18878 to the &quot;STATUS&quot; token.
18879 It is six characters wide.
18880 The first character is '+', '-', or blank, the
18881 second blank, the third either '*' or blank, the fourth
18882 '<A HREF="h_flag_new">N</A>' or blank,
18883 the fifth '<A HREF="h_flag_answered">A</A>'
18884 or blank, and the sixth character is
18885 either '<A HREF="h_flag_deleted">D</A>' or
18886 blank.
18888 If you are using a threaded view of the index and this message is at the
18889 top of a collapsed portion of a thread,
18890 then this token refers to all of the messages in the collapsed portion of
18891 the thread instead of just the top message.
18892 The first character is '+', '-', or blank depending on whether <EM>any</EM>
18893 of the messages in the collapsed thread are addressed to you or cc'd to you.
18894 The third character will be '*' if any of the messages are marked
18895 Important.
18896 The fourth character will be 'N' if all of the messages in the thread
18897 are New, else 'n' if some of the messages in the thread are New, else blank.
18898 The fifth character will be 'A' or 'a' or blank, and the sixth character
18899 will be 'D' or 'd' or blank.
18900 </DD>
18902 <DT>IMAPSTATUS</DT>
18903 <DD>
18904 This token represents an even less abbreviated alternative to the
18905 &quot;STATUS&quot; token.
18906 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
18907 an 'N' if the message is new to this folder since the last time
18908 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
18909 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
18910 new to the folder since it was last opened <EM>but</EM> has not been
18911 viewed, or a blank if the message has been in the folder since it was
18912 last opened and has been viewed.
18914 If you are using a threaded view of the index and this message is at the
18915 top of a collapsed portion of a thread,
18916 then the fourth character will be
18917 'N' if all of the messages in the thread are unseen and recent;
18918 else 'n' if some of the messages in the thread are unseen and recent;
18919 else 'U' if all of the messages in the thread are unseen and not recent;
18920 else 'u' if some of the messages in the thread are unseen and not recent;
18921 else 'R' if all of the messages in the thread are seen and recent;
18922 else 'r' if some of the messages in the thread are seen and recent;
18923 else blank.
18924 </DD>
18926 <DT>SHORTIMAPSTATUS</DT>
18927 <DD>
18928 This is the same as the last four of the six characters of IMAPSTATUS,
18929 so the '+' To Me information will be missing.
18930 </DD>
18932 <DT>SIZE</DT>
18933 <DD>
18934 This token represents the total size, in bytes, of the message.
18935 If a &quot;K&quot; (Kilobyte)
18936 follows the number, the size is approximately 1,000
18937 times that many bytes (rounded to the nearest 1,000).
18938 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18939 1,000,000 times that many bytes.
18940 Commas are not used in this field.
18941 This field is seven characters wide, including the enclosing parentheses.
18942 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18943 The progression of sizes used looks like:
18946 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
18948 </DD>
18950 <DT>SIZECOMMA</DT>
18951 <DD>
18952 This token represents the total size, in bytes, of the message.
18953 If a &quot;K&quot; (Kilobyte)
18954 follows the number, the size is approximately 1,000
18955 times that many bytes (rounded to the nearest 1,000).
18956 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18957 1,000,000 times that many bytes.
18958 Commas are used if the number shown is 1,000 or greater.
18959 The SIZECOMMA field is one character wider than the SIZE field.
18960 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18961 The progression of sizes used looks like:
18964 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
18966 </DD>
18968 <DT>KSIZE</DT>
18969 <DD>
18970 This token represents the total size of the message, expressed in
18971 kilobytes or megabytes, as most appropriate.
18972 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
18973 The progression of sizes used looks like:
18976 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
18978 </DD>
18980 <DT>SIZENARROW</DT>
18981 <DD>
18982 This token represents the total size, in bytes, of the message.
18983 If a &quot;K&quot; (Kilobyte)
18984 follows the number, the size is approximately 1,000
18985 times that many bytes.
18986 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18987 1,000,000 times that many bytes.
18988 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
18989 1,000,000,000 times that many bytes.
18990 This field uses only five characters of screen width, including the enclosing
18991 parentheses.
18992 The progression of sizes used looks like:
18995 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
18997 </DD>
18999 <DT>DESCRIPSIZE</DT>
19000 <DD>
19001 This token is intended to represent a more useful description of the
19002 message than just its size, but it isn't very useful at this point.
19003 The plus sign in this view means there are attachments.
19004 Note that including this token in
19005 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19006 display a little while Alpine collects the necessary information.
19007 </DD>
19009 <DT>SUBJKEY</DT>
19010 <DD>
19011 This token is the same as the SUBJECT token unless keywords are set for
19012 the message.
19013 In that case, a list of keywords enclosed in braces will be prepended to
19014 the subject of the message.
19015 Only those keywords that you have defined in your
19016 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19017 in Setup/Config are considered in the list.
19018 In other words, keywords that have been set by some other means, perhaps
19019 by another email program, won't show up unless included in
19020 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19021 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19022 prepended to the subject in the MESSAGE TEXT screen.
19023 If you have given a keyword a nickname
19024 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19025 instead of the actual keyword.
19026 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19027 option may be used to modify this token slightly.
19028 It is also possible to color keywords in the index using the
19029 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19030 </DD>
19032 <DT>SUBJKEYINIT</DT>
19033 <DD>
19034 This token is the same as the SUBJKEY token except that instead of
19035 prepending a list of keywords to the subject, a list of first initials
19036 of keywords will be prepended instead.
19037 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19038 set (or Work and Now are the Alpine nicknames of keywords that are set)
19039 then the SUBJKEY token would cause a result like
19041 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19043 whereas the SUBJKEYINIT token would give
19045 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19047 Only those keywords that you have defined in your
19048 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19049 in Setup/Config are considered in the list.
19050 In other words, keywords that have been set by some other means, perhaps
19051 by another email program, won't show up unless included in
19052 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19053 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19054 option may be used to modify this token slightly.
19055 It is also possible to color keywords in the index using the
19056 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19057 </DD>
19059 <DT>SUBJECTTEXT</DT>
19060 <DD>
19061 Same as SUBJECT but if there is room in the Subject field for more text,
19062 the opening part of the text of the message is displayed after the subject.
19063 The time needed to fetch the text may cause a performance problem
19064 which can, of course, be avoided by using the SUBJECT version of
19065 the Subject instead.
19066 You may color this opening text differently by using the
19067 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19068 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19069 You may adjust the characters that are displayed between the Subject and the
19070 opening text with the option
19071 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19072 </DD>
19074 <DT>SUBJKEYTEXT</DT>
19075 <DD>
19076 Same as SUBJKEY but with the opening message text.
19077 </DD>
19079 <DT>OPENINGTEXT</DT>
19080 <DD>
19081 This is similar to SUBJECTTEXT.
19082 Instead of combining the Subject and the opening text in a single
19083 field in the index screen this token allows you to allocate a
19084 separate column just for the opening text of the message.
19085 The time needed to fetch this text may cause a performance problem.
19086 You may color this opening text differently by using the
19087 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19088 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19089 </DD>
19091 <DT>OPENINGTEXTNQ</DT>
19092 <DD>
19093 This is very similar to OPENINGTEXT.
19094 The NQ stands for No Quotes.
19095 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19096 For some messages this may be confusing.
19097 For example, a message might have a line preceding some quoted
19098 text that reads something like &quot;On May 8th person A said.&quot;
19099 That no longer makes sense after the quoted text is deleted and it
19100 will appear that person A said whatever the text after the quote
19101 is, even though that is really person B talking.
19102 </DD>
19104 <DT>SUBJKEYINITTEXT</DT>
19105 <DD>
19106 Same as SUBJKEYINIT but with the opening message text.
19107 </DD>
19109 <DT>KEY</DT>
19110 <DD>
19111 This is a space-delimited list of keywords that are set for the message.
19112 Only those keywords that you have defined in your
19113 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19114 in Setup/Config are considered in the list.
19115 In other words, keywords that have been set by some other means, perhaps
19116 by another email program, won't show up unless included in
19117 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19118 If you have given a keyword a nickname
19119 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19120 instead of the actual keyword.
19121 It is also possible to color keywords in the index using the
19122 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19123 This token defaults to an arbitrary width of 5.
19124 You should set it to whatever width suits you using something
19125 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19126 </DD>
19128 <DT>KEYINIT</DT>
19129 <DD>
19130 This is a list of keyword initials that are set for the message.
19131 If you have given a keyword a nickname
19132 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19133 is displayed instead of the initial of the actual keyword.
19134 It is also possible to color keyword initials in the index using the
19135 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19136 This token defaults to an arbitrary width of 2.
19137 You should set it to whatever width suits you using something
19138 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19139 </DD>
19141 <DT>PRIORITY</DT>
19142 <DD>
19143 The X-Priority header is a non-standard header that is used in a
19144 somewhat standard way by many mail programs.
19145 Alpine expects the value of this header to be a digit with a value
19146 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19147 Since this priority is something that the sender sets it is only an indication
19148 of the priority that the sender attaches to the mail and it is therefore almost
19149 totally unreliable for use as a filtering criterion.
19150 This token will display the numeric value of the priority if it is between
19151 1 and 5.
19152 It will be suppressed (blank) if the value is 3, which is normal priority.
19153 This token may be colored with the
19154 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19155 </DD>
19157 <DT>PRIORITYALPHA</DT>
19158 <DD>
19159 This is a more verbose interpretation of the X-Priority field.
19160 Once again nothing is displayed unless the value of the field
19161 is 1, 2, 4, or 5.
19162 The values displayed for those values are:
19164 <TABLE>
19165 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19166 <TR> <TD>2</TD> <TD>High</TD> </TR>
19167 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19168 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19169 </TABLE>
19171 This token may be colored with the
19172 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19173 </DD>
19175 <DT>PRIORITY!</DT>
19176 <DD>
19177 This is a one character, non-numeric version of the X-Priority field.
19178 If the value of the X-Priority header is 1 or 2 an exclamation
19179 point is displayed.
19180 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19181 This token may be colored with the
19182 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19183 </DD>
19185 <DT>ATT</DT>
19186 <DD>
19187 This is a one column wide field that represents the number of attachments
19188 a message has. It will be blank if there are no attachments, a single
19189 digit for one to nine attachments, or an asterisk for more than nine.
19190 Note that including this token in
19191 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19192 display a little while Alpine collects the necessary information.
19193 </DD>
19195 <DT>FROMORTO</DT>
19196 <DD>
19197 This token represents <EM>either</EM> the personal name (or email address) of
19198 the person listed in the message's &quot;From:&quot; header
19199 field, <EM>or</EM>, if that address is yours or one of your
19200 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19201 the first person specified in the
19202 message's &quot;To:&quot; header field
19203 with the prefix &quot;To: &quot; prepended.
19204 If the from address is yours and there is also no &quot;To&quot; address,
19205 Alpine will use the address on the &quot;Cc&quot; line.
19206 If there is no address there, either, Alpine will look for a newsgroup name
19207 from the &quot;Newsgroups&quot; header field and put
19208 that after the &quot;To: &quot; prefix.
19209 </DD>
19211 <DT>FROMORTONOTNEWS</DT>
19212 <DD>
19213 This is almost the same as <EM>FROMORTO</EM>.
19214 The difference is that newsgroups aren't considered.
19215 When a message is from you, doesn't have a To or Cc, and does have
19216 a Newsgroups header; this token will be your name instead of the name
19217 of the newsgroup (like it would be with FROMORTO).
19218 </DD>
19220 <DT>TEXT</DT>
19221 <DD>
19222 This is a different sort of token.
19223 It allows you to display a label within each index line.
19224 It will be the same fixed text for each line.
19225 It is different from all the other tokens in that there is no space column
19226 displayed after this token.
19227 Instead, it is butted up against the following field.
19228 It also has a different syntax.
19229 The text to display is given following a colon after the
19230 word &quot;TEXT&quot;.
19231 For example,
19233 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19235 would insert the literal text &quot;abc=&quot; (without the quotes)
19236 into the index display line.
19237 You must quote the text if it includes space characters, like
19239 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19241 </DD>
19243 <DT>HEADER</DT>
19244 <DD>
19245 This allows you to display the text from a particular header line in the
19246 message.
19247 The syntax for this token is substantially different from all the others
19248 in order that you might be able to display a portion of the text following
19249 a particular header.
19250 The header name you are interested in is given following a colon
19251 after the word &quot;HEADER&quot;.
19252 For example,
19254 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19256 would display the text of the X-Spam header, if any.
19257 Like for other index tokens a width field may (and probably should)
19258 follow this.
19260 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19262 displays the first ten characters of the X-Spam header.
19263 Unlike other index tokens, the syntax for HEADER is more flexible.
19264 An optional second argument comes after a comma inside the parentheses.
19265 It specifies the &quot;field&quot; number.
19266 By default, the field separator is a space character.
19267 No extra space characters are allowed in the argument list.
19269 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19271 would display the second field, left-justified, in a 10 character
19272 wide field.
19273 The second field would consist of all the text after the first space
19274 up to the next space or the end of the header.
19275 The default field number is zero, which stands for the entire line.
19276 There is also an optional third argument that is a list of field
19277 separators. It defaults to a space character.
19278 The example
19280 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19282 would cause the field separators to be any of colon, percent,
19283 or space (there is a space character between the percent and the
19284 right parenthesis).
19285 The first field runs from the start of the header value up to the first
19286 colon, percent, or space; the second goes from there to the next; and so on.
19287 In order to use a comma character as a field separator you must escape
19288 it by preceding it with a backslash (&#92;).
19289 The same is true of the backslash character itself.
19290 There is one further optional argument.
19291 It is an R or an L to specify right or left adjustment of the text
19292 within the field.
19293 The default is to left justify, however if you are displaying numbers
19294 you might prefer to right justify.
19296 Here's an example of a SpamAssassin header.
19297 The exact look of the header will vary, but if your incoming mail
19298 contains headers that look like the following
19300 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19302 you might want to display the hits value.
19303 The first field starts with the Y in Yes.
19304 To get what you're interested in you might use &quot;=&quot; and
19305 space as the field separators and display the third field, like
19307 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19309 or maybe you would break at the dot instead
19311 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19313 Another example we've seen has headers that look like
19315 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19317 Because there are two equals and a comma before the 7% and a comma
19318 after it, the token
19320 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19322 should display the probability (for example 7% or 83%) right justified
19323 in a 3-wide field.
19324 </DD>
19326 <DT>ARROW</DT>
19327 <DD>
19328 This gives an alternative way to display the current message in the
19329 MESSAGE INDEX screen.
19330 Usually the current message is indicated by the line being shown in
19331 reverse video.
19332 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19333 the current line will include an &quot;arrow&quot; that
19334 looks like
19336 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19338 in the ARROW token's field.
19339 For all of the non-current messages, the ARROW field will be filled
19340 with blanks.
19341 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19342 may be adjusted.
19343 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19344 For example, if you use ARROW(3) you will get
19346 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19348 and ARROW(1) will give you just
19350 <CENTER><SAMP>&gt;</SAMP></CENTER>
19352 It is also possible to set the color of the ARROW field.
19353 By default (and for non-current messages) the arrow is colored the same
19354 as the index line it is part of.
19355 You may set it to be another color with the 
19356 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19357 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19358 </DD>
19360 <DT>SCORE</DT>
19361 <DD>
19362 This gives the
19363 <a href="h_rules_score">score</a>
19364 of each message.
19365 This will be six columns wide to accomodate the widest possible score.
19366 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19367 to limit the width of the field to the widest score that
19368 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19369 If you have not defined any score rules the scores will all be zero.
19370 If any of your score rules contain AllText or BodyText patterns
19371 then including SCORE in the <!--#echo var="VAR_index-format"-->
19372 may slow down the display of the MESSAGE INDEX screen.
19373 </DD>
19374 </DL>
19377 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19379 <DL>
19380 <DT>CURNEWS</DT>
19381 <DD>
19382 This token represents the current newsgroup if there is one.
19383 For example, &quot;comp.mail.pine&quot;.
19384 </DD>
19386 <DT>MSGID</DT>
19387 <DD>
19388 This token represents the message ID of the message.
19389 This token does not work with Filter Rule folder names.
19390 </DD>
19392 <DT>CURDATE</DT>
19393 <DD>
19394 This token represents the current date.
19395 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19396 </DD>
19398 <DT>CURDATEISO</DT>
19399 <DD>
19400 This token represents the current date.
19401 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19402 </DD>
19404 <DT>CURDATEISOS</DT>
19405 <DD>
19406 This token represents the current date.
19407 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19408 </DD>
19410 <DT>CURPREFDATE</DT>
19411 <DD>
19412 This token represents the current date.
19413 It is your operating system's idea of the preferred date representation for the current locale.
19414 Internally it uses the %x version of the date from the strftime routine.
19415 </DD>
19417 <DT>CURPREFTIME</DT>
19418 <DD>
19419 This token represents the current time.
19420 It is the preferred time representation for the current locale.
19421 Internally it uses the %X version of the time from the strftime routine.
19422 </DD>
19424 <DT>CURPREFDATETIME</DT>
19425 <DD>
19426 This token represents the current date and time.
19427 It is the preferred date and time representation for the current locale.
19428 Internally it uses the %c version of the time from the strftime routine.
19429 </DD>
19431 <DT>CURTIME24</DT>
19432 <DD>
19433 This token represents the current time.
19434 It has the format HH:MM. For example, &quot;17:28&quot;.
19435 </DD>
19437 <DT>CURTIME12</DT>
19438 <DD>
19439 This token represents the current time.
19440 This time is for a 12 hour clock.
19441 It has the format HH:MMpm.
19442 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19443 </DD>
19445 <DT>CURDAY</DT>
19446 <DD>
19447 This token represents the current day of the month.
19448 For example, &quot;23&quot; or &quot;9&quot;.
19449 </DD>
19451 <DT>CURDAY2DIGIT</DT>
19452 <DD>
19453 This token represents the current day of the month.
19454 For example, &quot;23&quot; or &quot;09&quot;.
19455 It is always 2 digits.
19456 </DD>
19458 <DT>CURDAYOFWEEK</DT>
19459 <DD>
19460 This token represents the current day of the week.
19461 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19462 </DD>
19464 <DT>CURDAYOFWEEKABBREV</DT>
19465 <DD>
19466 This token represents the current day of the week.
19467 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19468 </DD>
19470 <DT>CURMONTH</DT>
19471 <DD>
19472 This token represents the current month.
19473 For example, &quot;10&quot; or &quot;9&quot;.
19474 </DD>
19476 <DT>CURMONTH2DIGIT</DT>
19477 <DD>
19478 This token represents the current month.
19479 For example, &quot;10&quot; or &quot;09&quot;.
19480 It is always 2 digits.
19481 </DD>
19483 <DT>CURMONTHLONG</DT>
19484 <DD>
19485 This token represents the current month.
19486 For example, &quot;October&quot;.
19487 </DD>
19489 <DT>CURMONTHABBREV</DT>
19490 <DD>
19491 This token represents the current month.
19492 For example, &quot;Oct&quot;.
19493 </DD>
19495 <DT>CURYEAR</DT>
19496 <DD>
19497 This token represents the current year.
19498 For example, &quot;1998&quot; or &quot;2001&quot;.
19499 </DD>
19501 <DT>CURYEAR2DIGIT</DT>
19502 <DD>
19503 This token represents the current year.
19504 For example, &quot;98&quot; or &quot;01&quot;.
19505 It is always 2 digits.
19506 </DD>
19508 <DT>LASTMONTH</DT>
19509 <DD>
19510 This token represents last month.
19511 For example, if this is November (the 11th month),
19512 it is equal to &quot;10&quot; or if this is October (the 10th month),
19513 it is &quot;9&quot;.
19514 It is possible that this and the other tokens beginning with LASTMONTH
19515 below could be useful when used with a Filtering Rule that
19516 has the &quot;Beginning of Month&quot; option set.
19517 </DD>
19519 <DT>LASTMONTH2DIGIT</DT>
19520 <DD>
19521 This token represents last month.
19522 For example, if this is November (the 11th month),
19523 it is equal to &quot;10&quot; or if this is October (the 10th month),
19524 it is &quot;09&quot;.
19525 It is always 2 digits.
19526 </DD>
19528 <DT>LASTMONTHLONG</DT>
19529 <DD>
19530 This token represents last month.
19531 For example, if this is November the value is &quot;October&quot;.
19532 </DD>
19534 <DT>LASTMONTHABBREV</DT>
19535 <DD>
19536 This token represents last month.
19537 For example, if this is November the value is &quot;Oct&quot;.
19538 </DD>
19540 <DT>LASTMONTHYEAR</DT>
19541 <DD>
19542 This token represents what the year was a month ago.
19543 For example, if this is October, 1998, it is &quot;1998&quot;.
19544 If this is January, 1998, it is &quot;1997&quot;.
19545 </DD>
19547 <DT>LASTMONTHYEAR2DIGIT</DT>
19548 <DD>
19549 This token represents what the year was a month ago.
19550 For example, if this is October, 1998, it is &quot;98&quot;.
19551 If this is January, 1998, it is &quot;97&quot;.
19552 </DD>
19554 <DT>LASTYEAR</DT>
19555 <DD>
19556 This token represents last year.
19557 For example, if this is 1998, it equals &quot;1997&quot;.
19558 It is possible that this
19559 could be useful when used with a Filtering Rule that
19560 has the &quot;Beginning of Year&quot; option set.
19561 </DD>
19563 <DT>LASTYEAR2DIGIT</DT>
19564 <DD>
19565 This token represents last year.
19566 For example, if this is 1998, it equals &quot;97&quot;.
19567 It is always 2 digits.
19568 </DD>
19570 <DT>ROLENICK</DT>
19571 <DD>
19572 This token represents the nickname of the
19573 role currently being used.  If no role is being used,
19574 then no text will be printed for this token.
19575 This token does not work with Filter Rule folder names.
19576 </DD>
19577 </DL>
19580 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
19581 See the help for the
19582 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
19583 to see why you might want to use this.
19584 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
19585 must be surrounded by underscores when used.
19587 <DL>
19588 <DT>NEWLINE</DT>
19589 <DD>
19590 This is an end of line marker.
19591 </DD>
19592 </DL>
19595 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
19597 <DL>
19598 <DT>CURSORPOS</DT>
19599 <DD>
19600 This token is different from the others.
19601 When it is replaced it is replaced with nothing, but it sets an Alpine
19602 internal variable that tells the composer to start with the cursor
19603 positioned at the position where this token was.
19604 If both the template file and the signature file contain
19605 a &quot;CURSORPOS&quot; token, then the position in the template file
19606 is used.
19607 If there is a template file and neither it nor the signature file contains
19608 a &quot;CURSORPOS&quot; token, then the cursor is positioned
19609 after the end of the contents of the
19610 template file when the composer starts up.
19611 </DD>
19612 </DL>
19615 &lt;End of help on this topic&gt;
19616 </BODY>
19617 </HTML>
19618 ======= h_reply_token_conditionals =======
19619 <HTML>
19620 <HEAD>
19621 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
19622 </HEAD>
19623 <BODY>
19624 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
19626 Conditional text inclusion may be used with
19627 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19628 in signature files, and in template files used in
19629 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
19630 It may <EM>not</EM> be used with the
19631 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
19634 There is a limited if-else capability for including text.
19635 The if-else condition is based
19636 on whether or not a given token would result in replacement text you
19637 specify.
19638 The syntax of this conditional inclusion is
19640 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
19642 The left parenthesis must follow the underscore immediately, with no
19643 intervening space.
19644 It means the token is expanded and the results of that expansion are
19645 compared against the &quot;match_this&quot; argument.
19646 If there is an exact match, then the &quot;if_matched&quot; text is used
19647 as the replacement text.
19648 Otherwise, the &quot;if_not_matched&quot; text is used.
19649 One of the most useful values for the &quot;match_this&quot; argument is
19650 the empty string, &quot;&quot;.
19651 In that case the expansion is compared against the empty string.
19653 Here's an example to make it clearer.
19654 This text could be included in one of your template files:
19656 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
19658 If that is included in a template file that you are using while replying
19659 to a message (because you chose to use the role it was part of),
19660 and that message has a newsgroup header and a newsgroup in that header,
19661 then the text
19663 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
19665 will be included in the message you are about to compose.
19666 On the other hand, if the message you are replying to does not have
19667 a newsgroup, then the text
19669 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
19671 would be included instead.
19672 This would also work in signature files and in
19673 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
19674 If the &quot;match_this&quot;, &quot;if_matched&quot;,
19675 or &quot;if_not_matched&quot; arguments contain
19676 spaces, parentheses, or commas;
19677 they have to be quoted with double quotation marks (like in the example
19678 above).
19679 If you want to include a literal quote (&quot;) in the text you must escape the
19680 quote by preceding it with a backslash (&#92;) character.
19681 If you want to include a literal backslash character you must escape it
19682 by preceding it with another backslash.
19684 The comma followed by &quot;if_not_matched&quot; is optional.
19685 If there is no &quot;if_not_matched&quot;
19686 present then no text is included if the not_matched case is true.
19687 Here's another example:
19689 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
19691 Here you can see that tokens may appear in the arguments.
19692 The same is true for tokens with the conditional parentheses.
19693 They may appear in arguments,
19694 though you do have to be careful to get the quoting and escaping of
19695 nested double quotes correct.
19696 If this was in the signature file being used and you were replying to a message
19697 sent to comp.mail.pine the resulting text would be:
19699 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
19701 If you were replying to a message that wasn't sent to any newsgroup the
19702 resulting text would be a single blank line.
19703 The reason you'd get a blank line is because the end of the line is
19704 outside of the conditional, so is always included.
19705 If you wanted to get rid of that blank line you could do so by moving
19706 the end of line inside the conditional.
19707 In other words, it's ok to have multi-line
19708 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
19709 template file.
19710 The text just continues until the next double quotation, even if it's not
19711 on the same line.
19713 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
19715 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
19717 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
19718 while reading the newsgroup comp.mail.pine the resulting text would be:
19720 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
19722 If you were replying to a message while reading an email folder instead
19723 of a newsgroup the resulting leadin text would be
19725 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
19727 Here's one more (contrived) example illustrating a matching argument
19728 that is not the empty string.
19730 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
19732 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
19733 were replying to
19734 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
19735 would be
19737 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
19739 But if you were replying to a message sent on Oct. 27 (and that wasn't
19740 today) you would get
19742 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
19745 &lt;End of help on this topic&gt;
19746 </BODY>
19747 </HTML>
19748 ======= h_composer_cntxt_nick =======
19749 <HTML>
19750 <HEAD>
19751 <TITLE>Collection Nickname Explained</TITLE>
19752 </HEAD>
19753 <BODY>
19754 <H1>Collection Edit Help -- Nickname Field</H1>
19756 This field is provided so you can add a short nickname to use when
19757 referring to this collection within Alpine.  Spaces are allowed, and
19758 you don't need to use double-quotes.  However, the double-quote
19759 character is not allowed.
19761 Look <A HREF="h_edit_nav_cmds">here</A>
19762 to see the available Editing and Navigation commands.
19764 &lt;End of help on this topic&gt;
19765 </BODY>
19766 </HTML>
19767 ======= h_folder_server_syntax =======
19768 <HTML>
19769 <HEAD>
19770 <TITLE>Server Name Syntax</TITLE>
19771 </HEAD>
19772 <BODY>
19773 <H1>Server Name Syntax</H1>
19775 This help describes the syntax that may be used for server names
19776 that may be associated with remote folders or SMTP servers.
19779 A server name is the hostname of the server.
19780 It's a good idea to use the host's fully-qualified network name.
19783 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
19786 However, IP addresses are allowed if surrounded
19787 with square-brackets.
19790 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
19793 An optional network port number may be supplied by appending
19794 a colon (:) followed by the port number
19795 to the server name.
19796 By default, the IMAP port number, 143, is used.
19799 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
19802 Besides server name and optional port number, various other optional
19803 parameters may be supplied that alter Alpine's interaction with the server.
19804 A parameter is supplied by appending a slash (/) character followed by
19805 the parameter's name and,
19806 depending on the particular parameter, the value assigned to that
19807 name, to the server name (and optional port number).
19808 Parameter names are <EM>not</EM> case sensitive.
19809 Currently supported parameters include:
19811 <DL>
19813 <DT>User</DT>
19814 <DD>This parameter requires an associated value, and is intended to
19815 provide the username identifier with which to establish the server
19816 connection.
19817 If your SMTP server offers SMTP AUTH authentication, adding this 
19818 parameter to the
19819 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
19820 option will cause Alpine to attempt to authenticate to the server using the
19821 supplied username.
19822 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
19823 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
19824 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
19825 option (or to the server name for any folder collection using NNTP)
19826 will cause Alpine to attempt
19827 to authenticate to the server using the supplied username.
19828 An example might be:
19831 <CENTER><SAMP>/user=katie</SAMP></CENTER>
19834 </DD>
19836 <DT>TLS</DT>
19837 <DD>
19838 Normally, when a new connection is made an attempt is made to 
19839 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
19840 If that fails then a non-encrypted connection will be attempted instead.
19841 This is a unary parameter indicating communication with the server must 
19842 take place over a TLS connection. If the attempt to use TLS fails then
19843 this parameter will cause the connection to fail instead of falling
19844 back to an unsecure connection.
19847 <CENTER><SAMP>/tls</SAMP></CENTER>
19850 </DD>
19852 <DT>SSL</DT>
19853 <DD>
19854 This is a unary parameter indicating communication with the server should 
19855 take place over a Secure Socket Layer connection.  The server must support
19856 this method, and be prepared to accept connections on the appropriate
19857 port (993 by default).
19858 Alpine must be linked with an SSL library for this option to be operational.
19861 <CENTER><SAMP>/ssl</SAMP></CENTER>
19864 </DD>
19866 <DT>TLS1</DT>
19867 <DD>
19868 This parameter indicates that the connection to the server will be made
19869 over the SSL port, but using the TLSv1 protocol, instead of the usual
19870 SSLv3 or SSLv2 protocols.
19871 Alpine must be linked with an SSL library for this option to be operational.
19874 <CENTER><SAMP>/tls1</SAMP></CENTER>
19877 </DD>
19879 <DT>DTLS1</DT>
19880 <DD>
19881 This parameter indicates that the connection to the server will be made
19882 over the SSL port, but using the DTLSv1 protocol, instead of the usual
19883 SSLv3 or SSLv2 protocols.
19884 Alpine must be linked with an SSL library for this option to be operational.
19887 <CENTER><SAMP>/dtls1</SAMP></CENTER>
19890 </DD>
19892 <DT>TLS1_1</DT>
19893 <DD>
19894 This parameter indicates that the connection to the server will be made
19895 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
19896 SSLv3 or SSLv2 protocols.
19897 Alpine must be linked with an SSL library for this option to be operational.
19900 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
19903 </DD>
19905 <DT>TLS1_2</DT>
19906 <DD>
19907 This parameter indicates that the connection to the server will be made
19908 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
19909 SSLv3 or SSLv2 protocols.
19910 Alpine must be linked with an SSL library for this option to be operational.
19913 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
19916 </DD>
19919 <DT>NoValidate-Cert</DT>
19920 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
19921 This is needed if the server uses self-signed certificates or if Alpine
19922 cannot validate the certificate for some other known reason.
19924 </DD>
19926 <DT>Anonymous</DT>
19927 <DD>This is a unary parameter (that means it does not have a value)
19928 indicating that the connection be logged in as
19929 &quot;anonymous&quot; rather than a specific user.
19930 Not all servers offer anonymous
19931 access; those which do generally only offer read-only access to certain
19932 &quot;public&quot; folders.
19935 <CENTER><SAMP>/anonymous</SAMP></CENTER>
19938 </DD>
19940 <DT>Secure</DT>
19941 <DD>This is a unary parameter indicating that the connection use the
19942 most secure authentication method mutually supported by Alpine and the
19943 server.
19944 Alpine is capable of authenticating connections to 
19945 the server using several methods.
19946 By default, Alpine will attempt each
19947 method until either a connection is established or the
19948 list of methods is exhausted.
19949 This parameter causes Alpine to instead fail 
19950 the connection if the first (generally most &quot;secure&quot;) method fails.
19953 <CENTER><SAMP>/secure</SAMP></CENTER>
19956 </DD>
19958 <DT>Submit</DT>
19959 <DD>This is a unary parameter for use with the
19960 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
19961 It indicates that the connection should be made to the Submit server
19962 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
19963 (port 587) instead of the SMTP port (25).
19964 At the time this help was written the submit option was equivalent to
19965 specifying port 587.
19968 <CENTER><SAMP>/submit</SAMP></CENTER>
19972 <CENTER><SAMP>host:587</SAMP></CENTER>
19975 </DD>
19977 <DT>Debug</DT>
19978 <DD>This is a unary parameter indicating that the connection be established
19979 in a verbose mode.  Basically, it causes Alpine to log the communication with
19980 the server in Alpine's debug file.
19981 Normally, the pine -d command-line flag would be used instead.
19983 </DD>
19985 <DT>NoRsh</DT>
19986 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
19987 the UNIX remote shell program.
19988 Including &quot;NoRsh&quot; will cause connections to this server to skip
19989 the &quot;rsh&quot; attempt.
19990 This might be useful to avoid long timeouts caused by rsh firewalls, for
19991 example.
19993 </DD>
19995 <DT>Service</DT>
19996 <DD>This parameter requires an associated value.  The default value is
19997 &quot;IMAP&quot; which indicates communication with the server based
19998 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
19999 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20001 Other service values include:
20002  <DL>
20003  <DT>NNTP</DT>
20004  <DD>This value indicates communication with the server takes place via
20005 the Network News Transfer Protocol.  Use this to define a collection
20006 of newsgroups on a remote news server.  So
20009 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20011 or just
20013 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20016 is the way to specify NNTP access.
20018  </DD>
20020  <DT>POP3</DT>
20021  <DD>This value indicates communication with the server takes place via the
20022 Post Office Protocol 3 protocol.
20025 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20027 or just
20029 <CENTER><SAMP>/POP3</SAMP></CENTER>
20032 Note that there are several important issues
20033 to consider when selecting this option:
20034 <OL>
20035  <LI> POP3 provides access to only your INBOX.  In other words,
20036 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20037  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20038 model and will leave your mail on the server. Refer to the
20039 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20040  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20041 </OL>
20042 </DD>
20043 </DL>
20044 </DL>
20047 Note that it is possible to include more than one parameter in a server
20048 specification by concatenating the parameters. For example:
20051 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20055 &lt;End of help on this topic&gt;
20056 </BODY>
20057 </HTML>
20058 ======= h_composer_cntxt_server =======
20059 <HTML>
20060 <HEAD>
20061 <TITLE>Collection Server: Explained</TITLE>
20062 </HEAD>
20063 <BODY>
20064 <H1>Collection Edit Help -- Server Field</H1>
20066 This collection's &quot;Server:&quot; definition indicates the
20067 hostname of the server providing access to the folders in this
20068 collection.
20069 The syntax of this server name is the same as for other server names used
20070 in remote folder names in
20071 Alpine and is described
20072 <A HREF="h_folder_server_syntax">here</A>.
20075 &lt;End of help on this topic&gt;
20076 </BODY>
20077 </HTML>
20078 ======= h_composer_cntxt_path =======
20079 <HTML>
20080 <HEAD>
20081 <TITLE>Collection Path: Explained</TITLE>
20082 </HEAD>
20083 <BODY>
20084 <H1>Collection Edit Help -- Path Field</H1>
20086 The collection's &quot;Path:&quot; definition indicates the location
20087 of the folders in this collection.  If the path or any of its components
20088 do not exist, Alpine will prompt you for their creation when exiting the
20089 Add/Change screen.
20091 <P> 
20092 By default the path is interpreted as defining a section of your personal
20093 folder area.  This area and how you specify it are defined by the
20094 server, if one is specified in the collection, or, typically, the home
20095 directory if no server is defined.
20098 To define a collection outside the default &quot;area&quot;, prefix
20099 the path with the &quot;namespace&quot; to use when interpreting the
20100 given path.  If a namespace is specified, the Path begins with the
20101 sharp, &quot;#&quot;, character followed by the name of the namespace
20102 and then the namespace's path-element-delimiter.  Aside from the
20103 path's format, namespaces can also imply access rights, content
20104 policy, audience, location, and, occasionally, access methods.
20107 Each server exports its own set (possibly of size one) of 
20108 namespaces.  Hence, it's likely communication with your server's
20109 administrator will be required for specific configurations.  Some of
20110 the more common namespaces, however, include:
20112 <DL>
20113 <DT>#news.</DT>
20114 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20115 names are hierarchically defined with each level delimited by a period.
20116 </DD>
20117 <DT>#public/</DT>
20118 <DD>This specifies a folder area that the server may export to the general
20119 public.
20120 </DD>
20121 <DT>#shared/</DT>
20122 <DD>This specifies a folder area that the folder may export to groups
20123 of users.
20124 </DD>
20125 <DT>#ftp/</DT>
20126 <DD>This specifies a folder area that is the same as that it may have 
20127 exported via the &quot;File Transfer Protocol&quot;.
20128 </DD>
20129 <DT>#mh/</DT>
20130 <DD>This specifies the personal folder area associated with folders
20131 and directories that were created using the MH message handling system.
20132 </DD>
20133 </DL>
20136 In addition, the server may support access to other user's folders,
20137 provided you have suitable permissions.  Common methods use a prefix
20138 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20139 indicate the root of the other user's folder area.
20142 No, nothing's simple.
20145 &lt;End of help on this topic&gt;
20146 </BODY>
20147 </HTML>
20148 ======= h_composer_cntxt_view =======
20149 <HTML>
20150 <HEAD>
20151 <TITLE>Collection View: Explained</TITLE>
20152 </HEAD>
20153 <BODY>
20154 <H1>Collection Edit Help -- View Field</H1>
20156 The collection's &quot;View:&quot; definition provides a way to limit
20157 the displayed list of folders within a collection.  By default, only
20158 folders that contain the specified characters anywhere in their name
20159 are shown in the collection's folder list.
20162 Additionally, you can use a wildcard character to better control
20163 the list of folders selected for display.  The wildcard specifier is
20164 the star, &quot;*&quot;, character.
20167 So, for example, to define a collection of all folders ending with
20168 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20169 quote characters!).  Or, similarly, to define a collection of folders
20170 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20171 specify a view of &quot;a*z&quot;.
20174 &lt;End of help on this topic&gt;
20175 </BODY>
20176 </HTML>
20177 ======= h_composer_abook_add_server =======
20178 <HTML>
20179 <HEAD>
20180 <TITLE>Addressbook Server Name Field Explained</TITLE>
20181 </HEAD>
20182 <BODY>
20183 This field should be left blank if the address book is stored in a regular
20184 file on this system.  If it is a remote address book stored on an IMAP
20185 server then this is the name of that IMAP server.
20187 Look <A HREF="h_edit_nav_cmds">here</A>
20188 to see the available Editing and Navigation commands.
20190 &lt;End of help on this topic&gt;
20191 </BODY>
20192 </HTML>
20193 ======= h_composer_abook_add_folder =======
20194 <HTML>
20195 <HEAD>
20196 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20197 </HEAD>
20198 <BODY>
20199 For a remote address book (one for which the Server Name is filled in)
20200 this is the name of a folder on the remote server. The address book data
20201 will be stored in this folder. This folder should be used only for
20202 storing this single address book, not for other address books or for
20203 other messages.
20205 For a local address book (one for which the Server Name is not filled in)
20206 this is the name of a file in which the address book will be stored.
20207 The file is in the same directory as the Alpine configuration file if the
20208 configuration file is local.
20209 If the configuration file is remote, then this will be in the home directory
20210 for Unix Alpine and in the directory specified by the
20211 &quot;-aux local_directory&quot; command line argument.
20213 Look <A HREF="h_edit_nav_cmds">here</A>
20214 to see the available Editing and Navigation commands.
20216 &lt;End of help on this topic&gt;
20217 </BODY>
20218 </HTML>
20219 ======= h_composer_abook_add_nick =======
20220 <HTML>
20221 <HEAD>
20222 <TITLE>Addressbook NickName Field Explained</TITLE>
20223 </HEAD>
20224 <BODY>
20225 This is just an optional nickname for this address book. If present, it
20226 is used in some of the displays and error messages in the address book
20227 maintenance screens. It is for your convenience only and serves no
20228 other purpose.
20230 Look <A HREF="h_edit_nav_cmds">here</A>
20231 to see the available Editing and Navigation commands.
20233 &lt;End of help on this topic&gt;
20234 </BODY>
20235 </HTML>
20236 ======= h_composer_qserv_cn =======
20237 <HTML>
20238 <HEAD>
20239 <TITLE>Directory Query Form Explained</TITLE>
20240 </HEAD>
20241 <BODY>
20243 Fill in as many of these fields as you wish to narrow down your
20244 search. All the fields you fill in must match in order for an entry
20245 to be returned. You may use the wildcard character &quot;*&quot; in
20246 any of the fields, it matches any zero or more characters at that
20247 point in the string. There are no implicit wildcards, so the match is
20248 exact unless you include wildcards.
20251 Note that if an attribute isn't present at all, then the match will fail.
20252 For example, if a server doesn't support the Locality attribute, then no
20253 matter what you put in the Locality field (other than leaving it empty)
20254 the search will fail.
20257 This field, the Common Name field, is typically a person's full name.
20260 <H1>EDITING and NAVIGATION COMMANDS</H1>
20261 <!--chtml if pinemode="function_key"-->
20262 <PRE>
20263 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20264 ^B (Left Arrow)    Back character       | ^D       Delete current character
20265 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20266 ^P (Up Arrow)      Previous line        |
20267 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20268 ^A                 Beginning of line    |            delete current line
20269 ^E                 End of line          | F10      Undelete line(s)
20270 F7                 Previous page        |
20271 F8                 Next page            |-------------------------------------
20272 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20273 ----------------------------------------|
20274 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20275 F2   Cancel      |   F1    Get help     |
20276 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20277 </PRE>
20278 <!--chtml else-->
20279 <PRE>
20280 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20281 ^B (Left Arrow)    Back character       | ^D       Delete current character
20282 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20283 ^P (Up Arrow)      Previous line        |
20284 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20285 ^A                 Beginning of line    |            delete current line
20286 ^E                 End of line          | ^U       Undelete line(s)
20287 ^Y                 Previous page        |
20288 ^V                 Next page            |-------------------------------------
20289 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20290 ----------------------------------------|
20291 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20292 ^C   Cancel      |   ^G    Get help     |
20293 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20294 </PRE>
20295 <!--chtml endif-->
20296 <P><UL>
20297 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20298 </UL><P>
20299 &lt;End of help on this topic&gt;
20300 </BODY>
20301 </HTML>
20302 ======= h_composer_qserv_sn =======
20304 The Surname is usually the family name of a person.
20306 <End of help on this topic>
20307 ======= h_composer_qserv_gn =======
20309 This is the part of a person's name that isn't the surname or initials.
20311 <End of help on this topic>
20312 ======= h_composer_qserv_mail =======
20314 This is the email address of a person.
20316 <End of help on this topic>
20317 ======= h_composer_qserv_org =======
20319 This is the organization a person belongs to.
20321 <End of help on this topic>
20322 ======= h_composer_qserv_unit =======
20324 This is the organizational unit a person belongs to.
20326 <End of help on this topic>
20327 ======= h_composer_qserv_country =======
20329 This is the country a person belongs to.
20331 <End of help on this topic>
20332 ======= h_composer_qserv_state =======
20334 This is the state a person belongs to.
20336 <End of help on this topic>
20337 ======= h_composer_qserv_locality =======
20339 This is the locality a person belongs to.
20341 <End of help on this topic>
20342 ======= h_composer_qserv_custom =======
20344 This one is for advanced users only! If you put something in this field,
20345 then the rest of the fields are ignored.
20347 This field may be set to the string representation of an LDAP search
20348 filter (see RFC1960). Here are some examples:
20350 To search for an entry with a surname equal to "clinton" you could set
20351 the custom filter to:
20353      (sn=clinton)
20354     
20355 This is equivalent to putting "clinton" in the SurName field.
20356 To search for an entry that has a surname that begins with "clint" and
20357 has a givenname equal to "william" you could use:
20359      (&(sn=clint*)(givenname=william))
20360     
20361 This is equivalent to setting the SurName field to "clint*" and the
20362 GivenName field to "william".
20363 To search for an entry where either the common name OR the email address
20364 contains "abcde" you could use:
20366      (|(cn=*abcde*)(mail=*abcde*))
20368 That isn't equivalent to anything you can do by setting the other fields
20369 because of the OR.
20371 <End of help on this topic>
20372 ======= h_composer_qserv_qq =======
20374 This one is a little different from the rest of the categories.  It causes
20375 a search to be formed from the configured search filter that you filled
20376 in when you added the directory server to your configuration. It can also
20377 be combined with the other fields if you'd like.
20379 <End of help on this topic>
20380 ======= h_address_format =======
20381 <HTML>
20382 <HEAD>
20383 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20384 </HEAD>
20385 <BODY>
20386 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20388 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20389 and then a domain, with no spaces.  
20390 For example, jsmith@art.example.com might be the email address
20391 of a person  
20392 with the username &quot;jsmith&quot; who has an account in the domain
20393 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20394 right of the &quot;@&quot; sign can vary - a shorter example would be 
20395 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20396 organization's domain is specified after the &quot;@&quot; sign); a longer 
20397 example would be 
20398  jsingh@shakti.edutech.example.com
20399 (here, the name of the host &quot;shakti&quot; in the domain 
20400 edutech.example.com is also specified).  
20401 <P>  
20402 If you do not know the exact email address of someone you want to write 
20403 to, ask them what it is using other means of communication than email; or 
20404 use the tools for 
20405 finding people's addresses that are available on the Internet.
20407 If you are sending to someone on the same system as you are, you can leave
20408 the &quot;@&quot; sign and all the information to its right off of the 
20409 address, and Alpine will fill it in automatically, 
20410 unless the feature 
20411 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20414 When an email address you send a message to is not reachable -- either because 
20415 it is simply an incorrect address, or because email can temporarily not be 
20416 delivered to it due to a technical problem on the way to or at the recipient's 
20417 end -- you will almost always get an error notification email message back.
20419 If you encounter problems with, or have questions about, email delivery or
20420 email address syntax, contact your local network computing consultants.
20421 <P><UL>
20422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20423 </UL>
20425 &lt;End of help on this topic&gt;
20426 </BODY>
20427 </HTML>
20428 ======= h_flag_user_flag =======
20429 <HTML>
20430 <HEAD>
20431 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20432 </HEAD>
20433 <BODY>
20434 <H1>STATUS FLAG: User Defined Keyword</h1>
20436 This is a keyword that is defined for this folder.
20437 It was most likely defined by the owner of the folder.
20438 Alpine will not set or clear this flag on its own.
20440 <P><UL>
20441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20442 </UL><P>
20443 &lt;End of help on this topic&gt;
20444 </BODY>
20445 </HTML>
20446 ======= h_flag_important =======
20447 <html>
20448 <title>STATUS FLAG: Important</title>
20449 <body>
20450 <h1>STATUS FLAG: Important</h1>
20453 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
20454 MESSAGE&nbsp;INDEX
20455 screen, can only be set by the user, and is intended to be used in
20456 whatever fashion makes sense to you.  You are the only one that can set or
20457 clear it. 
20460 &lt;End of help on this topic&gt;
20461 </BODY>
20462 </HTML>
20463 ======= h_flag_new =======
20464 <html>
20465 <title>STATUS FLAG: New</title>
20466 <body>
20467 <h1>STATUS FLAG: New</h1>
20470 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
20471 MESSAGE&nbsp;INDEX screen,
20472 is automatically set when messages are delivered to your Inbox (or other
20473 folder specified outside of Alpine).  Likewise, it is cleared automatically
20474 the first time you read the message it is associated with.
20477 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
20478 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
20479 you'd like to be reminded of it next time you read mail.  This can be done
20480 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
20484 &lt;End of help on this topic&gt;
20485 </BODY>
20486 </HTML>
20487 ======= h_flag_answered =======
20488 <html>
20489 <title>STATUS FLAG: Answered</title>
20490 <body>
20491 <h1>STATUS FLAG: Answered</h1>
20493 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
20494 MESSAGE&nbsp;INDEX
20495 screen, is automatically set when you reply to a message.  This flag is not
20496 automatically cleared.
20499 &lt;End of help on this topic&gt;
20500 </BODY>
20501 </HTML>
20502 ======= h_flag_forwarded =======
20503 <html>
20504 <title>STATUS FLAG: Forwarded</title>
20505 <body>
20506 <h1>STATUS FLAG: Forwarded</h1>
20508 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
20509 MESSAGE&nbsp;INDEX
20510 screen, is automatically set when you forward a message.  This flag is not
20511 automatically cleared.
20514 &lt;End of help on this topic&gt;
20515 </BODY>
20516 </HTML>
20517 ======= h_flag_deleted =======
20518 <html>
20519 <title>STATUS FLAG: Deleted</title>
20520 <body>
20521 <h1>STATUS FLAG: Deleted</h1>
20523 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
20524 MESSAGE&nbsp;INDEX
20525 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
20526 It is cleared
20527 when you use the &quot;U&nbsp;Undelete&quot; command.
20530 Messages marked with this flag will be permanently removed from
20531 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
20532 command, or
20533 when you indicate acceptance of their removal upon leaving the folder.
20536 Note, there can be other actions implicit in the
20537 &quot;D&nbsp;Delete&quot; command,
20538 such as advancing to the next message, that may be momentarily undesirable.
20539 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
20540 flag <A HREF="h_common_flag">explicitly</A>.
20543 &lt;End of help on this topic&gt;
20544 </BODY>
20545 </HTML>
20546 ====== h_config_incoming_timeo ======
20547 <HTML>
20548 <HEAD>
20549 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
20550 </HEAD>
20551 <BODY>
20552 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
20554 This option has no effect unless the feature
20555 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20556 is set, which in turn has no effect unless
20557 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20558 is set.
20560 Sets the time in seconds that Alpine will
20561 attempt to open a network connection used for monitoring for Unseen
20562 messages in Incoming Folders. The default is 5.
20563 If a connection has not completed within this many seconds Alpine will
20564 give up and consider it a failed connection.
20566 <UL>   
20567 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20568 </UL><P>
20569 &lt;End of help on this topic&gt;
20570 </BODY>
20571 </HTML>
20572 ====== h_config_incoming_interv ======
20573 <HTML>
20574 <HEAD>
20575 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
20576 </HEAD>
20577 <BODY>
20578 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
20580 This option has no effect unless the feature
20581 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20582 is set, which in turn has no effect unless
20583 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20584 is set.
20586 This option specifies, in seconds, how often Alpine will check
20587 for new mail and state changes in Incoming Folders when Incoming Folders
20588 Checking is turned on.
20589 The default is 3 minutes (180).
20590 This value applies only to folders that are local to the system that
20591 Alpine is running on or that are accessed using the IMAP protocol.
20592 The similar option
20593 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
20594 applies to all other monitored folders.
20596 <UL>   
20597 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20598 </UL><P>
20599 &lt;End of help on this topic&gt;
20600 </BODY>
20601 </HTML>
20602 ====== h_config_incoming_second_interv ======
20603 <HTML>
20604 <HEAD>
20605 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
20606 </HEAD>
20607 <BODY>
20608 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
20610 This option has no effect unless the feature
20611 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20612 is set, which in turn has no effect unless
20613 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20614 is set.
20616 This option together with the option
20617 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20618 specifies, in seconds, how often Alpine will check
20619 for new mail and state changes in Incoming Folders when Incoming Folders
20620 Checking is turned on.
20621 The default for this option is 3 minutes (180).
20622 For folders that are local to this system or
20623 that are accessed using the IMAP protocol
20624 the value of the option
20625 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20626 is used.
20627 For all other monitored folders, the value of this option is used.
20629 The reason there are two separate options is because it is usually
20630 less expensive to check local and IMAP folders than it is to check
20631 other types, like POP or NNTP folders.
20632 You may want to set this secondary value to a higher number than
20633 the primary check interval.
20635 <UL>   
20636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20637 </UL><P>
20638 &lt;End of help on this topic&gt;
20639 </BODY>
20640 </HTML>
20641 ====== h_config_incoming_list ======
20642 <HTML>
20643 <HEAD>
20644 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
20645 </HEAD>
20646 <BODY>
20647 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
20649 This option has no effect unless the feature
20650 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20651 is set, which in turn has no effect unless
20652 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20653 is set.
20655 When monitoring the Incoming Message Folders for Unseen messages Alpine will
20656 normally monitor all Incoming Folders.
20657 You may use this option to restrict the list of monitored folders to a
20658 subset of all Incoming Folders.
20660 <UL>   
20661 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20662 </UL><P>
20663 &lt;End of help on this topic&gt;
20664 </BODY>
20665 </HTML>
20666 ====== h_config_pers_name ======
20667 <HTML>
20668 <HEAD>
20669 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
20670 </HEAD>
20671 <BODY>
20672 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
20674 This value is used to determine the full name part of the "From" address
20675 on messages you send.
20676 <!--chtml if pinemode="os_windows"-->
20677  PC-Alpine requires that this be set in order to properly construct the "From" address.
20678 <!--chtml else-->
20679  If unset, Unix Alpine will obtain your full name from
20680  the system password file. PC-Alpine, on the other hand, requires that this be set.
20681 <!--chtml endif-->
20683 If you want to change the value of what gets included in the From header
20684 in messages you send (other than just the Personal Name)
20685 look <A HREF="h_config_change_your_from">here</A> for a description.
20686 <P><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_pruned_folders ======
20693 <html>
20694 <header>
20695 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
20696 </header>
20697 <body>
20698 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
20700 This variable allows you to define a list of one or more folders that
20701 Alpine will offer to prune for you in the same way it automatically offers
20702 to prune your "sent-mail" folder each month.
20703 Each folder in this list must be a folder in your default folder collection
20704 (the first folder collection if you have more than one), and it is just
20705 the relative name of the folder in the collection, not the fully-qualified name.
20706 It is similar to sent-mail.
20707 Instead of something like
20709 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
20711 the correct value to use would be
20713 <CENTER><SAMP>folder</SAMP></CENTER>
20715 There is an assumption here that your first collection is the folders in
20717 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
20720 Once a month, for each folder listed, Alpine will offer to move
20721 the contents of the folder to a new folder of the same name but with
20722 the previous month's date appended.  Alpine will then look for any such
20723 date-appended folder names created for a previous month, and offer each
20724 one it finds for deletion.
20727 If you decline the first offer, no mail is moved and no new folder is
20728 created.
20731 The new folders will be created
20732 in your default folder collection.
20735 <UL>   
20736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20737 </UL><P>
20738 &lt;End of help on this topic&gt;
20739 </body>
20740 </html>
20741 ====== h_config_upload_cmd ======
20742 <HTML>
20743 <HEAD>
20744 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
20745 </HEAD>
20746 <BODY>
20747 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
20749 This option affects the behavior of the Composer's &quot;Read File&quot; 
20750 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
20751 commands.  It specifies
20752 a Unix program name, and any necessary command line arguments, that Alpine can
20753 use to transfer files from your personal computer into messages that you are
20754 composing.<P>
20756 <B>Note:</B> this facility is intended for use with serial line transfer 
20757 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20758 to work with TCP/IP file transfer programs such as ftp.<P>
20760 If a program is specified, the commands listed above are modified to offer a
20761 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
20762 specified here must match the transfer program or protocol available on the
20763 personal computer.<P>
20765 Alpine expects to exchange uploaded data via a file on your Unix system.  When
20766 the specified upload program finishes, Alpine expects the uploaded data to be
20767 contained in this file.<P>
20769 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
20770 generates a
20771 temporary file name that it will pass to the specified Unix program.  Alpine
20772 will read the resulting uploaded text from this file and then delete it when
20773 the upload command is finished.<P>
20775 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
20776 prompt
20777 you for the name of the file that is to contain the uploaded information that
20778 it is to attach.  Alpine will attach this file to the composition, but will
20779 <B>not</B> delete this file after the upload command is finished.<P>
20781 The special token &quot;_FILE_&quot; may be included among the Unix program's 
20782 command
20783 line arguments.  Alpine will replace this symbol with the name of the file
20784 being used to exchange the uploaded information.  This token allows you to
20785 position the file name where it is required in the Unix program's command
20786 line arguments.<P>
20788 If the &quot;_FILE_&quot; token is not present in the specified command, the
20789 temporary file's name is automatically appended to the specified Unix
20790 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20791 <B>last</B> command line argument.
20792 <P><UL>
20793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20794 </UL><P>
20795 &lt;End of help on this topic&gt;
20796 </BODY>
20797 </HTML>
20798 ====== h_config_upload_prefix ======
20799 <HTML>
20800 <HEAD>
20801 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
20802 </HEAD>
20803 <BODY>
20804 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
20806 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
20807 It defines text to be written to the terminal emulator (via standard output)
20808 immediately prior to starting upload command.  This is useful for
20809 integrated serial line file transfer agents that permit command passing
20810 (e.g., Kermit's APC method).<P>
20812 The special token &quot;_FILE_&quot; may be included in the string specification.
20813 That symbol will be replaced with the (Alpine-created) name of the temporary
20814 file in which Alpine will expect to find the uploaded file.
20815 <P><UL>
20816 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20817 </UL><P>
20818 &lt;End of help on this topic&gt;
20819 </BODY>
20820 </HTML>
20821 ====== h_config_download_cmd ======
20822 <HTML>
20823 <HEAD>
20824 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
20825 </HEAD>
20826 <BODY>
20827 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
20829 This option affects the behavior of the Export command.  It specifies a Unix
20830 program name, and any necessary command line arguments, that Alpine can use to
20831 transfer the exported message to your personal computer's disk.<P>
20832 Note: this facility is intended for use with serial line transfer 
20833 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20834 to work with TCP/IP file transfer programs such as ftp.<P>
20835 If a program is specified, the Export command is modified to offer a
20836 subcommand (^V) to activate the transfer (in lieu of saving it to
20837  the machine where Alpine is running).  Obviously, the Unix program
20838 specified here must match the transfer program or protocol available on the
20839 personal computer.<P>
20841 When this subcommand is selected and before Alpine invokes the specified Unix
20842 program, Alpine will create a temporary file containing the text of the
20843 exported message.  Alpine uses this file to pass the exported message text to
20844 the specified Unix program.<P>
20846 The special token &quot;_FILE_&quot; may be included among the Unix program's command
20847 line arguments.  Alpine will replace this symbol with the temporary file's name
20848 before executing the Unix program.  This token allows you to position the
20849 file name where it is required in the Unix program's command line arguments.
20851 If the &quot;_FILE_&quot; token is not present in the specified command, the
20852 temporary file's name is automatically appended to the specified Unix
20853 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20854 <B>last</B> command line argument.
20855 <P><UL>
20856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20857 </UL><P>
20858 &lt;End of help on this topic&gt;
20859 </BODY>
20860 </HTML>
20861 ====== h_config_download_prefix ======
20862 <HTML>
20863 <HEAD>
20864 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
20865 </HEAD>
20866 <BODY>
20867 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
20869 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
20870 It defines text to be written to the terminal emulator (via standard output)
20871 immediately prior to starting the download command.  This is useful for
20872 integrated serial line file transfer agents that permit command passing
20873 (e.g., Kermit's APC method).
20875 The special token &quot;_FILE_&quot; may be included in the string 
20876 specification.
20877 That symbol will be replaced with the (Alpine-created) name of the temporary
20878 file into which Alpine will place the message to be downloaded.
20879 <P><UL>
20880 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20881 </UL><P>
20882 &lt;End of help on this topic&gt;
20883 </BODY>
20884 </HTML>
20885 ====== h_config_mailcap_path ======
20886 <HTML>
20887 <HEAD>
20888 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
20889 </HEAD>
20890 <BODY>
20891 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
20892 This variable is used to replace Alpine's default mailcap file search path.
20893 It takes one or more file names (full paths must be specified) in which to
20894 look for mail capability data.  The default search path can be found in this
20895 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
20896 If there is more than one file name listed, list members should be delimited
20897 by 
20898 <!--chtml if pinemode="os_windows"-->
20899 a semi-colon (;) under Windows; for example:<PRE>
20900         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
20901 </PRE>
20902 <!--chtml else-->
20903 a colon (:) under UNIX; for example:<PRE>
20904         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
20905 </PRE>
20906 <!--chtml endif-->
20907 <P><UL>
20908 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20909 </UL>
20911 &lt;End of help on this topic&gt;
20912 </BODY>
20913 </HTML>
20914 ====== h_config_mimetype_path ======
20915 <HTML>
20916 <HEAD>
20917 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
20918 </HEAD>
20919 <BODY>
20920 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
20922 This variable is used to replace Alpine's default mime.types file search path.
20923 It takes one or more file names (full paths must be specified) in which to
20924 look for file-name-extension to MIME type mapping data.  The default search
20925 path can be found in this
20926 <A HREF="h_news_config">Alpine Configuration</A> help.
20930 If there is more than one file name listed, list members should be delimited
20931 by a colon (:) under UNIX and a semi-colon (;) under Windows.
20933 &lt;End of help on this topic&gt;
20934 </BODY></HTML>
20935 ====== h_config_set_att_ansi ======
20936 <HTML><HEAD>
20937 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
20938 </HEAD>
20939 <BODY>
20940 <H1>OPTION: Set printer to attached ansi printer</H1>
20942 Type "S" to set your printer to "attached-to-ansi".<BR>
20943 It is OK to include "attached-to-ansi" in your personal list below.
20945 &lt;End of help on this topic&gt;
20946 </BODY></HTML>
20947 ====== h_config_set_att_ansi2 ======
20948 <HTML><HEAD>
20949 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
20950 </HEAD>
20951 <BODY>
20952 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
20954 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
20955 It is OK to include "attached-to-ansi-no-formfeed" in your personal
20956 list below.
20960 This is the same as the "attached-to-ansi" option except that a
20961 formfeed character will not be appended to the end of the print job.
20962 If your printer already ejects the paper by itself at the end of the
20963 job, you may prefer the "no-formfeed" form of this printer so that you
20964 don't get an extra blank page between print jobs.
20967 &lt;End of help on this topic&gt;
20968 </BODY></HTML>
20969 ====== h_config_set_att_wyse ======
20970 <HTML><HEAD>
20971 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
20972 </HEAD>
20973 <BODY>
20974 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
20976 Type "S" to set your printer to "attached-to-wyse".<BR>
20977 It is OK to include "attached-to-wyse" in your personal list below.
20979 This is very similar to "attached-to-ansi".
20980 The only difference is in the control characters sent to turn the printer
20981 on and off.
20982 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
20983 to turn on the printer and ESC LEFT_BRACKET 4 i
20984 to turn it off.
20985 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
20986 &lt;End of help on this topic&gt;
20987 </BODY></HTML>
20988 ====== h_config_set_att_wyse2 ======
20989 <HTML><HEAD>
20990 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
20991 </HEAD>
20992 <BODY>
20993 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
20995 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
20996 It is OK to include "attached-to-wyse-no-formfeed" in your personal
20997 list below.
21001 This is the same as the "attached-to-wyse" option except that a
21002 formfeed character will not be appended to the end of the print job.
21003 If your printer already ejects the paper by itself at the end of the
21004 job, you may prefer the "no-formfeed" form of this printer so that you
21005 don't get an extra blank page between print jobs.
21008 &lt;End of help on this topic&gt;
21009 </BODY></HTML>
21010 ====== h_config_set_stand_print ======
21011 <HTML>
21012 <HEAD>
21013 <TITLE>OPTION: Set default printer</TITLE>
21014 </HEAD>
21015 <H1>OPTION: Set default printer</H1>
21016 <BODY>
21017 Move to the printer you want and type "S" to set it to be your
21018 default printer.  This list is not modifiable by you and has been
21019 set up by the system administrators.  If there is more than one printer
21020 listed in the Command List, you will be able to cycle through that
21021 whole list at the time you print, starting with your default.
21022 It is OK to include entries from this Standard list in your personal
21023 list below.
21025 &lt;End of help on this topic&gt;
21026 </BODY>
21027 </HTML>
21028 ====== h_config_set_custom_print ======
21029 <HTML>
21030 <HEAD>
21031 <TITLE>OPTION: Set default printer</TITLE>
21032 </HEAD>
21033 <H1>OPTION: Set default printer</H1>
21034 <BODY>
21035 You may add as many print commands as you want to your personal list.
21036 Specify one of them as your default printer by moving to the printer
21037 you want and typing "S".  If there is more than one printer listed
21038 in the Command List, you will be able to cycle through that list at
21039 the time you print, starting with your default.  It is OK to include
21040 entries from the Standard list above or to include the command
21041 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21042 "attached-to-wyse-no-formfeed" as one of the entries here.
21044 &lt;End of help on this topic&gt;
21045 </BODY>
21046 </HTML>
21047 ====== h_config_user_id =====
21048 <HTML>
21049 <HEAD>
21050 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21051 </HEAD>
21052 <BODY>
21053 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21055 This value is used as part of the "From" address on messages you send.
21056 It is also the default login name for remote IMAP server access.  Set this
21057 to the username part you want to appear on outgoing email.
21059 If you want to change the value of what gets included in the From header
21060 in messages you send (other than just the User ID)
21061 look <A HREF="h_config_change_your_from">here</A> for a description.
21063 <P><UL>   
21064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21065 </UL><P>
21066 &lt;End of help on this topic&gt;
21067 </BODY>
21068 </HTML>
21069 ====== h_config_user_dom =====
21070 <HTML>
21071 <HEAD>
21072 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21073 </HEAD>
21074 <BODY>
21075 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21077 This value specifies the domain part (right-hand side) of your return
21078 address on outgoing email and is also used as the default domain for email
21079 composed to a local user.
21080 <!--chtml if pinemode="os_windows"-->
21081  This value is required for PC-Alpine. If you are unsure as to what this should be,
21082  contact your local help desk, system administrator, or Internet Service Provider.
21083 <!--chtml else-->
21084  If unset, Unix Alpine will obtain the domain from
21085  the system.  Often this value will be set for your whole site by the
21086  system administrator.<P>
21087 <!--chtml endif-->
21088 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21089 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21091 If you want to change the value of what gets included in the From header
21092 in messages you send (other than just the User Domain)
21093 look <A HREF="h_config_change_your_from">here</A> for a description.
21094 <P><UL>
21095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21096 </UL><P>
21097 &lt;End of help on this topic&gt;
21098 </BODY>
21099 </HTML>
21100 ====== h_config_smtp_server =====
21101 <HTML>
21102 <HEAD>
21103 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21104 </HEAD>
21105 <BODY>
21106 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21107 This value specifies the name of one or more SMTP 
21108 (Simple Mail Transfer Protocol) servers for sending mail. 
21109 <!--chtml if pinemode="os_windows"-->
21110 You must have an SMTP server for use with PC-Alpine.
21111 SMTP servers are
21112 normally set up by a system administrator for use by all members of a given
21113 campus or department.
21114 Contact your local help desk to ask what SMTP
21115 servers you should use.  
21116 <!--chtml else-->
21117 Unix Alpine users may not need to set an SMTP server.
21118 Alpine will attempt to execute the program (usually sendmail) that is used
21119 to insert mail into the mail system.
21120 If this works for you, you may leave this option blank.
21121 If there is an SMTP server running on the Unix host you may be able to
21122 improve sending performance slightly by setting the SMTP server option
21123 to &quot;localhost&quot; or to the actual name of the Unix host.
21125 If the Unix host doesn't work the way Alpine was expecting you will need to
21126 set the value of this option.
21127 SMTP servers are
21128 normally set up by a system administrator for use by all members of a given
21129 campus or department.
21130 Contact your local help desk to ask what SMTP
21131 servers you should use.  
21132 <!--chtml endif-->
21134 Your SMTP server may offer SMTP AUTH authentication.
21135 It may even require it.
21136 If your SMTP server offers SMTP AUTH authentication you may specify a
21137 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21138 This parameter requires an associated value,
21139 the username identifier with which to establish the server
21140 connection.
21141 An example might be:
21144 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21147 If AUTH authentication is offered by the server, this will cause Alpine to
21148 attempt to use it.
21149 If AUTH authentication is not offered by the server, this will cause Alpine
21150 to fail sending with an error similar to:
21153 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21156 Another type of authentication that is used by some ISPs is called
21157 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21158 which means that you have to authenticate
21159 yourself to the POP or IMAP server by opening a mailbox before you
21160 can send mail.
21161 To do this, you usually only have to open your INBOX.
21164 You may tell Alpine to use the
21165 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21166 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21167 parameter
21168 in this option.
21169 At this time &quot;/submit&quot; is simply equivalent to specifying
21170 port 587, though it may imply more than that at some point in the future.
21171 Some ISPs are blocking port 25 in order to reduce the amount of spam
21172 being sent to their users.
21173 You may find that the submit option allows you to get around such a block.
21176 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21179 To specify any non-standard port number on the SMTP server you may follow
21180 the hostname with a colon followed by the portnumber.
21183 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21186 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21187 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21188 If that fails then a non-encrypted connection will be attempted instead.
21189 You may specify that a TLS connection is required if you wish.
21190 If you append &quot;/tls&quot; to the name then the connection will fail
21191 instead of falling back to a non-secure connection.
21194 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21198 For more details about server name possibilities see
21199 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21202 <UL>
21203 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21204 </UL>
21206 &lt;End of help on this topic&gt;
21207 </BODY>
21208 </HTML>
21209 ====== h_config_nntp_server =====
21210 <HTML>
21211 <HEAD>
21212 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21213 <BODY>
21214 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21216 This value specifies the name of one or more NNTP
21217 (Network News Transfer Protocol)
21218 servers for reading and posting USENET news.
21219 NNTP servers are normally
21220 set up by a system administrator for use by all members of a given campus
21221 or department.
21222 Contact your local help desk to ask what NNTP servers you should use.  
21223 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21224 Often Unix Alpine users will find that this variable has been
21225 set for the whole system (and they don't have to worry about it).  
21226 <!--chtml endif-->
21227 When you define an NNTP server here, Alpine implicitly defines a news
21228 collection for you, assuming that server as the news server and assuming
21229 that you will use the NNTP protocol and a local newsrc configuration file
21230 for reading news.
21231 For more about reading news with Alpine, see
21232 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21234 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21235 or &quot;AUTHINFO USER&quot; authentication.
21236 It may even require it.
21237 If your NNTP server does offer such authentication you may specify a user name
21238 parameter to cause Alpine to attempt to authenticate.
21239 The same is true for the server name in a folder collection that uses NNTP.
21240 This parameter requires an associated value,
21241 the username identifier with which to establish the server connection.
21242 An example might be:
21245 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21248 If authentication is offered by the server, this will cause Alpine to
21249 attempt to use it.
21250 If authentication is not offered by the server, this will cause Alpine
21251 to fail with an error similar to:
21254 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21256 For more details about the server name possibilities see
21257 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21258 <P><UL>
21259 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21260 </UL><P>
21261 &lt;End of help on this topic&gt;
21262 </BODY>
21263 </HTML>
21264 ====== h_config_inbox_path =====
21265 <HTML>
21266 <HEAD>
21267 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21268 </HEAD>
21269 <BODY>
21270 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21272 This value overrides the default value of your INBOX name/path/location.
21273 <!--chtml if pinemode="os_windows"-->
21274 PC-Alpine users must specify an inbox path and it must be a folder on an
21275 IMAP server.  
21276 <!--chtml else-->
21277 Unix and VMS Alpine users will often find that this variable
21278 has been pre-configured by your system administrator.  
21279 <!--chtml endif-->
21280 You may be able to specify an alternate INBOX that is either a local folder 
21281 or a folder on an IMAP server.
21283 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21284 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21285 mail server.
21287 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21288 details on the syntax of folder definitions.
21290 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21291 mail is disappearing.
21292 <P><UL>
21293 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21294 </UL><P>
21295 &lt;End of help on this topic&gt;
21296 </BODY>
21297 </HTML>
21298 ====== h_config_change_your_from =====
21299 <HTML>
21300 <HEAD>
21301 <TITLE>How to Change your From Address</TITLE>
21302 </HEAD>
21303 <BODY>
21304 <H1>How to Change your From Address</H1>
21306 If the From address that Alpine includes in mail that you send is not correct,
21307 you may want to configure a different default value for the From address.
21308 You may follow these directions to change the default:
21311 <UL>
21312   <LI> Go to the Main Alpine Menu
21313   <LI> From there type the Setup Command
21314   <LI> From there type the Config Command
21315 </UL>
21318 You've probably already seen this SETUP CONFIGURATION screen.
21319 If not, there are many options you may want to set here.
21320 To set the value of the From header you may use the
21321 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21322 Find it by scrolling down a few pages or use the WhereIs command to
21323 search for &quot;customized&quot;.
21324 You may want to read the help text associated with the option.
21326 To add a custom From header, type the Add command and enter the
21327 full header line, including the leading &quot;From:&nbsp;&quot;.
21328 For example:
21330 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21332 Now exit the Setup command and try sending mail to yourself to see
21333 what the From line looks like.
21335 When you are in the composer you may edit the custom From line by typing
21336 Ctrl-R while your cursor is in the headers of the message and then moving
21337 to the From line and editing.
21338 If you want to leave the default value the same but add the possibility
21339 of being able to edit the header when you compose, add just the header
21340 name without a value.
21341 For example:
21343 <CENTER><SAMP>From:</SAMP></CENTER>
21345 If you change your From address you may also find it useful to add the
21346 changed From address to the
21347 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21348 configuration option.
21350 <UL>   
21351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21352 </UL><P>
21353 &lt;End of help on this topic&gt;
21354 </BODY>
21355 </HTML>
21356 ====== h_config_default_fcc =====
21357 <HTML>
21358 <HEAD>
21359 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21360 </HEAD>
21361 <BODY>
21362 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21364 This value specifies where a copy of outgoing mail should be saved.  If
21365 this is not a path name, it will be in the default collection for saves.
21366 Any valid folder specification, local or IMAP, is allowed.  This default
21367 folder carbon copy only applies when the 
21368 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21369 is set to use the default folder.  
21370 <!--chtml if pinemode="os_windows"-->
21371 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21372 <!--chtml else-->
21373 Unix Alpine default
21374 is normally &quot;sent-mail&quot; in the default folder collection. 
21375 <!--chtml endif-->
21377 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21378 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21379 IMAP server (remember that in order to later access this remote folder through Alpine, it
21380 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21381 for more information). An example:<p>
21382 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21384 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21386 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21387 details on the syntax of folder definitions.
21389 <UL>   
21390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21391 </UL><P>
21392 &lt;End of help on this topic&gt;
21393 </BODY>
21394 </HTML>
21395 ====== h_config_def_save_folder =====
21396 <HTML>
21397 <HEAD>
21398 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
21399 </HEAD>
21400 <BODY>
21401 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
21403 This option determines the default folder name for save-message operations 
21404 (&quot;saves&quot;).
21406 If this is not a path name, it will be in the default collection for saves.
21407 Any valid folder specification, local or IMAP, is allowed.  This default
21408 folder only applies when the
21409 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
21410 doesn't override it.  
21411 <!--chtml if pinemode="os_windows"-->
21412 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
21413 <!--chtml else-->
21414 Unix Alpine default
21415 is normally &quot;saved-messages&quot; in the default folder collection.
21416 <!--chtml endif-->
21417 If you access your email through an IMAP server, especially if you often switch between Unix
21418 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
21419 IMAP server (remember that in order to later access this remote folder through Alpine, it
21420 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21421 for more information). An example:<p>
21422 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
21424 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21425 details on the syntax of folder definitions.
21427 <UL>   
21428 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21429 </UL><P>
21430 &lt;End of help on this topic&gt;
21431 </BODY>
21432 </HTML>
21433 ====== h_config_postponed_folder =====
21434 <HTML>
21435 <HEAD>
21436 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
21437 </HEAD>
21438 <BODY>
21439 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
21441 This value overrides the default name for the folder where postponed
21442 messages are saved.  If this is not a path name, it will be in the default
21443 collection for message Saves.  Any valid folder specification, local or
21444 remote, is allowed. 
21445 PC-Alpine default
21446 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
21447 The Unix Alpine default is normally &quot;postponed-msgs&quot;
21448 in the default collection. 
21450 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
21451 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
21452 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
21453 in all Alpine copies you use. 
21454 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
21455 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
21456 for more information). An
21457 example:<p> 
21458 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
21460 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21461 details on the syntax of folder definitions.
21463 <UL>   
21464 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21465 </UL><P>
21466 &lt;End of help on this topic&gt;
21467 </BODY>
21468 </HTML>
21469 ====== h_config_read_message_folder =====
21470 <HTML>
21471 <HEAD>
21472 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
21473 </HEAD>
21474 <BODY>
21475 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
21477 By virtue of specifying a folder name here, Alpine will be configured to
21478 save all messages that you have read during a session into the designated
21479 &quot;read messages&quot; folder.  This allows you to more easily distinguish
21480 between your really new email (in your INBOX) and those that you have
21481 already read.  Depending on how you define the 
21482 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21483 setting, you may or may not be asked when you quit
21484 Alpine if you want read messages to be moved to this folder.  In either
21485 case, moving the messages means they will be deleted from your INBOX.
21487 If this is not a path name, it will be in the default collection for
21488 saves.  Any valid folder specification, local or remote (via IMAP), is
21489 allowed.  There is no default for the name of the read message folder.
21491 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21492 details on the syntax of folder definitions.
21494 <UL>   
21495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21496 </UL><P>
21497 &lt;End of help on this topic&gt;
21498 </BODY>
21499 </HTML>
21500 ====== h_config_form_folder =====
21501 <HTML>
21502 <HEAD>
21503 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
21504 </HEAD>
21505 <BODY>
21506 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
21508 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
21509 contain messages that you have composed and that are intended to be
21510 sent in their original form repeatedly.
21513 Setting this variable will alter Alpine's usual behavior when you
21514 execute the Compose command.  Normally, Alpine offers a chance to
21515 continue a postponed or interrupted message should one or the other
21516 exist.  When this variable is set to a folder name that exists, Alpine
21517 will also offer the chance to select a message from the folder to
21518 insert into the composer (much like when continuing a postponed message).
21519 The difference, however, is that Alpine will not automatically delete
21520 the selected message from the Form Letter Folder.
21522 Setting this variable will also affect Alpine's behavior when you
21523 Postpone a message from the composer.  Normally, Alpine simply stashes
21524 the message away in your
21525 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
21526 Regardless of the specified folder's existence, Alpine will ask which
21527 folder you intend the message to be stored in.  Choose the
21528 &quot;F&quot; option to store the message in your Form Letter Folder.
21529 This is the most common way to add a message to the folder.
21532 Another method of adding messages to the folder is via the Alpine
21533 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
21534 you expect to send in the same form again, you can enter the Form
21535 Letter Folder's name in this field.  Alpine, as usual, will copy the
21536 message as it's sent.  Note, when you later select this message from 
21537 your Form Letter Folder, it will have the same recipients as the original
21538 message.
21541 To delete a message from the Form Letter Folder, you can either select
21542 the folder from a suitable FOLDER LIST screen, or use the Delete
21543 command in the MESSAGE INDEX offered when selecting from the folder as
21544 part of the Compose command.  You can delete a Form Letter Folder just
21545 as any other folder from a suitable FOLDER LIST screen.
21548 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
21549 facility can be used
21550 to replace the Form Letter Folder.
21553 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21554 details on the syntax of folder definitions.
21557 <UL>   
21558 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21559 </UL><P>
21560 &lt;End of help on this topic&gt;
21561 </BODY>
21562 </HTML>
21563 ====== h_config_archived_folders =====
21564 <HTML>
21565 <HEAD>
21566 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
21567 </HEAD>
21568 <BODY>
21569 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
21571 This is like
21572 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
21573 only more general.  You may archive
21574 any of the folders in your incoming collection.  This is a list of folder
21575 pairs, with the first separated from the second in the pair by a space.
21576 The first folder in a pair is the folder you want to archive, and the
21577 second folder is the folder that read messages from the first should be
21578 moved to.  Depending on how you define the
21579 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21580 setting, you may or may not be asked when you
21581 leave the first folder if you want read messages to be moved to the
21582 second folder.  In either case, moving the messages means they will be
21583 deleted from the first folder.
21585 The name of the first folder in each pair can be either the technical
21586 specification of the folder (like what appears in your configuration file)
21587 or (much easier) the nickname that you gave the folder when you made it
21588 an incoming folder.
21590 For example:<p>
21591 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
21592 <p>or, using nicknames:<p>
21593 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
21595 If these are not path names, they will be in the default collection for
21596 saves. Any valid folder specification, local or remote (via IMAP), is
21597 allowed. There is no default.
21599 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21600 details on the syntax of folder definitions.
21602 <UL>   
21603 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21604 </UL><P>
21605 &lt;End of help on this topic&gt;
21606 </BODY>
21607 </HTML>
21608 ====== h_config_newsrc_path ======
21609 <HTML>
21610 <HEAD>
21611 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
21612 </HEAD>
21613 <BODY>
21614 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
21616 This option overrides the default name Alpine uses for your "newsrc" news
21617 status and subscription file.  If set, Alpine will take this value as the
21618 full pathname for the desired newsrc file.<P>
21620 If this option is <B>not</B> set, 
21621 <!--chtml if pinemode="os_windows"-->
21622 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
21623 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
21624 directory as your pinerc file for NEWSRC.
21625 <!--chtml else-->
21626 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
21627 your account's home directory).
21628 <!--chtml endif-->
21629 <P><UL>
21630 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21631 </UL>
21633 &lt;End of help on this topic&gt;
21634 </BODY>
21635 </HTML>
21636 ====== h_config_literal_sig =====
21637 <HTML>
21638 <HEAD>
21639 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
21640 </HEAD>
21641 <BODY>
21642 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
21644 With this option your actual signature, as opposed to
21645 the name of a file containing your signature,
21646 is stored in the Alpine configuration file.
21647 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
21650 This is simply a different way to store the signature.
21651 The signature is stored inside your Alpine configuration file instead of in
21652 a separate file.
21653 Tokens work the same way they do with the
21654 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
21655 help.
21658 The Setup/Signature command on Alpine's MAIN MENU will edit
21659 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
21660 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
21661 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
21662 instead.
21665 The two character sequence &#92;n (backslash followed by
21666 the character n) will be used to signify a line-break in your signature.
21667 You don't have to enter the &#92;n, but it will be visible in the
21668 SETUP CONFIGURATION window after you are done editing the signature.
21671 <UL>   
21672 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21673 </UL><P>
21674 &lt;End of help on this topic&gt;
21675 </BODY>
21676 </HTML>
21677 ====== h_config_signature_file =====
21678 <HTML>
21679 <HEAD>
21680 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
21681 </HEAD>
21682 <BODY>
21683 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
21685 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
21686 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
21687 You can tell that that is the case because the value of the
21688 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
21690 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
21692 You may either use all Literal Signatures (signatures stored in your
21693 configuration file) throughout Alpine, or all signature files.
21694 You can't mix the two.
21696 This is the name of a file that will be automatically inserted into
21697 outgoing messages.
21698 It typically contains information such as your
21699 name, email address and organizational affiliation.
21700 Alpine adds the
21701 signature into the message as soon as you enter the composer so you
21702 can choose to remove it or edit it on a message by message basis.
21703 Signature file placement in message replies is controlled by the
21704 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
21705 setting in the feature list.
21708 The default file name is
21709 <!--chtml if pinemode="os_windows"-->
21710 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
21711 PINERC file is a local file.
21712 If your PINERC file is remote, then it will be in the directory specified
21713 by the &quot;-aux local_directory&quot; command line option.
21714 <!--chtml else-->
21715 &quot;.signature&quot;.
21716 <!--chtml endif-->
21719 To create or edit your signature file choose Setup from the MAIN MENU
21720 and then select S for Signature (Main/Setup/Signature).  This puts you
21721 into the Signature Editor where you can enter a <EM>few</EM> lines of
21722 text containing your identity and affiliation.
21725 If the filename is followed by a vertical bar (|) then instead
21726 of reading the contents of the file the file is assumed to be a
21727 program that will produce the text to be used on its standard output.
21728 The program can't have any arguments and doesn't receive any input from Alpine,
21729 but the rest of the processing works as if the contents came from a file.
21732 Instead of storing the data in a local file, the
21733 signature data may be stored remotely in an IMAP folder.
21734 In order to do this, 
21735 you must use a remote name for the file.
21736 A remote <!--#echo var="VAR_signature-file"--> name might look like:
21738 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
21741 The syntax used here is the same as the syntax used for remote configuration
21742 files from the command line.
21743 Note that you may not access an existing signature file remotely,
21744 you have to create a new <EM>folder</EM> that contains the signature data.
21745 If the name you use here for the signature file is a remote name, then when
21746 you edit the file from the Setup/Signature command the data will be stored
21747 remotely in the folder.
21748 You aren't required to do anything special to create the folder, it
21749 gets created automatically if you use a remote name.
21752 Besides regular text, the signature file may also contain
21753 (or a signature program may produce) tokens that
21754 are replaced with text that usually depends on the message you are replying
21755 to or forwarding.
21756 For example, if the signature file contains the token
21758 <CENTER><SAMP>_DATE_</SAMP></CENTER>
21760 anywhere in the text, then that token is replaced by the date
21761 the message you are replying to or forwarding was sent.
21762 If it contains
21764 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
21766 that is replaced with the current date.
21767 The first is an example of a token that depends on the message you
21768 are replying to (or forwarding) and the second is an example which
21769 doesn't depend on anything other than the current date.
21770 You have to be a little careful with this facility since tokens that
21771 depend on the message you are replying to or forwarding will be replaced
21772 by nothing in the case where you are composing a new message from scratch.
21773 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
21774 in this respect.
21775 It allows you to use different signature files in different cases.
21778 The list of tokens available for use in the signature file is
21779 <A HREF="h_index_tokens">here</A>.
21782 Instead of, or along with the use of &quot;roles&quot; to give you
21783 different signature files in different situations, there is also
21784 a way to conditionally include text based
21785 on whether or not a token would result in specific replacement text.
21786 For example, you could include some text based on whether or not
21787 the _NEWS_ token would result in any newsgroups if it was used.
21788 This is explained in detail
21789 <A HREF="h_reply_token_conditionals">here</A>.
21790 This isn't for the faint of heart.
21792 In the very unlikely event that you want to include a literal token
21793 in the signature you must precede it with a backslash character.
21794 For example,
21796 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
21798 would produce something like
21800 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
21802 It is not possible to have a literal backslash followed by an expanded token.
21804 An alternate method for storing the signature data is available by using the
21805 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
21806 This variable will be used by default.
21808 <UL>   
21809 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21810 </UL><P>
21811 &lt;End of help on this topic&gt;
21812 </BODY>
21813 </HTML>
21814 ====== h_config_init_cmd_list =====
21815 <HTML>
21816 <HEAD>
21817 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
21818 </HEAD>
21819 <BODY>
21820 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
21822 The initial keystroke--or command--list option lets you start Alpine at
21823 any place you like.
21824 Whatever keystrokes you specify here will be executed
21825 by Alpine upon startup as a macro.
21826 The words SPACE, TAB, DOWN, UP, LEFT, and
21827 RIGHT indicate the pressing of those keys.
21828 CR indicates the pressing of the RETURN key.
21829 F1 through F12 represent the function keys, and ^ followed
21830 by a character indicates that key pressed along with the control key (in
21831 other words, ^P means Ctrl-P).
21832 As a shortcut notation, an element of the list may be several characters
21833 surrounded by double-quotes (").
21834 That will be expanded into the individual keystrokes
21835 (excluding the double-quote characters).
21836 For example, the quoted-string
21838 <P><CENTER>"ABC"</CENTER>
21841 is interpreted the same as the three separate list members
21843 <P><CENTER>A and B and C</CENTER>
21846 which is also the same as
21848 <P><CENTER>A,B,C</CENTER>
21851 An example: To view message 1 on startup,
21852 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
21854 <P><CENTER>I,J,1,CR,V</CENTER>
21857 An equivalent version of this is
21859 <P><CENTER>"IJ1",CR,V</CENTER>
21862 Restrictions: You cannot pre-type into the composer with the initial
21863 keystroke list, and you cannot mix function key commands with letter
21864 commands.
21866 <P><UL>   
21867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21868 </UL>
21870 &lt;End of help on this topic&gt;
21871 </BODY>
21872 </HTML>
21873 ====== h_config_comp_hdrs =====
21874 <html>
21875 <header>
21876 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
21877 </header>
21878 <body>
21879 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
21881 You can control which headers you want visible when composing outgoing
21882 email using this option.
21883 You can specify any of the regular set, any
21884 <A HREF="h_compose_richhdr">Rich Header</A>,
21885 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
21886 that you have already defined.
21887 If you use this setting at all, you must specify all the
21888 headers you want to see, you can't just add to the regular header set.
21889 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
21891 Note that the "Newsgroups:" header will be abbreviated in the Composer
21892 display, but should be spelled out in full here.<p>
21893 <UL>   
21894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21895 </UL><P>
21896 &lt;End of help on this topic&gt;
21897 </body>
21898 </html>
21899 ====== h_config_custom_hdrs =====
21900 <HTML>
21901 <HEAD>
21902 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
21903 </HEAD>
21904 <BODY>
21905 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
21907 You may add your own custom headers to outgoing messages.
21908 Each header you specify here must include the header tag 
21909 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
21910 and may optionally include a value for that header.
21911 If you want to see these custom headers each time you compose a message,
21912 you must add them to your
21913 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
21914 otherwise they become part
21915 of the rich header set that you only see when you press the
21916 <A HREF="h_compose_richhdr">Rich Header</A>
21917 <!--chtml if pinemode="function_key"-->(F5)
21918 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
21919 (If you are looking for a way to change which headers are <EM>displayed</EM>
21920 when you view a message, take a look at the
21921 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
21922 option instead.)
21923 Here's an example that shows how you might set your From address
21925 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21927 and another showing how you might set a Reply-To address
21929 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
21931 You may also set non-standard header values here.
21932 For example, you could add
21934 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
21936 or even
21938 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
21940 If you include a value after the colon then that header will be included
21941 in your outgoing messages unless you delete it before sending.
21942 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
21943 it will not be included in outgoing messages unless you edit a value
21944 in manually.
21945 For example, if
21947 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
21949 is in the list, then the Reply-To header will be available for editing
21950 but won't be included unless a value is added while in the composer.
21952 It's actually a little more complicated than that.
21953 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
21954 defaults.
21955 If the message you are about to compose already has a value for a header,
21956 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
21957 For example, if you are Replying to a message the Subject field
21958 will already be filled in.
21959 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
21960 custom subject will <EM>NOT</EM> be used.
21961 The subject derived from the subject of the message you are Replying
21962 to will be used instead.
21964 It is also possible to make header setting even more complicated and more
21965 automatic by using
21966 <A HREF="h_rules_roles">Roles</A>,
21967 but if all you want to do is set a default value for a header, you don't
21968 need to think about Roles.
21970 If you change your From address you may also find it useful to add the
21971 changed From address to the
21972 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21973 configuration option.
21975 Limitation: Because commas are used to separate the list of
21976 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
21977 header contain a comma.
21978 Nor is there currently an &quot;escape&quot; mechanism provided
21979 to make this work.
21980 <P><UL>
21981 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21982 </UL>
21984 &lt;End of help on this topic&gt;
21985 </BODY>
21986 </HTML>
21987 ====== h_config_viewer_headers =====
21988 <HTML>
21989 <HEAD>
21990 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
21991 </HEAD>
21992 <BODY>
21993 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
21995 You may change the default list of headers that are viewed by listing
21996 the headers you want to view here.  If the headers in your
21997 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
21998 will be shown.  The order of the headers you list will be honored.  If
21999 the special value &quot;all-except&quot; is included as the first
22000 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22001 message except those in the list will be shown.  The values are all
22002 case insensitive.
22005 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22006 then the original default headers are ignored.  So, if you just wanted
22007 to add the header Organization to the list, you would have to list
22008 Organization plus all of the other headers originally in the default
22009 list.  If you just included Organization and nothing else, then you
22010 would see only the Organization header, nothing else.
22013 The default list of headers includes:
22014 <UL>
22015   <LI>From
22016   <LI>Resent-From
22017   <LI>To
22018   <LI>Resent-To
22019   <LI>Cc
22020   <LI>Resent-cc
22021   <LI>Bcc
22022   <LI>Newsgroups
22023   <LI>Followup-To
22024   <LI>Date
22025   <LI>Resent-Date
22026   <LI>Subject
22027   <LI>Resent-Subject
22028   <LI>Reply-To
22029 </UL>
22032 If you are looking for a way to control which headers are included in
22033 outgoing mail and are visible or not in the composer, take a look at the
22034 options
22035 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22036 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22037 this option.
22039 <UL>   
22040 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22041 </UL><P>
22042 &lt;End of help on this topic&gt;
22043 </BODY>
22044 </HTML>
22045 ====== h_config_viewer_margin_left =====
22046 <HTML>
22047 <HEAD>
22048 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22049 </HEAD>
22050 <BODY>
22051 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22053 This variable controls the left-hand vertical margin's width in
22054 Alpine's Message Viewing screen.
22055 Its value is the number of space characters preceding each displayed line.
22056 For consistency with
22057 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22058 you may specify the column number to start in
22059 (column numbering begins with number 1)
22060 instead of the width of the margin by appending a lower case letter
22061 &quot;c&quot; to the number.
22062 For example, a value of &quot;2c&quot; means to start the text in column two,
22063 which is entirely equivalent to a value of &quot;1&quot;, which means to
22064 leave a margin of 1 space.
22066 The default is a left margin of 0 (zero).
22067 Misconfigurations (for example, negative values or values with starting
22068 left columns greater than the ending right column)
22069 are silently ignored.
22070 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22071 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22072 instead.
22075 &lt;End of help on this topic&gt;
22076 </BODY>
22077 </HTML>
22078 ====== h_config_viewer_margin_right =====
22079 <HTML>
22080 <HEAD>
22081 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22082 </HEAD>
22083 <BODY>
22084 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22086 This variable controls the right-hand vertical margin's width in
22087 Alpine's Message Viewing screen.
22088 Its value is the number of space characters following each displayed line.
22089 You may specify the column number to end the text in
22090 (column numbering begins with number 1)
22091 instead of the width of the margin by appending a lower case letter
22092 &quot;c&quot; to the number.
22093 For example, a value of &quot;76c&quot; means to end the text in column 76.
22094 If the screen is 80 characters wide, this is equivalent to a value
22095 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22096 However, if you use different size screens at different times, then these
22097 two values are not equivalent.
22099 The default right margin is 4.
22100 Misconfigurations (for example, negative values or values with starting
22101 left columns greater than the ending right column)
22102 are silently ignored.
22103 If the number of columns for text between the
22104 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22105 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22106 instead.
22109 &lt;End of help on this topic&gt;
22110 </BODY>
22111 </HTML>
22112 ====== h_config_quote_suppression =====
22113 <HTML>
22114 <HEAD>
22115 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22116 </HEAD>
22117 <BODY>
22118 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22120 This option should be used with care.
22121 It will cause some of the quoted text to be eliminated from the
22122 display when viewing a message in the MESSAGE TEXT screen.
22123 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22124 value &quot;5&quot;,
22125 this will cause quoted text that is longer than five lines to be truncated.
22126 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22127 Quoted text of more than six lines will have the first five lines displayed
22128 followed by a line that looks something like
22130 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22132 As a special case, if exactly one line of quoted text would be hidden, the
22133 entire quote will be shown instead.
22134 So for the above example, quoted text that is exactly six lines long will
22135 will be shown in its entirety.
22136 (In other words, instead of hiding a single line and adding a line
22137 that announces that one line was hidden, the line is just shown.)
22139 If the sender of a message has carefully chosen the quotes that he or she
22140 includes, hiding those quotes may change the meaning of the message.
22141 For that reason, Alpine requires that when you want to set the value of this
22142 variable to something less than four lines, you actually have to set it
22143 to the negative of that number.
22144 So if you want to set this option to &quot;3&quot;, you actually have to
22145 set it to &quot;-3&quot;.
22146 The only purpose of this is to get you to think about whether or not you
22147 really want to do this!
22148 If you want to delete all quoted text you set the value of this option
22149 to the special value &quot;-10&quot;.
22151 The legal values for this option are
22153 <TABLE>   
22154 <TR>
22155   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22156   <TD> Default, don't hide anything </TD>
22157 </TR>
22158 <TR>
22159   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22160   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22161 </TR>
22162 <TR>
22163   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22164   <TD> Suppress if more than that many lines </TD>
22165 </TR>
22166 <TR>
22167   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22168   <TD> Suppress all quoted lines </TD>
22169 </TR>
22170 </TABLE>
22172 If you set this option to a non-default value you may sometimes wish to
22173 view the quoted text that is not shown.
22174 When this is the case, the
22175 <A HREF="h_common_hdrmode">HdrMode Command</A>
22176 may be used to show the hidden text.
22177 Typing the &quot;H&quot; command once will show the hidden text.
22178 Typing a second &quot;H&quot; will also turn on Full Header mode.
22179 The presence or absence of the HdrMode command is determined by the
22180 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22181 Feature-List option in your Alpine configuration, so you will want to
22182 be sure that is turned on if you use quote suppression.
22184 For the purposes of this option, a quote is a line that begins with the
22185 character &quot;&gt;&quot;.
22187 Quotes are only suppressed when displaying a message on the screen.
22188 The entire quote will be left intact when printing or forwarding or something
22189 similar.
22191 &lt;End of help on this topic&gt;
22192 </BODY>
22193 </HTML>
22194 ====== h_config_saved_msg_name_rule =====
22195 <HTML>
22196 <HEAD>
22197 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22198 </HEAD>
22199 <BODY>
22200 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22202 This option determines the default folder name when saving
22203 a message.
22206 The default option is &quot;default-folder&quot;, which is the folder
22207 called &quot;saved-messages&quot; in Unix Alpine and
22208 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22209 the Alpine option called
22210 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22213 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22214 get the chosen option's value for the message being saved (or for the
22215 first message being saved if using an aggregrate save).
22216 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22217 value of who the message came from (i.e. the from address).
22218 Alpine then attempts to save the message to a folder matching that value.
22219 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22220 &quot;by-sender&quot;.
22221 The opposite is also true.
22222 If &quot;by-recipient&quot; is chosen and the message was posted to a
22223 newsgroup, Alpine will use the newsgroup name.
22224 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22225 &quot;by-from&quot;.
22228 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22229 to use the personal name part of the address instead of the mailbox part.
22230 If any of the &quot;by-nick&quot; options are chosen, the
22231 address is looked up in your address book and if found, the
22232 nickname for that entry is used.
22233 Only simple address book entries are checked, not distribution lists.
22234 Similarly, if any of the
22235 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22236 address book entry is used.
22237 If by-realname, or the by-nick or by-fcc lookups result in no value,
22238 then if the chosen option ends with the &quot;then-from&quot;,
22239 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22240 or &quot;then-recip&quot; suffix, Alpine
22241 reverts to the same behavior as &quot;by-from&quot;,
22242 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22243 depending on which option was specified.
22244 If the chosen option doesn't end with one of
22245 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22246 folder when no match is found in the address book.
22249 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22250 to save to the folder that you saved to the last time you saved a
22251 message.  The first time you save a message in an Alpine session, Alpine
22252 attempts to save the message to the default folder.
22255 Here is an example to make some of the options clearer.
22256 If the message is From
22258 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22260 and this rule is set to &quot;by-from&quot;, then the default folder offered
22261 in the save dialog would be &quot;flint&quot;.
22263 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22264 be &quot;Fred Flintstone&quot;.
22266 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22267 for the address &quot;flint@bedrock.org&quot; in your address book.
22268 If an entry is found and it has a nickname associated with it, that nickname
22269 will be offered as the default folder.
22270 If not, the default saved message folder will be offered as the default.
22272 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22273 for the address &quot;flint@bedrock.org&quot; in your address book.
22274 If an entry is found and it has an Fcc associated with it, that Fcc
22275 will be offered as the default folder.
22276 If not, the default saved message folder will be offered as the default.
22278 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22279 for the address &quot;flint@bedrock.org&quot; in your address book.
22280 If an entry is found and it has a nickname associated with it, that nickname
22281 will be offered as the default folder.
22282 If it is not found (or has no nickname) then the default offered will be
22283 the same as it would be for the &quot;by-from&quot; rule.
22284 That is, it would be &quot;flint&quot;
22286 <UL>   
22287 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22288 </UL><P>
22289 &lt;End of help on this topic&gt;
22290 </BODY>
22291 </HTML>
22292 ====== h_config_fcc_rule =====
22293 <HTML>
22294 <HEAD>
22295 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22296 </HEAD>
22297 <BODY>
22298 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22300 This option determines the default name for folder carbon copy. Choose
22301 one:
22303 <DL>
22304 <DT>default-fcc</DT>
22305 <DD>This is the normal default, the value of which is set in the
22306 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22307 configuration.
22308 </DD>
22310 <DT>last-fcc-used</DT>
22311 <DD> Causes Alpine to use the folder that was last
22312 used in the fcc field
22313 </DD>
22315 <DT>by-nickname</DT>
22316 <DD>Means that Alpine will use the nickname
22317 from your address book that matches the first address in the To line.
22318 If there is no match, it will use the value of the
22319 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22320 </DD>
22322 <DT>by-recipient</DT>
22323 <DD>Means Alpine will form a folder name
22324 based on the left hand side of the first address in the To line.
22325 </DD>
22327 <DT>by-nick-then-recip</DT>
22328 <DD>Means that it will use the
22329 matching nickname from your address book if there is one, otherwise it
22330 will extract the recipient name from the address and use that (like
22331 by-recipient).
22332 </DD>
22334 <DT>current-folder</DT>
22335 <DD>Causes a copy to be written to
22336 the currently open folder, unless that is the INBOX.  In the case
22337 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22338 used instead.
22339 </DD>
22340 </DL>
22343 Note: Whatever the fcc specified by the rule here, it will be
22344 over-ridden by any fcc entries you have in your address book.
22347 <UL>   
22348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22349 </UL><P>
22350 &lt;End of help on this topic&gt;
22351 </BODY>
22352 </HTML>
22353 ====== h_config_sort_key =====
22354 <HTML>
22355 <HEAD>
22356 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22357 </HEAD>
22358 <BODY>
22359 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22361 This option determines the order in which messages will be displayed in
22362 the MESSAGE INDEX screen.  Choose from:
22364 <UL>
22365  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22366  <LI> <A HREF="h_index_sort_date">Date</A>
22367  <LI> <A HREF="h_index_sort_subj">Subject</A>
22368  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22369  <LI> <A HREF="h_index_sort_thread">Thread</A>
22370  <LI> <A HREF="h_index_sort_from">From</A>
22371  <LI> <A HREF="h_index_sort_size">Size</A>
22372  <LI> <A HREF="h_index_sort_score">Score</A>
22373  <LI> <A HREF="h_index_sort_to">To</A>
22374  <LI> <A HREF="h_index_sort_cc">Cc</A>
22375 </UL>
22378 Each type of sort may also be reversed.
22379 Normal default is by &quot;Arrival&quot;.
22382 A possible point of confusion arises when you change the configuration
22383 of the <!--#echo var="VAR_sort-key"-->.
22384 The folder will normally be re-sorted when you go back to viewing the
22385 index.
22386 However, if you have manually sorted the folder with the
22387 Sort
22388 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22389 command, then it will not be re-sorted until the next time it is opened.
22392 <UL>   
22393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22394 </UL><P>
22395 &lt;End of help on this topic&gt;
22396 </BODY>
22397 </HTML>
22398 ====== h_config_other_startup =====
22399 <HTML>
22400 <HEAD>
22401 <TITLE>OPTION: Set Startup Rule</TITLE>
22402 </HEAD>
22403 <BODY>
22404 <H1>OPTION: Set Startup Rule</H1>
22406 This option determines which message will be the <EM>current message</EM> when
22407 the folder is first opened.
22408 It works the same way that the option
22409 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
22410 works, so look there for help.
22411 It may be used for any folder, not just incoming folders.
22414 <UL>   
22415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22416 </UL><P>
22417 &lt;End of help on this topic&gt;
22418 </BODY>
22419 </HTML>
22420 ====== h_config_perfolder_sort =====
22421 <HTML>
22422 <HEAD>
22423 <TITLE>Set Sort Order</TITLE>
22424 </HEAD>
22425 <BODY>
22426 <H1>Set Sort Order</H1>
22428 This option determines the order in which messages will be displayed in
22429 the MESSAGE INDEX screen when the Current Folder Type set in the
22430 Pattern is a match. Choose from:
22432 <UL>
22433  <LI> <A HREF="h_index_sort_default">Default</A>
22434  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22435  <LI> <A HREF="h_index_sort_date">Date</A>
22436  <LI> <A HREF="h_index_sort_subj">Subject</A>
22437  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22438  <LI> <A HREF="h_index_sort_thread">Thread</A>
22439  <LI> <A HREF="h_index_sort_from">From</A>
22440  <LI> <A HREF="h_index_sort_size">Size</A>
22441  <LI> <A HREF="h_index_sort_score">Score</A>
22442  <LI> <A HREF="h_index_sort_to">To</A>
22443  <LI> <A HREF="h_index_sort_cc">Cc</A>
22444 </UL>
22447 Each type of sort may also be reversed.
22448 Normal default is by &quot;Arrival&quot;.
22451 A possible point of confusion arises when you change the configuration
22452 of the Sort Order for the currently open folder.
22453 The folder will normally be re-sorted when you go back to viewing the
22454 index.
22455 However, if you have manually sorted the folder with the
22456 Sort
22457 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22458 command, then it will not be re-sorted until the next time it is opened.
22461 <UL>   
22462 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22463 </UL><P>
22464 &lt;End of help on this topic&gt;
22465 </BODY>
22466 </HTML>
22467 ====== h_config_fld_sort_rule =====
22468 <HTML>
22469 <HEAD>
22470 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
22471 </HEAD>
22472 <BODY>
22473 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
22475 This option controls the order in which folder list entries will be
22476 presented in the FOLDER LIST screen.  Choose one of the following:
22478 <DL>
22479 <DT>Alphabetical</DT>
22480 <DD>sort by alphabetical name independent of type
22481 </DD>
22483 <DT>Alpha-with-dirs-last</DT>
22484 <DD>sort by alphabetical name grouping directory entries
22485 to the end of the list
22486 </DD>
22488 <DT>Alpha-with-dirs-first</DT>
22489 <DD>sort by alphabetical name grouping directory entries
22490 to the start of the list
22491 </DD>
22492 </DL>
22494 The normal default is &quot;Alphabetical&quot;.
22497 <UL>   
22498 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22499 </UL><P>
22500 &lt;End of help on this topic&gt;
22501 </BODY>
22502 </HTML>
22503 ====== h_config_ab_sort_rule =====
22504 <HTML>
22505 <HEAD>
22506 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
22507 </HEAD>
22508 <BODY>
22509 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
22511 This option controls the order in which address book entries will be
22512 presented.  Choose one of the following:
22514 <DL>
22515 <DT>fullname</DT>
22516 <DD>use fullname field, lists mixed in
22517 </DD>
22519 <DT>fullname-with-lists-last</DT>
22520 <DD>use fullname field, but put lists at end
22521 </DD>
22523 <DT>nickname</DT>
22524 <DD>use nickname field, lists mixed in
22525 </DD>
22527 <DT>nickname-with-lists-last</DT>
22528 <DD>use nickname field, but put lists at end
22529 </DD>
22531 <DT>dont-sort</DT>
22532 <DD>don't change order of file
22533 </DD>
22534 </DL>
22537 The normal default is &quot;fullname-with-lists-last&quot;.
22538 If you use an address book from more than one computer and those
22539 computers sort the address book differently then the sort order
22540 will be the order where the last change to the address book was
22541 made.
22542 There are two reasons the sorting might be different on different
22543 systems.
22544 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
22545 places.
22546 Second, the collation rules on the two computers may be different.
22547 For example, one system might ignore special characters while the other
22548 doesn't or one may sort upper and lower case letters together while
22549 the other doesn't.
22550 In any case, the order you see is the order on the system where the
22551 last change was made, for example by an address book edit or a
22552 Take Address command.
22555 <UL>   
22556 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22557 </UL><P>
22558 &lt;End of help on this topic&gt;
22559 </BODY>
22560 </HTML>
22561 ====== h_config_post_char_set =====
22562 <HTML>
22563 <HEAD>
22564 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
22565 </HEAD>
22566 <BODY>
22567 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
22569 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
22570 when sending messages.
22574 When sending a message the text typed in the composer is
22575 labeled with the character set specified by this option.
22576 If the composed text is not fully representable in the 
22577 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
22578 instead;
22581 Attachments are labeled with your
22582 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
22585 Generally, there should be little need to set this option.
22586 If left unset, the
22587 default behavior is to label composed text as specifically as
22588 possible.  That is, if the composed text has no non-ASCII characters,
22589 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
22590 only ISO-8859-15 characters, it is labeled as such.  Alpine will
22591 attempt to automatically detect a number of character sets including ISO-8859-15,
22592 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22593 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
22594 If the message contains a mix of character sets,
22595 it is labeled as &quot;UTF-8.&quot;
22599 This setting is provided to allow you to force a particular character set that
22600 Alpine does not automatically detect. For example, if a message is representable
22601 in more than one character set then Alpine may choose a different default
22602 than you want.
22603 Lastly, by setting this option explicitly to
22604 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
22605 &quot;UTF-8&quot; instead of something more specific.
22608 In the Setup/Config screen you may choose from a list of all the
22609 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22612 The options
22613 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22614 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22615 are closely related.
22616 Setting the feature
22617 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22618 should cause this option to be ignored.
22621 <UL>   
22622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22623 </UL><P>
22624 &lt;End of help on this topic&gt;
22625 </BODY>
22626 </HTML>
22627 ====== h_config_unk_char_set =====
22628 <HTML>
22629 <HEAD>
22630 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
22631 </HEAD>
22632 <BODY>
22633 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
22635 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
22636 when reading or replying to messages.
22640 A text message should either be made up of all US-ASCII characters
22641 or it should contain a charset label which tells the software which
22642 character set encoding to use to interpret the message.
22643 Sometimes a malformed message may be unlabeled but contain non-ascii text.
22644 This message is outside of the standards so any attempt to read it could fail.
22645 When Alpine attempts to read such a message it will try to interpret the
22646 text in the character set you specify here.
22647 For example, if you have correspondents who send you unlabeled messages that
22648 are usually made up of characters from the WINDOWS-1251 character set, setting
22649 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
22650 allow you to read those messages.
22651 Of course, if the unlabeled message is actually in some other character set,
22652 then you may see garbage on your screen.
22654 Instead of just unlabeled text, this option also affects text which is labeled
22655 with the charsets &quot;X-Unknown&quot; or &quot;US-ASCII&quot;.
22658 In the Setup/Config screen you may choose from a list of all the
22659 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22662 <UL>   
22663 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22664 </UL><P>
22665 &lt;End of help on this topic&gt;
22666 </BODY>
22667 </HTML>
22668 ====== h_config_char_set =====
22669 <HTML>
22670 <HEAD>
22671 <TITLE>OPTION: Display Character Set</TITLE>
22672 </HEAD>
22673 <BODY>
22674 <H1>OPTION: Display Character Set</H1>
22676 The Display Character Set configuration option is used when viewing messages.
22678 Alpine uses Unicode characters internally and 
22679 it is a goal for Alpine to handle email in many different languages.
22680 Alpine will properly display only left-to-right character sets
22681 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
22682 font is in use, in the sense that
22683 characters are assumed to take up zero, one, or two character cell
22684 widths from left to right on the screen. This is true even in PC-Alpine.
22687 Alpine recognizes some local character sets that are right-to-left
22688 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
22689 (Arabic) and properly converts texts in these character sets to/from
22690 Unicode; however, there are known display bugs with these character
22691 sets.
22694 There are three possible configuration character settings and some
22695 environment variable settings that can affect how Alpine
22696 handles international characters.
22697 The first two of these are only available in UNIX Alpine.
22698 The three configuration options are
22699 Display Character Set,
22700 Keyboard Character Set, and
22701 <!--#echo var="VAR_posting-character-set"-->.
22702 The Keyboard Character Set defaults to being the same value
22703 as the Display Character Set, and that is usually correct, because
22704 the keyboard almost always produces characters in the same character set
22705 as the display displays.
22706 The Display Character Set is the character set that Alpine
22707 will attempt to use when sending characters to the display.
22710 By default, the Display Character Set variable is not set and UNIX Alpine
22711 will attempt to get this information from the environment.
22712 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
22713 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
22714 An explicit configuration setting for Display Character Set will,
22715 of course, override any default setting.
22717 For PC-Alpine the Display Character Set
22718 and the Keyboard Character Set
22719 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
22722 It is probably best to use UNIX Alpine in a terminal emulator
22723 capable of displaying UTF-8 characters, since that will allow you to
22724 view just about any received text that is correctly formatted (note,
22725 however, the above comments about known index display bugs with certain
22726 character sets). You'll need to have an emulator that uses a UTF-8 font
22727 and you'll need to set up your environment to use a UTF-8 charmap. For
22728 example, on a Linux system you might include
22730 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
22733 or something similar in your UNIX startup files.
22734 You'd also have to select a UTF-8 font in your terminal emulator.
22737 The types of values that the character set variables may be set to are
22738 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
22739 The <CODE>ISO-2022</CODE> character sets are not supported for input or
22740 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
22741 for use only as a <!--#echo var="VAR_posting-character-set"-->.
22742 In the Setup/Config screen you may choose from a list of all the
22743 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22744 Here is a list of many of the possible character sets:
22747 <TABLE>
22748 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
22749 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
22750 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
22751 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
22752 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
22753 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
22754 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
22755 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
22756 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
22757 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
22758 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
22759 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
22760 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
22761 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
22762 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
22763 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
22764 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
22765 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
22766 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
22767 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
22768 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
22769 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
22770 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
22771 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22772 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22773 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22774 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22775 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22776 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
22777 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
22778 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
22779 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
22780 </TABLE>
22783 When reading incoming email, Alpine understands many different
22784 character sets and is able to convert the incoming mail into Unicode.
22785 The Unicode will be converted to the Display Character Set
22786 for display on your terminal.
22787 Characters typed at the keyboard will be converted from the
22788 Keyboard Character Set to Unicode for Alpine's internal
22789 use.
22790 You may find that you can read some malformed messages that do not
22791 contain a character set label by setting the option
22792 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
22795 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
22796 The default behavior obtained by leaving this variable unset is usually
22797 what is wanted. In that default case, Alpine will attempt
22798 to label the message with the most specific character set from the
22799 rather arbitrary set
22801 US-ASCII, ISO-8859-15,
22802 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22803 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
22806 For example, if the message is made up of only US-ASCII characters, it
22807 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
22808 that will be the label. If that doesn't work the same is tried for the
22809 remaining members of the list.
22812 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
22813 explicit value instead.
22814 For example, if you usually send messages in Greek, setting this
22815 option to ISO-8859-7 will result in messages being labeled as
22816 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
22817 are only Greek characters, or UTF-8 if there are some characters
22818 that aren't representable in ISO-8859-7.
22819 Another possibility is to set this option explicitly to UTF-8.
22820 In that case
22821 Alpine labels only ascii messages as US-ASCII and all other
22822 messages as UTF-8.
22825 The options
22826 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22827 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22828 are closely related to this option.
22829 Setting the feature
22830 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22831 should cause this option to be ignored.
22834 When displaying a message, Alpine compares this setting to the character
22835 set specified in the message.  If not all of the
22836 characters in the message can be displayed using the Display Character Set
22837 then Alpine places an editorial
22838 comment in the displayed text (enclosed in square-brackets) indicating
22839 that some characters may not be displayed correctly.
22840 This comment may be eliminated by turning on the option
22841 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
22844 <UL>   
22845 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22846 </UL><P>
22847 &lt;End of help on this topic&gt;
22848 </BODY>
22849 </HTML>
22850 ====== h_config_key_char_set =====
22851 <HTML>
22852 <HEAD>
22853 <TITLE>OPTION: Keyboard Character Set</TITLE>
22854 </HEAD>
22855 <BODY>
22856 <H1>OPTION: Keyboard Character Set</H1>
22858 UNIX Alpine only.
22860 The Keyboard Character Set identifies the character set of the characters
22861 coming from your keyboard.
22862 It defaults to having the same value as your
22863 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
22864 which in turn defaults to a value obtained from your environment.
22865 It is unlikely that you will need to use this option, because the keyboard
22866 almost always produces the same kind of characters as the display displays.
22869 This character set is also used when accessing files in your local
22870 file system.
22871 The names of the files are assumed to be in the same character set as
22872 what the keyboard produces, as well as the contents of the files.
22875 In the Setup/Config screen you may choose from a list of all the
22876 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22879 The options
22880 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22881 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22882 are closely related.
22883 Setting the feature
22884 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22885 should cause this option to be ignored.
22888 <UL>   
22889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22890 </UL><P>
22891 &lt;End of help on this topic&gt;
22892 </BODY>
22893 </HTML>
22894 ====== h_config_editor =====
22895 <HTML>
22896 <HEAD>
22897 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
22898 </HEAD>
22899 <BODY>
22900 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
22902 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
22903 normally an alternative to Alpine's internal composer (Pico).  You could use
22904 this setting to specify an alternate editor to use occasionally or if you
22905 have a favorite editor and want to use it all the time (see the 
22906 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
22907 If you specify multiple editors for this option, ^_ will invoke the first one 
22908 of those specified that exists and is executable.  When specifying a program 
22909 for use here, make sure that the format of the text it saves -- which, when 
22910 you exit it, will become the message body in Alpine -- is appropriate 
22911 for the body of an email message; avoid proprietary formats that may result in 
22912 a message body that the recipient of your message will be unable to decipher.
22914 <!--chtml if pinemode="os_windows"-->
22915 <!--chtml else-->
22916 If you are in doubt about what editors are available on your system, or which 
22917 of them may be appropriate for specification here, ask your local computing 
22918 support staff.  
22919 <!--chtml endif-->
22921 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
22922 unset, outgoing text will be set as flowed.  In most cases this will be fine,
22923 but if the editor has a &quot;flowed text&quot; mode, it would be best to
22924 use that.
22926 <P><UL>
22927 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22928 </UL>
22930 &lt;End of help on this topic&gt;
22931 </BODY>
22932 </HTML>
22933 ====== h_config_speller =====
22934 <HTML>
22935 <HEAD>
22936 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
22937 </HEAD>
22938 <BODY>
22939 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
22941 UNIX Alpine only.
22943 For PC-Alpine, you must install the aspell library code that you
22944 may get from
22945 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
22947 This option affects the behavior of the ^T (spell check) command in the
22948 Composer.  It specifies the program invoked by ^T in the Composer.
22949 By default, Alpine uses
22951 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
22953 if it knows where to find &quot;aspell&quot;.
22954 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
22955 then the command used is
22957 <CENTER><SAMP>ispell -l</SAMP></CENTER>
22959 Otherwise, the ancient &quot;spell&quot; command is used.
22961 If you specify a value for this command (with full pathname) then that is what
22962 will be used instead of any of the defaults.
22963 When invoking this
22964 spell-checking program, Alpine appends a tempfile name (where the message is
22965 passed) to the command line. Alpine expects the speller to correct the
22966 spelling in that file. When you exit from that program Alpine will read the
22967 tempfile back into the composer.
22969 Don't set this speller option to the standard Unix spell command.
22970 That won't work because spell works in a different way.
22973 <UL>   
22974 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22975 </UL><P>
22976 &lt;End of help on this topic&gt;
22977 </BODY>
22978 </HTML>
22979 ====== h_config_display_filters =====
22980 <HTML>
22981 <HEAD>
22982 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
22983 </HEAD>
22984 <BODY>
22985 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
22987 This option defines a list of text-filtering commands (programs or
22988 scripts) that may be used to filter text portions of received messages
22989 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
22990 display screen, exporting to a text file).  
22991 For security reasons, the full path name of the
22992 filter command must be specified.
22995 The command is executed and the message is piped into its standard input. 
22996 The standard output of the command is read back by Alpine.  The
22997 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
22999 <P> 
23000 The filter's use is based on the configured &quot;trigger&quot; string.  The
23001 format of a filter definition is:
23003 <P>   
23004 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23007 You can specify as many filters as you wish, separating them with a comma.  
23008 Each filter can have only one trigger and command.  Thus, two trigger 
23009 strings that invoke the same command require separate filter 
23010 specifications. 
23012 <P> 
23013 The &quot;trigger&quot; is simply text that, if found in the message,
23014 will invoke the associated command.  If the trigger contains any space
23015 characters, it must be placed within quotes.  Likewise, should you
23016 wish a filter to be invoked unconditionally, define the trigger as the
23017 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23018 trigger string is found anywhere in the text of the message the filter
23019 is invoked.  Placing the trigger text within the tokens defined below
23020 changes where within the text the trigger must be before considering
23021 it a match.
23023 <P>  
23024 Trigger Modifying Tokens:
23025 <DL>
23026 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23027 <DD>This token tells Alpine to invoke the supplied command
23028 if the text is in a character set matching <VAR>string</VAR>
23029 (e.g., ISO-8859-2 or ISO-2022-JP).
23030 </DD>
23033 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23034 <DD>This token tells Alpine to invoke the supplied command
23035 if the enclosed <VAR>string</VAR> is found to be the first
23036 non-whitespace text.
23037 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23038 the space character.
23039 </DD>
23041 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23042 <DD>This token tells Alpine to invoke the supplied command
23043 if the enclosed <VAR>string</VAR> is found at the beginning
23044 of any line in the text.
23045 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23046 the space character.
23047 </DD>
23048 </DL>
23051 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23052 the command line to be invoked if the trigger string is found.  Below
23053 are tokens that Alpine will recognize and replace with special values
23054 when the command is actually invoked.
23057 Command Modifying Tokens:
23059 <DL>
23060 <DT>_TMPFILE_</DT>
23061 <DD>When the command is executed, this token is 
23062 replaced with the path and name of the temporary 
23063 file containing the text to be filtered.  Alpine 
23064 expects the filter to replace this data with the 
23065 filter's result.
23068 NOTE: Use of this token implies that the text to 
23069 be filtered is not piped into standard input of the 
23070 executed command and its standard output is ignored. 
23071 Alpine restores the tty modes before invoking the
23072 filter in case the filter interacts with the user
23073 via its own standard input and output.  
23074 </DD>
23075                         
23076 <DT>_RESULTFILE_</DT>
23077 <DD>When the command is executed, this token is 
23078 replaced with the path and name of a temporary 
23079 file intended to contain a status message from the 
23080 filter.  Alpine displays this in the message status 
23081 field. 
23082 </DD>
23084 <DT>_DATAFILE_</DT>
23085 <DD>When the command is executed, this token is 
23086 replaced with the path and name of a temporary 
23087 file that Alpine creates once per session and deletes 
23088 upon exit.  The file is intended to be used by the 
23089 filter to store state information between instances 
23090 of the filter.
23091 </DD>
23092    
23093 <DT>_PREPENDKEY_</DT>
23094 <DD>When the command is executed, this token indicates that a random
23095 number will be passed down the input stream before the message text.
23096 This number could be used as a session key.  It is sent in this way to
23097 improve security.  The number is unique to the current Alpine session
23098 and is only generated once per session.
23099 </DD>
23101 <DT>_SILENT_</DT>
23102 <DD>When the filter is executed, this token tells Alpine not to repaint
23103 the screen while the command is being executed. This can be used with 
23104 filters that do not interact with the user, and therefore repainting 
23105 the screen is not necessary. 
23106 </DD>
23107 </DL>
23110 The feature
23111 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23113 Performance caveat/considerations:
23114 <BR>
23115 Testing for the trigger and invoking the filter doesn't come for free.
23116 There is overhead associated with searching for the trigger string, testing
23117 for the filter's existence and actually piping the text through the filter.
23118 The impact can be reduced if the Trigger Modifying Tokens above are 
23119 employed.
23121 &lt;End of help on this topic&gt;
23122 </BODY>
23123 </HTML>
23124 ====== h_config_sending_filter =====
23125 <HTML>
23126 <HEAD>
23127 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23128 </HEAD>
23129 <BODY>
23130 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23131       
23132 This option defines a list of text-filtering commands (programs and
23133 scripts) that may be selectively invoked to process a message just before
23134 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23135 select which filter (or none) to apply to the message before it is sent. 
23136 For security reasons, the full path of the filter program must be
23137 specified.
23140 Command Modifying Tokens:
23142 <DL>
23143 <DT>_RECIPIENTS_</DT>
23144 <DD>When the command is executed, this token is replaced 
23145 with the space delimited list of recipients of the 
23146 message being sent. 
23147 </DD>
23148         
23149 <DT>_TMPFILE_</DT>
23150 <DD>
23151 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 replaced 
23176 in the command line with the path and name of a 
23177 temporary file that Alpine creates once per session 
23178 and deletes upon exit.  The file is intended to be 
23179 used by the filter to store state information between 
23180 instances of the filter.
23181 </DD>
23182    
23183 <DT>_PREPENDKEY_</DT>
23184 <DD>When the command is executed, this token indicates 
23185 that a random number will be passed down the input 
23186 stream before the message text.  This number could 
23187 be used as a session key.  It is sent in this way 
23188 to improve security.  The number is unique to the 
23189 current Alpine session and is only generated once per 
23190 session. 
23191 </DD>
23193 <DT>_INCLUDEALLHDRS_</DT>
23194 <DD>When the command is executed, this token indicates 
23195 that the headers of the message will be passed down the input stream
23196 before the message text.
23197 </DD>
23199 <DT>_MIMETYPE_</DT>
23200 <DD>When the command is executed, this token is replaced in the
23201 command name with a temporary file name used to accept any new MIME
23202 Content-Type information necessitated by the output of the filter.
23203 Upon the filter's exit, if the file contains new MIME type
23204 information, Alpine verifies its format and replaces the outgoing
23205 message's MIME type information with that contained in the file. This
23206 is basically a cheap way of sending something other than Text/Plain.
23207 </DD>
23208 </DL>
23210 <P>   
23211 NOTE: Only the body text, which is visible in the Composer, is piped
23212 through this filter.  Attachments are not sent to the filter.
23213 <P>   
23214 Sending filters are not used if the feature
23215 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23217 <UL>   
23218 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23219 </UL><P>
23220 &lt;End of help on this topic&gt;
23221 </BODY>
23222 </HTML>
23223 ====== h_config_keywords =====
23224 <HTML>
23225 <HEAD>
23226 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23227 </HEAD>
23228 <BODY>
23229 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23231 You may define your own set of keywords and optionally set them on a
23232 message by message basis.
23233 These are similar to the &quot;Important&quot; flag which the user
23234 may set using the Flag command.
23235 The difference is that the Important flag is always present for each folder.
23236 User-defined keywords are chosen by the user.
23237 You may set up the list of possible keywords here, or you may add keywords
23238 from the Flag Details screen that you
23239 can get to after typing the
23240 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23241 command.
23242 After the keywords have been defined,
23243 then you use the <A HREF="h_common_flag">Flag command</A>
23244 to set or clear the keywords in each message.
23245 The behavior of the flag command may be modified by using the
23246 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23247 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23250 Keywords may be used when Selecting messages (Select Keyword).
23251 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23252 Filter Rules may be used to set keywords automatically.
23253 Keywords may be displayed as part of the Subject of a message by using
23254 the SUBJKEY or SUBJKEYINIT tokens in the
23255 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23256 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23257 option may be used to modify the display of keywords using
23258 SUBJKEY and SUBJKEYINIT slightly.
23259 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23260 screen by using the KEY or KEYINIT tokens.
23261 It is also possible to color keywords in the index using the
23262 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23263 Keywords are not supported by all mail servers.
23266 You may give keywords nicknames if you wish.
23267 If the keyword definition you type in contains a SPACE character, then the
23268 actual value of the keyword is everything after the last SPACE and the
23269 nickname for that keyword is everything before the last SPACE.
23270 For example, suppose you are trying to interoperate with another email program
23271 that uses a particular keyword with an unpleasant name.
23272 Maybe it uses a keyword called
23274 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23276 but for you that keyword means that the message is work-related.
23277 You could define a keyword to have the value
23279 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23281 and then you would use the name &quot;Work&quot; when dealing with
23282 that keyword in Alpine.
23283 If you defined it as
23285 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23287 the nickname would be everything before the last SPACE, that is the nickname
23288 would be &quot;My Work&quot;.
23290 Some commonly used keywords begin with dollar signs.
23291 This presents a slight complication, because the dollar sign is normally used
23292 to signify
23293 <A HREF="h_news_config">environment variable expansion</A>
23294 in the Alpine configuration.
23295 In order to specify a keyword that begins with a dollar sign you must
23296 precede the dollar sign with a second dollar sign to escape its special
23297 meaning.
23298 For example, if you want to include the keyword
23300 <CENTER><SAMP>$Label1</SAMP></CENTER>
23302 as one of your possible keywords, you must enter the text
23304 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23307 instead.
23309 There are a couple limitations.
23310 First, not all servers support keywords.
23311 Second, some servers (including the IMAP server included with Alpine)
23312 have a per folder limit on the number of keywords that may be defined.
23313 This count commonly includes every keyword you have ever used in the
23314 folder, even if it is no longer being used.
23315 In other words, you can add keywords but you cannot remove them easily.
23316 If you have changed keywords over the life of a folder and find that
23317 you have reached such a limit, one possible solution might be to copy
23318 all of the messages to a newly created folder (using Alpine) and then
23319 delete the original and rename the new folder.
23320 The reason this might work is that only the keywords currently set in
23321 any of the messages will be used in the new folder, hopefully putting you
23322 under the limit.
23325 <UL>   
23326 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23327 </UL><P>
23328 &lt;End of help on this topic&gt;
23329 </BODY>
23330 </HTML>
23331 ====== h_config_alt_addresses =====
23332 <HTML>
23333 <HEAD>
23334 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23335 </HEAD>
23336 <BODY>
23337 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23339 This option provides a place for you to list alternate email addresses
23340 you may have.
23341 Each address in the list should be the actual email address part of an
23342 address, without the full name field or the angle brackets.
23343 For example:
23346 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23349 The matching is case-insensitive, so this would match any of
23350 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23351 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23354 If set, the option affects the behavior of the Reply
23355 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23356 a message has been addressed specifically to you.
23359 In the default INDEX display
23360 the personal name (or email address) of
23361 the person listed in the message's &quot;From:&quot; header
23362 field is usually displayed except when that address is yours or one of your
23363 alternate addresses.
23364 In that case you will usually see the name of
23365 the first person specified in the
23366 message's &quot;To:&quot; header field
23367 with the prefix &quot;To: &quot; prepended.
23370 With respect to Reply, the reply-to-all option will exclude addresses
23371 listed here.
23374 The feature
23375 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
23376 is somewhat related to this option.
23379 In addition to a list of actual addresses,
23380 you may use regular expressions (as used with egrep with the ignore case flag)
23381 to describe the addresses you want to match.
23382 Alpine will somewhat arbitrarily interpret your entry as a regular
23383 expression if it contains any of the characters
23384 *, |, +, ?, {, [, ^, $, or &#92;.
23385 Otherwise, it will be treated literally.
23386 The feature
23387 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
23388 may be used to turn off regular expression processing regardless of whether or not
23389 special characters appear in the entry.
23392 A description of how regular expressions work is beyond the
23393 scope of this help text, but some examples follow.
23396 The entry
23399 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
23402 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
23403 address with a domain name of <SAMP>example.com</SAMP> (such as
23404 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
23405 one of your alternate addresses.
23406 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
23407 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
23408 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
23409 Complicating things further, the dollar sign
23410 is special in the Alpine configuration (it signifies environment variable expansion)
23411 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
23412 Quotes around the whole expression will not escape the dollar sign successfully.
23413 So this example should look like
23416 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
23420 The entry
23423 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
23426 would match
23427 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
23428 as <SAMP>fred@example.com</SAMP>.
23431 You could match all addresses that look like
23432 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
23433 entry
23436 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
23439 Notice that you have to escape the plus sign with a backslash because plus
23440 is a special character in regular expressions.
23441 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
23442 the expression
23445 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
23448 would do it, but it would be easier to just add fred@example.com as a
23449 separate entry.
23452 One more example, a match of all first-level subdomains, is given by
23455 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
23459 Because the regular expression matching is based on an old library
23460 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
23461 but they should be close.
23464 <UL>   
23465 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23466 </UL><P>
23467 &lt;End of help on this topic&gt;
23468 </BODY>
23469 </HTML>
23470 ====== h_config_abook_formats =====
23471 <HTML>
23472 <HEAD>
23473 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
23474 </HEAD>
23475 <BODY>
23476 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
23478 This option specifies the format that address books are displayed in.
23479 Normally, address books are displayed with the nicknames in the first
23480 column, the fullnames in the second column, and addresses in the third
23481 column.  The system figures out reasonable defaults for the widths of
23482 the columns.  An address book may be given a different format by
23483 listing special tokens in the order you want them to display.  The
23484 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
23485 So, for example, to get the default behavior you could list
23488 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
23491 (You can also use the token DEFAULT to get the default behavior for
23492 an address book format.)
23495 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
23496 is a list, so if you have more than one address book you may have a
23497 separate format for each by putting its format at the corresponding
23498 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
23502 Listed first are the personal address books, then the global address
23503 books.  So, if you have two personal address books and one global
23504 address book, you may have up to three formats in the
23505 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
23506 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
23507 are address books, the last element is used repeatedly.
23511 Each of the tokens may also be optionally followed by parentheses with
23512 either a number or a percentage inside the parentheses.  For example,
23513 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
23514 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
23515 of the available space (the screen width minus the space for
23516 inter-column spaces) to the fullnames column, while plain
23517 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
23518 reasonable number of columns.
23521 There are always 2 spaces between every column, so if you use
23522 fixed column widths (like 13) you should remember to take that into
23523 account.
23526 <UL>   
23527 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23528 </UL><P>
23529 &lt;End of help on this topic&gt;
23530 </BODY>
23531 </HTML>
23532 ====== h_config_set_index_format =====
23533 <HTML>
23534 <HEAD>
23535 <TITLE>Set Index Format</TITLE>
23536 </HEAD>
23537 <BODY>
23538 <H1>Set Index Format</H1>
23540 This option is used to customize the content of lines in the
23541 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
23542 This action works exactly like the regular
23543 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
23544 except that you can have a folder-specific value for it if you specify it here.
23545 Consult the help for
23546 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
23547 for more information.
23550 <UL>   
23551 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23552 </UL><P>
23553 &lt;End of help on this topic&gt;
23554 </BODY>
23555 </HTML>
23556 ====== h_config_index_format =====
23557 <HTML>
23558 <HEAD>
23559 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
23560 </HEAD>
23561 <BODY>
23562 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
23564 This option is used to customize the content of lines in the
23565 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
23566 to convey some amount of immediately relevant information about each 
23567 message in the current folder.
23570 Alpine provides a pre-defined set of informational fields with
23571 reasonable column widths automatically computed.  You can, however,
23572 replace this default set by listing special tokens in the order you
23573 want them displayed.
23576 The list of available tokens is
23577 <A HREF="h_index_tokens">here</A>.
23580 Spaces are used to separate listed tokens.  Additionally, you can
23581 specify how much of the screen's width the token's associated data
23582 should occupy on the index line by appending to the token a pair of
23583 parentheses enclosing either a number or percentage.  For example,
23584 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
23585 column, and &quot;SUBJECT(20%)&quot; means to
23586 allocate 20% of the available space
23587 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
23588 attempt to figure out a reasonable amount of space.
23591 There is always one space between every pair of columns, so if you use fixed
23592 column widths (like 13) you should remember to take that into account.
23593 Several of the fields are virtually fixed-width, so it doesn't make
23594 much sense to specify the width for them.  The fields STATUS,
23595 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
23596 and DESCRIPSIZE all fall into that category.
23597 You <EM>may</EM> specify widths for those if you wish, but
23598 you're probably better off letting the system pick those widths.  <P>
23601 The default is equivalent to:
23604 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
23607 This means that the four fields without percentages will be allocated
23608 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
23609 the from and subject fields.  If one of those two fields is specified
23610 as a percentage and the other is left for the system to choose, then
23611 the percentage is taken as an absolute percentage of the screen, not
23612 of the space remaining after allocating the first four columns.  It
23613 doesn't usually make sense to do it that way.  If you leave off all
23614 the widths, then the subject and from fields (if both are present) are
23615 allocated space in a 2 to 1 ratio, which is almost exactly the same as
23616 the default.
23619 What you are most likely to do with this configuration option is to
23620 specify which fields appear at all, which order they appear in, and the
23621 percentage of screen that is used for the from and subject fields if you
23622 don't like the 2 to 1 default.
23625 If you want to retain the default format that Pine 4.64 had, use
23628 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
23630 <EM>and</EM> set the feature
23631 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
23632 <UL>   
23633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23634 </UL><P>
23635 &lt;End of help on this topic&gt;
23636 </BODY>
23637 </HTML>
23638 ====== h_config_reply_intro =====
23639 <HTML>
23640 <HEAD>
23641 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
23642 </HEAD>
23643 <BODY>
23644 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
23646 This option is used to customize the content of the introduction line
23647 that is included when replying to a message and including the original
23648 message in the reply.
23649 The normal default (what you will get if you delete this variable) looks
23650 something like:
23652 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
23654 where the day of the week is only included if it is available in the
23655 original message.
23656 You can replace this default with text of your own.
23657 The text may contain tokens that are replaced with text
23658 that depends on the message you are replying to.
23659 For example, the default is equivalent to:
23661 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23664 Since this variable includes regular text mixed with special tokens
23665 the tokens have to be surrounded by underscore characters.
23666 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
23667 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
23668 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
23670 The list of available tokens is
23671 <A HREF="h_index_tokens">here</A>.
23674 By default, the text is all on a single line and is followed by a blank line.
23675 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
23676 than 80 characters when replying to a particular message, it is shortened.
23677 However, if you use the token
23679 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
23682 anywhere in the value, no end of line or blank line is appended, and no
23683 shortening is done.
23684 The _NEWLINE_ token may be used to get rid of the blank line following
23685 the text, to add more blank lines, or to form a multi-line
23686 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23687 To clarify how _NEWLINE_ works recall that the default value is:
23689 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23692 That is equivalent to
23694 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
23697 In the former case, two newlines are added automatically because
23698 no _NEWLINE_ token appears in the value of the option (for backwards
23699 compatibility). In the latter case, the newlines are explicit.
23700 If you want to remove the blank line that follows the
23701 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
23702 _NEWLINE_ token like
23704 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
23707 Because of the backwards compatibility problem, it is not possible to
23708 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
23709 and that will cause the automatic adding of two newlines!
23710 If you want, you may embed newlines in the middle of the text, as well,
23711 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23714 By default, no attempt is made to localize the date.
23715 If you prefer a localized form you may find that one of the tokens
23716 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
23717 If you want more control one of the many other date tokens, such as _DATEISO_,
23718 might be better.
23721 For the adventurous, there is a way to conditionally include text based
23722 on whether or not a token would result in specific replacement text.
23723 For example, you could include some text based on whether or not
23724 the _NEWS_ token would result in any newsgroups if it was used.
23725 It's explained in detail
23726 <A HREF="h_reply_token_conditionals">here</A>.
23729 In the very unlikely event that you want to include a literal token
23730 in the introduction line you must precede it with a backslash character.
23731 For example,
23733 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
23735 would produce something like
23737 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
23739 It is not possible to have a literal backslash followed by an expanded token.
23741 <UL>   
23742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23743 </UL><P>
23744 &lt;End of help on this topic&gt;
23745 </BODY>
23746 </HTML>
23747 ====== h_config_remote_abook_history =====
23748 <HTML>
23749 <HEAD>
23750 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
23751 </HEAD>
23752 <BODY>
23753 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
23755 Sets how many extra copies of
23756 remote address book
23757 data will be kept in each remote address book folder.
23758 The default is three.
23759 These extra copies are simply old versions of the data. Each time a change
23760 is made a new copy of the address book data is appended to the folder. Old
23761 copies are trimmed, if possible, when Alpine exits.
23762 An old copy can be put back into use by
23763 deleting and expunging newer versions of the data from the folder.
23764 Don't delete the first message from the folder. It is a special header
23765 message for the remote address book and it must be there.
23766 This is to prevent regular folders from being used as remote address book
23767 folders and having their data destroyed.
23769 This option is also used to determine how many extra copies of remote
23770 Alpine configuration files are kept.
23772 <UL>   
23773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23774 </UL><P>
23775 &lt;End of help on this topic&gt;
23776 </BODY>
23777 </HTML>
23778 ====== h_config_remote_abook_validity =====
23779 <HTML>
23780 <HEAD>
23781 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
23782 </HEAD>
23783 <BODY>
23784 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
23786 Sets the minimum number of minutes that a
23787 remote address book will be considered up to date.
23788 Whenever an entry contained in a remote address book is used,
23789 if more than this many minutes have
23790 passed since the last check the remote server will be queried to see if the
23791 address book has changed.
23792 If it has changed, the local copy is updated.
23793 The default value is five minutes.
23794 The special value of -1 means never check.
23795 The special value of zero means only check when the address book is first
23796 opened.
23798 No matter what the value, the validity check is always done when the
23799 address book is about to be changed by the user.
23800 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
23801 while in the address book maintenance screen for the remote address book.
23803 <UL>   
23804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23805 </UL><P>
23806 &lt;End of help on this topic&gt;
23807 </BODY>
23808 </HTML>
23809 ====== h_config_user_input_timeo =====
23810 <HTML>
23811 <HEAD>
23812 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
23813 </HEAD>
23814 <BODY>
23815 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
23817 If this is set to an integer greater than zero, then this is the number
23818 of <EM>hours</EM> to wait for user input before Alpine times out.
23819 If Alpine is
23820 in the midst of composing a message or is waiting for user response to
23821 a question, then it will not timeout.
23822 However, if Alpine is sitting idle waiting for
23823 the user to tell it what to do next and the user does not give any
23824 input for this many hours, Alpine will exit.
23825 No expunging or moving of read
23826 messages will take place.
23827 It will exit similarly to the way it would exit
23828 if it received a hangup signal.
23829 This may be useful for cleaning up unused Alpine sessions that have been
23830 forgotten by their owners.
23831 The Alpine developers envision system administrators
23832 setting this to a value of several hours (24?) so that it won't surprise
23833 a user who didn't want to be disconnected.
23835 <UL>   
23836 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23837 </UL><P>
23838 &lt;End of help on this topic&gt;
23839 </BODY>
23840 </HTML>
23841 ====== h_config_ssh_open_timeo =====
23842 <HTML>
23843 <HEAD>
23844 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
23845 </HEAD>
23846 <BODY>
23847 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
23849 Sets the time in seconds that Alpine will
23850 attempt to open a UNIX secure shell connection.
23851 The default is 15, the minimum non-zero value is 5,
23852 and the maximum is unlimited. If this is set to zero ssh connections
23853 will be completely disabled.
23855 <UL>   
23856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23857 </UL><P>
23858 &lt;End of help on this topic&gt;
23859 </BODY>
23860 </HTML>
23861 ====== h_config_rsh_open_timeo =====
23862 <HTML>
23863 <HEAD>
23864 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
23865 </HEAD>
23866 <BODY>
23867 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
23869 Sets the time in seconds that Alpine will
23870 attempt to open a UNIX remote shell connection.
23871 The default is 15, the minimum non-zero value is 5,
23872 and the maximum is unlimited. If this is set to zero rsh connections
23873 will be completely disabled.
23874 This might be useful if rsh connections will never work in your environment
23875 but are causing delays due to firewalls or some other reason.
23877 <UL>   
23878 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23879 </UL><P>
23880 &lt;End of help on this topic&gt;
23881 </BODY>
23882 </HTML>
23883 ====== h_config_tcp_open_timeo =====
23884 <HTML>
23885 <HEAD>
23886 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
23887 </HEAD>
23888 <BODY>
23889 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
23891 Sets the time in seconds that Alpine will
23892 attempt to open a network connection. The default is 30, the minimum is 5,
23893 and the maximum is system defined (typically 75). If a connection has not
23894 completed within this many seconds Alpine will give up and consider it a
23895 failed connection.
23897 <UL>   
23898 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23899 </UL><P>
23900 &lt;End of help on this topic&gt;
23901 </BODY>
23902 </HTML>
23903 ====== h_config_tcp_readwarn_timeo =====
23904 <HTML>
23905 <HEAD>
23906 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
23907 </HEAD>
23908 <BODY>
23909 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
23911 Sets the time in seconds that Alpine will
23912 wait for a network read before warning you that things are moving slowly
23913 and possibly giving you the option to break the connection.
23914 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
23915 1000 seconds.
23917 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
23919 <UL>   
23920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23921 </UL><P>
23922 &lt;End of help on this topic&gt;
23923 </BODY>
23924 </HTML>
23925 ====== h_config_tcp_writewarn_timeo =====
23926 <HTML>
23927 <HEAD>
23928 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
23929 </HEAD>
23930 <BODY>
23931 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
23933 Sets the time in seconds that Alpine will
23934 wait for a network write before warning you that things are moving slowly
23935 and possibly giving you the option to break the connection.
23936 The default is 0 which means it is unset. If set to a non-zero value, the
23937 minimum is 5 and the maximum is 1000.
23939 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
23941 <UL>   
23942 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23943 </UL><P>
23944 &lt;End of help on this topic&gt;
23945 </BODY>
23946 </HTML>
23947 ====== h_config_tcp_query_timeo =====
23948 <HTML>
23949 <HEAD>
23950 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
23951 </HEAD>
23952 <BODY>
23953 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
23955 When Alpine times out a network read or write it will normally just display
23956 a message saying &quot;Still waiting&quot;.
23957 However, if enough time has elapsed since it started waiting it will offer
23958 to let you break the connection.
23959 That amount of time is set by this option, which defaults to 60 seconds,
23960 has a minimum of 5 seconds, and a maximum of 1000 seconds.
23962 <UL>   
23963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23964 </UL><P>
23965 &lt;End of help on this topic&gt;
23966 </BODY>
23967 </HTML>
23968 ====== h_config_incoming_folders =====
23969 <HTML>
23970 <HEAD>
23971 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
23972 </HEAD>
23973 <BODY>
23974 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
23976 This is a list of one or more folders other than <EM>INBOX</EM> that
23977 may receive new messages.
23978 It is related to the
23979 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
23980 feature.
23981 This variable is normally manipulated with the Add, Delete, and Rename
23982 commands in the FOLDER LIST for the Incoming Message Folders collection.
23984 <UL>   
23985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23986 </UL><P>
23987 &lt;End of help on this topic&gt;
23988 </BODY>
23989 </HTML>
23990 ====== h_config_folder_spec =====
23991 <HTML>
23992 <HEAD>
23993 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
23994 </HEAD>
23995 <BODY>
23996 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
23998 This is a list of one or more collections where saved mail is stored. 
23999 The first collection in this list is the default
24000 collection for <EM>Save</EM>s,
24001 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24003 This variable is normally manipulated using the Setup/collectionList screen.
24005 <UL>   
24006 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24007 </UL><P>
24008 &lt;End of help on this topic&gt;
24009 </BODY>
24010 </HTML>
24011 ====== h_config_news_spec =====
24012 <HTML>
24013 <HEAD>
24014 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24015 </HEAD>
24016 <BODY>
24017 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24019 This is a list of collections where news folders are located.
24021 This variable is normally manipulated using the Setup/collectionList screen.
24023 <UL>   
24024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24025 </UL><P>
24026 &lt;End of help on this topic&gt;
24027 </BODY>
24028 </HTML>
24029 ====== h_config_address_book =====
24030 <HTML>
24031 <HEAD>
24032 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24033 </HEAD>
24034 <BODY>
24035 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24037 A list of personal address books.
24038 Each entry in the list is an
24039 optional nickname followed by a pathname or file name relative to the home
24040 directory.
24041 The nickname is separated from the rest of the line with whitespace.
24042 Instead of a local pathname or file name, a remote folder name can be given.
24043 This causes the address book to
24044 be a Remote address book.
24046 Use the Setup/AddressBook screen to modify this variable.
24048 <UL>   
24049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24050 </UL><P>
24051 &lt;End of help on this topic&gt;
24052 </BODY>
24053 </HTML>
24054 ====== h_config_glob_addrbook =====
24055 <HTML>
24056 <HEAD>
24057 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24058 </HEAD>
24059 <BODY>
24060 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24062 A list of shared address books.  Each entry in the list is an
24063 optional nickname followed by a pathname or file name relative to the home
24064 directory.
24065 A SPACE character separates the nickname from the rest of the line.
24066 Instead of a local pathname or file name, a remote folder name can be given.
24067 This causes the address book to
24068 be a Remote address book.
24069 Global address books are
24070 defined to be ReadOnly.
24072 Use the Setup/AddressBook screen to modify this variable.
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_last_vers =====
24081 <HTML>
24082 <HEAD>
24083 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24084 </HEAD>
24085 <BODY>
24086 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24088 This is set automatically by Alpine. 
24089 It is used to keep track of the last version of Alpine that
24090 was run by the user.
24091 Whenever the version number increases, a new version message is printed out.
24092 This may not be set in the system-wide configuration files.
24094 <UL>   
24095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24096 </UL><P>
24097 &lt;End of help on this topic&gt;
24098 </BODY>
24099 </HTML>
24100 ====== h_config_printer =====
24101 <HTML>
24102 <HEAD>
24103 <TITLE>OPTION: Printer</TITLE>
24104 </HEAD>
24105 <BODY>
24106 <H1>OPTION: Printer</H1>
24108 Your default printer selection.
24110 Use the Setup/Printer screen to modify this variable.
24112 <UL>   
24113 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24114 </UL><P>
24115 &lt;End of help on this topic&gt;
24116 </BODY>
24117 </HTML>
24118 ====== h_config_print_cat =====
24119 <HTML>
24120 <HEAD>
24121 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24122 </HEAD>
24123 <BODY>
24124 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24126 This is an internal Alpine variable.
24127 It will be equal to 1, 2, or 3 depending on whether the default printer is
24128 attached, standard, or a personal print command.
24130 Use the Setup/Printer screen to modify this variable.
24132 <UL>   
24133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24134 </UL><P>
24135 &lt;End of help on this topic&gt;
24136 </BODY>
24137 </HTML>
24138 ====== h_config_print_command =====
24139 <HTML>
24140 <HEAD>
24141 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24142 </HEAD>
24143 <BODY>
24144 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24146 List of personal print commands.
24148 Use the Setup/Printer screen to modify this variable.
24150 <UL>   
24151 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24152 </UL><P>
24153 &lt;End of help on this topic&gt;
24154 </BODY>
24155 </HTML>
24156 ====== h_config_pat_old =====
24157 <HTML>
24158 <HEAD>
24159 <TITLE>OPTION: Patterns</TITLE>
24160 </HEAD>
24161 <BODY>
24162 <H1>OPTION: Patterns</H1>
24164 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24165 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24166 and Patterns-Other.
24167 Patterns-Scores and Patterns-Filters have been replaced since then by
24168 Patterns-Scores2 and Patterns-Filters2.
24170 Use the Setup/Rules screens to modify these variable.
24172 <UL>   
24173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24174 </UL><P>
24175 &lt;End of help on this topic&gt;
24176 </BODY>
24177 </HTML>
24178 ====== h_config_pat_roles =====
24179 <HTML>
24180 <HEAD>
24181 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24182 </HEAD>
24183 <BODY>
24184 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24186 List of rules used for roles.
24187 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24188 other options.
24190 Use the Setup/Rules/Roles screen to modify this variable.
24192 <UL>   
24193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24194 </UL><P>
24195 &lt;End of help on this topic&gt;
24196 </BODY>
24197 </HTML>
24198 ====== h_config_pat_filts =====
24199 <HTML>
24200 <HEAD>
24201 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24202 </HEAD>
24203 <BODY>
24204 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24206 List of rules used for filters.
24208 Use the Setup/Rules/Filters screen to modify this variable.
24210 <UL>   
24211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24212 </UL><P>
24213 &lt;End of help on this topic&gt;
24214 </BODY>
24215 </HTML>
24216 ====== h_config_pat_scores =====
24217 <HTML>
24218 <HEAD>
24219 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24220 </HEAD>
24221 <BODY>
24222 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24224 List of rules used for scoring.
24226 Use the Setup/Rules/SetScores screen to modify this variable.
24228 <UL>   
24229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24230 </UL><P>
24231 &lt;End of help on this topic&gt;
24232 </BODY>
24233 </HTML>
24234 ====== h_config_pat_other =====
24235 <HTML>
24236 <HEAD>
24237 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24238 </HEAD>
24239 <BODY>
24240 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24242 List of rules used for miscellaneous configuration.
24244 Use the Setup/Rules/Other screen to modify this variable.
24246 <UL>   
24247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24248 </UL><P>
24249 &lt;End of help on this topic&gt;
24250 </BODY>
24251 </HTML>
24252 ====== h_config_pat_incols =====
24253 <HTML>
24254 <HEAD>
24255 <TITLE>OPTION: patterns-indexcolors</TITLE>
24256 </HEAD>
24257 <BODY>
24258 <H1>OPTION: patterns-indexcolors</H1>
24260 List of rules used for coloring lines in the index.
24262 Use the Setup/Rules/Indexcolor screen to modify this variable.
24264 <UL>   
24265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24266 </UL><P>
24267 &lt;End of help on this topic&gt;
24268 </BODY>
24269 </HTML>
24270 ====== h_config_pat_srch =====
24271 <HTML>
24272 <HEAD>
24273 <TITLE>OPTION: patterns-search</TITLE>
24274 </HEAD>
24275 <BODY>
24276 <H1>OPTION: patterns-search</H1>
24278 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24280 Use the Setup/Rules/searCh 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_font_name =====
24289 <HTML>
24290 <HEAD>
24291 <TITLE>OPTION: Font Name</TITLE>
24292 </HEAD>
24293 <BODY>
24294 <H1>OPTION: Font Name</H1>
24296 PC-Alpine only.
24298 Name of normal font.
24300 Use the pulldown Config menu to modify this variable.
24302 <UL>   
24303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24304 </UL><P>
24305 &lt;End of help on this topic&gt;
24306 </BODY>
24307 </HTML>
24308 ====== h_config_font_size =====
24309 <HTML>
24310 <HEAD>
24311 <TITLE>OPTION: Font Size</TITLE>
24312 </HEAD>
24313 <BODY>
24314 <H1>OPTION: Font Size</H1>
24316 PC-Alpine only.
24318 Size of normal font.
24320 Use the pulldown Config menu to modify this variable.
24322 <UL>   
24323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24324 </UL><P>
24325 &lt;End of help on this topic&gt;
24326 </BODY>
24327 </HTML>
24328 ====== h_config_font_style =====
24329 <HTML>
24330 <HEAD>
24331 <TITLE>OPTION: Font Style</TITLE>
24332 </HEAD>
24333 <BODY>
24334 <H1>OPTION: Font Style</H1>
24336 PC-Alpine only.
24338 Style of normal font.
24340 Use the pulldown Config menu to modify this variable.
24342 <UL>   
24343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24344 </UL><P>
24345 &lt;End of help on this topic&gt;
24346 </BODY>
24347 </HTML>
24348 ====== h_config_font_char_set =====
24349 <HTML>
24350 <HEAD>
24351 <TITLE>OPTION: Font Character Set</TITLE>
24352 </HEAD>
24353 <BODY>
24354 <H1>OPTION: Font Character Set</H1>
24356 PC-Alpine only.
24358 Character set of normal font.
24360 Use the pulldown Config menu to modify this variable.
24362 <UL>   
24363 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24364 </UL><P>
24365 &lt;End of help on this topic&gt;
24366 </BODY>
24367 </HTML>
24368 ====== h_config_print_font_name =====
24369 <HTML>
24370 <HEAD>
24371 <TITLE>OPTION: Print-Font-Name</TITLE>
24372 </HEAD>
24373 <BODY>
24374 <H1>OPTION: Print-Font-Name</H1>
24376 PC-Alpine only.
24378 Name of printer font.
24380 Use the pulldown Config menu to modify this variable.
24382 <UL>   
24383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24384 </UL><P>
24385 &lt;End of help on this topic&gt;
24386 </BODY>
24387 </HTML>
24388 ====== h_config_print_font_size =====
24389 <HTML>
24390 <HEAD>
24391 <TITLE>OPTION: Print-Font-Size</TITLE>
24392 </HEAD>
24393 <BODY>
24394 <H1>OPTION: Print-Font-Size</H1>
24396 PC-Alpine only.
24398 Size of printer font.
24400 Use the pulldown Config menu to modify this variable.
24402 <UL>   
24403 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24404 </UL><P>
24405 &lt;End of help on this topic&gt;
24406 </BODY>
24407 </HTML>
24408 ====== h_config_print_font_style =====
24409 <HTML>
24410 <HEAD>
24411 <TITLE>OPTION: Print-Font-Style</TITLE>
24412 </HEAD>
24413 <BODY>
24414 <H1>OPTION: Print-Font-Style</H1>
24416 PC-Alpine only.
24418 Style of printer font.
24420 Use the pulldown Config menu to modify this variable.
24422 <UL>   
24423 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24424 </UL><P>
24425 &lt;End of help on this topic&gt;
24426 </BODY>
24427 </HTML>
24428 ====== h_config_print_font_char_set =====
24429 <HTML>
24430 <HEAD>
24431 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
24432 </HEAD>
24433 <BODY>
24434 <H1>OPTION: Print-Font-Char-Set</H1>
24436 PC-Alpine only.
24438 Character set of printer font.
24440 Use the pulldown Config menu to modify this variable.
24442 <UL>   
24443 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24444 </UL><P>
24445 &lt;End of help on this topic&gt;
24446 </BODY>
24447 </HTML>
24448 ====== h_config_window_position =====
24449 <HTML>
24450 <HEAD>
24451 <TITLE>OPTION: Window-Position</TITLE>
24452 </HEAD>
24453 <BODY>
24454 <H1>OPTION: Window-Position</H1>
24456 PC-Alpine only.
24458 Position on the screen of the Alpine window.
24460 Alpine normally maintains this variable itself, and it is set automatically. 
24461 This variable is provided to those who wish to use the same window position 
24462 across different machines from the same configuration.
24463 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
24464 must also be set for this setting to be used.
24466 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
24467 C is the number of columns, R is the number of rows, and X and Y specify the
24468 top left corner of the window.
24470 <UL>   
24471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24472 </UL><P>
24473 &lt;End of help on this topic&gt;
24474 </BODY>
24475 </HTML>
24476 ====== h_config_cursor_style =====
24477 <HTML>
24478 <HEAD>
24479 <TITLE>OPTION: Cursor Style</TITLE>
24480 </HEAD>
24481 <BODY>
24482 <H1>OPTION: Cursor Style</H1>
24484 PC-Alpine only.
24486 Cursor style.
24488 Use the pulldown Config menu to modify this variable.
24490 <UL>   
24491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24492 </UL><P>
24493 &lt;End of help on this topic&gt;
24494 </BODY>
24495 </HTML>
24496 ====== h_config_ldap_servers =====
24497 <HTML>
24498 <HEAD>
24499 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
24500 </HEAD>
24501 <BODY>
24502 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
24504 List of LDAP servers and associated data.
24506 Use the Setup/Directory screen to modify this variable.
24508 <UL>   
24509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24510 </UL><P>
24511 &lt;End of help on this topic&gt;
24512 </BODY>
24513 </HTML>
24514 ====== h_config_sendmail_path =====
24515 <HTML>
24516 <HEAD>
24517 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
24518 </HEAD>
24519 <BODY>
24520 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
24522 This names the path to an
24523 alternative program, and any necessary arguments, to be used in posting
24524 mail messages. See the Technical notes for more information.
24526 <UL>   
24527 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24528 </UL><P>
24529 &lt;End of help on this topic&gt;
24530 </BODY>
24531 </HTML>
24532 ====== h_config_oper_dir =====
24533 <HTML>
24534 <HEAD>
24535 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
24536 </HEAD>
24537 <BODY>
24538 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
24540 This names the root of the
24541 tree to which you are restricted when reading and writing folders and
24542 files. It is usually used in the system-wide,
24543 <EM>fixed</EM> configuration file.
24545 <UL>   
24546 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24547 </UL><P>
24548 &lt;End of help on this topic&gt;
24549 </BODY>
24550 </HTML>
24551 ====== h_config_rshpath =====
24552 <HTML>
24553 <HEAD>
24554 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
24555 </HEAD>
24556 <BODY>
24557 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
24559 Sets the name of the command used to open a UNIX remote shell
24560 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
24562 <UL>   
24563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24564 </UL><P>
24565 &lt;End of help on this topic&gt;
24566 </BODY>
24567 </HTML>
24568 ====== h_config_rshcmd =====
24569 <HTML>
24570 <HEAD>
24571 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
24572 </HEAD>
24573 <BODY>
24574 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
24576 Sets the format of the command used to
24577 open a UNIX remote shell connection. The default is
24578 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24579 provided command. The first is for the command's pathname, the second is
24580 for the host to connnect to, the third is for the user to connect as, and
24581 the fourth is for the connection method (typically <CODE>imap</CODE>).
24583 <UL>   
24584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24585 </UL><P>
24586 &lt;End of help on this topic&gt;
24587 </BODY>
24588 </HTML>
24589 ====== h_config_sshpath =====
24590 <HTML>
24591 <HEAD>
24592 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
24593 </HEAD>
24594 <BODY>
24595 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
24597 Sets the name of the command used to open a UNIX secure shell
24598 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
24600 <UL>   
24601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24602 </UL><P>
24603 &lt;End of help on this topic&gt;
24604 </BODY>
24605 </HTML>
24606 ====== h_config_sshcmd =====
24607 <HTML>
24608 <HEAD>
24609 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
24610 </HEAD>
24611 <BODY>
24612 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
24614 Sets the format of the command used to
24615 open a UNIX secure shell connection. The default is
24616 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24617 provided command. The first is for the command's pathname, the second is
24618 for the host to connnect to, the third is for the user to connect as, and
24619 the fourth is for the connection method (typically <CODE>imap</CODE>).
24621 <UL>   
24622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24623 </UL><P>
24624 &lt;End of help on this topic&gt;
24625 </BODY>
24626 </HTML>
24627 ====== h_config_new_ver_quell =====
24628 <HTML>
24629 <HEAD>
24630 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
24631 </HEAD>
24632 <BODY>
24633 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
24635 When a new version of Alpine is run for the first time it offers a
24636 special explanatory screen to the user upon startup.  This option
24637 helps control when and if that special screen appears for users that
24638 have previously run Alpine.  It takes as its value an Alpine version
24639 number.  Alpine versions less than the specified value will supress this
24640 special screen while versions equal to or greater than that specified
24641 will behave normally.
24643 <UL>   
24644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24645 </UL><P>
24646 &lt;End of help on this topic&gt;
24647 </BODY>
24648 </HTML>
24649 ====== h_config_disable_drivers =====
24650 <HTML>
24651 <HEAD>
24652 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
24653 </HEAD>
24654 <BODY>
24655 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
24657 This variable is a list of mail drivers that will be disabled.
24658 The candidates for disabling are listed below.
24659 There may be more in the future if you compile Alpine with
24660 a newer version of the c-client library.
24663 <UL>
24664 <LI> mbox
24665 <LI> mbx
24666 <LI> mh
24667 <LI> mmdf
24668 <LI> mtx
24669 <LI> mx
24670 <LI> news
24671 <LI> phile
24672 <LI> tenex
24673 <LI> unix
24674 </UL>
24677 The <EM>mbox</EM> driver enables the following behavior: if there is a
24678 file called <CODE>mbox</CODE>
24679 in your home directory, and if that file is either empty or in Unix mailbox
24680 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
24681 will automatically transfer mail from the system mail spool directory into the
24682 <CODE>mbox</CODE> file and
24683 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
24684 this will not happen.
24687 It is not recommended to disable the driver that supports the system default
24688 mailbox format. On most non-SCO systems, that driver is the
24689 <EM>unix</EM> driver.
24690 On most SCO systems, it is the <EM>mmdf</EM> driver.
24691 The system default driver may be
24692 configured to something else on your system; check with your system manager
24693 for additional information.
24696 It is most likely not very useful for you to disable any of the drivers other
24697 than possibly <EM>mbox</EM>.
24698 You could disable some of the others if you know for
24699 certain that you don't need them but the performance gain in doing so
24700 is very modest.
24702 <UL>   
24703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24704 </UL><P>
24705 &lt;End of help on this topic&gt;
24706 </BODY>
24707 </HTML>
24708 ====== h_config_disable_auths =====
24709 <HTML>
24710 <HEAD>
24711 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
24712 </HEAD>
24713 <BODY>
24714 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
24716 This variable is a list of SASL (Simple Authentication and Security
24717 Layer) authenticators that will be disabled.
24718 SASL is a mechanism for
24719 authenticating to IMAP, POP3, SMTP, and other network servers.
24722 Alpine matches its list of supported authenticators with the server to
24723 determine the most secure authenticator that is supported by both.
24724 If no matching authenticators are found, Alpine will revert to plaintext
24725 login (or, in the case of SMTP, will be unable to authenticate at all).
24727 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
24730 Normally, you will not disable any authenticators.
24731 There are two exceptions:
24733 <OL>
24734 <LI> You use a broken server that advertises an authenticator,
24735 but does not actually implement it.
24736 <LI> You have a Kerberos-capable version of Alpine and the server is
24737 also Kerberos-capable, but you can not obtain Kerberos
24738 credentials on the server machine, thus you desire to disable
24739 GSSAPI (which in turn disables Alpine's Kerberos support).
24740 </OL>
24742 It is never necessary to disable authenticators, since Alpine will try
24743 other authenticators before giving up.
24744 However, disabling the relevant authenticator avoids annoying error messages.
24746 <UL>   
24747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24748 </UL><P>
24749 &lt;End of help on this topic&gt;
24750 </BODY>
24751 </HTML>
24752 ====== h_config_abook_metafile =====
24753 <HTML>
24754 <HEAD>
24755 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
24756 </HEAD>
24757 <BODY>
24758 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
24760 This is usually set by Alpine and is the name of a file
24761 that contains data about
24762 remote address books and remote configuration files.
24764 <UL>   
24765 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24766 </UL><P>
24767 &lt;End of help on this topic&gt;
24768 </BODY>
24769 </HTML>
24770 ====== h_config_composer_wrap_column =====
24771 <HTML>
24772 <HEAD>
24773 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
24774 </HEAD>
24775 <BODY>
24776 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
24779 This option specifies an aspect of Alpine's Composer.  This gives the
24780 maximum width that auto-wrapped lines will have.  It's also the maximum
24781 width of lines justified using the <A HREF="h_compose_justify">^J
24782 Justify</A> command.  The normal default
24783 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
24784 in order to
24785 prevent very long lines from being sent in outgoing mail.  When the mail
24786 is actually sent, trailing spaces will be stripped off of each line.
24789 <UL>   
24790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24791 </UL><P>
24792 &lt;End of help on this topic&gt;
24793 </BODY>
24794 </HTML>
24795 ====== h_config_deadlets =====
24796 <HTML>
24797 <HEAD>
24798 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
24799 </HEAD>
24800 <BODY>
24801 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
24804 This option affects Alpine's behavior when you cancel a message being
24805 composed.  Alpine's usual behavior is to write the canceled message to
24806 a file named 
24807 <!--chtml if pinemode="os_windows"-->
24808 &quot;DEADLETR&quot;,
24809 <!--chtml else-->
24810 &quot;dead.letter&quot; in your home directory,
24811 <!--chtml endif-->
24812 overwriting any previous message.
24814 If you set this option to a value higher than one, then that many copies
24815 of dead letter files will be saved.
24816 For example, if you set this option to &quot;3&quot; then you may have
24817 files named
24818 <!--chtml if pinemode="os_windows"-->
24819 &quot;DEADLETR&quot;,
24820 &quot;DEADLETR2&quot;, and
24821 &quot;DEADLETR3&quot;.
24822 <!--chtml else-->
24823 &quot;dead.letter&quot;,
24824 &quot;dead.letter2&quot;, and
24825 &quot;dead.letter3&quot; in your home directory.
24826 <!--chtml endif-->
24827 In this example, the most recently cancelled message will be in
24828 <!--chtml if pinemode="os_windows"-->
24829 &quot;DEADLETR&quot;,
24830 <!--chtml else-->
24831 &quot;dead.letter&quot;,
24832 <!--chtml endif-->
24833 and the third most recently cancelled message will be in
24834 <!--chtml if pinemode="os_windows"-->
24835 &quot;DEADLETR3&quot;.
24836 <!--chtml else-->
24837 &quot;dead.letter3&quot;.
24838 <!--chtml endif-->
24839 The fourth most recently cancelled message will no longer be saved.
24842 If you set this option to zero, then NO record of canceled messages is
24843 maintained.
24845 If the feature
24846 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
24847 is set, that overrides whatever you set for this option.
24848 If this option had existed at the time, then the Quell feature would not
24849 have been added, but it is still there for backwards compatibility.
24850 So, in order for this option to have the desired effect, make sure the
24851 Quell feature is turned off.
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_maxremstream =====
24861 <HTML>
24862 <HEAD>
24863 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
24864 </HEAD>
24865 <BODY>
24866 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
24868 This option affects low-level behavior of Alpine.
24869 The default value for this option is <EM>3</EM>.
24870 If your INBOX is accessed using the IMAP protocol
24871 from an IMAP server, that connection is kept open throughout the
24872 duration of your Alpine session, independent of the value of this option.
24873 The same is true of any 
24874 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
24875 you have defined.
24876 This option controls Alpine's behavior when connecting to remote IMAP folders
24877 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
24878 It specifies the maximum number of remote IMAP connections (other than
24879 those mentioned above) that Alpine will use for accessing the rest of your
24880 folders.
24881 If you set this option to zero, you will turn off most remote connection
24882 re-use.
24883 It's difficult to understand exactly what this option does, and it is usually
24884 fine to leave it set to its default value.
24885 It is probably more likely that you will be interested in setting the
24886 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
24887 instead of changing the value of this option.
24888 A slightly longer explanation of what is going on with this option
24889 is given in the next paragraphs.
24892 There are some time costs involved in opening and closing remote IMAP 
24893 folders, the main costs being the time you have to wait for the connection
24894 to the server and the time for the folder to open.
24895 Opening a folder may involve not only the time the server takes to do its
24896 processing but time that Alpine uses to do filtering.
24897 These times can vary widely.
24898 They depend on how loaded the server is, how large
24899 the folder being opened is, and how you set up filtering, among other things.
24900 Once Alpine has opened a connection to a particular folder, it will attempt
24901 to keep that connection open in case you use it again.
24902 In order to do this,
24903 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
24904 this option) IMAP connections you have alloted for this purpose.
24906 For example, suppose the value of this option is set to &quot;2&quot;.
24907 If your INBOX is accessed on a remote server using the IMAP protocol, that
24908 doesn't count as one of the remote connections but it is always kept open.
24909 If you then open another IMAP folder, that would be your first
24910 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
24911 If you open a third folder the second will be left open, in case you
24912 return to it.
24913 You won't be able to tell it has been left open.
24914 It will appear to be closed when you leave the folder but the connection
24915 will remain in the background.
24916 Now suppose you go back to the second folder (the first folder after the
24917 INBOX).
24918 A connection to that folder is still open so you won't have to wait
24919 for the startup time to open it.
24920 Meanwhile, the connection to the third folder will be left behind.
24921 Now, if you open a fourth folder, you will bump into the
24922 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
24923 than INBOX and you have the option set to &quot;2&quot;.
24924 The connection that is being used for
24925 the third folder will be re-used for this new fourth folder.
24926 If you go back to the third folder after this, it is no longer already
24927 connected when you get there.
24928 You'll still save some time since Alpine will re-use the connection to the
24929 fourth folder and you have already logged in on that connection,
24930 but the folder will have to be re-opened from scratch.
24932 If a folder is large and the startup cost is dominated by the time it takes
24933 to open that folder or to run filters on it, then it will pay to make the
24934 value of this option large enough to keep it open.
24935 On the other hand, if you only revisit a handful of folders or if
24936 the folders are small, then it might
24937 make more sense to keep this number small so that the reconnect
24938 time (the time to start up a new connection and authenticate)
24939 is eliminated instead.
24941 You may also need to consider the impact on the server.
24942 On the surface, a larger number here may cause a larger impact on the
24943 server, since you will have more connections open to the server.
24944 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
24945 associated with reopening a folder, but the <EM>server</EM> will be
24946 avoiding those costs as well.
24948 When twenty five minutes pass without any active use of an IMAP connection
24949 being saved for possible re-use, that connection will be shut down,
24952 <UL>   
24953 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24954 </UL><P>
24955 &lt;End of help on this topic&gt;
24956 </BODY>
24957 </HTML>
24958 ====== h_config_permlocked =====
24959 <HTML>
24960 <HEAD>
24961 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
24962 </HEAD>
24963 <BODY>
24964 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
24966 This option affects low-level behavior of Alpine.
24967 There is no default value for this option.
24968 It is related to the options
24969 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
24970 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
24971 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
24974 Note: changes made to this list take effect the next time you open a
24975 folder in the list.
24978 This is a list of folders that will be permanently kept open once they
24979 are first opened.
24980 The names in this list may be either the nickname of an Incoming folder
24981 or the full technical specification of a folder.
24982 The folders in this list need not be remote IMAP folders, they could usefully
24983 be local folders, as well.
24984 If a folder in the list is a newsgroup or is not accessed either locally
24985 or via IMAP, then the entry will be ignored.
24986 For example, folders accessed via NNTP or POP3 will not be kept open, since
24987 the way that new mail is found with those protocols involves closing and
24988 reopening the connection.
24990 Once a Stay Open folder has been opened, new-mail checking will continue
24991 to happen on that folder for the rest of the Alpine session.
24992 Your INBOX is always implicitly included in this Stay-Open list and doesn't
24993 need to be added explicitly.
24995 Another difference that you may notice between a Stay Open folder and a
24996 non-Stay Open folder is which message is selected as the current message
24997 when you enter the folder index.
24998 Normally, the starting position for an incoming folder (which most Stay Open
24999 folders will likely be) is controlled by the
25000 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25001 However, if a folder is a Stay Open folder, when you re-enter the folder
25002 after the first time the current message will be the same as it was when
25003 you left the folder.
25004 An exception is made if you use the TAB command to get to the folder.
25005 In that case, the message number will be incremented by one from what it
25006 was when you left the folder.
25008 The above special behavior is thought to be useful.
25009 However, it is special and different from what you might at first expect.
25010 The feature
25011 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25012 may be used to turn off this special treatment.
25014 If the message that was current when you left the folder no longer exists,
25015 then the regular startup rule will be used instead.
25018 <UL>   
25019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25020 </UL><P>
25021 &lt;End of help on this topic&gt;
25022 </BODY>
25023 </HTML>
25024 ====== h_config_viewer_overlap =====
25025 <html>
25026 <header>
25027 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25028 </header>
25029 <body>
25030 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25032 This option specifies an aspect of Alpine's Message Viewing screen.  When
25033 the space bar is used to page forward in a message, the number of lines
25034 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25035 bottom of the screen.  That is, if this was set to two lines, then the
25036 bottom two lines of the screen would be repeated on the top of the next
25037 screen.  The normal default value is "2".<p>
25038 <UL>   
25039 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25040 </UL><P>
25041 &lt;End of help on this topic&gt;
25042 </body>
25043 </html>
25044 ====== h_config_scroll_margin =====
25045 <HTML>
25046 <HEAD>
25047 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25048 </HEAD>
25049 <BODY>
25050 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25052 This option controls when Alpine's line-by-line scrolling occurs.
25053 Typically, when a selected item is at the top or bottom screen edge
25054 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25055 displayed items are scrolled down or up by a single line.
25058 This option allows you to tell Alpine the number of lines from the top and
25059 bottom screen edge that line-by-line paging should occcur.  For example,
25060 setting this value to one (1) will cause Alpine to scroll the display
25061 vertically when you move to select an item on the display's top or
25062 bottom edge.
25065 By default, this variable is zero, indicating that scrolling happens
25066 when you move up or down to select an item immediately off the display's
25067 top or bottom edge.
25070 <UL>   
25071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25072 </UL><P>
25073 &lt;End of help on this topic&gt;
25074 </BODY>
25075 </HTML>
25076 ====== h_config_wordseps =====
25077 <HTML>
25078 <HEAD>
25079 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25080 </HEAD>
25081 <BODY>
25082 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25084 This option affects how a &quot;word&quot; is defined in the composer.
25085 The definition of a word is used when using the Forward Word and Backward
25086 Word commands in the composer, as well as when using the spell checker.
25087 Whitespace is always considered a word separator.
25088 Punctuation (like question marks, periods, commas, and so on) is always
25089 a word separator if it comes at the end of a word.
25090 By default, a punctuation character that is in the middle of a word does
25091 not break up that word as long as the character before and the character
25092 after it are both alphanumeric.
25093 If you add a character to this option it will be considered a
25094 word separator even when it occurs in the middle of an alphanumeric word.
25095 For example, if you want to skip through each part of an address instead
25096 of skipping the whole address at once you might want to include &quot;@&quot;
25097 and &quot;.&quot; in this list.
25098 If you want the word-skipper to stop on each part of a UNIX filename you
25099 could add &quot;/&quot; to the list.
25100 The equal sign and dash are other possibilities you might find helpful.
25102 <UL>   
25103 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25104 </UL><P>
25105 &lt;End of help on this topic&gt;
25106 </BODY>
25107 </HTML>
25108 ====== h_config_reply_indent_string =====
25109 <HTML>
25110 <HEAD>
25111 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25112 </HEAD>
25113 <BODY>
25114 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25116 This option specifies an aspect of Alpine's Reply command.
25117 When a message is replied to and the text of the message is included, the
25118 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25119 to each line indicating it is quoted text.
25120 (In case you haven't seen this before, &quot;string&quot; is a technical term
25121 that means chunk of text.)
25124 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25125 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25126 use one of the standard values,
25127 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25130 This option specifies a different value for that string.
25131 If you wish to use a string that begins or ends with a space,
25132 enclose the string in double quotes.
25135 Besides simple text, the prepended string can be based
25136 on the message being replied to.
25137 The following tokens are substituted for the message's corresponding value:
25139 <DL>
25140 <DT>_FROM_</DT>
25141 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25142 If the name is longer than six characters, only the first six characters are
25143 used.
25144 </DD>
25146 <DT>_NICK_</DT>
25147 <DD>This token gets replaced with the nickname of the message sender's
25148 address as found in your addressbook.
25149 If no addressbook entry is found,
25150 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25151 If the nickname is longer than six characters, only the first six characters are
25152 used.
25153 </DD>
25155 <DT>_INIT_</DT>
25156 <DD>This token gets replaced with the initials of the sender of the message.
25157 </DD>
25159 </DL>
25161 NOTE: When the
25162 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25163 feature is enabled, you are given the opportunity to edit the string, whether 
25164 it is the default or one automatically generated using the above tokens.
25166 If you change your <!--#echo var="VAR_reply-indent-string"-->
25167 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25168 quoted text will not be flowed
25169 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25170 when you reply.
25171 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25172 set to the default value.
25174 <UL>   
25175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25176 </UL><P>
25177 &lt;End of help on this topic&gt;
25178 </BODY>
25179 </HTML>
25180 ====== h_config_quote_replace_string =====
25181 <HTML>
25182 <HEAD>
25183 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25184 </HEAD>
25185 <BODY>
25186 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25188 This option specifies what string to use as a quote when <b>viewing</b> a
25189 message.  The standard way of quoting messages when replying is the string
25190 &quot;&gt;&nbsp;&quot; (quote space).
25191 With this variable set, viewing a message will
25192 replace occurrences of 
25193 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25194 This setting works best when
25195 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25196 or the equivalent setting in your correspondents' mail programs
25197 is set to the default
25198 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25199 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25201 By default, this setting will only work on messages that are flowed, which is
25202 the default way of sending messages for many mail clients including
25203 Alpine.  Enable the feature
25204 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25205 to also have quote-replacement performed on non-flowed messages.
25208 Setting this option will replace  &quot;&gt;&quot; and 
25209 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25210 spaces. To preserve those spaces enclose the full string in double quotes.
25212 No padding to separate the text of the message from the quote string is
25213 added. This means that if you do not add trailing spaces to the value of
25214 this variable, text will be displayed right next to the quote string,
25215 which may be undesirable. This can be avoided by adding a new string
25216 separated by a space from your selection of quote string replacement. This
25217 last string will be used for padding. For example, setting this variable to 
25218 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25219 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25220 a space from the last quote string to make it more readable.
25222 One possible setting for this variable could be
25223 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25224 would have the effect of indenting each level of quoting four spaces and
25225 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25226 more discernible by setting colors for quoted text.
25228 Replying to or forwarding the viewed message will preserve the original
25229 formatting of the message, so quote-replacement will not be performed on
25230 messages that are being composed.
25232 <UL>   
25233 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25234 </UL><P>
25235 &lt;End of help on this topic&gt;
25236 </BODY>
25237 </HTML>
25238 ====== h_config_empty_hdr_msg =====
25239 <HTML>
25240 <HEAD>
25241 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25242 </HEAD>
25243 <BODY>
25244 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25246 When sending, if both the To and Cc fields are empty and you
25247 are sending the message to a Bcc,
25248 Alpine will put a special address in the To line.  The default value is:
25251 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25254 The reason for this is to avoid embarrassment caused by some Internet
25255 mail transfer software that interprets a &quot;missing&quot;
25256 <SAMP>To:</SAMP> header as an error and replaces it with an
25257 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25258 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25259 Bcc.  You may change the part of this message that comes before the
25260 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25261 variable to something else.
25264 The normal default is &quot;undisclosed-recipients&quot;.
25267 <UL>   
25268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25269 </UL><P>
25270 &lt;End of help on this topic&gt;
25271 </BODY>
25272 </HTML>
25273 ====== h_config_status_msg_delay =====
25274 <HTML>
25275 <HEAD>
25276 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25277 </HEAD>
25278 <BODY>
25279 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25281 This option has evolved over time, causing the possible values to be
25282 counter-intuitive.
25283 Read carefully before you set this option.
25284 First we explain what the option does, then there is a longer discussion
25285 following that.
25287 If this is set to zero, the default value, it has <EM>no</EM> effect.
25288 Positive and negative values serve two similar, but different purposes.
25290 If it is set to a positive number, it causes the cursor to move to the
25291 status line whenever a status message is printed and pause there for this
25292 many seconds.
25293 It will probably only be useful if the 
25294 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25295 also turned on.
25296 Setting this option to a positive number can only be used to
25297 <EM>increase</EM> the status message delay.
25298 This may be useful for Braille displays, or other non-traditional displays.
25300 If it is set to a negative number the interpretation is a bit complicated.
25301 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25302 allow you to read important status messages.
25303 Of course, this may cause you to miss some important messages.
25304 If you see a message flash by but miss what it says you can use the
25305 Journal command from the MAIN MENU to read it.
25306 If you set this option to a negative value, the delay will be
25307 no more than one second less than the absolute value
25308 of the value you set.
25309 So if you set it to -1, the delay will be no more than zero seconds, no
25310 delay at all.
25311 If you set it to -2, the delay will be no more than 1 second.
25312 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25313 If the delay that Alpine would have used by default is less than this delay,
25314 then the smaller delay set by Alpine will be used.
25315 Setting this option to a negative value can only reduce the amount of
25316 delay, never increase it.
25318 Here is a more detailed explanation.
25319 Status messages are the messages that show up spontaneously in the
25320 status message line, usually the third line from the bottom of the screen.
25321 By default, Alpine assigns each status message it produces a minimum
25322 display time.
25323 Some status messages have a minimum display time of zero.
25324 You can see an example of such a message by paging up in this help text
25325 until you reach the top of the screen.
25326 If you try to page past the top you will see the message
25328 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25330 in the status line.
25331 If there is another more important use of the status message line this message
25332 might be replaced quickly, or it even might not be shown at all.
25333 However, if there is no reason to get rid of the message, it might stay
25334 there for several seconds while you read the help.
25335 An example where it is replaced immediately happens when you page up in
25336 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25337 command right after paging up.
25338 The message will disappear immediately without causing a delay (unless you
25339 have set this option to a positive value) to allow you to type input for
25340 the &quot;WhereIs&quot; command.
25341 Since it isn't a very important message, Alpine has set its minimum display
25342 time to zero seconds.
25344 Other messages have minimum display times of three or more seconds.
25345 These are usually error messages that Alpine thinks you ought to see.
25346 For example, it might be a message about a failed Save or a failed folder open.
25347 It is often the case that this minimum display time won't delay you in
25348 any way because the status message line is not needed for another reason.
25349 However, there are times when Alpine has to delay what it is doing in
25350 order to display a status message for the minimum display time.
25351 This happens when a message is being displayed and Alpine wants to ask
25352 for input from the keyboard.
25353 For example, when you Save a message you use the status message line.
25354 You get a prompt there asking for the name of the folder to save to.
25355 If there is a status message being displayed that has not
25356 yet displayed for its minimum
25357 time Alpine will display that status message surrounded with the characters
25358 &gt; and &lt; to show you that it is delaying.
25359 That might happen, for example, if you tried to save to a folder that
25360 caused an error, then followed that immediately with another Save command.
25361 You might find yourself waiting for a status message like
25363 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25365 to finish displaying for three seconds.
25366 If that is something you find happening to you frequently, you may use
25367 negative values of this option to decrease or eliminate that delay, at
25368 the risk of missing the message.
25370 <UL>   
25371 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25372 </UL><P>
25373 &lt;End of help on this topic&gt;
25374 </BODY>
25375 </HTML>
25376 ====== h_config_active_msg_interval =====
25377 <HTML>
25378 <HEAD>
25379 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
25380 </HEAD>
25381 <BODY>
25382 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
25384 When Alpine is delayed for some reason it usually shows that
25385 something is happening with a small animated display in the status
25386 message line near the bottom of the screen.
25387 This option sets how frequently the characters (for example, a spinning bar)
25388 in the active status message lines are updated.
25389 At most, it can be set to be udpated 20 times per second. 
25392 Setting this value to zero will prevent display of the animations
25393 altogether.
25396 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
25397 can be used to remove the randomness from this animated display.
25400 <UL>   
25401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25402 </UL><P>
25403 &lt;End of help on this topic&gt;
25404 </BODY>
25405 </HTML>
25406 ====== h_config_mailchecknoncurr =====
25407 <HTML>
25408 <HEADER>
25409 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
25410 </HEADER>
25411 <BODY>
25412 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
25414 This option is closely related to the
25415 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25416 option, as well as the
25417 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
25418 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
25419 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
25420 new-mail checking is disabled and this option will have no effect.
25422 Normally this option is set to zero, which means that the value used will be
25423 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
25424 If you set this option to a value different from zero
25425 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
25426 then that is the check interval that will be used
25427 for folders that are not the currently open folder or the INBOX.
25428 You may not even have any folders that are noncurrent and not the INBOX.
25429 If you do, it is likely that they are due to
25430 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25431 you have configured.
25432 This option also affects the rate of mail checking done on cached
25433 connections to folders you previously had open but are no longer actively
25434 using.
25435 You aren't expected to understand that last sentence, but if you are interested
25436 take a look at
25437 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
25438 and the related options.
25440 <UL>   
25441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25442 </UL><P>
25443 &lt;End of help on this topic&gt;
25444 </BODY>
25445 </HTML>
25446 ====== h_config_fifopath =====
25447 <HTML>
25448 <HEADER>
25449 <TITLE>OPTION: NewMail FIFO Path</TITLE>
25450 </HEADER>
25451 <BODY>
25452 <H1>OPTION: NewMail FIFO Path</H1>
25454 This option is only available in UNIX Alpine.
25455 However, there is a very similar feature built in to PC-Alpine.
25456 In PC-Alpine's Config menu at the top of the screen
25457 is an option called &quot;New Mail Window&quot;.
25459 You may have Alpine create a FIFO special file (also called a named pipe) where
25460 it will send a one-line message each time a new message is received in
25461 the current folder, the INBOX, or any open
25462 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
25463 To protect against two different Alpines both writing to the same FIFO, Alpine
25464 will only create the FIFO and write to it if it doesn't already exist.
25466 A possible way to use this option would be to have a separate window
25467 on your screen running the command
25469 <CENTER><SAMP>cat filename</SAMP></CENTER>
25471 where &quot;filename&quot; is the name of the file given for this option.
25472 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
25473 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
25474 You may be tempted to use &quot;tail -f filename&quot; to view the new
25475 mail log.
25476 However, the common implementations of the tail command will not do what you
25477 are hoping.
25479 The width of the messages produced for the FIFO may be altered with the
25480 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
25482 On some systems, fifos may only be created in a local filesystem.
25483 In other words, they may not be in NFS filesystems.
25484 This requirement is not universal.
25485 If the system you are using supports it, it should work.
25486 (It is often the case that your home directory is in an NFS filesystem.
25487 If that is the case, you might try using a file in the &quot;/tmp&quot;
25488 filesystem, which is usually a local filesytem.)
25489 Even when it is possible to use an NFS-mounted filesystem as a place to name
25490 the fifo (for example, your home directory), it will still be the case that
25491 the reader (probably the &quot;cat&quot; command) and the
25492 writer (Alpine) of the fifo must be running on the same system.
25494 <UL>   
25495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25496 </UL><P>
25497 &lt;End of help on this topic&gt;
25498 </BODY>
25499 </HTML>
25500 ====== h_config_newmailwidth =====
25501 <HTML>
25502 <HEADER>
25503 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
25504 </HEADER>
25505 <BODY>
25506 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
25508 For UNIX Alpine, this option is only useful if you have turned on the
25509 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
25510 That option causes new mail messages to be sent to a fifo file.
25511 Those messages will be 80 characters wide by default.
25512 You can change the width of those messages by changing this option.
25513 For example, if you are reading those messages in another window you might
25514 want to set this width to the width of that other window.
25516 If you are using PC-Alpine, it has an option in the Config menu to turn
25517 on the &quot;New Mail Window&quot;.
25518 This present option also controls the width of that window.
25520 <UL>   
25521 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25522 </UL><P>
25523 &lt;End of help on this topic&gt;
25524 </BODY>
25525 </HTML>
25526 ====== h_config_mailcheck =====
25527 <HTML>
25528 <HEADER>
25529 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
25530 </HEADER>
25531 <BODY>
25532 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
25534 This option specifies, in seconds,
25535 how often Alpine will check for new mail.
25536 If set to zero, new-mail checking is disabled.
25537 (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
25538 current message is the last message of the folder.)
25539 There is a minimum value for this option, normally 15 seconds.
25540 The default value is normally 150 seconds.
25541 The higher you set this option, the easier it is on the server.
25543 There are some situations where automatic new-mail checking does not work.
25544 See the discussion about new-mail checking in
25545 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
25547 The new-mail checking will not happen exactly at the frequency that you specify.
25548 For example, Alpine may elect to defer a non-INBOX mail check if you
25549 are busy typing.
25550 Or, it may check more frequently than you have specified if that is
25551 thought to be necessary to keep the server from closing the connection
25552 to the folder due to inactivity.
25553 If Alpine checks for new mail as a side effect of another command, it will reset
25554 the timer, so that new-mail checking may seem to happen irregularly instead of
25555 every X seconds like clockwork.
25557 If you are anxious to know about new mail as soon as possible, set the check
25558 interval low, and you'll know about the new mail by approximately
25559 that amount of time after it arrives.
25560 If you aren't so worried about knowing right away, set this option to a
25561 higher value.
25562 That will save the server some processing time and may save you some of
25563 the time you spend waiting for new-mail checks to happen if you are
25564 dealing with a slow server or slow network connection.
25566 If you suspect that new-mail checking is causing slow downs for you,
25567 you may want to look into the options
25568 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
25569 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
25570 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
25571 which refine when mail checking is done.
25573 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
25574 there is a minimum time
25575 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
25576 between new-mail checks.
25577 Because of this minimum you may notice that new mail does not
25578 appear promptly when you expect it.
25579 The reason for this is to protect the server from over-zealous opening and
25580 closing of the Mail Drop folder, since that is a costly operation.
25582 <UL>   
25583 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25584 </UL><P>
25585 &lt;End of help on this topic&gt;
25586 </BODY>
25587 </HTML>
25588 ====== h_config_quell_checks_comp =====
25589 <HTML>
25590 <HEAD>
25591 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
25592 </HEAD>
25593 <BODY>
25594 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
25596 This option is closely related to the
25597 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25598 option, the
25599 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25600 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
25602 If this option is set, then the normal new-mail checking that happens
25603 while you are composing will not happen for folders other than your
25604 INBOX (which depends on the setting
25605 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
25607 You might want to set this option if you are experiencing delays while
25608 composing that you think might be related to the speed of the new-mail
25609 checks.
25611 Even with this option turned on, an occasional new-mail check may be done
25612 in order to keep the server from killing the connection to the folder.
25613 For example, IMAP servers may remove a connection to a folder if there
25614 has been no activity on the connection for 30 minutes or more.
25615 Instead of letting that happen, Alpine will check for new mail before the
25616 30 minutes is up even though you have turned on this feature to quell
25617 those checks.
25619 Besides new-mail checks, checkpoint operations on the folders
25620 will also be quelled when you set this option.
25621 The purpose of checkpointing is to write the changes to a folder out to
25622 disk periodically in order to avoid losing those changes when system or
25623 software problems occur.
25624 New-mail checking and checkpointing while you are not composing are not
25625 affected by this option.
25628 &lt;End of help on this topic&gt;
25629 </BODY>
25630 </HTML>
25631 ====== h_config_quell_checks_comp_inbox =====
25632 <HTML>
25633 <HEAD>
25634 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
25635 </HEAD>
25636 <BODY>
25637 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
25639 This option is closely related to the
25640 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25641 option, the
25642 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25643 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
25645 If this option is set, then the normal new-mail checking that happens
25646 while you are composing will not happen for your INBOX.
25647 Checking of other folders is controlled in a similar way with the
25648 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
25650 You might want to set this option if you are experiencing delays while
25651 composing that you think might be related to the speed of the new-mail
25652 checks.
25654 Even with this option turned on, an occasional new-mail check may be done
25655 in order to keep the server from killing the connection to the folder.
25656 For example, IMAP servers may remove a connection to a folder if there
25657 has been no activity on the connection for 30 minutes or more.
25658 Instead of letting that happen, Alpine will check for new mail before the
25659 30 minutes is up even though you have turned on this feature to quell
25660 those checks.
25662 Besides new-mail checks, checkpoint operations on the INBOX
25663 will also be quelled when you set this option.
25664 The purpose of checkpointing is to write the changes to a folder out to
25665 disk periodically in order to avoid losing those changes when system or
25666 software problems occur.
25667 New-mail checking and checkpointing while you are not composing are not
25668 affected by this option.
25670 &lt;End of help on this topic&gt;
25671 </BODY>
25672 </HTML>
25673 ====== h_config_maildropcheck =====
25674 <HTML>
25675 <HEADER>
25676 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
25677 </HEADER>
25678 <BODY>
25679 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
25681 New-mail checking for a
25682 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
25683 mail checking for a regular folder.
25684 One of the differences is that the connection to the Mail Drop is not
25685 kept open and so the cost of checking
25686 (delay for you and additional load for the server) may be significant.
25687 Because of this additional cost we set a minimum time that
25688 must pass between checks.
25689 This minimum only applies to the automatic checking done by Alpine.
25690 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
25691 at the end of a folder index, then the check is done right away.
25693 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
25694 new-mail checks.
25695 You may want to set this minimum high in order to avoid experiencing some
25696 of the delays associated with the checks.
25697 Note that the time between checks is still controlled by the regular
25698 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
25699 When Alpine is about to do an automatic check for new mail (because
25700 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
25701 new-mail check
25702 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
25703 the Mail Drop is checked for new mail as well.
25704 Therefore, it is only useful to set this option to a value that is higher
25705 than the <!--#echo var="VAR_mail-check-interval"-->.
25707 If this option is set to zero, automatic Mail Drop new-mail
25708 checking is disabled.
25709 There is a minimum value, normally 60 seconds.
25710 The default value is normally 60 seconds as well.
25711 This applies to the INBOX and to the currently open folder if that is
25712 different from the INBOX.
25715 <UL>   
25716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25717 </UL><P>
25718 &lt;End of help on this topic&gt;
25719 </BODY>
25720 </HTML>
25721 ====== h_config_nntprange =====
25722 <HTML>
25723 <HEADER>
25724 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
25725 </HEADER>
25726 <BODY>
25727 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
25729 This option applies only to newsgroups accessed using the NNTP protocol.
25730 It does not, for example,
25731 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
25734 When you open a connection to a News server using the NNTP protocol, you
25735 normally have access to all of the articles in each newsgroup.
25736 If a server keeps a large backlog of messages it may speed performance
25737 some to restrict attention to only the newer messages in a group.
25738 This option allows you to set how many article numbers should be checked
25739 when opening a newsgroup.
25740 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
25741 of messages you ever want to see.
25742 For example, if you only ever wanted to look at the last 500 messages in each
25743 newsgroup you could set this option to 500.
25744 In actuality, it isn't quite that.
25745 Instead, for performance reasons, it specifies the range of article
25746 numbers to be checked, beginning
25747 with the highest numbered article and going backwards from there.
25748 If there are messages that have been canceled or deleted
25749 their article numbers are still counted as part of the range.
25751 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
25752 numbers
25753 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
25755 to be considered when reading a newsgroup.
25756 The number of messages that show up in your index will be less than or equal
25757 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
25760 The purpose of this option is simply to speed up access when reading news.
25761 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
25762 numbers, and can avoid downloading any information about the ignored articles.
25763 There is a cost you pay for this speedup.
25764 That cost is that there is no way for you to see those ignored articles.
25765 The articles that come before the range you specify are invisible to you and
25766 to Alpine, as if they did not exist at all.
25767 There is no way to see those messages using, for example, an unexclude command
25768 or something similar.
25769 The only way to see those articles is to set this option high enough (or
25770 set it to zero) and then to reopen the newsgroup.
25773 If this option is set to 0 (which is also the default),
25774 then the range is unlimited.
25775 This option applies globally to all NNTP servers and to all newsgroups
25776 on those servers.
25777 There is no way to set different values for different newsgroups or servers.
25780 <UL>   
25781 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25782 </UL><P>
25783 &lt;End of help on this topic&gt;
25784 </BODY>
25785 </HTML>
25786 ====== h_config_news_active =====
25787 <html>
25788 <header>
25789 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
25790 </header>
25791 <body>
25792 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
25794 This option tells Alpine where to look for the "active file" for newsgroups
25795 when accessing news locally, rather than via NNTP.  The default path is
25796 usually "/usr/lib/news/active".<p>
25797 <UL>   
25798 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25799 </UL><P>
25800 &lt;End of help on this topic&gt;
25801 </body>
25802 </html>
25803 ====== h_config_news_spool =====
25804 <html>
25805 <header>
25806 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
25807 </header>
25808 <body>
25809 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
25811 This option tells Alpine where to look for the "news spool" for newsgroups
25812 when accessing news locally, rather than via NNTP.  The default path is
25813 usually "/var/spool/news".<p>
25814 <UL>   
25815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25816 </UL><P>
25817 &lt;End of help on this topic&gt;
25818 </body>
25819 </html>
25820 ====== h_config_image_viewer =====
25821 <html>
25822 <header>
25823 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
25824 </header>
25825 <body>
25826 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
25827 <body>
25828 This option specifies the program Alpine should call to view MIME
25829 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
25830 no longer needed, but remains for backward compatibility.  The more
25831 general method for associating external printing and viewing programs with
25832 specific MIME data types is to use the system's (or your personal)
25833 "mailcap" configuration file.<p>
25834 <UL>   
25835 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25836 </UL><P>
25837 &lt;End of help on this topic&gt;
25838 </body>
25839 </html>
25840 ====== h_config_domain_name =====
25841 <HTML>
25842 <HEAD>
25843 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
25844 </HEAD>
25845 <BODY>
25846 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
25848 This option is used only if the 
25849 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
25850 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
25851 strips the hostname from your return (&quot;From&quot;) address and when 
25852 completing unqualified addresses that you enter into the composer.
25854 If you set this, see also the <A HREF="h_config_quell_local_lookup">
25855 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
25858 <!--chtml if pinemode="os_windows"-->
25859 <P>This option is not applicable to PC-Alpine.
25860 <!--chtml else-->
25862 <!--chtml endif-->
25863 <UL>
25864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25865 </UL>
25867 &lt;End of help on this topic&gt;
25868 </BODY>
25869 </HTML>
25870 ====== h_config_prune_date =====
25871 <HTML>
25872 <HEAD>
25873 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
25874 </HEAD>
25875 <BODY>
25876 <H1>OPTION: Last-Time-Prune Question</H1>
25878 This value records the last time you were asked about deleting old
25879 sent-mail.
25880 It is set automatically by Alpine at the beginning of each month.
25881 In the past, if you wished to suppress the monthly sent-mail
25882 pruning feature, you could set this to a date in the future.
25883 This value is relative to the year 1900, so 
25884 to set this, for example, to October 2005, use 105.10.
25886 You can still do that if you wish, or you can use the
25887 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
25888 a little more convenient to use.
25890 <UL>   
25891 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25892 </UL><P>
25893 &lt;End of help on this topic&gt;
25894 </BODY>
25895 </HTML>
25896 ====== h_config_goto_default =====
25897 <HTML>
25898 <HEAD>
25899 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
25900 </HEAD>
25901 <BODY>
25902 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
25904 This value affects Alpine's behavior when you use the Goto command.
25905 Alpine's usual behavior has two parts.  If your current folder is
25906 &quot;Inbox&quot;, Alpine will offer the last open folder as the
25907 default.  If the current folder is other than &quot;Inbox&quot;,
25908 &quot;Inbox&quot; is offered as the default.
25911 The available options include:
25913 <DL>
25915  <DT>folder-in-first-collection</DT>
25917  <DD> Alpine will offer the most recently visited folder in the default
25918 collection found in the &quot;Collection List&quot; screen as the default.
25919 </DD>
25921  <DT> inbox-or-folder-in-first-collection</DT>
25923  <DD> If the current folder is &quot;Inbox&quot;,
25924 Alpine will offer the most recently visited folder in the
25925 default collection found in the &quot;Collection List&quot; screen.
25926 If the current folder is other than &quot;Inbox&quot;,
25927 &quot;Inbox&quot; is offered as the default.
25928 </DD>
25930  <DT> inbox-or-folder-in-recent-collection</DT>
25932  <DD> This is Alpine's default behavior.
25933 If the current folder is &quot;Inbox&quot;,
25934 Alpine will offer the last open
25935 folder as the default.
25936 If the current folder is other than &quot;Inbox&quot;,
25937 &quot;Inbox&quot; is offered as the default.
25938 </DD>
25940  <DT> first-collection-with-inbox-default</DT>
25942  <DD> Instead of offering the most recently visited folder in the default
25943 collection, the default collection is offered but with &quot;Inbox&quot; as
25944 the default folder.
25945 If you type in a folder name it will be in the default collection.
25946 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
25947 </DD>
25949  <DT> most-recent-folder</DT>
25951  <DD> The last accepted value simply causes the most recently opened
25952 folder to be offered as the default regardless of the currently opened
25953 folder.
25954 </DD>
25955 </DL>
25958 NOTE: The default while a newsgroup is open remains the same; the last
25959 open newsgroup.
25962 <UL>   
25963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25964 </UL><P>
25965 &lt;End of help on this topic&gt;
25966 </BODY>
25967 </HTML>
25968 ====== h_config_thread_lastreply_char =====
25969 <HTML>
25970 <HEAD>
25971 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
25972 </HEAD>
25973 <BODY>
25974 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
25976 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
25977 INDEX display when using a
25978 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
25979 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
25980 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
25981 The value of this option is a single character.
25982 This character is used instead of the vertical line character when there are
25983 no more replies directly to the parent of the current message.
25984 It can be used to &quot;round-off&quot; the bottom of the vertical line
25985 by setting it to a character such as a backslash (&#92;) or
25986 a backquote (&#96;).
25987 The default value of this option is the backslash character (&#92;).
25988 This option may not be set to the Empty Value.
25989 In that case, the default will be used instead.
25992 <UL>   
25993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25994 </UL><P>
25995 &lt;End of help on this topic&gt;
25996 </BODY>
25997 </HTML>
25998 ====== h_config_thread_indicator_char =====
25999 <HTML>
26000 <HEAD>
26001 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26002 </HEAD>
26003 <BODY>
26004 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26006 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26007 INDEX display when using a
26008 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26009 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26010 The value of this option is a single character.
26011 This character is used to indicate that part of a thread (a conversation) is
26012 hidden beneath a message.
26013 The message could be expanded
26014 if desired with the &quot;/&quot; Collapse/Expand command.
26015 By default, the value of this option is the greater than sign (&gt;).
26017 If this option is set to the Empty Value, then the column (and the following
26018 blank column) will be deleted from the display.
26021 This option is closely related to the
26022 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26023 Another similar option that affects the thread display is the
26024 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26027 <UL>   
26028 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26029 </UL><P>
26030 &lt;End of help on this topic&gt;
26031 </BODY>
26032 </HTML>
26033 ====== h_config_thread_exp_char =====
26034 <HTML>
26035 <HEAD>
26036 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26037 </HEAD>
26038 <BODY>
26039 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26041 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26042 INDEX display when using a
26043 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26044 than &quot;none&quot;.
26045 The value of this option is a single character.
26046 This character is used to indicate that part of a thread has been expanded
26047 and could be collapsed if desired with
26048 the &quot;/&quot; Collapse/Expand command.
26049 By default, the value of this option is a dot (.).
26051 If this option is set to the Empty Value, then the column (and the following
26052 blank column) will be deleted from the display.
26055 This option is closely related to the
26056 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26057 Another similar option that affects the thread display is the
26058 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26061 <UL>   
26062 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26063 </UL><P>
26064 &lt;End of help on this topic&gt;
26065 </BODY>
26066 </HTML>
26067 ====== h_config_thread_index_style =====
26068 <HTML>
26069 <HEAD>
26070 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26071 </HEAD>
26072 <BODY>
26073 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26075 When a folder is sorted by Threads or OrderedSubject,
26076 this option will affect the INDEX displays.
26079 The possible values for this option are:
26081 <DL>
26082 <DT>regular-index-with-expanded-threads</DT>
26083 <DD>This is the default display.
26084 If the configuration option
26085 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26086 is set to something other than &quot;none&quot;, then this setting
26087 will cause Alpine to start off with a MESSAGE INDEX with all of
26088 the threads expanded.
26089 That is, each message will have a line in the MESSAGE INDEX display.
26090 The Collapse/Expand command (/) may be used to manually collapse or
26091 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26093 This setting affects the display when the folder is first threaded.
26094 The collapsed state may also be re-initialized by re-sorting the folder manually
26095 using the SortIndex command ($).
26096 After re-sorting the threads will once again all be expanded, even if you
26097 have previously collapsed some of them.
26099 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26100 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26101 in a different order.
26102 </DD>
26104 <DT>regular-index-with-collapsed-threads</DT>
26105 <DD>If the configuration option
26106 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26107 is set to something other than &quot;none&quot;, then this setting
26108 will cause Alpine to start out with all of the threads collapsed instead of
26109 starting out with all of the threads expanded.
26110 The Collapse/Expand command (/) may be used to manually collapse or
26111 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26113 This setting affects the display when the folder is first threaded.
26114 The collapsed state may also be re-initialized by re-sorting the folder manually
26115 using the SortIndex command ($).
26116 After re-sorting the threads will once again all be collapsed, even if you
26117 have previously expanded some of them.
26118 </DD>
26120 <DT>separate-index-screen-always</DT>
26121 <DD>With this setting and the next, you will see an index of threads
26122 instead of an
26123 index of messages, provided you have sorted by Threads or OrderedSubject.
26125 The THREAD INDEX contains a '*' in the first column if any message in the thread
26126 is marked Important.
26127 If not, it contains a '+' if any message in the thread is to you.
26128 The second column is blank. The third column contains a 'D' if all of the
26129 messages in the thread are deleted.
26130 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26132 When you view a particular thread from the THREAD INDEX you will be
26133 in the MESSAGE INDEX display
26134 but the index will only contain messages from the thread you are viewing.
26135 </DD>
26137 <DT>separate-index-screen-except-for-single-messages</DT>
26138 <DD>This is very similar to the option above.
26139 When you are in the THREAD INDEX, one of the available commands
26140 is &quot;ViewThd&quot;.
26141 With the setting &quot;separate-index-screen-always&quot; (the option above)
26142 when you view a particular thread you will be in the
26143 MESSAGE INDEX display and the index will only contain messages from
26144 the thread you are viewing.
26145 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26146 will be an index with only one message in it.
26147 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26148 setting instead, then that index that contains a single message
26149 will be skipped and you will go directly from the THREAD INDEX into the
26150 MESSAGE TEXT screen.
26151 </DD>
26153 </DL>
26156 <UL>   
26157 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26158 </UL><P>
26159 &lt;End of help on this topic&gt;
26160 </BODY>
26161 </HTML>
26162 ====== h_config_thread_disp_style =====
26163 <HTML>
26164 <HEAD>
26165 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26166 </HEAD>
26167 <BODY>
26168 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26170 When a folder is sorted by Threads or OrderedSubject,
26171 this option will affect the MESSAGE INDEX display.
26172 By default, Alpine will display the MESSAGE INDEX in the
26173 &quot;show-thread-structure&quot; style if a folder is sorted
26174 by Threads or OrderedSubject.
26177 The possible values for this option are:
26179 <DL>
26180 <DT>none</DT>
26181 <DD>Regular index display.
26182 The same index line as would be displayed without threading is used.
26183 The only difference will be in the order of the messages.
26184 </DD>
26186 <DT>show-thread-structure</DT>
26187 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26188 lines will be added to make it easier to see the relationships among
26189 the messages in a thread (a conversation).
26190 </DD>
26192 <DT>mutt-like</DT>
26193 <DD>This is the same as the option above except that the Subject
26194 is suppressed (is blank) if it matches the previous Subject in the thread.
26195 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26196 Here is an example of what a mutt-like index might look like.
26197 In this example, the first column represents the message number, the
26198 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26199 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26200 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26201 is set to a backslash:
26202 <PRE>
26203 &nbsp;&nbsp;&nbsp;1    Some topic
26204 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26205 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26206 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26207 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26208 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26209 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26210 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26211 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26212 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26213 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26214 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26215 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26216 &nbsp;&nbsp;&nbsp;14    Next topic
26217 </PRE>
26218 </DD>
26220 <DT>indent-subject-1</DT>
26221 <DD>Threaded Subjects will be indented one space per level of the conversation.
26222 The bars and lines that show up in the show-thread-structure display will
26223 not be there with this style.
26224 </DD>
26226 <DT>indent-subject-2</DT>
26227 <DD>Same as above but indent two spaces per level instead of one space.
26228 </DD>
26230 <DT>indent-from-1</DT>
26231 <DD>Similar to indent-subject-1, except that instead of indenting the
26232 Subject field one space the From field of a thread will be indented one
26233 space per level of the conversation.
26234 </DD>
26236 <DT>indent-from-2</DT>
26237 <DD>Same as above but indent two spaces per level instead of one space.
26238 </DD>
26240 <DT>show-structure-in-from</DT>
26241 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26242 and horizontal lines just like with the show-thread-structure option, but
26243 the From field is used to show the relationships instead of the Subject field. 
26244 </DD>
26246 </DL>
26249 <UL>   
26250 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26251 </UL><P>
26252 &lt;End of help on this topic&gt;
26253 </BODY>
26254 </HTML>
26255 ====== h_config_pruning_rule =====
26256 <HTML>
26257 <HEAD>
26258 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26259 </HEAD>
26260 <BODY>
26261 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26263 By default, Alpine will ask at the beginning of each month whether or not
26264 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26265 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26266 change the format of the folder to sent-mail-yyyy-mm.)
26267 It will also ask whether you would like to delete old sent-mail folders.
26268 If you have defined
26269 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26271 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26272 Alpine will also ask about pruning those folders.
26275 With this option you may provide an automatic answer to these questions.
26276 The default value is to ask you what you'd like to do.
26279 The six possible values for this option are:
26281 <DL>
26282 <DT>ask about rename, ask about deleting</DT>
26283 <DD>This is the default.
26284 Alpine will ask whether you want to rename the folders and whether you
26285 want to delete each of the old folders.
26286 </DD>
26288 <DT>ask about rename, don't delete</DT>
26289 <DD>Alpine will ask whether you want to rename the folders, but won't
26290 ask about or delete old folders.
26291 </DD>
26293 <DT>always rename, ask about deleting</DT>
26294 <DD>This means you want to always answer yes and have Alpine automatically
26295 rename the folder if possible.
26296 You will also be asked about deleting old folders.
26297 </DD>
26299 <DT>always rename, don't delete</DT>
26300 <DD>This means you want to always answer yes and have Alpine automatically
26301 rename the folder if possible.
26302 There will be no deleting of old folders.
26303 </DD>
26305 <DT>don't rename, ask about deleting</DT>
26306 <DD>This means you want to always answer no.
26307 Alpine will not rename the folder.
26308 You will be asked about deleting old folders.
26309 </DD>
26311 <DT>don't rename, don't delete</DT>
26312 <DD>This means you want to always answer no.
26313 Alpine will not rename the folder.
26314 There will be no deleting of old folders, either.
26315 </DD>
26316 </DL>
26319 <UL>   
26320 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26321 </UL><P>
26322 &lt;End of help on this topic&gt;
26323 </BODY>
26324 </HTML>
26325 ====== h_config_reopen_rule =====
26326 <HTML>
26327 <HEAD>
26328 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26329 </HEAD>
26330 <BODY>
26331 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26333 Alpine normally checks for new mail in the currently open folder
26334 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26337 There are some situations where automatic new-mail checking does not work.
26338 For example, if a mail folder is opened using the POP protocol or a newsgroup
26339 is being read using the NNTP protocol, then new-mail checking is disabled.
26342 It may be possible to check for new mail in these cases by reopening the
26343 folder.
26344 Alpine does not do this for you automatically, but you may do the commands
26345 manually to cause this to happen.
26346 You reopen by going back to the folder list screen from the message
26347 index screen with the &quot;&lt;&quot; command,
26348 and then going back into the message index screen with
26349 the &quot;&gt;&quot; command.
26350 (Actually, any method you would normally use to open a folder will work the
26351 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26352 For example, the GoTo Folder command will work, or you may use L to go to the
26353 Folder List screen and Carriage Return to reopen the folder.)
26356 There are some cases where Alpine knows that reopening the folder should
26357 be useful as a way to discover new mail.
26358 At the time of this writing, connections made using the POP protocol,
26359 news reading using the NNTP protocol, local news reading, and local
26360 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26361 fall into this category.
26362 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26363 has no way of knowing, so it might also just be an exercise in futility.
26364 All remote, ReadOnly folders other than those listed just above fall into this
26365 category.
26366 The setting of this option together with the type of folder
26367 controls how Alpine will react to the apparent attempt to reopen a folder.
26370 If you don't reopen, then you will just be back in
26371 the message index with no change.
26372 You left the index and came back, but the folder remained &quot;open&quot;
26373 the whole time.
26374 However, if you do reopen the folder, the folder is closed and then reopened.
26375 In this case, the current state of the open folder is lost.
26376 The New status, Important and Answered flags,
26377 selected state, Zoom state, collapsed or expanded state of threads,
26378 current message number,
26379 and any other temporary state is all lost when the reopen happens.
26380 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
26383 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
26384 several places.
26385 That really implies the case where Alpine knows it is a good way to discover
26386 new mail, which is more than just POP and NNTP, but POP and NNTP are
26387 the cases of most interest.
26388 This option probably has more possible values than it deserves. They are:
26390 <DL>
26391 <DT>Always reopen</DT>
26392 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
26393 whenever you type a command that implies a reopen, regardless of the
26394 access method.
26395 In other words, it is assumed you would always answer Yes if asked
26396 about reopening.
26397 </DD>
26399 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
26400 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26401 will ask you whether to reopen other remote folders,
26402 with a default answer of Yes.
26403 </DD>
26405 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
26406 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26407 will ask you whether to reopen other remote folders,
26408 with a default answer of No.
26409 </DD>
26411 <DT>Yes for POP/NNTP, No for other remote</DT>
26412 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
26413 will assume a No answer for all other remote folders.
26414 </DD>
26416 <DT>Always ask [Yes]</DT>
26417 <DD>Alpine will not differentiate based on access method.
26418 It will always ask for all remote folders, with a default answer of Yes.
26419 </DD>
26421 <DT>Always ask [No]</DT>
26422 <DD>Alpine will not differentiate based on access method.
26423 It will always ask for all remote folders, with a default answer of No.
26424 </DD>
26426 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
26427 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
26428 of Yes.
26429 It will never attempt to reopen other remote folders.
26430 </DD>
26432 <DT>Ask about POP/NNTP [No], No for other remote</DT>
26433 <DD>This is the default.
26434 Alpine will ask if the access method is POP or NNTP, with a default answer
26435 of No.
26436 It will never attempt to reopen other remote folders.
26437 </DD>
26439 <DT>Never reopen</DT>
26440 <DD>Alpine will never attempt to reopen already open folders.
26441 </DD>
26442 </DL>
26445 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
26446 any of the other situations where it is likely that reopening is a good way
26447 to discover new mail.
26450 There is an alternative that may be of useful in some situations.
26451 Instead of manually checking for new mail you can set up a
26452 <A HREF="h_maildrop">Mail Drop</A>
26453 and automatically check for new mail.
26456 <UL>   
26457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26458 </UL><P>
26459 &lt;End of help on this topic&gt;
26460 </BODY>
26461 </HTML>
26462 ====== h_config_inc_startup =====
26463 <HTML>
26464 <HEAD>
26465 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
26466 </HEAD>
26467 <BODY>
26468 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
26470 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
26471 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
26472 It determines which message will be the <EM>current message</EM> when
26473 the folder is first opened.
26474 The default value is &quot;first-unseen&quot;.
26477 The seven possible values for this option are:
26479 <DL>
26480 <DT>first-unseen</DT>
26481 <DD>The current message is set to the first
26482 unseen message that has not been marked deleted, or the last message if
26483 all of the messages have been seen previously.
26484 Messages which have not been seen or which have been seen but re-marked
26485 as New are considered unseen messages.
26486 See the note at the bottom of this help about newsgroups.
26487 </DD>
26489 <DT>first-recent</DT>
26490 <DD>Similar to the default, but rather than starting on the first
26491 unseen message Alpine starts on the first <EM>recent</EM> message.
26492 A message is recent if it arrived since the last time the folder was
26493 open.  This value causes the current message to be set to the first
26494 recent message if there is one, otherwise to the last
26495 message in the folder.
26496 </DD>
26498 <DT>first-important</DT>
26499 <DD>This will result in the current message being set to the first
26500 message marked Important (but not Deleted).
26501 If no messages are marked Important, then it will be the last message.
26502 Messages are marked Important by <EM>you</EM>, not by the sender, using
26504 <A HREF="h_common_flag">Flag command</A>.
26505 Or they may be marked Important by an Alpine
26506 <A HREF="h_mainhelp_filtering">Filter</A>
26507 that you have set up.
26508 </DD>
26510 <DT>first-important-or-unseen</DT>
26511 <DD>This selects the first of the first unseen and the first important
26512 messages.
26513 </DD>
26515 <DT>first-important-or-recent</DT>
26516 <DD>This selects the first of the first recent and the first important
26517 messages.
26518 </DD>
26520 <DT>first</DT>
26521 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
26522 If all messages are deleted you start on the last message.
26523 </DD>
26525 <DT>last</DT>
26526 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
26527 If all messages are deleted you start on the last message.
26528 </DD>
26529 </DL>
26532 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
26533 &quot;first-recent&quot; are the same and are affected by whether or not the
26534 feature 
26535 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
26536 is turned on. 
26537 Also, there is no permanent storage in news for an Important flag.
26538 This means that no messages will be marked Important when a newsgroup is
26539 first opened.
26542 <UL>   
26543 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26544 </UL><P>
26545 &lt;End of help on this topic&gt;
26546 </BODY>
26547 </HTML>
26548 ====== h_config_browser =====
26549 <HTML>
26550 <HEAD>
26551 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
26552 </HEAD>
26553 <BODY>
26554 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
26555 <!--chtml if pinemode="os_windows"-->
26556 PC-Alpine users do not need to enter anything here, unless:<UL>
26557 <LI> they want to override, for use with Alpine, the application defined
26558 in the Windows operating system for handling URLs; or
26559 <LI> they are (planning on) using the same configuration file with 
26560 Unix Alpine.
26561 </UL>
26563 Note that if using a viewer that has a space in its path, you should
26564 use the DOS name for that directory or file. Example:
26565 <PRE>
26566 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
26567 </PRE>
26568 <HR><P>
26569 <!--chtml endif-->
26570 This option affects Alpine's handling of URLs that are found in 
26571 messages you read.  Normally, only URLs Alpine can handle directly
26572 are automatically offered for selection in the &quot;Message
26573 Text&quot; screen.  When one or more applications
26574 capable of deciphering URLs on their command line are added here, Alpine
26575 will choose the first available to display URLs it cannot handle directly.
26576 A viewer's availability is based on its being specified with a <B>full
26577 directory path</B> and the evaluation of any optionally supplied
26578 parameters described below.
26581 Additionally, to support various connection methods and applications, each
26582 entry in this list can optionally begin with one or more of
26583 the following special tokens.  The allowed tokens include:
26586 <DL>
26587 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
26588 <DD>
26589 The <VAR>test-string</VAR> is a shell command that Alpine will run to
26590 evaluate a viewer's availability.  The command specified by the test
26591 string is run and if its resulting exit status is non-zero, Alpine will
26592 not consider the associated viewer for use.
26593 </DD>
26595 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
26596 <DD>
26597 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
26598 URL schemes that are to be used with the associated viewer.  This is
26599 the way to configure Alpine to recognize URLs other than the built-in set.
26601 It can also be used to override Alpine's built-in handlers.
26602 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
26603 and Alpine would use (provided it passed all other criteria) the associated
26604 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
26606 </DD>
26607 </DL>
26610 By default, Alpine will simply append a space character followed by the
26611 selected URL prior to launching the command in your specified SHELL.  You can
26612 optionally specify where in the command the selected URL should appear
26613 by using the &quot;_URL_&quot; token.  All occurrences found in the command
26614 will be replaced with the selected URL before the command is handed
26615 to the shell.  If such replacement occurs, the default appending of the
26616 selected URL does not take place.
26619 NOTE: If the viewer you specify has any command-line arguments,
26620 including the &quot;_URL_&quot; token, you will need to add a
26621 double-quote character before the command path and after the last
26622 argument (see the &quot;lynx&quot; example below).
26625 So, here are some example entries:
26626 <PRE>
26627 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
26628               &quot;/usr/local/bin/lynx _URL_&quot;
26629               C:&#92;BIN&#92;NETSCAPE.BAT
26630 </PRE>
26632 This example shows that for the first viewer in the list to be used
26633 the environment variable &quot;DISPLAY&quot; must be defined.  If it
26634 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
26635 If neither condition is met,
26636 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
26637 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
26638 If the path to &quot;lynx&quot; is invalid,
26639 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
26640 Note that the last
26641 entry is a DOS/Windows path.  This is one way to support Alpine running
26642 on more than one architecture with the same configuration file.<P>
26644 <!--chtml if pinemode="os_windows"-->
26645 <!--chtml else-->
26646 Note that depending on the type of browser used and the method of 
26647 its invocation (such as whether it will open in a separate window) from
26648 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
26649 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
26650 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
26651 In other words, launching the browser from Alpine may make Alpine 
26652 &quot;disappear&quot; (although it is still &quot;running&quot;)
26653 until you close the browser again.<P>  
26654 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26655 environment: for advanced users and  systems administrators</A>
26656 </UL>
26657 <!--chtml endif-->
26658 <P>If you are unsure what browsers are available on your system or how to 
26659 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
26660 local computing support staff.
26661 <P><UL>
26662 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26663 </UL>
26665 &lt;End of help on this topic&gt;
26666 </BODY>
26667 </HTML>
26668 ====== h_config_browser_xterm =====
26669 <HTML>
26670 <HEAD>
26671 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
26672 </HEAD>
26673 <BODY>
26674 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26675 environment: for advanced users and  systems administrators</H1>
26676 If you are using Alpine with an X-terminal (emulator) and want to define an 
26677 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
26678 you may want to do so in a manner that causes any <B>already</B> 
26679 invoked viewer application to be used for viewing URLs you select from Alpine 
26680 messages, and a <B>new</B> URL-viewer process to be 
26681 started <B>only</B> if the same application has <B>not already</B> 
26682 been launched -- for one reason, to avoid file-locking contentions among 
26683 multiple invocations of the same URL-viewer application.  
26684 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
26685 option does not do this.)  A method of doing that would be:<OL>
26686 <LI> use 
26687 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
26688 check (using commands appropriate for your Unix shell
26689 in place of <VAR>test-string</VAR>) for the presence of a 
26690 lockfile created by the URL-viewer application -- which implies that the 
26691 application is already running, though this is not foolproof. 
26692 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
26693 application with its appropriate command line option(s) to 
26694 show the URL selected from the Alpine message in an already open window of 
26695 that application, or perhaps in a new window of that application.  
26697 <LI> In the 
26698 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
26699 application without those command line options, but this time using the 
26700 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
26701 is defined.
26702 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
26703 windows environment (for instance, using VT-100 terminal emulation), you 
26704 may wish to specify a non-X windows URL-viewer application such as Lynx
26705 as the last entry.
26706 </OL><BR>
26707 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
26708 the command shell, the URL-viewer application(s), and possibly the specific 
26709 version of the latter, you are using.  
26711 Relevant command 
26712 line options for the Netscape browser for showing URLs (selected from Alpine) 
26713 when Netscape is already running are discussed in the document
26714 &quot;Remote Control of UNIX Netscape&quot; 
26715 found at the URL (as of 12 Aug. 1998):
26718 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
26720 <P>(If the URL-viewer application is 
26721 <B>not</B> running on the same host as Alpine, but being launched from an 
26722 applications server, you may not be able to use the command line options for 
26723 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
26725 <!--chtml if this-method="shown-to-work"-->
26726 An example using the Korn shell and the Netscape browser (first entry wrapped 
26727 because of its length, but should all appear on one line):
26729 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
26731 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
26732               &quot;/usr/local/bin/lynx '_URL_'&quot;
26734 <!--chtml endif-->
26736 <UL>   
26737 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26738 </UL><P>
26739 &lt;End of help on this topic&gt;
26740 </BODY>
26741 </HTML>
26742 ====== h_config_enable_full_hdr =====
26743 <HTML>
26744 <HEAD>
26745 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
26746 </HEAD>
26747 <BODY>
26748 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
26750 This feature enables the &quot;H Full Headers&quot; command which toggles between
26751 the display of all headers in the message and the normal edited view of
26752 headers.  The Full Header command also controls which headers are included
26753 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
26754 Full Header mode will respect the
26755 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
26756 feature setting.)
26758 If Full Header mode is turned on and you Forward a message, you will
26759 be asked if you'd like to forward the message as an attachment, as opposed
26760 to including the text of the message in the body of your new message.
26762 If you have also turned on the
26763 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
26764 option then the Full Headers command actually rotates through three states
26765 instead of just two.
26766 The first is the normal view with long quotes suppressed.
26767 The second is the normal view but with the long quotes included.
26768 The last enables the display of all headers in the message.
26769 When using Export, Pipe, Print, Forward, or Reply the quotes are
26770 never suppressed, so the first two states are identical.
26772 Normally, the Header Mode will reset
26773 to the default behavior when moving to a new message.
26774 The mode can be made to persist from message to message by setting the feature
26775 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
26777 <UL>   
26778 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26779 </UL><P>
26780 &lt;End of help on this topic&gt;
26781 </BODY>
26782 </HTML>
26783 ====== h_config_enable_full_hdr_and_text =====
26784 <HTML>
26785 <HEAD>
26786 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
26787 </HEAD>
26788 <BODY>
26789 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
26791 This feature affects how the &quot;H Full Headers&quot; command displays
26792 message text.  If set, the raw message text will be displayed.  This
26793 especially affects MIME formatted email, where the entire MIME format
26794 will be displayed.  This feature similarly affects how messages are
26795 included for the Export, Pipe, Print, Forward, and Reply functions.
26797 When viewing a raw message that has attachments with this feature set,
26798 you will not be able to view attachments without first leaving full 
26799 headers mode.  This is because MIME parsing is not done on the raw message.
26801 <UL>   
26802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26803 </UL><P>
26804 &lt;End of help on this topic&gt;
26805 </BODY>
26806 </HTML>
26807 ====== h_config_enable_pipe =====
26808 <HTML>
26809 <HEAD>
26810 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
26811 </HEAD>
26812 <BODY>
26813 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
26815 This feature enables the "| Pipe" command that sends the current message
26816 to the specified command for external processing.
26819 A short description of how the pipe command works is given
26820 <A HREF="h_pipe_command">here</A>.
26823 <UL>   
26824 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26825 </UL><P>
26826 &lt;End of help on this topic&gt;
26827 </BODY>
26828 </HTML>
26829 ====== h_config_quell_full_hdr_reset =====
26830 <HTML>
26831 <HEAD>
26832 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
26833 </HEAD>
26834 <BODY>
26835 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
26837 The <A HREF="h_common_hdrmode">HdrMode Command</A>
26838 normally resets to the default state when switching to a new message.
26839 For example, if you've used the &quot;H&quot; command to turn on Full
26840 Headers for a message you are viewing, and then you type the Next command
26841 to look at the next message, the full headers will no longer be shown.
26842 Setting this feature disables that reset.
26843 Instead, the Header Mode remains the same from message to message.
26846 The presence or absence of the HdrMode command is determined by the
26847 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
26848 Feature-List option.
26850 <UL>   
26851 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26852 </UL><P>
26853 &lt;End of help on this topic&gt;
26854 </BODY>
26855 </HTML>
26856 ====== h_config_enable_tab_complete =====
26857 <HTML>
26858 <HEAD>
26859 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
26860 </HEAD>
26861 <BODY>
26862 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
26864 This feature enables the TAB key when at a prompt for a filename. In this
26865 case, TAB will cause the partial name already entered to be automatically
26866 completed, provided the partial name is unambiguous.
26867 This feature is on by default.
26869 Similarly, this feature also enables TAB completion of address book
26870 nicknames when at a prompt for a nickname,
26871 or when typing in an address field in the composer.
26873 &lt;End of help on this topic&gt;
26874 </BODY>
26875 </HTML>
26876 ====== h_config_quit_wo_confirm =====
26877 <HTML>
26878 <HEAD>
26879 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
26880 </HEAD>
26881 <BODY>
26882 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
26884 This feature controls whether or not Alpine will ask for confirmation when a
26885 Quit command is received.
26887 &lt;End of help on this topic&gt;
26888 </BODY>
26889 </HTML>
26890 ====== h_config_quote_replace_noflow =====
26891 <HTML>
26892 <HEAD>
26893 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
26894 </HEAD>
26895 <BODY>
26896 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
26898 This feature, which is only active when
26899 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
26900 also set,
26901 enables quote-replacement on non-flowed messages.  It is off
26902 by default because a non-flowed message is more dependent on its format,
26903 and thus quote-replacement may cause less-than-pleasing results.
26904 Setting this feature will cause quote-replacement similar to that of flowed
26905 messages, but with the added possibility of long lines being wrapped
26906 into new lines if the Quote-Replacement-String is longer than the string
26907 it is replacing, which is &quot;&gt;&nbsp;&quot;.
26909 &lt;End of help on this topic&gt;
26910 </BODY>
26911 </HTML>
26912 ====== h_config_enable_jump =====
26913 <HTML>
26914 <HEAD>
26915 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
26916 </HEAD>
26917 <BODY>
26918 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
26920 When this feature is set you may enter a number (followed by RETURN)
26921 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
26922 screens.  In other words, it obviates the need for typing the "J" for the
26923 Jump command.
26925 &lt;End of help on this topic&gt;
26926 </BODY>
26927 </HTML>
26928 ====== h_config_enable_alt_ed =====
26929 <HTML>
26930 <HEAD>
26931 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
26932 </HEAD>
26933 <BODY>
26934 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
26936 If this feature is set (the default), and the 
26937 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
26938 <B>is not</B> set, entering
26939 the ^_ (Ctrl-underscore) key while composing a message will prompt you
26940 for the name of the editor you would like to use.
26942 If the environment variable $EDITOR is set, its value will be offered as
26943 a default.
26945 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
26946 <B>is</B> set, the ^_ key will activate the specified
26947 editor without prompting, in which case it is not necessary to
26948 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
26950 <UL>   
26951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26952 </UL><P>
26953 &lt;End of help on this topic&gt;
26954 </BODY>
26955 </HTML>
26956 ====== h_config_alt_ed_now =====
26957 <HTML>
26958 <HEAD>
26959 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
26960 </HEAD>
26961 <BODY>
26962 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
26964 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
26965 variable are both set, Alpine will
26966 automatically activate the specified editor when the cursor is moved from
26967 the header of the message being composed into the message text.  For
26968 replies, the alternate editor will be activated immediately.  If this
26969 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
26970 automatically ask for the name of an alternate editor when the cursor
26971 is moved out of the header being composed, or if a reply is being done.
26973 <P><UL>
26974 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26975 </UL>
26977 &lt;End of help on this topic&gt;
26978 </BODY>
26979 </HTML>
26980 ====== h_config_enable_bounce =====
26981 <HTML>
26982 <HEAD>
26983 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
26984 </HEAD>
26985 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
26986 <BODY>
26988 Setting this feature enables the "B Bounce" command, which will prompt
26989 for an address and *remail* the message to the new recipient.  This command
26990 is used to re-direct messages that you have received in error, or need to
26991 be redirected for some other reason (e.g. list moderation).  The final
26992 recipient will see a header indicating that you have Resent the msg, but
26993 the message's From: header will show the original author of the message,
26994 and replies to it will go back to that author, and not to you.
26996 &lt;End of help on this topic&gt;
26997 </BODY>
26998 </HTML>
26999 ====== h_config_enable_agg_ops =====
27000 <HTML>
27001 <HEAD>
27002 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27003 </HEAD>
27004 <BODY>
27005 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27007 When this feature is set you may use the commands and subcommands that relate to
27008 performing operations on more than one message at a time.  We call these
27009 &quot;aggregate operations&quot;.  In particular, the 
27010 <!--chtml if pinemode="function_key"-->&quot;F5
27011 <!--chtml else-->&quot;;
27012 <!--chtml endif--> Select&quot;, 
27014 <!--chtml if pinemode="function_key"-->
27015 &quot;F6
27016 <!--chtml else-->
27017 &quot;A 
27018 <!--chtml endif-->
27019 Apply&quot;, and 
27020 <!--chtml if pinemode="function_key"-->
27021 &quot;F4
27022 <!--chtml else-->
27023 &quot;Z 
27024 <!--chtml endif-->
27025 Zoom&quot; commands are enabled by this feature.  Select is used to
27026 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27027 then be used to apply any message command to all of the selected/tagged
27028 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27029 view between just those Selected and all messages in the folder.
27031 This feature also enables the 
27032 <!--chtml if pinemode="function_key"-->
27033 &quot;F7&quot; 
27034 <!--chtml else-->
27035 &quot;^X&quot; 
27036 <!--chtml endif-->
27038 subcommand in the MESSAGE INDEX 
27039 WhereIs command that causes all messages matching the WhereIs argument to 
27040 become selected; and the Select, Select Current, and ZoomMode commands in the
27041 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27043 Some related help topics are
27044 <UL>
27045 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27046 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27047 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27048 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27049 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27050 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27051 </UL>
27053 <UL>   
27054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27055 </UL><P>
27056 &lt;End of help on this topic&gt;
27057 </BODY>
27058 </HTML>
27060 ====== h_config_enable_flag =====
27061 <HTML>
27062 <HEAD>
27063 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27064 </HEAD>
27065 <BODY>
27066 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27068 Setting this feature enables the
27069 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27070 command that allows you to
27071 manipulate the status flags associated with a message.  By default, Flag
27072 will set the "Important" flag, which results in an asterisk being
27073 displayed in column one of the MESSAGE INDEX for such messages.
27075 &lt;End of help on this topic&gt;
27076 </BODY>
27077 </HTML>
27078 ====== h_config_flag_screen_default =====
27079 <HTML>
27080 <HEAD>
27081 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27082 </HEAD>
27083 <BODY>
27084 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27086 The feature modifies the behavior of the
27087 <a href="h_common_flag">Flag</a>
27088 command (provided it too is
27089 <A HREF="h_config_enable_flag">enabled</A>).
27090 By default, when the "* Flag" command is selected,
27091 Alpine offers a prompt to set one of several flags and also offers the
27092 option of entering the detailed flag manipulation screen via the "^T"
27093 key. Enabling this feature causes Alpine to immediately enter the detailed
27094 flag screen rather than first offer the simple prompt.
27096 <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.
27098 &lt;End of help on this topic&gt;
27099 </BODY>
27100 </HTML>
27101 ====== h_config_flag_screen_kw_shortcut =====
27102 <HTML>
27103 <HEAD>
27104 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27105 </HEAD>
27106 <BODY>
27107 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27109 This feature modifies the behavior of the
27110 <a href="h_common_flag">Flag</a> command
27111 and the <A HREF="h_index_cmd_select">Select</A> command.
27112 This feature is set by default.
27113 When this feature is not set, when the "* Flag" command is selected,
27114 Alpine offers a prompt to set one of several flags and also offers the
27115 option of entering the detailed flag manipulation screen via the "^T"
27116 key.
27117 If you have
27118 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27119 defined, then enabling this feature adds a shortcut way to set or unset
27120 keywords.
27121 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27122 a keyword if you've given it a nickname) and that will set the keyword.
27124 An example is easier to understand than the explanation.
27125 The flag command can always be used to set the system flags.
27126 For example, to set the Answered flag you would type
27128 <CENTER><SAMP>* A</SAMP></CENTER>
27130 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27131 option in the Config screen.
27132 By default, to set a keyword like &quot;Work&quot; you would usually
27133 have to go to the Flag Details screen using
27134 the &quot;^T To Flag Details&quot; command.
27135 Instead, if you have enabled this feature, you may type
27137 <CENTER><SAMP>* W</SAMP></CENTER>
27139 to set the Work flag, or
27141 <CENTER><SAMP>* ! W</SAMP></CENTER>
27143 to unset it.
27144 Just like for the other flag setting commands, the case of the letter does
27145 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27146 keyword.
27148 Notice that you can only use this trick for one keyword that begins
27149 with &quot;W&quot;.
27150 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27151 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27152 your list of keywords.
27153 Also, there are five letters that are reserved for system
27154 flags and the NOT command.
27155 If you type &quot;* A&quot; it will always set the Answered flag, not
27156 your &quot;Aardvark&quot; keyword.
27157 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27158 the Flag Details screen.
27160 Because enabling the
27161 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27162 option causes Alpine to skip directly to the Flag Details screen when the
27163 Flag command is used, 
27164 setting it will cause this feature to have no effect at all.
27166 Similarly, when Selecting by Keyword, setting this option will allow you
27167 to use Keyword initials instead of full keywords.
27169 &lt;End of help on this topic&gt;
27170 </BODY>
27171 </HTML>
27172 ====== h_config_can_suspend =====
27173 <HTML>
27174 <HEAD>
27175 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27176 </HEAD>
27177 <BODY>
27178 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27180 Setting this feature will allow you to type ^Z (Control Z) to 
27181 <!--chtml if pinemode="os_windows"-->
27182 minimize Alpine into its icon, bringing into focus whatever
27183 application is running behind the PC-Alpine window.
27184 <!--chtml else-->
27185 temporarily suspend Alpine.
27188 This does not exit Alpine, but puts it in the background to watch
27189 for new mail and such.  Normally, you type a command, such
27190 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27193 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27194 adjusts whether Alpine is placed into the background of the shell its 
27195 running in or starts a news shell.
27196 <!--chtml endif-->
27199 <UL>   
27200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27201 </UL><P>
27202 &lt;End of help on this topic&gt;
27203 </BODY>
27204 </HTML>
27205 ====== h_config_take_lastfirst ======
27206 <HTML>
27207 <HEAD>
27208 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27209 </HEAD>
27210 <BODY>
27211 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27213 Normally, when TakeAddr is used to copy an address from a message into
27214 an address book entry, Alpine will attempt to rewrite the full name of the
27215 address in the form
27218 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27220 instead of<P>
27222 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27225 It does this because many people find it useful to sort by Last name
27226 instead of First name.  If this feature is set, then the TakeAddr command
27227 will not attempt to reverse the name in this manner.
27229 &lt;End of help on this topic&gt;
27230 </BODY></HTML>
27231 ====== h_config_disable_regex ======
27232 <HTML>
27233 <HEAD>
27234 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27235 </HEAD>
27236 <BODY>
27237 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27239 Normally, the
27240 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27241 option is interpreted as a regular expression.
27242 One type of address that might cause trouble is an address that
27243 contains a plus sign.
27244 If you want to have an address with a plus as one of your
27245 <!--#echo var="VAR_alt-addresses"-->
27246 and you don't want to use regular expressions, then setting this
27247 feature will cause Alpine to treat the addresses you list literally instead.
27249 &lt;End of help on this topic&gt;
27250 </BODY></HTML>
27251 ====== h_config_take_fullname ======
27252 <HTML>
27253 <HEAD>
27254 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27255 </HEAD>
27256 <BODY>
27257 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27259 Normally, when TakeAddr is used to copy an address or addresses
27260 from a message into an address book entry, Alpine will try to preserve
27261 the full name associated with each address in the list of addresses.
27262 The reason for this is so that if the entry is a list or later becomes a
27263 list, then information about the individual addresses in the list
27264 is preserved.
27265 If you would rather just have the simple addresses in the list of addresses,
27266 set this feature. For example, with the default setting you might
27267 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27269 <PRE>
27270  Nickname  : nick
27271  Fullname  : Bedrock Elders
27272  Fcc       :
27273  Comment   :
27274  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27275              Barney Rubble &lt;rubble@bedrock.org&gt;
27276 </PRE>
27278 but with this feature set it would look like
27280 <PRE>
27281  Nickname  : nick
27282  Fullname  : Bedrock Elders
27283  Fcc       :
27284  Comment   :
27285  Addresses : flint@bedrock.org,
27286              rubble@bedrock.org
27287 </PRE>
27289 instead. Note the difference in the Addresses field.
27291 &lt;End of help on this topic&gt;
27292 </BODY></HTML>
27293 ====== h_config_print_from ======
27294 <HTML>
27295 <HEAD>
27296 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27297 </HEAD>
27298 <BODY>
27299 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27301 If this feature is set, then the Berkeley-mail style From line is included
27302 at the start of each message that is printed.  This line looks something
27303 like the following, with the address replaced by the address from the
27304 From line of the message being printed:
27306 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27307 14:11:06 1998
27309 &lt;End of help on this topic&gt;
27310 </BODY>
27311 </HTML>
27312 ====== h_config_expanded_distlists ======
27313 <HTML>
27314 <HEAD>
27315 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27316 </HEAD>
27317 <BODY>
27318 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27319 If this feature is set, then distribution lists in the address book
27320 screen will always be expanded automatically.
27322 &lt;End of help on this topic&gt;
27323 </BODY>
27324 </HTML>
27325 ====== h_config_compose_news_wo_conf ======
27326 <HTML>
27327 <HEAD>
27328 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27329 </HEAD>
27330 <BODY>
27331 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27332 This feature controls one aspect of Alpine's Composer.  If you enter the
27333 composer while reading a newsgroup, you will normally be prompted to
27334 determine whether you intend the new message to be posted to the current
27335 newsgroup or not.  If this feature is set, Alpine will not prompt you
27336 in this situation, and will assume that you do indeed wish to post
27337 to the newsgroup you are reading.
27339 &lt;End of help on this topic&gt;
27340 </BODY>
27341 </HTML>
27342 ====== h_config_compose_rejects_unqual ======
27343 <HTML>
27344 <HEAD>
27345 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27346 </HEAD>
27347 <BODY>
27348 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
27350 This feature controls one aspect of the message composer; in particular,
27351 what happens when an unqualified name is entered into an address header.
27352 If set, unqualified names entered as addresses will be treated as errors
27353 unless they match an addressbook nickname.  Alpine will not attempt to turn
27354 them into complete addresses by adding your local domain.<P>
27356 A complete (fully qualified) address is one containing a username followed
27357 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
27358 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
27359 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
27361 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
27365 When you enter a fully qualified address, Alpine does not interpret or
27366 modify it, but simply passes it on to the mail-transport-agent (MTA) for
27367 your system.  Alpine conforms to the Internet standards governing message
27368 headers and will not send an unqualifed name to the MTA.  Therefore, when
27369 you enter an unqualified name, Alpine will normally attempt to turn it into
27370 a fully qualified address, first by checking to see if you have entered a
27371 matching nickname in your addressbook, or failing that, by simply adding
27372 your own domain to the name entered.  So if your address is
27373 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
27374 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
27375 that into &quot;fred@example.com&quot;.<P>
27377 There are situations where it is not desirable for Alpine to interpret such
27378 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
27379 turned out to be a typo (intended to be an addressbook nickname), but
27380 there actually was a &quot;fred&quot; in your local domain, the message might 
27381 be mis-delivered without your realizing it.  In order to reduce the likelihood
27382 of such accidents, setting this feature will cause Alpine to treat such
27383 addresses as errors, and require that you explicitly enter the full local
27384 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
27385 matches an address book nickname.<P>
27387 Consider this a safety feature against mis-directed mail.
27389 <UL>   
27390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27391 </UL><P>
27392 &lt;End of help on this topic&gt;
27393 </BODY>
27394 </HTML>
27395 ====== h_config_quell_local_lookup ======
27396 <HTML>
27397 <HEAD>
27398 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
27399 </HEAD>
27400 <BODY>
27401 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
27403 This feature controls an aspect of Alpine's Composer, and if needed, will
27404 usually be set by your system manager in Alpine's system-wide configuration
27405 file. Specifically, if this feature is set, Alpine will not attempt to look
27406 in the system password file to find a Full Name for the entered address.
27408 Normally, names you enter into address fields (e.g. To: or Cc:) are
27409 checked against your address book(s) to see if they match an address book
27410 nickname.  Failing that, (in Unix Alpine) the name is then checked against
27411 the Unix password file.  If the entered name matches a username in the
27412 system password file, Alpine extracts the corresponding Full Name information
27413 for that individual, and adds that to the address being entered.
27415 However, password file matching can have surprising (incorrect) results if
27416 other users of the system do not receive mail at the domain you are using.
27417 That is, if either the 
27418 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
27419 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
27420 option
27421 is set such that the administrative domain of other users on the system
27422 isn't accurately reflected, Alpine should be told that a passwd file match
27423 is coincidental, and Full Name info will be incorrect.  For example, a
27424 personal name from the password file could get falsely paired with the
27425 entered name as it is turned into an address in the configured domain.
27427 If you are seeing this behavior, enabling this feature will prevent Unix
27428 Alpine from looking up names in the password file to find the Full Name
27429 for incomplete addresses you enter.<P>
27430 <UL>
27431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27432 </UL>
27434 &lt;End of help on this topic&gt;
27435 </BODY>
27436 </HTML>
27437 ====== h_config_tab_checks_recent ======
27438 <HTML>
27439 <HEAD>
27440 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
27441 </HEAD>
27442 <BODY>
27443 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
27445 In a FOLDER LIST screen, the TAB key usually just changes which
27446 folder is highlighted.
27447 If this feature is set, then the TAB key will cause the number of
27448 recent messages and the total number of messages in the highlighted folder
27449 to be displayed instead.
27452 &lt;End of help on this topic&gt;
27453 </BODY>
27454 </HTML>
27455 ====== h_config_maildrops_preserve_state ======
27456 <HTML>
27457 <HEAD>
27458 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
27459 </HEAD>
27460 <BODY>
27461 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
27463 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
27464 Normally, when mail is moved from a Mail Drop folder to a destination
27465 folder, it is delivered as new mail.
27466 Any Seen/New, Answered, Important/Flagged state that has changed will be
27467 ignored.
27468 All of the mail will be considered unSeen, unAnswered, and unImportant after
27469 it is moved.
27471 If this feature is set, then the state changes that have been made
27472 to the messages in the Mail Drop folder will be preserved.
27474 In any case, messages that are already marked Deleted when the
27475 mail is to be moved from the Mail Drop will be ignored.
27477 &lt;End of help on this topic&gt;
27478 </BODY>
27479 </HTML>
27480 ====== h_config_preopen_stayopens ======
27481 <HTML>
27482 <HEAD>
27483 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
27484 </HEAD>
27485 <BODY>
27486 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
27488 This feature is related to the option
27489 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27490 Normally, Stay Open folders are only opened on demand, when the user
27491 asks to open them.
27492 From then on they are kept open for the duration of the session.
27493 However, if this feature is set, then the Stay Open folders will all be
27494 opened at startup, at the same time that the INBOX is opened.
27497 &lt;End of help on this topic&gt;
27498 </BODY>
27499 </HTML>
27500 ====== h_config_expunge_inbox ======
27501 <HTML>
27502 <HEAD>
27503 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
27504 </HEAD>
27505 <BODY>
27506 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
27508 The INBOX is normally treated differently from regular folders in several
27509 ways.
27510 One of the differences is that the normal &quot;close&quot; sequence of
27511 events is deferred until Alpine is exited, instead of happening when you
27512 leave the INBOX to view another folder.
27513 The &quot;close&quot; sequence normally includes the Expunging
27514 of deleted messages
27515 (either automatically or after a prompt, controlled by the features
27516 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27517 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27518 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27519 handling of the
27520 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
27523 If this feature is set the &quot;close&quot; sequence handling will take
27524 place every time you leave the INBOX.
27525 The INBOX will still be kept open, but the offer to Expunge and the archiving
27526 to the <!--#echo var="VAR_read-message-folder"-->
27527 will take place each time you leave the INBOX instead of only once at the
27528 end of the session.
27531 &lt;End of help on this topic&gt;
27532 </BODY>
27533 </HTML>
27534 ====== h_config_expunge_stayopens ======
27535 <HTML>
27536 <HEAD>
27537 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
27538 </HEAD>
27539 <BODY>
27540 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
27542 This feature is related to the option
27543 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27544 Stay Open folders are treated differently from regular folders in several
27545 ways.
27546 One of the differences is that the normal &quot;close&quot; sequence of
27547 events is deferred until Alpine is exited, instead of happening when you
27548 leave the folder to view another folder.
27549 The &quot;close&quot; sequence normally includes the Expunging
27550 of deleted messages
27551 (either automatically or after a prompt, controlled by the features
27552 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27553 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27554 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27555 handling of
27556 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
27559 If this feature is set the &quot;close&quot; sequence handling will take
27560 place when you leave the Stay Open folder.
27561 The folder will still be kept open, but the offer to Expunge and the archiving
27562 will take place each time you leave the folder instead of only once at the
27563 end of the session.
27564 This feature does not affect the INBOX, which will still only be processed
27565 when you exit Alpine.
27566 However, there is a similar feature that affects only the INBOX called
27567 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
27570 &lt;End of help on this topic&gt;
27571 </BODY>
27572 </HTML>
27573 ====== h_config_preserve_start_stop ======
27574 <HTML>
27575 <HEAD>
27576 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
27577 </HEAD>
27578 <BODY>
27579 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
27581 This feature controls how special control key characters, typically
27582 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
27583 are known as the "stop" and "start" characters and are sometimes used in
27584 communications paths to control data flow between devices that operate at
27585 different speeds.
27589 By default, Alpine turns the system's handling of these special characters
27590 off except during printing.  However, if you see Alpine reporting input errors
27591 such as:
27593 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
27595 and, at the same time, see your display become garbled, then it is likely
27596 that setting this option will solve the problem.  Be aware, though, that
27597 enabling this feature will also cause Alpine to ostensibly "hang" 
27598 whenever the Ctrl-S key combination is entered as the system is now
27599 interpreting such input as a "stop output" command.  To "start
27600 output"  again, simply type Ctrl-Q. 
27602 &lt;End of help on this topic&gt;
27603 </BODY>
27604 </HTML>
27605 ====== h_config_enable_incoming ======
27606 <HTML>
27607 <HEAD>
27608 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
27609 </HEAD>
27610 <BODY>
27611 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
27613 Alpine's Incoming Message Folders collection
27614 provides a convenient way to access multiple incoming folders.
27615 It is also useful if you have accounts on multiple computers.
27618 If set, this feature defines a pseudo-folder collection called
27619 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
27620 in this collection will be your INBOX, which will no longer show up in
27621 your Default folder collection.
27624 You may add more folders to the Incoming Message Folders collection by
27625 using the
27626 <!--chtml if pinemode="function_key"-->
27627 &quot;F10
27628 <!--chtml else-->
27629 &quot;A
27630 <!--chtml endif-->
27631 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
27632 the host the folder is stored on (which defaults to the same host used
27633 for your INBOX), a nickname, and the actual folder name.  Once a set
27634 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
27635 or MESSAGE TEXT screens) may be used to scan the folders for those
27636 with Recent messages.  If you add more folders to
27637 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
27638 no effect.
27640 NOTE: Normally the software that actually delivers mail (the stuff that happens
27641 before Alpine is involved) is in a better position to do delivery filtering
27642 than is Alpine itself.
27643 If possible, you may want to look at programs such as
27644 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
27645 filtering programs.
27646 If you'd prefer to have Alpine do the filtering for you, you may set that
27648 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
27650 <UL>   
27651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27652 </UL><P>
27653 &lt;End of help on this topic&gt;
27654 </BODY>
27655 </HTML>
27656 ====== h_config_enable_incoming_checking ======
27657 <HTML>
27658 <HEAD>
27659 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
27660 </HEAD>
27661 <BODY>
27662 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
27664 This feature is only operational if you have enabled the optional
27665 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
27666 If you do have Incoming Message Folders and you also set this feature,
27667 then the number of Unseen messages in each folder will be displayed
27668 in the FOLDER LIST screen for the Incoming Message Folders.
27669 The number of Unseen messages in a folder will be displayed in parentheses
27670 to the right of the name of each folder.
27671 If there are no Unseen messages in a folder then only the name
27672 is displayed, not a set of parentheses with zero inside them.
27673 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
27674 the Incoming Message Folders to cause an immediate update.
27676 If a check for Unseen messages fails for a particular folder then Alpine
27677 will no longer attempt to check that folder for the duration of the
27678 session and this will be indicated by a question mark inside the
27679 parentheses.
27681 The features
27682 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
27683 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
27684 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
27685 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
27686 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
27687 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
27688 all affect how this feature behaves.
27690 <UL>   
27691 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27692 </UL><P>
27693 &lt;End of help on this topic&gt;
27694 </BODY>
27695 </HTML>
27696 ====== h_config_incoming_checking_total ======
27697 <HTML>
27698 <HEAD>
27699 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
27700 </HEAD>
27701 <BODY>
27702 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
27704 This option has no effect unless the feature
27705 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27706 is set, which in turn has no effect unless
27707 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27708 is set.
27710 When incoming folder checking is turned on the default is to display
27711 the number of unseen messages in each folder.
27712 More precisely, it is the number of undeleted unseen messages.
27713 Using this option you may also display the total number of messages
27714 in each folder.
27715 Instead of a single number representing the number of unseen messages
27716 you will get two numbers separated by a slash character.
27717 The first is the number of unseen messages and the second is the
27718 total number of messages.
27720 You may also use the recent message count instead of the unseen message
27721 count by turning on the feature
27722 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
27724 <UL>   
27725 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27726 </UL><P>
27727 &lt;End of help on this topic&gt;
27728 </BODY>
27729 </HTML>
27730 ====== h_config_incoming_checking_recent ======
27731 <HTML>
27732 <HEAD>
27733 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
27734 </HEAD>
27735 <BODY>
27736 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
27738 This option has no effect unless the feature
27739 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27740 is set, which in turn has no effect unless
27741 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27742 is set.
27744 When incoming folder checking is turned on the default is to display
27745 the number of unseen messages in each folder.
27746 More precisely, it is the number of undeleted unseen messages.
27747 Using this option you may display the number of recent messages instead
27748 of the number of unseen messages.
27749 A message is only counted as recent if this is the first session to
27750 see it, so the recent count might be less than the unseen count.
27751 The difference between the two would be accounted for by the unseen messages
27752 in the folder which were there previously but have not been looked at yet.
27754 If you simultaneously run more than one email client at a time
27755 (for example, you run more than one Alpine in parallel) then turning
27756 this feature on can cause some confusion.
27757 The confusion stems from the fact that each message is only considered to be
27758 recent in one session.
27759 That means that the counts of new messages may be different in the two
27760 Alpines running side by side, because each incoming message will only be
27761 counted as recent in one of the two sessions.
27763 You may also display the total number of messages
27764 in each folder by using the
27765 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
27766 option.
27768 <UL>   
27769 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27770 </UL><P>
27771 &lt;End of help on this topic&gt;
27772 </BODY>
27773 </HTML>
27774 ====== h_config_attach_in_reply ======
27775 <HTML>
27776 <HEAD>
27777 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
27778 </HEAD>
27779 <BODY>
27780 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
27782 This feature controls an aspect of Alpine's Reply command. If set, any MIME
27783 attachments that were part of the original message will automatically be
27784 included in the Reply.
27786 &lt;End of help on this topic&gt;
27787 </BODY>
27788 </HTML>
27789 ====== h_config_include_header =====
27790 <HTML>
27791 <HEAD>
27792 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
27793 </HEAD>
27794 <BODY>
27795 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
27797 This feature controls an aspect of Alpine's Reply command. If set, and the
27798 original message is being included in the reply, then headers from that
27799 message will also be part of the reply.
27801 &lt;End of help on this topic&gt;
27802 </HEAD>
27803 </HTML>
27804 ====== h_config_sig_at_bottom =====
27805 <HTML>
27806 <HEAD>        
27807 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
27808 </HEAD>
27809 <BODY>
27810 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
27812 This feature controls an aspect of Alpine's Reply command.  If this feature
27813 is set, and the original message is being included in the reply, then the
27814 contents of your signature file (if any) will be inserted after the included
27815 message.
27817 This feature does not affect the results of a Forward command.
27819 &lt;End of help on this topic&gt;
27820 </BODY>
27821 </HTML>
27822 ====== h_config_sigdashes =====
27823 <HTML>
27824 <HEAD>
27825 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
27826 </HEAD>
27827 <BODY>
27828 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
27830 This feature enables support for the common USENET news convention 
27831 of preceding a message signature with the special line consisting of 
27832 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
27835 When enabled and a
27836 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
27837 Alpine will insert the special line before including the file's text (unless
27838 the special line already exists somewhere in the file's text).
27841 In addition, when you Reply or Followup to a message containing one of
27842 these special lines and choose to include its text, Alpine will observe
27843 the convention of not including text beyond the special line in your
27844 reply.
27845 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27846 mode is enabled and turned on, then Alpine <EM>will</EM>
27847 include the text beyond the special line regardless of the setting of
27848 this feature.
27851 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
27852 for a related feature.
27855 <UL>   
27856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27857 </UL><P>
27858 &lt;End of help on this topic&gt;
27859 </BODY>
27860 </HTML>
27861 ====== h_config_new_thread_blank_subject =====
27862 <HTML>
27863 <HEAD>
27864 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
27865 </HEAD>
27866 <BODY>
27867 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
27869 When this feature is enabled (the default) Alpine will create a new thread
27870 every time that the subject line becomes empty at any time during composition.
27873 This behavior is particularly useful in case you are replying to a message.
27874 Replying to a message causes the message to be in the same thread than the
27875 original message that is being replied to. However, many authors want to create
27876 a new message (in a different thread) while replying to a message, and they do
27877 this by changing the full subject, by first deleting the original subject and
27878 typing the new subject of the current message.
27881 Enabling this feature causes that any time that the subject is deleted, the 
27882 message being composed will be considered the first message of a new thread.
27885 <UL>   
27886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27887 </UL><P>
27888 &lt;End of help on this topic&gt;
27889 </BODY>
27890 </HTML>
27891 ====== h_config_strip_sigdashes =====
27892 <HTML>
27893 <HEAD>
27894 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
27895 </HEAD>
27896 <BODY>
27897 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
27899 This feature doesn't do anything if the feature
27900 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
27901 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
27902 then turning on this feature enables support for the convention
27903 of not including text beyond the sigdashes line when Replying or Following
27904 up to a message and including the text of that message.
27905 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27906 mode is enabled and turned on, then Alpine <EM>will</EM>
27907 include the text beyond the special line regardless of the setting of
27908 this feature.
27910 In other words, this is a way to turn on the signature stripping behavior
27911 without also turning on the dashes-adding behavior.
27913 <UL>   
27914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27915 </UL><P>
27916 &lt;End of help on this topic&gt;
27917 </BODY>
27918 </HTML>
27919 ====== h_config_forward_as_attachment =====
27920 <HTML>
27921 <HEAD>
27922 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
27923 </HEAD>
27924 <BODY>
27925 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
27927 This feature affects the way forwarded message text is handled.  When set, rather than 
27928 include the text of the forwarded message below any additional text you provide in the
27929 composer, the forwarded message is attached in its entirety to the message you send.
27931 This is useful in that it keeps the text you provide in the composer distinct from the
27932 text of the forwarded message.  Similarly, it allows the recipient to 
27933 conveniently operate on the forwarded message.  For example, they might reply directly to
27934 the sender of the forwarded message, or process it as part of a spam report.
27935 <UL>   
27936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27937 </UL><P>
27938 &lt;End of help on this topic&gt;
27939 </BODY>
27940 </HTML>
27941 ====== h_config_preserve_field =====
27942 <HTML>
27943 <HEAD>
27944 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
27945 </HEAD>
27946 <BODY>
27947 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
27949 This feature affects Alpine's behavior when one replies to a message. 
27950 When you receive a message, some or all of the recipients of the message 
27951 have been added to the To: and Cc: fields. If you reply to such message, 
27952 and this feature is disabled, then the original sender of the message is 
27953 added to the To: field, and all other recipients are added to the Cc: 
27954 field, while your address is added to the From: field.
27957 However, if this feature is enabled, then Alpine will preserve the 
27958 original fields as sent in the original message, so the Cc: and To: 
27959 fields will be preserved. The sender's address will be added to the To: 
27960 field, while your address is added to the From: field.
27963 The behavior of this feature is that replies to all messages will behave 
27964 in the way described above. If you only intend this to happen on a per 
27965 message basis, then keep this feature disabled, and when replying to a 
27966 message you will see a new option in the menu for the &quot;Reply to all 
27967 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
27968 make Alpine toggle its question so you can preserve the To: and Cc: 
27969 fields for that message only.
27971 <UL>   
27972 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27973 </UL><P>
27974 &lt;End of help on this topic&gt;
27975 </BODY>
27976 </HTML>
27977 ====== h_config_sub_lists =====
27978 <HTML>
27979 <HEAD>
27980 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
27981 </HEAD>
27982 <BODY>
27983 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
27985 This feature affects the subcommands available when Saving, 
27986 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
27987 available. This command allows you to type in a substring of the folder
27988 you are looking for and when you type ^X it will display all folders
27989 that contain that substring in their names.
27990 This feature is set by default.
27993 &lt;End of help on this topic&gt;
27994 </BODY>
27995 </HTML>
27996 ====== h_config_scramble_message_id =====
27997 <HTML>
27998 <HEAD>
27999 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28000 </HEAD>
28001 <BODY>
28002 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28004 Normally the Message-ID header that Alpine generates when sending a message
28005 contains the name of the computer from which the message is being sent.
28006 Some believe that this hostname could be used by spammers or could
28007 be used by others for nefarious purposes.
28008 If this feature is set, that name will be transformed with a simple
28009 Rot13 transformation.
28010 The result will still have the correct syntax for a Message-ID but the
28011 part of the MessageID that is often a domain name will not be an actual
28012 domain name because the letters will be scrambled.
28014 It is possible (but unlikely?) that some spam detection
28015 software will use that as a reason to reject the mail as spam.
28016 It has also been reported that some spam detection software uses the
28017 fact that there are no dots after the &quot;@&quot; as a reason to reject
28018 messages.
28019 If your PC-Alpine Message-ID is using a name without a dot that is because
28020 that is what Windows thinks is your &quot;Full computer name&quot;.
28021 The method used to set this varies from one type of Windows to another but
28022 check under Settings -> Control Panel -> System and
28023 look for Network Identification or Computer Name or something similar.
28024 How to set it is beyond the scope of Alpine.
28027 &lt;End of help on this topic&gt;
28028 </BODY>
28029 </HTML>
28030 ====== h_downgrade_multipart_to_text =====
28031 <HTML>
28032 <HEAD>
28033 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28034 </HEAD>
28035 <BODY>
28036 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28039 This feature affects Alpine's behavior when sending mail.  Internet
28040 standards require Alpine to translate all non-ASCII characters in
28041 messages that it sends using MIME encoding.  This encoding can be
28042 ostensibly broken for recipients if any agent between Alpine and the
28043 recipient, such as an email list expander, appends text to the
28044 message, such as list information or advertising.  When sending such
28045 messages Alpine attempts to protect such encoding by placing extra
28046 MIME boundaries around the message text.
28048 These extra boundaries are invisible to recipients that 
28049 use MIME-aware email programs (the vast majority).  However, if
28050 you correspond with users of email programs that are not MIME-aware,
28051 or do not handle the extra boundaries gracefully, you can
28052 use this feature to prevent Alpine from including the extra
28053 MIME information.  Of course, it will increase the likelihood
28054 that non-ASCII text you send may appear corrupt to the recipient.
28056 &lt;End of help on this topic&gt;
28057 </BODY>
28058 </HTML>
28059 ====== h_config_show_sort =====
28060 <HTML>
28061 <HEAD>
28062 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28063 </HEAD>
28064 <BODY>
28065 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28067 If this feature is set and there is sufficient space on the screen,
28068 a short indication of the current sort order will be
28069 added in the titlebar (the top line on the screen), before the name
28070 of the folder.
28071 For example, with the default Arrival sort in effect,
28072 the display would have the characters
28074 <P><CENTER>[A]</CENTER><P>
28076 added between the title of the screen and the folder name.
28077 The letters are the same as the letters you may type to manually
28078 sort a folder with the SortIndex command ($).
28079 The letters in the table below are the ones that may show
28080 up in the titlebar line.
28082 <TABLE>   
28083 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28084 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28085 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28086 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28087 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28088 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28089 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28090 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28091 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28092 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28093 </TABLE>
28095 If the sort order is Reversed, the letter above will be preceded by the letter
28096 &quot;R&quot;, for example
28098 <P><CENTER>[RS]</CENTER><P>
28100 means that a Reverse Subject sort is in effect.
28101 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28102 left out, and just an &quot;R&quot; is shown.
28104 <P><CENTER>[R]</CENTER>
28107 &lt;End of help on this topic&gt;
28108 </BODY>
28109 </HTML>
28110 ====== h_config_disable_reset_disp =====
28111 <HTML>
28112 <HEAD>
28113 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28114 </HEAD>
28115 <BODY>
28116 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28118 UNIX Alpine only.
28120 This feature affects Alpine's behavior when using
28121 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28122 Normally, before the display filter is run, the terminal mode is reset
28123 to what it was before you started Alpine.
28124 This may be necessary if the filter requires the use of the terminal.
28125 For example, it may need to interact with you.
28126 If you set this feature, then the terminal mode will not be reset.
28127 One thing that turning on this feature should fix is the coloring of
28128 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28129 breaks because the terminal reset resets the color state of the terminal.
28132 &lt;End of help on this topic&gt;
28133 </BODY>
28134 </HTML>
28135 ====== h_config_disable_sender =====
28136 <HTML>
28137 <HEAD>
28138 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28139 </HEAD>
28140 <BODY>
28141 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28143 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28144 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28145 header fields.
28146 By default, Alpine will generate such a header in situations where the
28147 username or domain are not the same as
28148 the &quot;From:&quot; header on the message.
28149 With this feature set,
28150 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28151 This may be desirable on a system that is virtually hosting many domains,
28152 and the sysadmin has other methods available for tracking a message to
28153 its originator.
28155 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28158 &lt;End of help on this topic&gt;
28159 </BODY>
28160 </HTML>
28161 ====== h_config_use_sender_not_x =====
28162 <HTML>
28163 <HEAD>
28164 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28165 </HEAD>
28166 <BODY>
28167 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28169 Normally Alpine adds a header line
28170 labeled &quot;X-X-Sender&quot;, if the sender is
28171 different from the From: line.
28172 The standard specifies that this header
28173 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28174 Setting this feature causes
28175 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28177 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28180 &lt;End of help on this topic&gt;
28181 </BODY>
28182 </HTML>
28183 ====== h_config_use_fk =====
28184 <HTML>
28185 <HEAD>
28186 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28187 </HEAD>
28188 <BODY>
28189 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28191 This feature specifies that Alpine will respond to function keys instead of
28192 the normal single-letter commands. In this mode, the key menus at the
28193 bottom of each screen will show function key designations instead of the
28194 normal mnemonic key.
28197 &lt;End of help on this topic&gt;
28198 </BODY>
28199 </HTML>
28200 ====== h_config_cancel_confirm =====
28201 <HTML>
28202 <HEAD>
28203 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28204 </HEAD>
28205 <BODY>
28206 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28208 This feature affects what happens when you type ^C to cancel a composition.
28209 By default, if you attempt to cancel a composition by typing ^C, you will be
28210 asked to confirm the cancellation by typing a &quot;C&quot;
28211 for <EM>C</EM>onfirm.
28212 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28213 risky because the &quot;^C Y&quot; needed to cancel a message
28214 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28216 If this feature is set the confirmation asked for
28217 will be a &quot;<EM>Y</EM>es&quot;
28218 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28221 &lt;End of help on this topic&gt;
28222 </BODY>
28223 </HTML>
28224 ====== h_config_compose_maps_del =====
28225 <HTML>
28226 <HEAD>
28227 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28228 </HEAD>
28229 <BODY>
28230 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28232 This feature affects the behavior of the DELETE key.
28233 If set, Delete will be equivalent to ^D, and delete
28234 the current character.  Normally Alpine defines the Delete key
28235 to be equivalent to ^H, which deletes the <EM>previous</EM>
28236 character.
28239 &lt;End of help on this topic&gt;
28240 </BODY>
28241 </HTML>
28242 ====== h_config_compose_bg_post =====
28243 <HTML>
28244 <HEAD>
28245 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28246 </HEAD>
28247 <BODY>
28248 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28250 This feature affects the behavior of Alpine's mail sending.  If set, this
28251 feature enables a subcommand in the composer's "Send?" confirmation
28252 prompt.  The subcommand allows you to tell Alpine to handle the actual
28253 posting in the background.  While this feature usually allows posting
28254 to appear to happen very fast, it has no affect on the actual delivery
28255 time it takes a message to arrive at its destination.
28258 Please Note:
28259 <OL>
28260  <LI>This feature will have no effect if the feature
28261        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28262        is set.
28263  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28264        as well as several Unix ports, do not recognize this feature.
28265  <LI>Error handling is significantly different when this feature is
28266         enabled.  Any message posting failure results in the message
28267         being appended to your &quot;Interrupted&quot; mail folder.  When you
28268         type the <A HREF="h_common_compose">C</A>ompose command,
28269         Alpine will notice this folder and
28270         offer to extract any messages contained.  Upon continuing a 
28271         failed message, Alpine will display the nature of the failure 
28272         in the status message line.
28273  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28274         for message data to
28275         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28276         if you typically run close to any sort of disk-space limits or quotas.
28277 </OL>
28279 &lt;End of help on this topic&gt;
28280 </BODY>
28281 </HTML>
28282 ====== h_config_compose_dsn =====
28283 <HTML>
28284 <HEAD>
28285 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28286 </HEAD>
28287 <BODY>
28288 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28290 This feature affects the behavior of Alpine's mail sending.  If set, this
28291 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28292 prompt.  The subcommand allows you to tell Alpine to request the type of
28293 Delivery Status Notification (DSN) that you would like.  Most users will
28294 be happy with the default, and need not enable this feature.
28296 If the feature
28297 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28298 then this feature has no effect and the type of DSN is not selectable.
28301 Turning on this feature and then turning on the DSNOpts from the send
28302 prompt reveals four on-off toggles at the bottom of the screen.
28303 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28304 that no notification be returned to you, even if there is a delivery
28305 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28306 server that you are willing (or not) to receive delay notifications, which
28307 happen when there is an unusual delay at some mail server (in that mail
28308 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28309 Success requests that you be sent a DSN message when the message is
28310 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28311 automatically turn off Delay and Success notification, and will flip the
28312 toggles to show that.  Similarly, turning on Delay and/or Success will
28313 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28314 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28315 the full message be returned in any failed DSN.  RetHdrs requests that
28316 only the headers be returned in any failed DSN.  Notice that this command
28317 applies only to failed delivery status reports.  For delay or success
28318 reports, the full message is never returned, only the headers are returned.
28321 If you don't enable the DSN feature or if you don't turn it on for a
28322 particular message, the default is that you will be notified about failures,
28323 you might be notified about delays, and you won't be notified about
28324 successes.  You will usually receive the full message back when there is
28325 a failure.
28328 If you turn on the DSNOpts the default is to return as much information as
28329 possible to you.  That is, by default, the Success and Delay options are
28330 turned on and the full message will be returned on failure.
28333 The sending prompt will display the current DSN request (if any) in a
28334 shorthand form.  It will be:
28336 <P><CENTER>[Never]</CENTER>
28339 if you have requested NoErrRets.  Otherwise, it will look something like:
28341 <P><CENTER>[FDS-Hdrs]</CENTER>
28344 The &quot;F&quot; will always be there, indicating that you will be notified
28345 of failures.  (Alpine doesn't provide a way to request no failure notification
28346 and at the same time request either success or delay notification.  The only
28347 way to request no failure notifications is to request no notifications at
28348 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
28349 requested Delay and/or Success notification.  If one of those is missing,
28350 that means you are requesting no notification of the corresponding type.
28351 After the dash it will say either Hdrs or Full.  Hdrs means to return only
28352 the headers and Full means to return the full message (applies to
28353 failure notifications only).
28356 NOTE: This feature relies on your system's mail transport agent or
28357 configured
28358 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
28359 having the negotiation mechanism introduced in
28360 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
28361 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
28362 are using doesn't support DSN, a short warning will be shown to you on
28363 the message line at the bottom of the screen after you send your message,
28364 but your message will have been sent anyway.
28367 Note that DSNs don't provide a mechanism to request read receipts.  That
28368 is, if you request notification on success you are notified when the
28369 message is delivered to the mailbox, not when the message is read.
28372 ESMTP allows for graceful migration to upgraded mail transfer agents, but
28373 it is possible that this feature might cause problems for some servers. 
28376 &lt;End of help on this topic&gt;
28377 </BODY>
28378 </HTML>
28379 ====== h_config_auto_zoom =====
28380 <HTML>
28381 <HEAD>
28382 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
28383 </HEAD>
28384 <BODY>
28385 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
28387 This feature affects the behavior of the Select command.
28388 If set, the select command will automatically perform a zoom
28389 after the select is complete.
28390 This feature is set by default.
28392 Some related help topics are
28393 <UL>
28394 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28395 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28396 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28397 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28398 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28399 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28400 </UL>
28403 &lt;End of help on this topic&gt;
28404 </BODY>
28405 </HTML>
28406 ====== h_config_auto_unzoom =====
28407 <HTML>
28408 <HEAD>
28409 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
28410 </HEAD>
28411 <BODY>
28412 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
28414 This feature affects the behavior of the Apply command.  If set, and if
28415 you are currently looking at a Zoomed Index view of selected messages,
28416 the Apply command will do the operation you specify, but then will
28417 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
28418 the normal Index view after the Apply. 
28419 This feature is set by default.
28422 Some related help topics are
28423 <UL>
28424 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28425 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28426 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28427 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28428 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28429 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28430 </UL>
28432 &lt;End of help on this topic&gt;
28433 </BODY>
28434 </HTML>
28435 ====== h_config_auto_unselect =====
28436 <HTML>
28437 <HEAD>
28438 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
28439 </HEAD>
28440 <BODY>
28441 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
28443 This feature affects the behavior of the Apply command.  If set,
28444 the Apply command will do the operation you specify, but then will
28445 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
28446 the normal Index view after the Apply. 
28449 Some related help topics are
28450 <UL>
28451 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28452 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28453 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28454 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28455 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28456 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28457 </UL>
28459 &lt;End of help on this topic&gt;
28460 </BODY>
28461 </HTML>
28462 ====== h_config_fast_recent =====
28463 <HTML>
28464 <HEAD>
28465 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
28466 </HEAD>
28467 <BODY>
28468 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
28470 This feature controls the behavior of the TAB key when traversing folders
28471 in the optional 
28472 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
28473 collection or in optional <!--#echo var="VAR_news-collections"-->.
28476 When the TAB
28477 (<A HREF="h_common_nextnew">NextNew</A>)
28478 key is pressed, the default behavior is to
28479 explicitly examine the status of the folder for the number of recent
28480 messages (messages delivered since the last time it was viewed).
28481 Depending on the size and number of messages in the folder, this test
28482 can be time consuming.
28485 Enabling this feature will cause Alpine to only test for the existence of
28486 any recent messages rather than to obtain the count.  This is much faster
28487 in many cases.  The downside is that you're not given the number of recent
28488 messages when prompted to view the next folder.
28489 If the feature
28490 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
28491 is turned on, then the present feature will have no effect.
28494 <UL>   
28495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28496 </UL><P>
28497 &lt;End of help on this topic&gt;
28498 </BODY>
28499 </HTML>
28500 ====== h_config_arrow_nav =====
28501 <HTML>
28502 <HEAD>
28503 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
28504 </HEAD>
28505 <BODY>
28506 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
28508 This feature controls the behavior of the left and right arrow keys.
28509 If set, the left and right arrow keys will operate like the usual
28510 navigation keys &lt; and &gt;.
28511 This feature is set by default.
28514 If you set this feature, and do not like the changed behavior of the up/down 
28515 arrow 
28516 keys when navigating through the FOLDER LIST screen -- 
28517 <B>first</B> from column to column, if more than one folder is 
28518 displayed per row, 
28519 and <B>then</B> from row to row -- you may either also wish to set the feature 
28520 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
28521 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
28522 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
28523 folders in each column.
28525 <UL>   
28526 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28527 </UL><P>
28528 &lt;End of help on this topic&gt;
28529 </BODY>
28530 </HTML>
28531 ====== h_config_relaxed_arrow_nav =====
28532 <HTML>
28533 <HEAD>
28534 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
28535 </HEAD>
28536 <BODY>
28537 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
28539 This feature controls the behavior of the left, right, up and down
28540 arrow keys in the FOLDER LIST screen when the &quot;<A
28541 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
28542 set.
28543 This feature is set by default.
28547 When this feature is set, the left and right
28548 arrow keys in the FOLDER LIST screen
28549 move the highlight bar to the left or right, and the up and
28550 down arrows move it up or down.
28553 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
28554 feature is not set;
28555 the left and right arrow keys in the Folder List screen strictly
28556 track the commands bound to the '&lt;' and '&gt;' keys, and the up
28557 and down arrow keys move the highlight bar to the previous and next
28558 folder or directory name.
28561 <UL>   
28562 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28563 </UL><P>
28564 &lt;End of help on this topic&gt;
28565 </BODY>
28566 </HTML>
28567 ====== h_config_alt_compose_menu =====
28568 <HTML>
28569 <HEAD>
28570 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
28571 </HEAD>
28572 <BODY>
28573 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
28575 This feature controls the menu that is displayed when Compose is selected.
28576 If set, a list of options will be presented, with each option representing
28577 the type of composition that could be used. This feature is most useful for
28578 users who want to avoid being prompted with each option separately, or who
28579 want to avoid the checking of remote postponed or form letter folders.
28580 The possible types of composition are:
28583 New, for starting a new composition. Note that if New is selected and roles
28584 are set, roles are checked for matches and applied according to the setting
28585 of the matching role.
28588 Interrupted, for continuing an interrupted composition. This option is only
28589 offered if an interrupted message folder is detected.
28592 Postponed, for continuing postponed compositions. This option is offered
28593 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
28594 the postponed folder actually exists. This option is especially handy
28595 for avoiding having to check for the existence of a remote postponed folder.
28598 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
28599 is set in the config, and is not checked for existence for reasons similar
28600 to those explained by the postponed option.
28603 setRole, for selecting a role to apply to a composition.
28606 &lt;End of help on this topic&gt;
28607 </BODY>
28608 </HTML>
28609 ====== h_config_alt_role_menu =====
28610 <HTML>
28611 <HEAD>
28612 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
28613 </HEAD>
28614 <BODY>
28615 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
28617 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
28618 a role and compose a new message using that role.
28619 When this feature is set, the role command will first ask whether you want to
28620 Compose a new message, Forward the current message, Reply to the
28621 current message, or Bounce the current message.
28622 If you are not in the MESSAGE INDEX and are not viewing a message,
28623 then there is no current message and the question will be skipped.
28624 After you have chosen to Compose, Forward, Reply, or Bounce you will
28625 then choose the role to be used.
28627 When Bouncing the &quot;Set From&quot; address is used for the
28628 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
28629 provided that the option
28630 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
28631 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
28632 set.
28633 Other actions of the role are ignored when Bouncing.
28636 &lt;End of help on this topic&gt;
28637 </BODY>
28638 </HTML>
28639 ====== h_config_always_spell_check =====
28640 <HTML>
28641 <HEAD>
28642 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
28643 </HEAD>
28644 <BODY>
28645 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
28647 When this feature is set, every composed message will be spell-checked before
28648 being sent.
28650 &lt;End of help on this topic&gt;
28651 </BODY>
28652 </HTML>
28653 ====== h_config_quell_asterisks =====
28654 <HTML>
28655 <HEAD>
28656 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
28657 </HEAD>
28658 <BODY>
28659 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
28661 When you are running Alpine you will sometimes be asked for a password
28662 in a prompt on the third line from the bottom of the screen.
28663 Normally each password character you type will cause an asterisk to echo
28664 on the screen. That gives you some feedback to know that your typing is
28665 being recognized.
28666 There is a very slight security risk in doing it this way because someone
28667 watching over your shoulder might be able to see how many characters there
28668 are in your password.
28669 If you'd like to suppress the echoing of the asterisks set this feature.
28671 &lt;End of help on this topic&gt;
28672 </BODY>
28673 </HTML>
28674 ====== h_config_quell_flowed_text =====
28675 <HTML>
28676 <HEAD>
28677 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
28678 </HEAD>
28679 <BODY>
28680 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
28682 Alpine generates flowed text where possible.
28683 The method for generating flowed text is defined by
28684 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
28685 the benefit of doing so is
28686 to send message text that can properly be viewed both on normal width displays
28687 and on displays with smaller or larger than normal screen widths.
28688 With flowed text, a space at the end of a line tells the receiving mail
28689 client that the following line belongs to the same paragraph.
28690 Quoted text will also be affected, with only the innermost
28691 level of &quot;&gt;&quot; quoting being followed by a space.
28692 However, if you have changed the
28693 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
28694 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
28695 quoted text will not be flowed.
28696 For this reason, we recommend that you leave your
28697 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
28699 This feature turns off the generation of flowed text, as it might be
28700 desired to more tightly control how a message is displayed on the receiving end.
28702 If this feature is <EM>not</EM> set, you can control on a message by message
28703 basis whether or not flowed text is generated.
28704 You do this by typing ^V at the Send confirmation prompt that you get
28705 after typing ^X to send a message.
28706 ^V is a toggle that turns flowing off and back on if typed again.
28707 If for some reason flowing cannot be done on a particular message, then the
28708 ^V command will not be available.
28709 This would be the case, for example, if this feature was set, or if your
28710 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
28711 If the feature
28712 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28713 then the opportunity to control on a message by message basis
28714 whether or not flowed text is generated is lost.
28716 When this feature is not set and you have typed ^V to turn off flowing,
28717 the Send confirmation prompt will change to look like
28719 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
28721 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
28722 also turn off the sending of flowed text messages, but it differs in that
28723 it also trims all trailing white space from a message before sending it.
28725 If alternate editors are used extensively, be aware that a message will still
28726 be sent flowed if this feature is unset.  In most cases this will be fine,
28727 but if the editor has a &quot;flowed text&quot; mode, it would be best to
28728 use that.
28730 &lt;End of help on this topic&gt;
28731 </BODY>
28732 </HTML>
28733 ====== h_config_strip_ws_before_send =====
28734 <HTML>
28735 <HEAD>
28736 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
28737 </HEAD>
28738 <BODY>
28739 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
28741 By default, trailing whitespace is not stripped from
28742 a message before sending.  Trailing whitespace should have no effect on an
28743 email message, and in flowed text can aid in delimiting paragraphs.
28744 However, the old behavior of stripping trailing whitespace was in place
28745 to better deal with older clients that couldn't handle certain types of
28746 text encodings.  This feature restores the old behavior
28748 Trailing whitespace is of aid to flowed-text-formatted messages, which are
28749 generated by default but can be turned off via the
28750 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
28751 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
28752 of flowed text.
28754 &lt;End of help on this topic&gt;
28755 </BODY>
28756 </HTML>
28757 ====== h_config_del_from_dot =====
28758 <HTML>
28759 <HEAD>
28760 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
28761 </HEAD>
28762 <BODY>
28763 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
28765 This feature controls the behavior of the Ctrl-K command in the composer.
28766 If set, ^K will cut from the current cursor position to the end of the line,
28767 rather than cutting the entire line.
28770 &lt;End of help on this topic&gt;
28771 </BODY>
28772 </HTML>
28773 ====== h_config_print_index =====
28774 <HTML>
28775 <HEAD>
28776 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
28777 </HEAD>
28778 <BODY>
28779 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
28781 This feature controls the behavior of the Print command when in the
28782 MESSAGE INDEX screen.  If set, the print command will give you a prompt
28783 asking if you wish to print the message index, or the currently highlighted
28784 message. If not set, the message will be printed.
28787 &lt;End of help on this topic&gt;
28788 </BODY>
28789 </HTML>
28790 ====== h_config_allow_talk =====
28791 <HTML>
28792 <HEAD>
28793 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
28794 </HEAD>
28795 <BODY>
28796 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
28798 UNIX Alpine only.
28800 By default, permission for others to &quot;talk&quot; to your terminal is turned
28801 off when you are running Alpine.  When this feature is set, permission is
28802 instead turned on.  If enabled, you may see unexpected messages in the
28803 middle of your Alpine screen from someone attempting to contact you via the
28804 &quot;talk&quot; program.
28807 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
28808 talk daemon on your system will attempt to print a message on your screen 
28809 when someone else is trying to contact you.  If you wish to see these
28810 messages while you are running Alpine, you should enable this feature.
28813 If you do enable this feature and see a &quot;talk&quot; message, you must 
28814 suspend or quit Alpine before you can respond.
28817 &lt;End of help on this topic&gt;
28818 </BODY>
28819 </HTML>
28820 ====== h_config_send_filter_dflt =====
28821 <HTML>
28822 <HEAD>
28823 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
28824 </HEAD>
28825 <BODY>
28826 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
28827 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
28828 configured, setting this feature will cause
28829 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
28830 instead of unfiltered, the usual default.
28832 <UL>   
28833 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28834 </UL><P>
28835 &lt;End of help on this topic&gt;
28836 </BODY>
28837 </HTML>
28838 ====== h_config_custom_print =====
28839 <HTML>
28840 <HEAD>
28841 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
28842 </HEAD>
28843 <BODY>
28844 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
28846 When this feature is set, the print command will have an additional
28847 subcommand called "C CustomPrint".  If selected, you will have
28848 the opportunity to enter any system print command --instead of being 
28849 restricted to using those that have been previously configured in the 
28850 printer setup menu.
28853 &lt;End of help on this topic&gt;
28854 </BODY>
28855 </HTML>
28856 ====== h_config_enable_dot_files =====
28857 <HTML>
28858 <HEAD>
28859 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
28860 </HEAD>
28861 <BODY>
28862 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
28864 When this feature is set, files beginning with dot (".") will be
28865 visible in the file browser.  For example, you'll be able to select them
28866 when using the browser to add an attachment to a message.
28868 &lt;End of help on this topic&gt;
28869 </BODY>
28870 </HTML>
28871 ====== h_config_enable_dot_folders =====
28872 <HTML>
28873 <HEAD>        
28874 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
28875 </HEAD>
28876 <BODY>
28877 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
28879 When this feature is set, folders beginning with dot (".") may be added
28880 and viewed.
28882 &lt;End of help on this topic&gt;
28883 </BODY>
28884 </HTML>
28885 ====== h_config_ff_between_msgs =====
28886 <HTML>
28887 <HEAD>
28888 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
28889 </HEAD>
28890 <BODY>
28891 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
28893 Setting this feature causes a formfeed to be printed between messages when
28894 printing multiple messages (with Apply Print command).
28896 &lt;End of help on this topic&gt;
28897 </BODY>
28898 </HTML>
28899 ====== h_config_blank_keymenu =====
28900 <HTML>
28901 <HEAD>
28902 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
28903 </HEAD>
28904 <BODY>
28905 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
28907 If this feature is set the command key menu that normally appears on the
28908 bottom two lines of the screen will not usually be there.  Asking for
28909 help with ^G or ? will cause the key menu to appear instead of causing
28910 the help message to come up.  If you want to actually see the help text,
28911 another ^G or ? will show it to you.  After the key menu has popped
28912 up with the help key it will remain there for an O for Other command but
28913 disappear if any other command is typed.
28915 &lt;End of help on this topic&gt;
28916 </BODY>
28917 </HTML>
28918 ====== h_config_enable_mouse =====
28919 <HTML>
28920 <HEAD>
28921 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
28922 </HEAD>
28923 <BODY>
28924 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
28926 This feature controls whether or not an X terminal mouse can be used with
28927 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
28928 being used, the left mouse button on the mouse can be used to select text
28929 or commands.
28930 Clicking on a command at the bottom of the screen will behave as if you had
28931 typed that command.
28932 Clicking on an index line will move the current message highlight to
28933 that line.
28934 Double-clicking on an index line will view the message.
28935 Double-clicking on a link will view the link.
28937 This type of mouse support will also work in some terminal emulators which are
28938 not actually X terminals, but which have extra code to support the xterm
28939 style mouse.
28940 For those emulators you not only need to turn this feature on but you also
28941 have to set the $DISPLAY environment variable even though it isn't needed
28942 for your terminal.
28943 That will cause Alpine to think that it is an xterm and to properly interpret the
28944 escape sequences sent by the mouse.
28946 Note: if this feature is set, the behavior of X terminal cut-and-paste is
28947 also modified.  It is sometimes possible to hold the shift key down while clicking
28948 left or middle mouse buttons for the normal xterm cut/paste operations. 
28949 There is also an Alpine command to toggle this mode on or off.
28950 The command is Ctrl-&#92; (Control-backslash).
28952 &lt;End of help on this topic&gt;
28953 </BODY>
28954 </HTML>
28955 ====== h_config_enable_xterm_newmail =====
28956 <HTML>
28957 <HEAD>        
28958 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
28959 </HEAD>
28960 <BODY>
28961 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
28963 This feature controls whether or not Alpine will attempt to announce new
28964 mail arrival when it is running in an X terminal window and that window
28965 is iconified.  If set, and the $DISPLAY variable indicates that an X
28966 terminal is being used, Alpine will send appropriate escape sequences to
28967 the X terminal to modify the label on Alpine's icon to indicate that new
28968 mail has arrived. Alpine will also modify the Alpine window's title to
28969 indicate new mail.
28970 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
28972 &lt;End of help on this topic&gt;
28973 </BODY></HTML>
28974 ====== h_config_enable_newmail_short_text =====
28975 <HTML>
28976 <HEAD>        
28977 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
28978 </HEAD>
28979 <BODY>
28980 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
28982 This feature controls the text to be displayed in an icon in the event
28983 of a new message arrival.  Normally, the message will
28984 be the one that is displayed on the screen.  This feature shortens the
28985 message to a count of the number of new messages in brackets.  This may be
28986 more useful for those who use the window's title bar in the task bar as a
28987 new mail indicator.  This feature is only useful if the
28988 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
28989 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
28990 feature, this feature is only relevant when run in an xterm environment.
28992 &lt;End of help on this topic&gt;
28993 </BODY></HTML>
28994 ====== h_config_copy_to_to_from =====
28995 <HTML>
28996 <HEAD>
28997 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
28998 </HEAD>
28999 <BODY>
29000 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29002 This feature affects the From address used when Replying to a message.
29003 It is probably only useful if you have some
29004 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29005 defined.
29006 When enabled, it checks to see if any of the addresses in the To or Cc
29007 fields of the message you are replying to is one of your addresses.
29008 If it is, and there is only one of them, then that address is used as
29009 the From address in the message you are composing.
29010 In other words, you will be using a From address that is the same
29011 as the To address that was used to get the mail to you in the first place.
29014 If a role is being used and it has a From address defined, that From address will
29015 be used rather than the one derived from this feature.
29018 <UL>   
29019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29020 </UL><P>
29021 &lt;End of help on this topic&gt;
29022 </BODY>
29023 </HTML>
29024 ====== h_config_prefix_editing =====
29025 <HTML>
29026 <HEAD>
29027 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29028 </HEAD>
29029 <BODY>
29030 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29032 This feature affects the Reply command's &quot;Include original message
29033 in Reply?&quot; prompt.  When enabled, it causes the
29034 &quot;Edit Indent String&quot; sub-command to appear which allows 
29035 you to edit the string Alpine would otherwise use to denote included 
29036 text from the message being replied to.<P>
29038 Thus, you can change Alpine's default message quote character (usually
29039 an angle bracket) on a per message basis. So you could change your quoted message to
29040 look, for example, like this:<p>
29042 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29044 John: I just wanted to say hello and to congratulate you
29045 John: on a job well done!</pre><p>
29047 The configuration option
29048 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29049 may be used to change what appears as the default string to be edited.
29051 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29052 currently being replied to.
29054 If you change your <!--#echo var="VAR_reply-indent-string"-->
29055 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29056 quoted text will not be flowed
29057 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29058 when you reply.
29059 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29060 set to the default value.
29062 <UL>   
29063 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29064 </UL><P>
29065 &lt;End of help on this topic&gt;
29066 </BODY>
29067 </HTML>
29068 ====== h_config_enable_search_and_repl =====
29069 <HTML>
29070 <HEAD>
29071 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29072 </HEAD>
29073 <BODY>
29074 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29076 This feature modifies the behavior of Alpine's composer.  Setting this
29077 feature causes Alpine to offer the "^R Replace" subcommand, which
29078 allows you to search and replace text strings in a message you are composing, 
29079 inside the "^W Where is" command.  
29083 To search and replace text, first enter the text to be replaced at the 
29084 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29085 text, press ^R, which turns the prompt into 
29089 Search (to replace): 
29093 and then press Enter.  The cursor will highlight the first occurrence 
29094 of the text string you entered, and the prompt will show: 
29098 Replace "<your text string>" with : 
29102 where <your text string> is what you entered at the previous prompt;
29103 here, enter the replacement text.  To only replace the highlighted 
29104 occurrence, simply press Enter now; to replace all occurrences in the 
29105 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29106 each replacement.
29110 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29111 ^X toggles between "Replace All" and "Replace One."
29115 If you previously searched for text in a message, it will be offered for 
29116 re-use as part of the prompt, shown in [ ] brackets.
29119 &lt;End of help on this topic&gt;
29120 </BODY>
29121 </HTML>
29122 ====== h_config_enable_view_attach =====
29123 <HTML>
29124 <HEAD>
29125 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29126 </HEAD>
29127 <BODY>
29128 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29130 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29131 Setting this feature causes Alpine to present attachments in boldface.
29132 The first available attachment is displayed in inverse.  This is the
29133 "selected" attachment.  Pressing RETURN will cause Alpine to display
29134 the selected attachment.  Use the arrow keys to change which of the
29135 attachments displayed in boldface is the current selection.
29139 Speaking of arrow keys, the Up and Down Arrows will select the next
29140 and previous attachments if one is available on the screen for selection.
29141 Otherwise, they will simply adjust the viewed text one line up or down.
29145 Similarly, when selectable items are present in a message, the Ctrl-F key
29146 can be used to select the next item in the message independent of which
29147 portion of the viewed message is currently displayed. The Ctrl-B key can
29148 be used to select the previous item in the same way. 
29149 <P> 
29150 &lt;End of help on this topic&gt;
29151 </BODY>
29152 </HTML>
29153 ====== h_config_enable_y_print =====
29154 <HTML>
29155 <HEAD>
29156 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29157 </HEAD>
29158 <BODY>
29159 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29161 This feature modifies the behavior of Alpine's Print command.
29163 By default, Alpine's print command is available by pressing the "%" key.  
29164 (This command is a substantial change from Pine versions before 4.00 -- 
29165 where the print command was "Y" -- based on numerous complaints about 
29166 printing being invoked inadvertently, since Y also means "Yes.")  
29170 This feature is supplied to mitigate any disruption or anxiety users 
29171 might feel as a result of this change.  
29175 Enabling this feature will cause Alpine to recognize both the old
29176 command, "Y" for Prynt, as well the new "%" method for invoking
29177 printing.  Note, key menu labels are not changed as a result of
29178 enabling this feature.
29182 &lt;End of help on this topic&gt;
29183 </BODY>
29184 </HTML>
29185 ====== h_config_enable_lessthan_exit =====
29186 <HTML>
29187 <HEAD>
29188 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29189 </HEAD>
29190 <BODY>
29191 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29193 If this feature is set, then on screens where there is an Exit command
29194 but no < command, the < key will perform the same function as the Exit
29195 command.
29196 This feature is set by default.
29198 &lt;End of help on this topic&gt;
29199 </BODY>
29200 </HTML>
29201 ====== h_config_enable_view_url =====
29202 <HTML>
29203 <HEAD>
29204 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29205 </HEAD>
29206 <BODY>
29207 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29208 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29209 When this feature is set (the default) Alpine will select possible URLs from the
29210 displayed text and display them in boldface for selection.
29212 The first available URL is displayed in inverse.  This is the
29213 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29214 the selected URL via either built-in means as with mailto:, imap:,
29215 news:, and nntp:, or via an external application as defined
29216 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29217 variable.
29219 Use the arrow keys to change which of the URLs displayed in boldface
29220 is the current selection.
29222 Speaking of arrow keys, the Up and Down Arrows will select the next
29223 and previous URL if one is available on the screen for selection (unless 
29224 you have set the feature 
29225 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29226 Otherwise, they will simply adjust the viewed text one line up or down.
29228 Similarly, when selectable items are present in a message, the Ctrl-F
29229 key can be used to select the next item in the message independent
29230 of which portion of the viewed message is currently displayed. The
29231 Ctrl-B key can be used to select the previous item in the same way.
29233 <UL>   
29234 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29235 </UL><P>
29236 &lt;End of help on this topic&gt;
29237 </BODY>
29238 </HTML>
29239 ====== h_config_enable_view_web_host =====
29240 <HTML>
29241 <HEAD>
29242 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29243 </HEAD>
29244 <BODY>
29245 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29247 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29248 When this feature is set (the default) Alpine will select possible web hostnames
29249 from the displayed text and display them in boldface for selection.  
29250 This can be useful when you receive messages referencing World Wide Web 
29251 sites without the use of complete URLs; for example, specifying only 
29252 &quot;www.washington.edu/alpine/&quot; (which will <B>not</B> become a 
29253 selectable 
29254 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29255 rather than explicitly
29256 &quot;http://www.washington.edu/alpine/&quot;.  
29258 The first available hostname is displayed in inverse.  This is the
29259 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29260 the selected hostname via an external application as defined
29261 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29262 variable.
29264 Use the arrow keys (unless you have set the feature 
29265 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29266 to change which of the hostnames displayed in
29267 boldface is the current selection.
29269 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29270 key can be used to select the next web hostname in the message independent
29271 of which portion of the viewed message is currently displayed. The
29272 Ctrl-B key can be used to select the previous web hostnames in the same way.
29274 <UL>   
29275 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29276 </UL><P>
29277 &lt;End of help on this topic&gt;
29278 </BODY>
29279 </HTML>
29280 ====== h_config_enable_view_addresses =====
29281 <HTML>
29282 <HEAD>
29283 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
29284 </HEAD>
29285 <BODY>
29286 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
29288 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29289 Setting this feature causes Alpine to select possible email addresses
29290 from the displayed text and display them in boldface for selection.  
29293 The first available email address is displayed in inverse.  This is the
29294 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
29295 the message composition screen with the To: field filled in with the
29296 selected address.
29298 Use the arrow keys (unless you have set the feature 
29299 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29300 to change which of the hostnames displayed in
29301 boldface is the current selection.
29303 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29304 key can be used to select the next web hostname in the message independent
29305 of which portion of the viewed message is currently displayed. The
29306 Ctrl-B key can be used to select the previous web hostnames in the same way.
29308 <UL>   
29309 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29310 </UL><P>
29311 &lt;End of help on this topic&gt;
29312 </BODY>
29313 </HTML>
29314 ====== h_config_enable_view_arrows =====
29315 <HTML>
29316 <HEAD>
29317 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
29318 </HEAD>
29319 <BODY>
29320 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
29322 This feature modifies Up and Down arrow key behavior in Alpine's
29323 MESSAGE TEXT screen when selectable Attachments, URL's, or
29324 web-hostnames are presented. Alpine's usual behavior is to move to
29325 the next or previous selectable item if currently displayed or
29326 simply to adjust the screen view by one line.
29330 Setting this feature causes the UP and Down arrow key to behave as
29331 if no selectable items were present in the message.
29335 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
29336 item) functionality is unchanged.
29339 &lt;End of help on this topic&gt;
29340 </BODY>
29341 <HTML>
29342 ====== h_config_quell_charset_warning =====
29343 <HTML>
29344 <HEAD>
29345 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
29346 </HEAD>
29347 <BODY>
29348 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
29350 By default, if the message you are viewing contains characters that are
29351 not representable in your
29352 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
29353 then Alpine will
29354 add a warning to the start of the displayed text.
29355 If this option is set, then that editorial message will be suppressed.
29357 Setting this feature also suppresses the comment about the character set
29358 in header lines.
29359 For example, when viewing a message you might see
29361 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
29363 in the From header if your Character-Set is something other than ISO-8859-2.
29364 If you set this feature, the comment about the character set will
29365 no longer be there.
29367 &lt;End of help on this topic&gt;
29368 </BODY>
29369 </HTML>
29370 ====== h_config_quell_host_after_url =====
29371 <HTML>
29372 <HEAD>
29373 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
29374 </HEAD>
29375 <BODY>
29376 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
29378 By default, links in HTML text are displayed with the host the link
29379 references appended, within square brackets, to the link text.  Alpine
29380 does this to help indicate where a link will take you, particularly when
29381 the link text might suggest a different destination.
29384 Setting this feature will prevent the server name from being appended
29385 to the displayed text.
29388 &lt;End of help on this topic&gt;
29389 </BODY>
29390 </HTML>
29391 ====== h_config_prefer_plain_text =====
29392 <HTML>
29393 <HEAD>
29394 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
29395 </HEAD>
29396 <BODY>
29397 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
29399 A message being viewed may contain alternate versions of the same content.
29400 Those alternate versions are supposed to be ordered by the sending software such that the
29401 first alternative is the least preferred and the last alternative is the
29402 most preferred. Alpine will normally display the most-preferred version that
29403 it knows how to display. This is most often encountered where the two
29404 alternate versions are a plain text version and an HTML version, with the
29405 HTML version listed last as the most preferred.
29407 If this option is set, then any plain text version will be preferred to
29408 all other versions.
29410 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
29411 which will temporarily change the sense of this option.
29412 If this option is set you will first see the plain text version of a
29413 message.
29414 If you then type the &quot;A&quot; command, you will see the most preferred version,
29415 most likely HTML, instead.
29416 Typing the &quot;A&quot; command a second time will switch it back.
29417 Alternatively, if the present option is not set you will originally see
29418 the most preferred version of the message and typing &quot;A&quot; will switch to
29419 the plain text version.
29421 &lt;End of help on this topic&gt;
29422 </BODY>
29423 </HTML>
29424 ====== h_config_pass_control =====
29425 <HTML>
29426 <HEAD>
29427 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
29428 </HEAD>
29429 <BODY>
29430 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
29432 It is probably not useful to set this option.
29433 This is a legacy option left behind &quot;just in case&quot;.
29434 Multi-byte characters that have an octet that has the same
29435 value as a control character are permitted through whether or not
29436 this option is turned on.
29438 This feature controls how certain characters contained in messages are
29439 displayed.
29440 If set, all characters in a message will be sent to the
29441 screen. Normally, control characters are displayed as shown below to
29442 avoid a garbled screen and to 
29443 avoid inadvertently changing terminal setup parameters.
29444 Control characters are usually displayed as two character sequences like
29445 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
29446 for Control-C,
29447 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
29448 for ESCAPE,
29449 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
29450 for DELETE, and
29451 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
29452 for the character with value 133 (0x85).
29453 (The DEL character is displayed as ^?, regular control characters are displayed
29454 as the character ^ followed by the character obtained by adding the
29455 five low-order bits of the character to 0x40, and the C1
29456 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
29457 character obtained by adding the
29458 five low-order bits of the character to 0x40.)
29459 Sometimes, in cases where changing a single control character into a
29460 two-character sequence would confuse Alpine's display routines,
29461 a question mark is substituted for the control character.
29463 If you wish to filter out regular control characters but pass the
29464 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29465 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.
29467 &lt;End of help on this topic&gt;
29468 </BODY>
29469 </HTML>
29470 ====== h_config_pass_c1_control =====
29471 <HTML>
29472 <HEAD>
29473 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
29474 </HEAD>
29475 <BODY>
29476 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
29478 It is probably not useful to set this option.
29479 This is a legacy option left behind &quot;just in case&quot;.
29480 Multi-byte characters that have an octet that has the same
29481 value as a control character are permitted through whether or not
29482 this option is turned on.
29484 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29485 is set, then this feature has no effect.
29486 However, if you wish to filter out regular control characters but pass the
29487 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29488 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29489 unset and set this feature.
29491 &lt;End of help on this topic&gt;
29492 </BODY>
29493 </HTML>
29494 ====== h_config_fcc_on_bounce =====
29495 <HTML>
29496 <HEAD>
29497 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
29498 </HEAD>
29499 <BODY>
29500 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
29502 This feature controls an aspect of Alpine's behavior when bouncing a
29503 message. If set, normal FCC ("File Carbon Copy") processing will be
29504 done, just as if you had composed a message to the address you are
29505 bouncing to.  If not set, no FCC of the message will be saved. 
29507 &lt;End of help on this topic&gt;
29508 </BODY>
29509 </HTML>
29510 ====== h_config_show_cursor =====
29511 <HTML>
29512 <HEAD>
29513 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
29514 </HEAD>
29515 <BODY>
29516 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
29518 This feature controls an aspect of Alpine's displays.  If set, the system
29519 cursor will move to convenient locations in the displays.  For example,
29520 to the beginning of the status field of the highlighted index line, or
29521 to the highlighted word after a successful WhereIs command.  It is intended
29522 to draw your attention to an "interesting" spot on the screen.
29524 &lt;End of help on this topic&gt;
29525 </BODY>
29526 </HTML>
29527 ====== h_config_sort_fcc_alpha =====
29528 <HTML>
29529 <HEAD>
29530 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
29531 </HEAD>
29532 <BODY>
29533 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
29535 This feature controls an aspect of Alpine's FOLDER LIST screen.
29536 If set, the default Fcc folder will be sorted alphabetically with the other
29537 folders instead of appearing right after the INBOX.
29539 &lt;End of help on this topic&gt;
29540 </BODY>
29541 </HTML>
29542 ====== h_config_sort_save_alpha =====
29543 <HTML>
29544 <HEAD>
29545 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
29546 </HEAD>
29547 <BODY>
29548 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
29550 This feature controls an aspect of Alpine's FOLDER LIST screen.
29551 If set, the default save folder will be sorted alphabetically with the other
29552 folders instead of appearing right after the INBOX (and default FCC folder).
29554 &lt;End of help on this topic&gt;
29555 </BODY>
29556 </HTML>
29557 ====== h_config_single_list =====
29558 <HTML>
29559 <HEAD>
29560 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
29561 </HEAD>
29562 <BODY>
29563 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
29565 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29566 the folders will be listed one per line instead of several per line
29567 in the FOLDER LIST display.
29569 &lt;End of help on this topic&gt;
29570 </BODY>
29571 </HTML>
29572 ====== h_config_vertical_list =====
29573 <HTML>
29574 <HEAD>
29575 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
29576 </HEAD>
29577 <BODY>
29578 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
29580 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29581 the folders will be listed alphabetically down the columns rather
29582 than across the columns as is the default.
29584 &lt;End of help on this topic&gt;
29585 </BODY>
29586 </HTML>
29587 ====== h_config_verbose_post =====
29588 <HTML>
29589 <HEAD>
29590 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
29591 </HEAD>
29592 <BODY>
29593 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
29594 This feature controls an aspect of Alpine's message sending.  When enabled,
29595 Alpine will send a VERB (i.e., VERBose) command early in the posting process
29596 intended to cause the SMTP server to provide a more detailed account of
29597 the transaction.  This feature is typically only useful to system
29598 administrators and other support personel as an aid in troublshooting
29599 problems.
29601 Note, this feature relies on a specific capability of the system's mail
29602 transport agent or configured 
29603 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
29604 It is possible that this
29605 feature will cause problems for some tranport agents, and may result in
29606 sending failure.  In addition, as the verbose output comes from the mail
29607 transport agent, it is likely to vary from one system to another. 
29608 <P><UL>
29609 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29610 </UL><P>
29611 &lt;End of help on this topic&gt;
29612 </BODY>
29613 </HTML>
29614 ====== h_config_auto_reply_to =====
29615 <HTML>
29616 <HEAD>
29617 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
29618 </HEAD>
29619 <BODY>
29620 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
29622 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
29623 will not prompt when a message being replied to contains a "Reply-To:"
29624 header value, but will simply use its value (as opposed to using the
29625 "From:" field's value).
29629 Note: Using the "Reply-To:" address is usually the preferred behavior,
29630 however, some mailing list managers choose to place the list's address in
29631 the "Reply-To:" field of any message sent out to the list.  In such
29632 cases, this feature makes it all too easy for personal replies to be
29633 inadvertently sent to the entire mail list, so be careful! 
29635 &lt;End of help on this topic&gt;
29636 </BODY>
29637 </HTML>
29638 ====== h_config_del_skips_del =====
29639 <HTML>
29640 <HEAD>
29641 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
29642 </HEAD>
29643 <BODY>
29644 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
29646 This feature controls an aspect of Alpine's Delete command.  If set, this
29647 feature will cause the Delete command to advance past following messages that
29648 are marked deleted.  In other words, pressing "D" will both mark the
29649 current message deleted and advance to the next message that is not marked
29650 deleted.
29651 This feature is set by default.
29653 &lt;End of help on this topic&gt;
29654 </BODY></HTML>
29655 ====== h_config_expunge_manually =====
29656 <HTML>
29657 <HEAD>
29658 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
29659 </HEAD>
29660 <BODY>
29661 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
29663 Normally, when you close a folder that contains deleted messages you are
29664 asked if you want to expunge those messages from the folder permanently.
29665 If this feature is set, you won't be asked and the deleted messages will
29666 remain in the folder.
29667 If you choose to set this feature you will have to expunge the
29668 messages manually using the eXpunge command, which you can use while
29669 in the MESSAGE INDEX screen.
29670 If you do not expunge deleted messages the size of your
29671 folder will continue to increase until you are out of disk space.
29673 <UL>   
29674 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29675 </UL><P>
29676 &lt;End of help on this topic&gt;
29677 </BODY>
29678 </HTML>
29679 ====== h_config_auto_expunge =====
29680 <HTML>
29681 <HEAD>
29682 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
29683 </HEAD>
29684 <BODY>
29685 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
29687 This features controls an aspect of Alpine's eXpunge command.  If set, you
29688 will <B>not</B> be prompted to confirm your intent before the expunge takes 
29689 place.
29690 Actually, this is only true for the INBOX folder and for folders in the
29691 Incoming Folders collection. See the feature
29692 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
29694 <UL>   
29695 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29696 </UL><P>
29697 &lt;End of help on this topic&gt;
29698 </BODY>
29699 </HTML>
29700 ====== h_config_full_auto_expunge =====
29701 <HTML>
29702 <HEAD>
29703 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
29704 </HEAD>
29705 <BODY>
29706 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
29708 This features controls an aspect of Alpine's eXpunge command.  If set, you
29709 will <B>not</B> be prompted to confirm your intent before the expunge 
29710 takes place.  This feature sets this behavior for all folders, unlike the
29711 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
29712 feature that works only for incoming folders.
29714 <UL>   
29715 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29716 </UL><P>
29717 &lt;End of help on this topic&gt;
29718 </BODY>
29719 </HTML>
29720 ====== h_config_auto_read_msgs =====
29721 <HTML>
29722 <HEAD>
29723 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
29724 </HEAD>
29725 <BODY>
29726 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
29727 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
29728 and the 
29729 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
29730 option is also set, then Alpine will
29731 automatically transfer all read messages to the designated folder and mark
29732 them as deleted in the INBOX.  Messages in the INBOX marked with an 
29733 &quot;N&quot; (meaning New, or unseen) are not affected.
29735 <UL>   
29736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29737 </UL><P>
29738 &lt;End of help on this topic&gt;
29739 </BODY>
29740 </HTML>
29741 ====== h_config_auto_fcc_only =====
29742 <HTML>
29743 <HEAD>
29744 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
29745 </HEAD>
29746 <BODY>
29747 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
29748 This features controls an aspect of Alpine's composer.
29749 The only time this feature will be used is if you attempt to send mail
29750 that has no recipients but does have an Fcc.
29751 Normally, Alpine will ask if you really mean to copy the message only to
29752 the Fcc.
29753 That is, it asks if you really meant to have no recipients.
29754 If this feature is set, you
29755 will <B>not</B> be prompted to confirm your intent to make only a copy
29756 of a message with no recipients.
29758 This feature is closely related to
29759 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
29760 The difference between this feature and that feature is that this feature
29761 considers a Bcc to be a recipient while that feature will ask for confirmation
29762 even if there is a Bcc when there is no To, Cc, or Newsgroup.
29763 The default values also differ. This feature defaults to asking the question
29764 and you have to turn it off.
29765 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
29766 unless you turn it on.
29769 <UL>   
29770 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29771 </UL><P>
29772 &lt;End of help on this topic&gt;
29773 </BODY>
29774 </HTML>
29775 ====== h_config_mark_fcc_seen =====
29776 <HTML>
29777 <HEAD>
29778 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
29779 </HEAD>
29780 <BODY>
29781 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
29783 This features controls the way Fccs (File carbon copies) are
29784 made of the messages you send.
29787 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
29788 copy will be marked as Unseen.
29789 When you look at the folder it was saved in the message will appear to
29790 be a New message until you read it.
29791 When this feature is enabled, the message will be marked as having
29792 been Seen.
29795 <UL>   
29796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29797 </UL><P>
29798 &lt;End of help on this topic&gt;
29799 </BODY>
29800 </HTML>
29801 ====== h_config_no_fcc_attach =====
29802 <HTML>
29803 <HEAD>
29804 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
29805 </HEAD>
29806 <BODY>
29807 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
29809 This features controls the way Fcc's (File carbon copies) are
29810 made of the messages you send.
29813 Normally, Alpine saves an exact copy of your message as it was sent.
29814 When this feature is enabled, the &quot;body&quot; of the message
29815 you send (the text you type in the composer) is preserved in the 
29816 copy as before, however all attachments are replaced with text
29817 explaining what had been sent rather than the attachments themselves.
29820 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
29821 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
29822 allows you to interactively set whether or not attachments are saved
29823 to the Fcc'd copy.
29826 <UL>   
29827 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29828 </UL><P>
29829 &lt;End of help on this topic&gt;
29830 </BODY>
29831 </HTML>
29832 ====== h_config_read_in_newsrc_order =====
29833 <HTML>
29834 <HEAD>
29835 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
29836 </HEAD>
29837 <BODY>
29838 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
29840 This feature controls the order in which newsgroups will be presented.  If
29841 set, they will be presented in the same order as they occur in your 
29842 <!--chtml if pinemode="os_windows"-->
29843 &quot;NEWSRC&quot;
29844 <!--chtml else-->
29845 &quot;.newsrc&quot;
29846 <!--chtml endif-->
29847 file (the default location of which can be changed with the 
29848 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
29850 If not set, the newsgroups will be presented in alphabetical order.
29852 <UL>   
29853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29854 </UL><P>
29855 &lt;End of help on this topic&gt;
29856 </BODY>
29857 </HTML>
29858 ====== h_config_quell_tz_comment =====
29859 <HTML>
29860 <HEAD>
29861 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
29862 </HEAD>
29863 <BODY>
29864 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
29866 Normally, when Alpine generates a Date header for outgoing mail,
29867 it will try to include the symbolic timezone at the end of the
29868 header inside parentheses.
29869 The symbolic timezone is often three characters long, but on
29870 some operating systems, it may be longer.
29871 Apparently there are some SMTP servers in the world that will reject an
29872 incoming message if it has a Date header longer than about 80 characters.
29873 If this feature is set, the symbolic timezone normally generated by
29874 Alpine will not be included.
29875 You probably don't need to worry about this feature unless you run into
29876 the problem described above.
29879 &lt;End of help on this topic&gt;
29880 </BODY>
29881 </HTML>
29882 ====== h_config_post_wo_validation =====
29883 <HTML>
29884 <HEAD>
29885 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
29886 </HEAD>
29887 <BODY>
29888 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
29890 This feature controls whether the NNTP server is queried as newsgroups
29891 are entered for posting.  Validation over slow links (e.g. dialup using
29892 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
29894 &lt;End of help on this topic&gt;
29895 </BODY>
29896 </HTML>
29897 ====== h_config_send_wo_confirm =====
29898 <HTML>
29899 <HEAD>
29900 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
29901 </HEAD>
29902 <BODY>
29903 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
29905 By default, when you send or post a message you will be asked to confirm
29906 with a question that looks something like:
29909 <CENTER><SAMP>Send message?</SAMP></CENTER>
29912 If this feature is set, you
29913 will <B>not</B> be prompted to confirm your intent to send
29914 and your message will be sent.
29916 If this feature is set it disables some possibilities and renders some
29917 other features meaningless.
29918 You will not be able to use
29919 <A HREF="h_config_sending_filter">Sending Filters</A>,
29920 Verbose sending mode,
29921 <A HREF="h_config_compose_bg_post">Background Sending</A>,
29922 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
29923 or ^V to turn off the generation of flowed text for this message.
29924 These options are normally available as suboptions in the Send prompt, but
29925 with no Send prompt the options are gone.
29928 A somewhat related feature is
29929 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
29930 which may be used to eliminate the extra confirmation
29931 question when posting to a newsgroup.
29933 <UL>   
29934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29935 </UL><P>
29936 &lt;End of help on this topic&gt;
29937 </BODY>
29938 </HTML>
29939 ====== h_config_quell_filtering_done_message =====
29940 <HTML>
29941 <HEAD>
29942 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
29943 </HEAD>
29944 <BODY>
29945 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
29947 If you use Filter Rules that move messages or set status of messages
29948 you sometimes see a message from Alpine that looks like
29951 <CENTER><SAMP>filtering done</SAMP></CENTER>
29954 If this feature is set, this message will be suppressed.
29955 If the feature
29956 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
29957 is set then this message will be suppressed regardless.
29960 <UL>   
29961 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29962 </UL><P>
29963 &lt;End of help on this topic&gt;
29964 </BODY>
29965 </HTML>
29966 ====== h_config_quell_filtering_messages =====
29967 <HTML>
29968 <HEAD>
29969 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
29970 </HEAD>
29971 <BODY>
29972 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
29974 If you use Filter Rules that move messages or set status of messages
29975 you sometimes see messages from Alpine that look like
29978 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
29984 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
29990 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
29993 If this feature is set, these messages will be suppressed.
29994 The feature
29995 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
29996 is related.
29999 <UL>   
30000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30001 </UL><P>
30002 &lt;End of help on this topic&gt;
30003 </BODY>
30004 </HTML>
30005 ====== h_config_quell_post_prompt =====
30006 <HTML>
30007 <HEAD>
30008 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30009 </HEAD>
30010 <BODY>
30011 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30013 By default, when you post a message to a newsgroup you are asked to confirm
30014 that you want to post with the question
30017 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30020 If this feature is set, you
30021 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30022 and your message will be posted.
30025 <UL>   
30026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30027 </UL><P>
30028 &lt;End of help on this topic&gt;
30029 </BODY>
30030 </HTML>
30031 ====== h_config_check_mail_onquit =====
30032 <HTML>
30033 <HEAD>
30034 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30035 </HEAD>
30036 <BODY>
30037 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30039 If this feature is set, Alpine will check for new mail after you give the
30040 Quit command.
30041 If new mail has arrived since the previous check, you will be notified
30042 and given the choice of quitting or not quitting.
30044 <UL>   
30045 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30046 </UL><P>
30047 &lt;End of help on this topic&gt;
30048 </BODY>
30049 </HTML>
30050 ====== h_config_inbox_no_confirm =====
30051 <HTML>
30052 <HEAD>
30053 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30054 </HEAD>
30055 <BODY>
30056 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30058 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30059 command and there are no more folders or newsgroups to visit, you are asked
30060 if you want to return to the INBOX.
30061 If this feature is set you will not be asked.
30062 It will be assumed that you do want to return to the INBOX.
30064 <UL>   
30065 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30066 </UL><P>
30067 &lt;End of help on this topic&gt;
30068 </BODY>
30069 </HTML>
30070 ====== h_config_dates_to_local =====
30071 <HTML>
30072 <HEAD>
30073 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30074 </HEAD>
30075 <BODY>
30076 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30078 Normally, the message dates that you see in the
30079 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30080 For example, if a message was sent to you from a few timezones to the east
30081 it might appear that it was sent from the future;
30082 or if it was sent from somewhere to the west it might appear
30083 as if it is from yesterday even though it was sent only a few minutes ago.
30084 If this feature is set an attempt will be made to convert the dates
30085 to your local timezone to be displayed.
30087 Note that this does not affect the results of Select by Date or of
30088 anything else other than these displayed dates.
30089 When viewing the message you may look at the original unconverted value of the Date
30090 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30092 <UL>   
30093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30094 </UL><P>
30095 &lt;End of help on this topic&gt;
30096 </BODY>
30097 </HTML>
30098 ====== h_config_tab_no_prompt =====
30099 <HTML>
30100 <HEAD>
30101 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30102 </HEAD>
30103 <BODY>
30104 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30106 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30107 command and there is a problem checking a folder, you are asked
30108 whether you want to continue with the search in the following folder or not.
30109 This question gives you a chance to stop the NextNew processing.
30110 (The checking problem might be caused by the fact that the folder does not
30111 exist, or by an authentication problem, or by a server problem
30112 of some sort.)
30115 If this feature is set you will not be asked.
30116 It will be assumed that you do want to continue.
30118 <UL>   
30119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30120 </UL><P>
30121 &lt;End of help on this topic&gt;
30122 </BODY>
30123 </HTML>
30124 ====== h_config_input_history =====
30125 <HTML>
30126 <HEAD>
30127 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30128 </HEAD>
30129 <BODY>
30130 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30132 Many of the prompts that ask for input in the status line near the
30133 bottom of the screen will respond to Up Arrow and Down Arrow
30134 with the history of previous entries.
30135 For example, in the MESSAGE INDEX screen when you use the WhereIs
30136 command the text you entered will be remembered and can be recalled
30137 by using the Up Arrow key.
30138 Another example, when saving a message the folders saved to will
30139 be remembered and can be recalled using the arrow keys.
30141 In the Save prompt, some users prefer that the Up and Down arrow keys
30142 be used for the Previous Collection and Next Collection commands
30143 instead of for a history of previous saves.
30144 If this option is set the Up and Down arrow keys will become synonyms for the
30145 Previous Collection and Next Collection (^P and ^N) commands in the
30146 prompt for the name of a folder to Save to or in the prompt for the
30147 name of a folder to GoTo.
30148 When this feature is not set (the default), ^P and ^N will change the
30149 collection and the arrow keys will show the history.
30151 <UL>   
30152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30153 </UL><P>
30154 &lt;End of help on this topic&gt;
30155 </BODY>
30156 </HTML>
30157 ====== h_config_confirm_role =====
30158 <HTML>
30159 <HEAD>
30160 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30161 </HEAD>
30162 <BODY>
30163 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30165 If you have roles, when you Reply to or Forward a message, or Compose
30166 a new message, Alpine
30167 will search through your roles for one that matches.
30168 Normally, if no matches are found you will be placed into the composer
30169 with no opportunity to select a role.
30170 If this feature is set, then you will be asked to confirm that you don't
30171 want a role.
30172 This will give you the opportunity to select a role (with the ^T command).
30173 If you confirm no role with a Return, you will be placed in
30174 the composer with no role.
30175 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30176 These behave the same as if you pressed the Return.
30177 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30178 match what you might type if there was a role match.)
30180 If you are using the alternate form of the Compose command called
30181 &quot;Role&quot;, then all of your roles will be available to you,
30182 independent of the value of this feauture and of the values set for all of
30183 Reply Use, Forward Use, and Compose Use.
30185 <UL>   
30186 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30187 </UL><P>
30188 &lt;End of help on this topic&gt;
30189 </BODY>
30190 </HTML>
30191 ====== h_config_news_cross_deletes =====
30192 <HTML>
30193 <HEAD>
30194 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30195 </HEAD>
30196 <BODY>
30197 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30199 This feature controls what Alpine does when you delete a message in a
30200 newsgroup that appears in more than one newsgroup.  Such a message
30201 is sometimes termed a &quot;crossposting&quot; in that it was posted
30202 across several newsgroups.
30205 Alpine's default behavior when you delete such a message is to remove
30206 only the copy in the current newsgroup from view when you use the
30207 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30210 Enabling this feature causes Alpine to remove every occurrence of the
30211 message from all newsgroups it appears in and to which you are
30212 subscribed.
30215 NOTE: As currently implemented, enabling this feature may increase the
30216 time it takes the Expunge command and newsgroup closing to complete.
30219 <UL>   
30220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30221 </UL><P>
30222 &lt;End of help on this topic&gt;
30223 </BODY>
30224 </HTML>
30225 ====== h_config_news_catchup =====
30226 <HTML>
30227 <HEAD>
30228 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30229 </HEAD>
30230 <BODY>
30231 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30233 This feature controls what Alpine does as it closes a newsgroup.
30234 When set, Alpine will offer to delete all messages from the newsgroup
30235 as you are quitting Alpine or opening a new folder.
30238 This feature is useful if you typically read all the interesting messages
30239 in a newsgroup each time you open it.  This feature saves you from
30240 having to delete each message in a newsgroup as you read it or from
30241 selecting all the messages and doing an
30242 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30243 move on to the next folder or newsgroup.
30246 <UL>   
30247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30248 </UL><P>
30249 &lt;End of help on this topic&gt;
30250 </BODY>
30251 </HTML>
30252 ====== h_config_next_thrd_wo_confirm =====
30253 <HTML>
30254 <HEAD>
30255 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30256 </HEAD>
30257 <BODY>
30258 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30260 This feature controls an aspect of Alpine's Next and Prev commands in
30261 the case where you are using one of the
30262 &quot;separate-index-screen&quot; styles for the configuration option
30263 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
30264 and currently have the folder sorted by a Threaded or OrderedSubject sort.
30265 When you are Viewing a particular thread you have a
30266 MESSAGE INDEX of only the messages in that thread.
30267 If you press the Next command with the last message in the thread highlighted
30268 you will normally be asked if you want to &quot;View next thread?&quot;,
30269 assuming there is a next thread to view.
30270 If this feature is set it will be assumed that you always want to view the
30271 next thread and you won't be asked to confirm that.
30272 Similarly, if the first message of the thread is highlighted and you
30273 press the Prev command, this feature will prevent the question
30274 &quot;View previous thread&quot;.
30276 This feature only has an effect in the MESSAGE INDEX screen.
30277 If you then view a particular message from that screen and press the
30278 Next command, you will be sent to the next thread without being asked,
30279 independent of the setting of this feature.
30281 The feature
30282 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
30284 &lt;End of help on this topic&gt;
30285 </BODY>
30286 </HTML>
30287 ====== h_config_kw_braces =====
30288 <HTML>
30289 <HEAD>
30290 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
30291 </HEAD>
30292 <BODY>
30293 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
30295 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
30296 TEXT screens.
30297 If you have modified the
30298 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
30299 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
30300 are used to display keywords or their initials along with the Subject; then
30301 this option may be used to modify the resulting display slightly.
30302 By default, the keywords or initials displayed for these tokens will be
30303 surrounded with curly braces ({ and }) and a trailing space.
30304 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
30305 a message, the &quot;SUBJKEY&quot; token will normally look like
30307 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
30309 and the SUBJKEYINIT token would look like
30311 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
30313 The default character before the keywords is the left brace ({) and the
30314 default after the keywords is the right brace followed by a space (} ).
30316 This option allows you to change that.
30317 You should set it to two values separated by a space.
30318 The values may be quoted if they include space characters.
30319 So, for example, the default value could be specified explicitly by setting this
30320 option to
30322 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
30324 The first part wouldn't need to be quoted (but it doesn't hurt).
30325 The second part does need the quotes because it includes a space character.
30326 If you wanted to change the braces to brackets you could use
30328 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
30330 Inside the quotes you can use backslash quote to mean quote, so
30332 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
30334 would produce
30336 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
30338 It is also possible to color keywords in the index using the
30339 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
30341 It is not possible to change the fact that a space character is used to
30342 separate the keywords if more than one keyword is set for a message.
30343 It is also not possible to change the fact that there are no separators
30344 between the keyword initials if more than one keyword is set.
30346 &lt;End of help on this topic&gt;
30347 </BODY>
30348 </HTML>
30349 ====== h_config_opening_sep =====
30350 <HTML>
30351 <HEAD>
30352 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
30353 </HEAD>
30354 <BODY>
30355 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
30357 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
30358 With some setups the text of the subject is followed
30359 by the opening text of the message if there is any room available in the index line.
30360 If you have configured your
30361 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
30362 to include one of the Subject tokens that causes this behavior
30363 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
30364 to modify what is displayed slightly.
30365 By default, the Subject is separated from the opening text of the message by
30366 the three characters space dash space;
30368 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
30370 Use this option to set it to something different.
30371 The value must be quoted if it includes any space characters.
30372 For example, the default value could be specified explicitly by setting this
30373 option to
30375 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
30377 &lt;End of help on this topic&gt;
30378 </BODY>
30379 </HTML>
30380 ====== h_config_select_wo_confirm =====
30381 <HTML>
30382 <HEAD>
30383 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
30384 </HEAD>
30385 <BODY>
30386 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
30388 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
30389 These commands all take text input to specify the name of the folder or
30390 file to be used, but allow you to press ^T for a list of possible names.
30391 If set, the selected name will be used immediately, without further
30392 opportunity to confirm or edit the name.
30394 Some related help topics are
30395 <UL>
30396 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30397 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30398 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30399 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30400 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30401 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
30402 </UL>
30404 &lt;End of help on this topic&gt;
30405 </BODY>
30406 </HTML>
30407 ====== h_config_save_part_wo_confirm =====
30408 <HTML>
30409 <HEAD>
30410 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
30411 </HEAD>
30412 <BODY>
30413 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
30415 This feature controls an aspect of Alpine's Save command.
30416 By default, when you Save a message that has some deleted parts, you will
30417 be asked to confirm that you want to Save with a prompt that looks like:
30419 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
30421 If this feature is set, you will not be asked.
30423 &lt;End of help on this topic&gt;
30424 </BODY>
30425 </HTML>
30426 ====== h_config_use_resentto =====
30427 <HTML>
30428 <HEAD>
30429 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
30430 </HEAD>
30431 <BODY>
30432 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
30434 This feature is turned off by default because turning it on causes problems
30435 with some deficient IMAP servers.
30436 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
30437 <A HREF="h_rule_patterns">Pattern</A>
30438 contains a To header pattern and this feature is turned on,
30439 then a check is made in the message to see
30440 if a Resent-To header is present, and that is used instead of the To header.
30441 If this feature is not turned on, then the regular To header will always
30442 be used.
30445 &lt;End of help on this topic&gt;
30446 </BODY>
30447 </HTML>
30448 ====== h_config_use_reg_start_for_stayopen =====
30449 <HTML>
30450 <HEAD>
30451 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
30452 </HEAD>
30453 <BODY>
30454 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
30456 This feature affects which message is selected as the current message
30457 when you enter a
30458 <A HREF="h_config_permlocked">Stay Open</A> folder.
30460 Normally, the starting position for an incoming folder (which most Stay Open
30461 folders will likely be) is controlled by the
30462 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
30463 However, if a folder is a Stay Open folder, when you re-enter the folder
30464 after the first time the current message will be the same as it was when
30465 you left the folder.
30466 An exception is made if you use the TAB command to get to the folder.
30467 In that case, the message number will be incremented by one from what it
30468 was when you left the folder.
30470 The above special behavior is thought to be useful.
30471 However, it is special and different from what you might at first expect.
30472 If this feature is set, then Stay Open folders will not be treated specially
30473 as far as the startup rule is concerned.
30476 &lt;End of help on this topic&gt;
30477 </BODY>
30478 </HTML>
30479 ====== h_config_use_current_dir =====
30480 <HTML>
30481 <HEAD>
30482 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
30483 </HEAD>
30484 <BODY>
30485 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
30487 This feature controls an aspect of several commands. 
30488 If set, your &quot;current working directory&quot; 
30489 <!--chtml if pinemode="running"-->
30490 (which, at least for your current Alpine &quot;session,&quot; 
30491 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
30492 <!--chtml endif-->
30493 will be used instead of your home directory 
30494 <!--chtml if pinemode="running"-->
30495 (which, in the present configuration of your system, is
30496  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
30497 <!--chtml endif-->
30498 for all of the following operations:<UL>
30499     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
30500     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
30501     <LI> <!--chtml if pinemode="function_key"-->F4
30502          <!--chtml else-->Ctrl-R
30503          <!--chtml endif--> file inclusion in the COMPOSER
30504     <LI> <!--chtml if pinemode="function_key"-->F5
30505          <!--chtml else-->Ctrl-J
30506          <!--chtml endif--> file attachment in the COMPOSER
30507 </UL>
30508 <!--chtml if pinemode="os_windows"-->
30510 If you are starting PC-Alpine from a desktop icon or the Start menu, 
30511 you can set the &quot;current drive&quot; 
30512 by specifying it in the &quot;Start in:&quot; 
30513 box found in the Shortcut tab of the Properties.  
30514 <!--chtml endif-->
30516 <UL>   
30517 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30518 </UL>
30521 &lt;End of help on this topic&gt;
30522 </BODY>
30523 </HTML>
30524 ====== h_config_save_wont_delete =====
30525 <HTML>
30526 <HEAD>
30527 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
30528 </HEAD>
30529 <BODY>
30530 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
30532 This feature controls one aspect of the Save command.  If set, Save will
30533 not mark the message &quot;deleted&quot; (its default behavior) after
30534 it has been copied to the designated folder.
30537 &lt;End of help on this topic&gt;
30538 </BODY>
30539 </HTML>
30540 ====== h_config_use_boring_spinner =====
30541 <HTML>
30542 <HEAD>
30543 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
30544 </HEAD>
30545 <BODY>
30546 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
30548 When Alpine is delayed for some reason it usually shows that
30549 something is happening with a small animated display in the status
30550 message line near the bottom of the screen.
30551 Setting this feature will cause that animation to be the same
30552 each time instead of having Alpine choose a random animation.
30553 You may turn the animation off altogether by setting the
30554 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
30555 option to zero.
30558 &lt;End of help on this topic&gt;
30559 </BODY>
30560 </HTML>
30561 ====== h_config_unsel_wont_advance =====
30562 <HTML>
30563 <HEAD>
30564 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
30565 </HEAD>
30566 <BODY>
30567 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
30569 This feature controls one aspect of the Unselect Current message command.
30570 Normally, when the Unselect current message command (:) is typed when the
30571 current message is selected, the message will be unselected and the next
30572 message will become the current message.
30573 If this feature is set, the cursor will not advance to the next message.
30574 Instead, the current message will remain the current message after
30575 unselecting.
30578 &lt;End of help on this topic&gt;
30579 </BODY>
30580 </HTML>
30581 ====== h_config_prune_uses_iso =====
30582 <HTML>
30583 <HEAD>
30584 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
30585 </HEAD>
30586 <BODY>
30587 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
30589 By default, Alpine asks monthly whether or not you would like to rename
30590 some folders to a new name containing the date.
30591 It also asks whether or not you would like to delete some old folders.
30592 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
30593 explanation.
30596 By default, the name used when renaming a folder looks like
30598 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
30600 For example, the first time you run Alpine in May of 2004,
30601 the folder &quot;sent-mail&quot; might be renamed to
30603 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
30605 If this feature is set, the name used will be of the form
30607 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
30609 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
30610 month (01, 02, ..., 12).
30611 For the April, 2004 example above, it would instead be
30613 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
30615 because April is the 4th month of the year.
30616 A reason you might want to set this feature is so that the folders
30617 will sort in chronological order.
30620 &lt;End of help on this topic&gt;
30621 </BODY>
30622 </HTML>
30623 ====== h_config_save_advances =====
30624 <HTML>
30625 <HEAD>
30626 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
30627 </HEAD>
30628 <BODY>
30629 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
30631 This feature controls one aspect of the Save command.  If set, Save will
30632 (in addition to copying the current message to the designated folder) also
30633 advance to the next message.
30636 &lt;End of help on this topic&gt;
30637 </BODY>
30638 </HTML>
30639 ====== h_config_force_arrow =====
30640 <HTML>
30641 <HEAD>
30642 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
30643 </HEAD>
30644 <BODY>
30645 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
30647 This feature affects Alpine's MESSAGE INDEX display routine.
30648 If set, the normal inverse-video cursor will be
30649 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
30650 second column of the index display.
30652 This is the same index cursor you get if you turn on
30653 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
30654 line coloring will still be present if this feature is turned on and
30655 <!--#echo var="FEAT_assume-slow-link"--> is off.
30657 An alternative version of the Arrow cursor is available by including the
30658 <A HREF="h_config_index_arrow_color">ARROW</A>
30659 token in the
30660 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
30662 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
30663 but that is not implemented.
30666 &lt;End of help on this topic&gt;
30667 </BODY>
30668 </HTML>
30669 ====== h_config_force_low_speed =====
30670 <HTML>
30671 <HEAD>
30672 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
30673 </HEAD>
30674 <BODY>
30675 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
30677 UNIX Alpine only.
30679 This feature affects Alpine's display routines.  If set, the normal
30680 inverse-video cursor (used to highlight the current item in a list) will be
30681 replaced by an &quot;arrow&quot; cursor and other
30682 screen update optimizations for
30683 low-speed links (e.g. 2400 bps dialup connections) will be activated.
30684 One of the optimizations is that colored index lines (set up with Indexcolor
30685 Rules) will not be colored.
30686 If you are just turning this feature on because you like using
30687 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
30688 coloring by turning this feature off and the
30689 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
30692 &lt;End of help on this topic&gt;
30693 </BODY>
30694 </HTML>
30695 ====== h_config_show_delay_cue =====
30696 <HTML>
30697 <HEAD>
30698 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
30699 </HEAD>
30700 <BODY>
30701 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
30703 If set, this feature will cause an asterisk to appear in the upper
30704 left-hand corner of the screen whenever Alpine checks for new mail.
30705 Two asterisks whenever Alpine saves (checkpoints) the state of the current
30706 mailbox to disk.
30708 <!--chtml if pinemode="os_windows"-->
30710 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
30711 it is trying to open a network connection (e.g, to open your INBOX
30712 on an IMAP
30713 server) or read from the network connection.  A greater-than symbol,
30714 will be displayed when PC-Alpine is trying to write to the network
30715 connection (e.g, sending a command to your IMAP server).
30716 <!--chtml endif-->
30719 &lt;End of help on this topic&gt;
30720 </BODY>
30721 </HTML>
30722 ====== h_config_color_style =====
30723 <HTML>
30724 <HEAD>
30725 <TITLE>OPTION: Color Style</TITLE>
30726 </HEAD>
30727 <BODY>
30728 <H1>OPTION: Color Style</H1>
30730 UNIX Alpine only.
30732 If the terminal or terminal emulator you are using is capable of displaying
30733 colors, this option controls whether or not color will be used in Alpine.
30734 If you turn color on and things are set up correctly,
30735 you should see color appear on the screen immmediately.
30736 Modern terminal emulators are usually capable of displaying colors.
30738 The available options include:
30741 <DL>
30742 <DT>no-color</DT>
30743 <DD>Don't use color.
30744 </DD>
30746 <DT>use-termdef</DT>
30747 <DD>In order to decide if your terminal is capable of color, Alpine looks in
30748 the terminal capabilities database, TERMINFO or TERMCAP, depending on
30749 how Alpine was compiled.
30750 This is a good option to choose if you switch between a color and a non-color
30751 terminal with the same Alpine configuration.
30752 Alpine will know to use color on the color terminal because it is described
30753 in the termcap entry, and Alpine will know to use black and white on the
30754 non-color terminal.
30755 The Alpine Technical Notes
30756 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
30757 have more information on configuring a TERMCAP or TERMINFO
30758 entry for color Alpine.
30759 This is usually something a system administrator does.
30760 </DD>
30762 <DT>force-ansi-8color</DT>
30763 <DD>This is probably the setting that most people should use.
30764 Because setting up a termcap entry is confusing and because the
30765 terminal capabilities database is often not correctly configured for color,
30766 this choice and the next may be easier for you to use.
30767 If your terminal emulator responds to ANSI color escape sequences, which
30768 many do, this option will cause Alpine to believe your terminal will respond
30769 to the escape sequences that produce eight different foreground and background
30770 colors.
30771 The escape sequences used to set the foreground colors are
30773   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30775 where the color_number is an ASCII digit between 0 and 7.
30776 The numbers 0 through 7 should correspond to the colors black, red, green,
30777 yellow, blue, magenta, cyan, and white.
30778 Some terminal emulators use a pre-ANSI scheme that swaps
30779 the colors blue and red and the colors yellow and cyan.
30780 This will cause the default colors to be different, but other than that
30781 things should work fine.
30782 There is also a 9th color available, the last one shown, which is the default
30783 color from the terminal emulator.
30784 When used as a background color some people refer to this color as
30785 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
30786 shown in the color swatch of the SETUP COLOR screen.
30787 The foreground transparent color is shown as
30788 the color of the &quot;TRAN&quot; text.
30789 (The transparent color will not work correctly in a PC-Alpine configuration.)
30790 The escape sequences used to set the background colors are the same
30791 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
30792 The escape sequences for foreground and background default colors (transparent)
30793 are 39m and 49m.
30795 Note: With the Tera Term terminal emulator this setting works well.
30796 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
30797 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
30798 menu, in the &quot;Window&quot; submenu.
30799 </DD>
30801 <DT>force-ansi-16color</DT>
30802 <DD>Many terminal emulators know about the same eight colors above
30803 plus eight more.
30804 This option attempts to use all 16 colors.
30805 The same escape sequences as for the eight-color terminal are used
30806 for the first eight colors.
30807 The escape sequences used to set foreground colors 8-15 are the same as
30808 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
30809 The background color sequences for colors 8-15 are the same as for 0-7
30810 except the &quot;4&quot; is replaced with &quot;10&quot;.
30811 You can tell if the 16 colors are working by turning on this option
30812 and then going into one of the color configuration screens, for example,
30813 the configuration screen for Normal Color.
30814 If you see 16 different colors to select from (plus a 17th for
30815 the transparent color), it's working.
30816 </DD>
30818 <DT>force-xterm-256color</DT>
30819 <DD>Some versions of xterm (and some other terminal emulators)
30820 have support for 256 colors.
30821 The escape sequences used to set the foreground colors are
30823   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30825 where the color_number is an ASCII digit between 0 and 255.
30826 Background colors are the same with the 38 replaced with a 48.
30827 The numbers 0 through 15 are probably similar to the 16 color version
30828 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
30829 The terminal default (transparent) color is the 257th color at the bottom.
30830 Some terminal emulators will misinterpret these escape sequences causing
30831 the terminal to blink or overstrike characters or to do something else
30832 undesirable.
30834 The PuTTY terminal emulator has an option called &quot;Allow terminal to
30835 use xterm 256-colour mode&quot; which allows PuTTY to work well with
30836 this 256-color setting.
30838 </DD>
30839 </DL>
30842 The normal default is &quot;no-color&quot;.
30845 Once you've turned on color you may set the
30846 colors of many objects on the screen individually.
30847 For example, you may add colors to the status letters on the MESSAGE
30848 INDEX page.
30849 Most categories of color that Alpine supports are configurable here.
30850 For example, &quot;Normal Color&quot;
30851 is the color used to display most of the text in Alpine, and
30852 &quot;Reverse Color&quot; is used to display highlighted text, such as the
30853 current message in the MESSAGE INDEX.
30855 Lines in the MESSAGE INDEX may also be colored.
30856 Use Setup Rules to get to the Indexcolor configuration screen.
30859 <UL>   
30860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30861 </UL><P>
30862 &lt;End of help on this topic&gt;
30863 </BODY>
30864 </HTML>
30865 ====== h_config_disable_index_locale_dates =====
30866 <HTML>
30867 <HEAD>
30868 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
30869 </HEAD>
30870 <BODY>
30871 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
30873 This feature affects the display of dates in the MESSAGE INDEX.
30874 Normally an attempt is made to localize the dates
30875 used in the MESSAGE INDEX display to your locale.
30876 This is controlled with the
30877 LC_TIME locale setting on a UNIX system.
30878 On Windows the Regional Options control panel may be used to set the date format.
30879 At the programming level, Alpine is using the strftime routine
30880 to print the parts of a date.
30882 If this feature is set, dates are displayed in English and
30883 with the conventions of the United States.
30886 <UL>   
30887 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30888 </UL><P>
30889 &lt;End of help on this topic&gt;
30890 </BODY>
30891 </HTML>
30892 ====== h_config_auto_open_unread =====
30893 <HTML>
30894 <HEAD>
30895 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
30896 </HEAD>
30897 <BODY>
30898 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
30900 This feature controls the behavior of the TAB key when traversing folders
30901 in the optional 
30902 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
30903 collection or in optional <!--#echo var="VAR_news-collections"-->.
30905 When the TAB
30906 (<A HREF="h_common_nextnew">NextNew</A>)
30907 key is pressed, and there
30908 are no more unseen messages in the current (incoming message or news)
30909 folder, Alpine will search the list of folders in the current collection for
30910 one containing New or Recent (new since the last time the folder was
30911 opened) messages.
30912 This behavior may be modified slightly with the
30913 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
30914 feature that causes Alpine to look for Unseen messages instead of Recent
30915 messages.
30916 Normally, when such a folder is found, Alpine will ask
30917 whether you wish to open the folder.  If this feature is set, Alpine will
30918 automatically open the folder without prompting.
30920 This feature also affects some other similar situations.
30921 If you have a
30922 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
30923 that is equal to one of the &quot;separate-&quot; values, and you are
30924 viewing a thread; then when you type the NextNew command and are at the
30925 end of the current thread you will automatically go to the next thread
30926 if this feature is set.
30927 By default, you would be asked if you want to view the next thread.
30928 You will also be asked at times whether or not you want to view the next
30929 thread after you delete the last message in the thread.
30930 Setting this feature will also cause that question to be skipped.
30933 <UL>   
30934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30935 </UL><P>
30936 &lt;End of help on this topic&gt;
30937 </BODY>
30938 </HTML>
30939 ====== h_config_auto_include_reply =====
30940 <HTML>
30941 <HEAD>
30942 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
30943 </HEAD>
30944 <BODY>
30945 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
30947 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
30948 will ask whether you wish to include the original message in your reply.
30949 If this feature is set and the feature
30950 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
30951 is <EM>not</EM> set, then the original message will be included in the reply
30952 automatically, without prompting.
30954 &lt;End of help on this topic&gt;
30955 </BODY>
30956 </HTML>
30957 ====== h_config_select_in_bold =====
30958 <HTML>
30959 <HEAD>
30960 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
30961 </HEAD>
30962 <BODY>
30963 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
30965 This feature controls an aspect of Alpine's 
30966 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
30967 commands; in
30968 particular, the Select and WhereIs commands. Select and WhereIs (with the
30969 ^X subcommand) will search the current folder for messages meeting a
30970 specified criteria, and &quot;tag&quot; the resulting messages with an 
30971 &quot;X&quot; in the
30972 first column of the applicable lines in the MESSAGE INDEX.  If this feature
30973 is set, instead of using the &quot;X&quot; to denote a selected message, 
30974 Alpine will
30975 attempt to display those index lines in boldface. Whether this is
30976 preferable to the &quot;X&quot; will depend on personal taste and the type of
30977 terminal being used.
30979 <UL>   
30980 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30981 </UL><P>
30982 &lt;End of help on this topic&gt;
30983 </BODY>
30984 </HTML>
30985 ====== h_config_alt_auth =====
30986 <HTML>
30987 <HEAD>
30988 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
30989 </HEAD>
30990 <BODY>
30991 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
30993 This feature affects how Alpine connects to IMAP servers.
30994 It's utility has largely been overtaken by events,
30995 but it may still be useful in some circumstances.
30996 If you only connect to modern IMAP servers that support
30997 &quot;TLS&quot; you can ignore this feature.
31000 Details:
31003 By default, Alpine will attempt to connect to an IMAP server on the
31004 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31005 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31006 then a secure (encrypted) session will be negotiated.
31009 With this feature enabled, before connecting on the normal IMAP port, Alpine
31010 will first attempt to connect to an alternate IMAP service port (993) used
31011 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31012 (SSL) method.
31013 If the SSL attempt fails, Alpine will then try the default
31014 behavior described in the previous paragraph.
31017 TLS negotiation on the normal port is preferred, and supersedes the use of
31018 SSL on port 993, but older servers may not provide TLS support.
31019 This feature may be convenient when accessing IMAP servers that do not support
31020 TLS, but do support SSL connections on port 993.
31021 However, it is important to understand that with this feature enabled,
31022 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31023 but it will proceed to make an insecure connection if that is the only
31024 option offered by the server, or if the Alpine in question has been built
31025 without encryption capability.
31028 Note that this feature specifies a per-user (or system-wide) default
31029 behavior, but host/folder specification flags may be used to control the
31030 behavior of any specific connection.
31031 This feature interacts with some of
31032 the possible host/folder path specification flags as follows:
31035 The <SAMP>/tls</SAMP> host flag, for example,
31038 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31040 will over-ride this feature for the specified host by bypassing the
31041 SSL connection attempt.
31042 Moreover, with <SAMP>/tls</SAMP> specified,
31043 the connection attempt will fail if the
31044 service on port 143 does not offer TLS support.
31047 The <SAMP>/ssl</SAMP> host flag, for example,
31050 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31052 will insist on an SSL connection for the specified host,
31053 and will fail if the SSL service on port 993 is not available.
31054 Alpine will not subsequently retry a connection
31055 on port 143 if <SAMP>/ssl</SAMP> is specified.
31058 <UL>   
31059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31060 </UL><P>
31061 &lt;End of help on this topic&gt;
31062 </BODY>
31063 </HTML>
31064 ====== h_config_file_dir ======
31065 <HTML>
31066 <HEAD>
31067 <TITLE>OPTION: File Directory</TITLE>
31068 </HEAD>
31069 <BODY>
31070 <H1>OPTION: File Directory</H1>
31072 PC-Alpine only.
31074 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31075 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31076 Message Index's &quot;E&nbsp;Export&quot; command.
31079 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31080 component, Alpine assumes the file exists in the user's home directory.
31081 Under Windows operating systems, this definition isn't always clear.  This 
31082 feature allows you to explictly set where Alpine should look for files
31083 without a leading path.
31086 NOTE: this feature's value is ignored if either 
31087 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31088 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31091 <UL>   
31092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31093 </UL><P>
31094 &lt;End of help on this topic&gt;
31095 </BODY>
31096 </HTML>
31097 ====== h_config_quote_all_froms =====
31098 <HTML>
31099 <HEAD>
31100 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31101 </HEAD>
31102 <BODY>
31103 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31105 This feature controls an aspect of the Save command (and also the way
31106 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31107 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31108 when they are saved to another folder, including lines syntactically
31109 distinguishable from the type of message separator line commonly used on
31110 Unix systems.
31113 The default behavior is that a &quot;>&quot; will be prepended only to lines
31114 beginning with &quot;From &quot; that might otherwise be confused with a message
31115 separator line on Unix systems.  If pine is the only mail program you use,
31116 this default is reasonable.  If another program you use has trouble
31117 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31118 enable this feature.  This feature only applies to the common Unix mailbox
31119 format that uses message separator lines beginning with &quot;From &quot;.  If
31120 Alpine has been configured to use a different mailbox format (possibly
31121 incompatible with other mail programs), then this issue does not arise,
31122 and the feature is irrelevant.
31125 &lt;End of help on this topic&gt;
31126 </BODY>
31127 </HTML>
31128 ====== h_config_normal_color =====
31129 <HTML>
31130 <HEAD>
31131 <TITLE>OPTION: Normal Color</TITLE>
31132 </HEAD>
31133 <BODY>
31134 <H1>OPTION: Normal Color</H1>
31136 Sets the color Alpine normally uses.
31137 The foreground color is the color of the actual character and the
31138 background color is the color of the area behind the character.
31139 By default this color is black characters on a white background.
31141 <A HREF="h_color_setup">Descriptions of the available commands</A>
31143 Look <A HREF="h_edit_nav_cmds">here</A>
31144 to see the available Editing and Navigation commands.
31146 &lt;End of help on this topic&gt;
31147 </BODY>
31148 </HTML>
31149 ====== h_config_reverse_color =====
31150 <HTML>
31151 <HEAD>
31152 <TITLE>OPTION: Reverse Color</TITLE>
31153 </HEAD>
31154 <BODY>
31155 <H1>OPTION: Reverse Color</H1>
31157 Sets the color Alpine uses for reverse video characters.
31158 The foreground color is the color of the actual character and the
31159 background color is the color of the area behind the character.
31161 <A HREF="h_color_setup">Descriptions of the available commands</A>
31163 Look <A HREF="h_edit_nav_cmds">here</A>
31164 to see the available Editing and Navigation commands.
31166 &lt;End of help on this topic&gt;
31167 </BODY>
31168 </HTML>
31169 ====== h_config_title_color =====
31170 <HTML>
31171 <HEAD>
31172 <TITLE>OPTION: Title Color</TITLE>
31173 </HEAD>
31174 <BODY>
31175 <H1>OPTION: Title Color</H1>
31177 Sets the color Alpine uses for the titlebar (the top line on the screen).
31178 The foreground color is the color of the actual character and the
31179 background color is the color of the area behind the character.
31180 By default, the Title Color is black characters on a yellow background.
31182 The actual titlebar color may be different from the Title Color if
31183 the option
31184 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31185 is set to some value other than the default.
31186 It may also be different if the current folder is closed and the
31187 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31188 color is set to something different from the Title Color.
31190 <A HREF="h_color_setup">Descriptions of the available commands</A>
31192 Look <A HREF="h_edit_nav_cmds">here</A>
31193 to see the available Editing and Navigation commands.
31195 &lt;End of help on this topic&gt;
31196 </BODY>
31197 </HTML>
31198 ====== h_config_titleclosed_color =====
31199 <HTML>
31200 <HEAD>
31201 <TITLE>OPTION: Title Closed Color</TITLE>
31202 </HEAD>
31203 <BODY>
31204 <H1>OPTION: Title Closed Color</H1>
31206 Sets the color Alpine uses for the titlebar (the top line on the screen)
31207 when the current folder is closed.
31208 The foreground color is the color of the actual character and the
31209 background color is the color of the area behind the character.
31210 By default, the Title Color Closed Color is white characters on a red background.
31212 By setting this color to something noticeable you will be alerted to the
31213 fact that the current folder is closed, perhaps unexpectedly.
31215 &lt;End of help on this topic&gt;
31216 </BODY>
31217 </HTML>
31218 ====== h_config_status_color =====
31219 <HTML>
31220 <HEAD>
31221 <TITLE>OPTION: Status Color</TITLE>
31222 </HEAD>
31223 <BODY>
31224 <H1>OPTION: Status Color</H1>
31226 Sets the color Alpine uses for status messages written to the message
31227 line near the bottom of the screen.
31228 The foreground color is the color of the actual character and the
31229 background color is the color of the area behind the character.
31230 By default, the Status Color is the same as the Reverse Color.
31232 <A HREF="h_color_setup">Descriptions of the available commands</A>
31234 Look <A HREF="h_edit_nav_cmds">here</A>
31235 to see the available Editing and Navigation commands.
31237 &lt;End of help on this topic&gt;
31238 </BODY>
31239 </HTML>
31240 ====== h_config_index_opening_color =====
31241 <HTML>
31242 <HEAD>
31243 <TITLE>OPTION: Index Opening Color</TITLE>
31244 </HEAD>
31245 <BODY>
31246 <H1>OPTION: Index Opening Color</H1>
31248 With some setups the text of the subject is followed
31249 by the opening text of the message if there is any room available in the index line.
31250 If you have configured your
31251 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31252 to include one of the Subject tokens that causes this behavior
31253 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
31254 this opening text with this option.
31255 This coloring takes place for all but the current index line, and the Opening
31256 Color appears to be in front of any color from an Index Color Rule.
31258 By default the Index Opening Color is gray characters on a white background.
31261 <A HREF="h_color_setup">Descriptions of the available commands</A>
31263 Look <A HREF="h_edit_nav_cmds">here</A>
31264 to see the available Editing and Navigation commands.
31266 &lt;End of help on this topic&gt;
31267 </BODY>
31268 </HTML>
31269 ====== h_config_index_pri_color =====
31270 <HTML>
31271 <HEAD>
31272 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
31273 </HEAD>
31274 <BODY>
31275 <H1>OPTION: Index Priority Symbol Colors</H1>
31277 The X-Priority header is a non-standard header that is used in a
31278 somewhat standard way by many mail programs.
31279 Alpine expects the value of this header to be a digit with a value
31280 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
31281 Alpine can be made to display an indication of this priority in
31282 messages by use of one of the tokens
31283 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
31284 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
31285 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31288 You may set the color used to draw these tokens by use of the colors
31289 Index High Priority Symbol Color and Index Low Priority Symbol Color.
31290 This coloring takes place for all but the current index line, and the Priority
31291 Color appears to be in front of any color from an Index Color Rule.
31292 If the priority has a value of 1 or 2 the High Priority color will be
31293 used,
31294 and if the value is 4 or 5 the Low Priority color will be used.
31296 If you don't set these colors the index line will be colored in the same color as
31297 the bulk of the index line.
31300 <A HREF="h_color_setup">Descriptions of the available commands</A>
31302 Look <A HREF="h_edit_nav_cmds">here</A>
31303 to see the available Editing and Navigation commands.
31305 &lt;End of help on this topic&gt;
31306 </BODY>
31307 </HTML>
31308 ====== h_config_index_subject_color =====
31309 <HTML>
31310 <HEAD>
31311 <TITLE>OPTION: Index Subject Color</TITLE>
31312 </HEAD>
31313 <BODY>
31314 <H1>OPTION: Index Subject Color</H1>
31316 You may set the color used to draw the Subject part of the index line.
31317 This coloring takes place for all but the current index line, and the Subject
31318 Color appears to be in front of any color from an Index Color Rule.
31320 If you don't set this color it will be colored in the same color as
31321 the bulk of the index line.
31324 <A HREF="h_color_setup">Descriptions of the available commands</A>
31326 Look <A HREF="h_edit_nav_cmds">here</A>
31327 to see the available Editing and Navigation commands.
31329 &lt;End of help on this topic&gt;
31330 </BODY>
31331 </HTML>
31332 ====== h_config_index_from_color =====
31333 <HTML>
31334 <HEAD>
31335 <TITLE>OPTION: Index From Color</TITLE>
31336 </HEAD>
31337 <BODY>
31338 <H1>OPTION: Index From Color</H1>
31340 You may set the color used to draw the From part of the index line.
31341 This coloring takes place for all but the current index line, and the From
31342 Color appears to be in front of any color from an Index Color Rule.
31344 If you don't set this color it will be colored in the same color as
31345 the bulk of the index line.
31348 <A HREF="h_color_setup">Descriptions of the available commands</A>
31350 Look <A HREF="h_edit_nav_cmds">here</A>
31351 to see the available Editing and Navigation commands.
31353 &lt;End of help on this topic&gt;
31354 </BODY>
31355 </HTML>
31356 ====== h_config_index_arrow_color =====
31357 <HTML>
31358 <HEAD>
31359 <TITLE>OPTION: Index Arrow Color</TITLE>
31360 </HEAD>
31361 <BODY>
31362 <H1>OPTION: Index Arrow Color</H1>
31364 If you have configured your
31365 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31366 to include the &quot;ARROW&quot; token, you may set the color of
31367 the arrow displayed with this option.
31368 If you don't set the color it will be colored in the same color as
31369 the bulk of the index line.
31372 <A HREF="h_color_setup">Descriptions of the available commands</A>
31374 Look <A HREF="h_edit_nav_cmds">here</A>
31375 to see the available Editing and Navigation commands.
31377 &lt;End of help on this topic&gt;
31378 </BODY>
31379 </HTML>
31380 ====== h_config_index_color =====
31381 <HTML>
31382 <HEAD>
31383 <TITLE>OPTION: Index Colors</TITLE>
31384 </HEAD>
31385 <BODY>
31386 <H1>OPTION: Index Colors</H1>
31388 You may add color to the single character symbols that give the status
31389 of each message in the MESSAGE INDEX.
31390 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
31391 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
31392 screen depending on whether the message is addressed to you, and whether
31393 the message is marked Important, is Deleted, is Answered, or is New.
31394 The color for each of those characters may be specified by setting the
31395 &quot;Index-to-me&quot; Symbol Color,
31396 the &quot;Index-important&quot; Symbol Color,
31397 the &quot;Index-deleted&quot; Symbol Color,
31398 the &quot;Index-answered&quot; Symbol Color,
31399 and the &quot;Index-new&quot; Symbol Color.
31400 There are also two other symbol colors called &quot;Index-recent&quot;
31401 and &quot;Index-unseen&quot;.
31402 These two colors will only be used if you have configured your
31403 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31404 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
31406 The default colors for these symbols are:
31407 <TABLE>
31408 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
31409 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
31410 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31411 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
31412 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
31413 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31414 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31415 </TABLE>
31417 Besides coloring the message status symbols, you may also color the
31418 entire index line.
31419 This is done by using the
31420 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
31421 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
31422 When the entire line is colored that color will be &quot;behind&quot; the
31423 status symbol colors talked about in the paragraph above.
31425 You may also color
31426 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
31427 in the index using the
31428 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
31429 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
31430 the Subject using
31431 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
31432 the From field using
31433 <A HREF="h_config_index_from_color">Index From Color</A>;
31434 and the
31435 <A HREF="h_config_index_opening_color">Index Opening</A> text.
31437 <A HREF="h_color_setup">Descriptions of the available commands</A>
31439 Look <A HREF="h_edit_nav_cmds">here</A>
31440 to see the available Editing and Navigation commands.
31442 &lt;End of help on this topic&gt;
31443 </BODY>
31444 </HTML>
31445 ====== h_config_metamsg_color =====
31446 <HTML>
31447 <HEAD>
31448 <TITLE>OPTION: Meta-Message Color</TITLE>
31449 </HEAD>
31450 <BODY>
31451 <H1>OPTION: Meta-Message Color</H1>
31453 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
31454 that aren't part of the message itself.
31455 For example, an attachment that isn't shown might produce a meta
31456 message something like:
31458 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
31460 If you set the
31461 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
31462 option you might see
31464 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
31466 Warnings about suspicious looking URLs in HTML will also be colored
31467 with this color.
31469 The foreground color is the color of the actual character and the
31470 background color is the color of the area behind the character.
31471 By default, the Meta-Message Color is black characters on a yellow background.
31473 <A HREF="h_color_setup">Descriptions of the available commands</A>
31475 Look <A HREF="h_edit_nav_cmds">here</A>
31476 to see the available Editing and Navigation commands.
31478 &lt;End of help on this topic&gt;
31479 </BODY>
31480 </HTML>
31481 ====== h_config_keylabel_color =====
31482 <HTML>
31483 <HEAD>
31484 <TITLE>OPTION: KeyLabel Color</TITLE>
31485 </HEAD>
31486 <BODY>
31487 <H1>OPTION: KeyLabel Color</H1>
31489 Sets the color Alpine uses for the labels of the keys in the two-line
31490 menu at the bottom of the screen.
31491 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31492 This option sets the color used when displaying &quot;PrevMsg&quot;.
31493 The foreground color is the color of the actual character and the
31494 background color is the color of the area behind the character.
31495 By default, the KeyLabel Color is the same as the Normal Color.
31497 WARNING: Some terminal emulators have the property that the screen will scroll
31498 down one line whenever a character is written to the character cell in the
31499 lower right corner of the screen.
31500 Alpine can usually avoid writing a character in that corner of the screen.
31501 However, if you have defined a KeyLabel Color then Alpine does have to write
31502 a character in that cell in order to color the cell correctly.
31503 If you find that your display sometimes scrolls up a line this could be
31504 the problem.
31505 The most obvious symptom is probably that the titlebar at the top of the
31506 screen scrolls off the screen.
31507 Try setting KeyLabel Color to Default to see if that fixes the problem.
31509 <A HREF="h_color_setup">Descriptions of the available commands</A>
31511 Look <A HREF="h_edit_nav_cmds">here</A>
31512 to see the available Editing and Navigation commands.
31514 &lt;End of help on this topic&gt;
31515 </BODY>
31516 </HTML>
31517 ====== h_config_keyname_color =====
31518 <HTML>
31519 <HEAD>
31520 <TITLE>OPTION: KeyName Color</TITLE>
31521 </HEAD>
31522 <BODY>
31523 <H1>OPTION: KeyName Color</H1>
31525 Sets the color Alpine uses for the names of the keys in the two-line
31526 menu at the bottom of the screen.
31527 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31528 This option sets the color used when displaying the &quot;P&quot;.
31529 The foreground color is the color of the actual character and the
31530 background color is the color of the area behind the character.
31531 By default, the KeyName Color is the same as the Reverse Color.
31533 <A HREF="h_color_setup">Descriptions of the available commands</A>
31535 Look <A HREF="h_edit_nav_cmds">here</A>
31536 to see the available Editing and Navigation commands.
31538 &lt;End of help on this topic&gt;
31539 </BODY>
31540 </HTML>
31541 ====== h_config_slctbl_color =====
31542 <HTML>
31543 <HEAD>
31544 <TITLE>OPTION: Selectable Item Color</TITLE>
31545 </HEAD>
31546 <BODY>
31547 <H1>OPTION: Selectable Item Color</H1>
31549 Sets the color Alpine uses for selectable items, such as URLs.
31550 The foreground color is the color of the actual character and the
31551 background color is the color of the area behind the character.
31552 By default, the Selectable Item Color is the same as the Normal Color,
31553 except that it is bold.
31555 <A HREF="h_color_setup">Descriptions of the available commands</A>
31557 Look <A HREF="h_edit_nav_cmds">here</A>
31558 to see the available Editing and Navigation commands.
31560 &lt;End of help on this topic&gt;
31561 </BODY>
31562 </HTML>
31563 ====== h_config_quote_color =====
31564 <HTML>
31565 <HEAD>
31566 <TITLE>OPTION: Quote Colors</TITLE>
31567 </HEAD>
31568 <BODY>
31569 <H1>OPTION: Quote Colors</H1>
31571 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
31572 screen.
31573 If a line begins with a &gt; character (or space followed by &gt;)
31574 it is considered a quote.
31575 That line will be given the Quote1 Color (first level quote).
31576 If there is a second level of quoting then the Quote2 Color will be used.
31577 Alpine considers there to be a second level of quoting if that first &gt; is
31578 followed by another &gt; (or space followed by &gt;).
31579 If there are characters other than whitespace and &gt; signs, then it isn't
31580 considered another level of quoting.
31581 Similarly, if there is a third level of quoting the Quote3 Color will be
31582 used.
31583 If there are more levels after that the Quote Colors are re-used.
31584 If you define all three colors then it would repeat like Color1, Color2, Color3,
31585 Color1, Color2, Color3, ...
31586 If you only define the first two it would be
31587 Color1, Color2, Color1, Color2, ...
31588 If you define only the Quote1 Color, then the entire quote would be that
31589 color regardless of the quoting levels.
31590 By default, the Quote1 Color is black characters on a greenish-blue background;
31591 the Quote2 Color is black characters on a dull yellow background; and
31592 the Quote3 Color is black characters on a green background.
31594 <A HREF="h_color_setup">Descriptions of the available commands</A>
31596 Look <A HREF="h_edit_nav_cmds">here</A>
31597 to see the available Editing and Navigation commands.
31599 &lt;End of help on this topic&gt;
31600 </BODY>
31601 </HTML>
31602 ====== h_config_folder_color =====
31603 <HTML>
31604 <HEAD>
31605 <TITLE>OPTION: Folder Color</TITLE>
31606 </HEAD>
31607 <BODY>
31608 <H1>OPTION: Folder Color</H1>
31610 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
31611 screen. By default, the Folder Color is the normal text color.
31614 If you set a color for this feature, other than the normal color
31615 (the default), or a color for
31616 <A HREF="h_config_directory_color">Directory Color</A>, then directories
31617 will be colored according to the color specified in the
31618 <A HREF="h_config_directory_color">Directory Color</A> option. In this
31619 case, the color will be the only indication that the colored name
31620 refers to a directory. The normal behavior is that Alpine
31621 indicates that a name refers to a directory by appending a
31622 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31623 the folder.
31626 If a folder is a directory, then the folder name will be painted
31627 according to the color defined by this variable, and a separator
31628 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
31629 to the name. That
31630 indicator will be painted according to the color defined in the
31631 <A HREF="h_config_directory_color">Directory Color</A> option.
31634 &lt;End of help on this topic&gt;
31635 </BODY>
31636 </HTML>
31637 ====== h_config_directory_color =====
31638 <HTML>
31639 <HEAD>
31640 <TITLE>OPTION: Directory Color</TITLE>
31641 </HEAD>
31642 <BODY>
31643 <H1>OPTION: Directory Color</H1>
31645 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
31646 screen. By default, the Folder Color is the normal text color.
31648 If you set a color for this feature, other than the normal color
31649 (the default), or a color for
31650 <A HREF="h_config_folder_color">Folder Color</A>, then folders
31651 will be colored according to the color specified in the
31652 <A HREF="h_config_folder_color">Folder Color</A> option. In this
31653 case, the color will be the only indication that the colored name
31654 refers to a directory. The normal behavior is that Alpine
31655 indicates that a name refers to a directory by appending a
31656 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31657 the folder.
31659 If a folder is a directory, then the folder name will be painted
31660 according to the color defined by the option
31661 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
31662 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
31663 after the name. That
31664 indicator will be painted according to the color defined in this
31665 option.
31667 &lt;End of help on this topic&gt;
31668 </BODY>
31669 </HTML>
31670 ====== h_config_folder_list_color =====
31671 <HTML>
31672 <HEAD>
31673 <TITLE>OPTION: Folder-List Color</TITLE>
31674 </HEAD>
31675 <BODY>
31676 <H1>OPTION: Folder-List Color</H1>
31678 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
31679 screen. By default, the Folder-List Color is the normal text color.
31681 This text refers to the informative text that Alpine displays so you
31682 can recognize each collection. The color of the content of each collection
31683 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
31684 and <A HREF="h_config_directory_color">Directory Color</A>.
31686 Unlike the options
31687 <A HREF="h_config_folder_color">Folder Color</A>
31688 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
31689 this option does not affect the way that Alpine reports folders,
31690 directories and folders that are directories.
31692 &lt;End of help on this topic&gt;
31693 </BODY>
31694 </HTML>
31695 ====== h_config_incunseen_color =====
31696 <HTML>
31697 <HEAD>
31698 <TITLE>OPTION: Incoming Unseen Color</TITLE>
31699 </HEAD>
31700 <BODY>
31701 <H1>OPTION: Incoming Unseen Color</H1>
31703 If the option
31704 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
31705 is turned on it is possible to highlight the folders that contain
31706 unseen messages by coloring them with this color.
31707 By default, this is the same as the Normal Color and no highlighting is done.
31709 Usually the &quot;current&quot; folder (the folder the cursor is on)
31710 is highlighted using reverse video.
31711 If the current folder is colored because it contains unseen messages then
31712 the color used to show that it is also the current folder is controlled
31713 by the
31714 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
31715 feature at the top of the SETUP COLOR screen.
31717 <A HREF="h_color_setup">Descriptions of the available commands</A>
31719 Look <A HREF="h_edit_nav_cmds">here</A>
31720 to see the available Editing and Navigation commands.
31722 &lt;End of help on this topic&gt;
31723 </BODY>
31724 </HTML>
31725 ====== h_config_signature_color =====
31726 <HTML>
31727 <HEAD>
31728 <TITLE>OPTION: Signature Color</TITLE>
31729 </HEAD>
31730 <BODY>
31731 <H1>OPTION: Signature Color</H1>
31733 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
31734 screen. According to USENET conventions, the signature is defined as the
31735 paragraph following the &quot;sigdashes&quot;, that is, the special line
31736 consisting of the three characters
31737 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
31738 empty line right after the sigdashes to be considered as part of the
31739 signature.
31740 By default, the Signature Color is blue characters on a white background.
31742 <A HREF="h_color_setup">Descriptions of the available commands</A>
31744 Look <A HREF="h_edit_nav_cmds">here</A>
31745 to see the available Editing and Navigation commands.
31747 &lt;End of help on this topic&gt;
31748 </BODY>
31749 </HTML>
31750 ====== h_config_prompt_color =====
31751 <HTML>
31752 <HEAD>
31753 <TITLE>OPTION: Prompt Color</TITLE>
31754 </HEAD>
31755 <BODY>
31756 <H1>OPTION: Prompt Color</H1>
31758 Sets the color Alpine uses for confirmation prompts and questions that
31759 appear in the status line near the bottom of the screen.
31760 The foreground color is the color of the actual character and the
31761 background color is the color of the area behind the character.
31762 By default, the Prompt Color is the same as the Reverse Color.
31764 <A HREF="h_color_setup">Descriptions of the available commands</A>
31766 Look <A HREF="h_edit_nav_cmds">here</A>
31767 to see the available Editing and Navigation commands.
31769 &lt;End of help on this topic&gt;
31770 </BODY>
31771 </HTML>
31772 ====== h_config_header_general_color =====
31773 <HTML>
31774 <HEAD>
31775 <TITLE>OPTION: Header General Color</TITLE>
31776 </HEAD>
31777 <BODY>
31778 <H1>OPTION: Header General Color</H1>
31780 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
31781 screen.
31782 The foreground color is the color of the actual character and the
31783 background color is the color of the area behind the character.
31784 By default, this is the same as the Normal Color.
31786 It is also possible to set the colors for specific header fields, for
31787 example the Subject, using
31788 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
31789 If both a Header General Color and a specific Viewer Header Color are set
31790 the specific color will override the general color, as you would expect.
31792 <A HREF="h_color_setup">Descriptions of the available commands</A>
31794 Look <A HREF="h_edit_nav_cmds">here</A>
31795 to see the available Editing and Navigation commands.
31797 &lt;End of help on this topic&gt;
31798 </BODY>
31799 </HTML>
31800 ====== h_config_incol =====
31801 <HTML>
31802 <HEAD>
31803 <TITLE>Index Line Color</TITLE>
31804 </HEAD>
31805 <BODY>
31806 <H1>Index Line Color</H1>
31808 This option is used to set the color of a line in the index when the
31809 message for that line matches the Pattern.
31810 This colors the whole index line, except possibly the status letters,
31811 which may be colored separately using the
31812 <A HREF="h_color_setup">Setup Kolor</A> screen.
31813 The foreground color is the color of the actual characters and the
31814 background color is the color of the area behind the characters.
31816 <A HREF="h_color_setup">Descriptions of the available commands</A>
31818 Look <A HREF="h_edit_nav_cmds">here</A>
31819 to see the available Editing and Navigation commands.
31821 &lt;End of help on this topic&gt;
31822 </BODY>
31823 </HTML>
31824 ====== h_config_usetransparent_color =====
31825 <HTML>
31826 <HEAD>
31827 <TITLE>OPTION: Use Transparent Color</TITLE>
31828 </HEAD>
31829 <BODY>
31830 <H1>OPTION: Use Transparent Color</H1>
31832 This is a special color supported by some terminal emulators.
31833 It is intended to result in the default foreground or background color
31834 from the terminal emulator.
31835 This is the color the terminal was displaying characters in before you started Alpine.
31836 The reason it is called Transparent is because you could set the foreground color
31837 to some specific color, like Red, and then set the background color to the
31838 Transparent Color. If it works as expected, the background color from the terminal
31839 window in which Alpine is running will show through but with the Red characters
31840 in the foreground.
31842 <A HREF="h_color_setup">Descriptions of the available commands</A>
31844 Look <A HREF="h_edit_nav_cmds">here</A>
31845 to see the available Editing and Navigation commands.
31847 &lt;End of help on this topic&gt;
31848 </BODY>
31849 </HTML>
31850 ====== h_config_usenormal_color =====
31851 <HTML>
31852 <HEAD>
31853 <TITLE>OPTION: Use Normal Color</TITLE>
31854 </HEAD>
31855 <BODY>
31856 <H1>OPTION: Use Normal Color</H1>
31858 When you use this color value, the actual color used will be the same
31859 as the corresponding Normal Color.
31860 For example if your Normal Color is black on white and you set both
31861 the foreground and background colors here to use the Normal Color, you'll
31862 get black on white. If you later change the Normal Color to red on blue
31863 this color will also change to red on blue.
31865 <A HREF="h_color_setup">Descriptions of the available commands</A>
31867 Look <A HREF="h_edit_nav_cmds">here</A>
31868 to see the available Editing and Navigation commands.
31870 &lt;End of help on this topic&gt;
31871 </BODY>
31872 </HTML>
31873 ====== h_config_usenone_color =====
31874 <HTML>
31875 <HEAD>
31876 <TITLE>OPTION: Use None Color</TITLE>
31877 </HEAD>
31878 <BODY>
31879 <H1>OPTION: Use None Color</H1>
31881 This is a special color that simply means to leave the color alone.
31882 It is useful for Index symbols and for Keyword Colors used in the Subject
31883 field of an index line.
31884 The most likely use is to set an explicit foreground color and then set
31885 the background color to the None Color.
31886 That will cause the symbol or keyword to be drawn in the foreground color
31887 with a background equal to whatever color the rest of the index line is already
31888 drawn in.
31889 You will see no visible effect unless you have assigned Indexcolor Rules to
31890 color index lines or you have set an actual color for the Reverse Color.
31892 <A HREF="h_color_setup">Descriptions of the available commands</A>
31894 Look <A HREF="h_edit_nav_cmds">here</A>
31895 to see the available Editing and Navigation commands.
31897 &lt;End of help on this topic&gt;
31898 </BODY>
31899 </HTML>
31900 ====== h_config_dflt_color =====
31901 <HTML>
31902 <HEAD>
31903 <TITLE>OPTION: Default Color</TITLE>
31904 </HEAD>
31905 <BODY>
31906 <H1>OPTION: Default Color</H1>
31908 Setting default will cause the color to be the default color.
31909 Unsetting default is normally done by choosing a color, but in some cases
31910 you may want to declare the current default color to be your non-default
31911 choice.
31912 For example, the default Keyname Color is the same as the Reverse Color.
31913 Whenever the Reverse Color changes the Keyname Color will also change, unless
31914 you've changed it or unset the default box.
31916 <A HREF="h_color_setup">Descriptions of the available commands</A>
31918 Look <A HREF="h_edit_nav_cmds">here</A>
31919 to see the available Editing and Navigation commands.
31921 &lt;End of help on this topic&gt;
31922 </BODY>
31923 </HTML>
31924 ====== h_config_bold_slctbl =====
31925 <HTML>
31926 <HEAD>
31927 <TITLE>OPTION: Bold</TITLE>
31928 </HEAD>
31929 <BODY>
31930 <H1>OPTION: Bold</H1>
31932 The color for this particular section may have the Bold attribute turned
31933 on or off.
31934 Setting bold will cause the characters to be bold.
31936 <A HREF="h_color_setup">Descriptions of the available commands</A>
31938 Look <A HREF="h_edit_nav_cmds">here</A>
31939 to see the available Editing and Navigation commands.
31941 &lt;End of help on this topic&gt;
31942 </BODY>
31943 </HTML>
31944 ====== h_config_kw_color =====
31945 <HTML>
31946 <HEAD>
31947 <TITLE>OPTION: Keyword Colors</TITLE>
31948 </HEAD>
31949 <BODY>
31950 <H1>OPTION: Keyword Colors</H1>
31952 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
31953 Keywords are displayed as part of the Subject by default.
31954 They are also displayed as part of the Subject if the tokens
31955 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
31956 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31957 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
31958 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
31960 For example, you might have set up a Keyword
31961 &quot;Work&quot; using the
31962 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
31963 You could cause that Keyword to show up as a special color
31964 by setting up the Keyword Color using this option, and then including it
31965 in the MESSAGE INDEX screen using one of the tokens listed above in the
31966 <!--#echo var="VAR_index-format"-->.
31968 <A HREF="h_color_setup">Descriptions of the available commands</A>
31970 Look <A HREF="h_edit_nav_cmds">here</A>
31971 to see the available Editing and Navigation commands.
31973 &lt;End of help on this topic&gt;
31974 </BODY>
31975 </HTML>
31976 ====== h_config_customhdr_color =====
31977 <HTML>
31978 <HEAD>
31979 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
31980 </HEAD>
31981 <BODY>
31982 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
31984 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
31985 For example, you may set the color of the Subject header or the From header.
31986 The foreground color is the color of the actual character and the
31987 background color is the color of the area behind the character.
31989 In addition to setting the colors for particular headers (like the Subject)
31990 you may also set a color to be used for all headers unless overridden by a
31991 more specific Viewer Header Color.
31992 To do this use the
31993 <A HREF="h_config_header_general_color">Header General Color</A>.
31995 For Header Colors,
31996 there is an additional line on the
31997 screen labeled &quot;Pattern to match&quot;.
31998 If you leave that blank, then the whole field for that header will
31999 be colored.
32000 However, if you give a pattern to match, the coloring will only take place
32001 if there is a match for that pattern in the value of the field.
32002 For example, if you are working on a color for the Subject header and
32003 you fill in a pattern of &quot;important&quot;, then only Subjects that
32004 contain the word &quot;important&quot; will be colored.
32006 If the pattern you enter is a comma-separated list of patterns, then coloring
32007 happens if any of those patterns matches.
32009 <A HREF="h_color_setup">Descriptions of the available commands</A>
32011 Look <A HREF="h_edit_nav_cmds">here</A>
32012 to see the available Editing and Navigation commands.
32014 &lt;End of help on this topic&gt;
32015 </BODY>
32016 </HTML>
32017 ====== h_config_indextoken_color =====
32018 <HTML>
32019 <HEAD>
32020 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32021 </HEAD>
32022 <BODY>
32023 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32025 This option allows you to set up the color in which any token, not specified by the
32026 previous options, will be colored in the MESSAGE INDEX screen. 
32028 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32029 a token that can be used in the index format. 
32030 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32032 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32033 enter a new one. Once you have entered a valid token, a line will be added to the
32034 configuration screen that you can use to set up the colors in which that token will
32035 be painted. This is done in the same way that you configure colors for other
32036 variables.
32038 <A HREF="h_color_setup">Descriptions of the available commands</A>
32040 Look <A HREF="h_edit_nav_cmds">here</A>
32041 to see the available Editing and Navigation commands.
32043 &lt;End of help on this topic&gt;
32044 </BODY>
32045 </HTML>
32046 ====== h_config_customhdr_pattern =====
32047 <HTML>
32048 <HEAD>
32049 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32050 </HEAD>
32051 <BODY>
32052 <H1>OPTION: Viewer Header Color Pattern</H1>
32054 If you leave this blank, then the whole field for the header will
32055 be colored.
32056 If you give a pattern to match, the coloring will only take place
32057 if there is a match for that pattern in the value of the field.
32058 For example, if you are working on a color for the Subject header and
32059 you fill in a pattern of &quot;important&quot;, then only Subjects that
32060 contain the word &quot;important&quot; will be colored.
32062 For address headers (like From and To) and for the Newsgroups header,
32063 a pattern match will cause only the matched addresses or newsgroups to be
32064 colored.
32065 If there is no pattern to match, then all of the addresses or newsgroups
32066 in the relevant header will be colored.
32068 The matching pattern may be a comma-separated list of patterns to match
32069 instead of a single pattern.
32070 For example, you could use the pattern &quot;important,urgent&quot; which would
32071 cause a match if either the word &quot;important&quot; or the word
32072 &quot;urgent&quot; appeared in the value of the header.
32073 You could list several comma-separated email addresses in the Header
32074 From Color pattern so that those addresses will be colored when any of
32075 them appear in the From header.
32077 To add a new matching pattern or change the existing pattern use the 
32078 <!--chtml if pinemode="function_key"-->
32079 &quot;F4&quot;
32080 <!--chtml else-->
32081 &quot;C&quot;
32082 <!--chtml endif-->
32083 &quot;Change&quot; command that is available when the &quot;Pattern to
32084 match&quot; line is highlighted.
32086 <!--chtml if pinemode="function_key"-->
32087 &quot;F10&quot;
32088 <!--chtml else-->
32089 &quot;D&quot;
32090 <!--chtml endif-->
32091 &quot;Delete&quot; command may be used to quickly remove all patterns
32092 for a particular header.
32094 &lt;End of help on this topic&gt;
32095 </BODY>
32096 </HTML>
32097 ====== h_color_setup =====
32098 <HTML>
32099 <HEAD>
32100 <TITLE>SETUP COLOR COMMANDS</TITLE>
32101 </HEAD>
32102 <BODY>
32103 <H1>SETUP COLOR COMMANDS</H1>
32104 <!--chtml if pinemode="function_key"-->
32105 <PRE>
32106 Available Commands -- Group 1
32107 -------------------------------
32108 F1  Display this help text
32109 F2  Show other available commands
32110 F3  Exit to MAIN MENU
32111 F4  Select the highlighted foreground or background color
32112 F5  Move to previous line
32113 F6  Move to next line
32114 F7  Previous page
32115 F8  Next page
32116 F9  Add a config section for a header field
32117 F10 Restore all default colors (for all sections)
32118 F11 Print color configuration screen
32119 F12 Whereis (search for word)
32121 Available Commands -- Group 2
32122 -------------------------------
32123 F1  Display this help text
32124 F2  Show other available commands
32125 F5  Delete config section for highlighted header field
32126 F6  Shuffle the order of Header Color sections
32127 </PRE>
32128 <!--chtml else-->
32129 <PRE>
32130 General commands
32131 -------------------------------------------------
32132  ?  Display this help text     E  Exit back to MAIN MENU
32133  P  Previous Line              N  Next Line
32134  -  Previous page             Spc (space bar) Next page
32135  W  WhereIs (search for word)  %  Print color configuration screen
32137 Color Setup Commands
32138 ------------------------------------------------
32139  *  Select the highlighted foreground or background color
32140  A  Add a config section for a header field
32141  D  Delete config section for highlighted header field
32142  R  Restore all default colors (for all sections)
32143  $  Shuffle the order of Header Color sections
32144 </PRE>
32145 <!--chtml endif-->
32147 <H2>Description of the Setup Color Screen</H2>
32149 From this screen you may turn on color and set the colors of
32150 various parts of the Alpine display.
32151 For help on turning on color move your cursor into the Color Style section
32152 at the top of the Setup Color screen and ask for help.
32155 There are several sections in the Setup Color Screen.
32156 At the top are some settings that handle the style of color used
32157 with your terminal emulator (UNIX only), and some settings that
32158 control how the current indexline and the titlebar are colored.
32159 After that comes a long section called GENERAL COLORS that allows
32160 you to set the color of many elements in the Alpine screens.
32161 For example, the color of the titlebar, status messages,
32162 selectable links, quotes and signatures in messages, and so on.
32163 After that is a section called INDEX COLORS that allows you to
32164 set the colors of various pieces of the displayed index lines in
32165 the MESSAGE INDEX screen.
32166 The next section is HEADER COLORS. This is for coloring headers of
32167 messages in the MESSAGE TEXT screen in just about any way you would like.
32168 Finally, the KEYWORD COLORS section allows you to highlight
32169 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32170 in the MESSAGE INDEX screen.
32173 To change a color, highlight the color you want to change (for example,
32174 the Status Color) by moving
32175 the cursor into it.
32176 You may want to read the help text for the color to see a brief desription
32177 of what you are coloring.
32178 Then press &quot;C&quot; for Change to set the color to something new.
32179 That will put you into a screen with two columns of colors, one for
32180 the foreground color and one for the background color.
32181 The foreground color is just the color you want the actual characters
32182 to be and the background color is the color of the rest of the rectangle
32183 behind the characters.
32184 Select the foreground and background colors desired by using the Next and
32185 Prev keys to highlight the color, and the * command to select it.
32187 To set a color to its default value, set the X in the Default line at
32188 the bottom of the list of colors.
32191 The HEADER COLORS section is a little bit different from the others.
32192 Besides coloring the specific fields that Alpine knows about, you may also
32193 color specific header fields when viewing a message in the MESSAGE TEXT
32194 screen.
32195 For example, you may color the Subject header a particular color.
32196 There are a few commands for use with headers.
32197 The &quot;AddHeader&quot; command adds a section to the color
32198 configuration screen that allows you to set the color for that header.
32199 You'll be asked for the name of the header field you want to color.
32200 If you wanted to color the Subject, you would answer
32201 with the word &quot;subject&quot;.
32202 Once you've added a header field, the color setting works just like the
32203 other color fields, except that there is an additional line on the
32204 configuration screen labeled &quot;Pattern to match&quot;.
32205 If you leave that blank, then the whole field for that header will always
32206 be colored.
32207 However, if you give a pattern to match, the coloring will only take place
32208 if there is a match for that pattern in the value of the field.
32209 For example, if you are working on a color for the Subject header and
32210 you fill in a pattern of &quot;important&quot;, then only Subjects that
32211 contain the word &quot;important&quot; will be colored.
32213 The &quot;DeleteHdr&quot; command removes a header section from the
32214 configuration altogether.
32215 The &quot;Shuffle&quot; command changes the order of header sections.
32216 This is only necessary if you use header sections with pattern fields.
32217 For example, if you have two Subject sections, one with one pattern and
32218 another with another pattern, and the subject for a particular message
32219 happens to match both, then the color from the first match is used.
32222 The command &quot;RestoreDefs&quot; will restore all of the default colors.
32223 Each section will change to the default value used for that section when
32224 color is first enabled.
32225 When you restore all default colors the color settings for the Header Colors
32226 will be unset (since that's the default), but the header fields you've
32227 added will remain so that you may easily reset them.
32228 In order to get rid of them completely you'd have to use
32229 the &quot;DeleteHdr&quot; command.
32232 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
32233 may be set with matching rules and that is configured separately from
32234 the rest of the color settings described here.
32235 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
32236 instead of in the Setup/Kolor section.
32238 <P><UL>
32239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32240 </UL><P>
32241 &lt;End of help on this topic&gt;
32242 </BODY>
32243 </HTML>
32244 ====== h_config_news_uses_recent ======
32245 <HTML>
32246 <HEAD>
32247 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
32248 </HEAD>
32249 <BODY>
32250 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
32252 This feature causes certain messages to be marked as "New" in the
32253 MESSAGE INDEX of newsgroups.
32254 This feature is set by default.
32258 When opening a newsgroup, Alpine will consult your "newsrc" file and
32259 determine the last message you have previously disposed of via the "D"
32260 key.  If this feature is set, any subsequent messages will be shown in the
32261 Index with an "N", and the first of these messages will be highlighted.
32262 Although this is only an approximation of true "New" or "Unseen"
32263 status, it provides a useful cue to distinguish more-or-less recent
32264 messages from those you have seen previously, but are not yet ready to
32265 mark deleted.
32269 Background: your "newsrc" file (used to store message status information
32270 for newsgroups) is only capable of storing a single flag, and Alpine uses
32271 this to record whether or not you are "done with" a message, as
32272 indicated by marking the message as "Deleted".  Unfortunately, this
32273 means that Alpine has no way to record exactly which messages you have
32274 previously seen, so it normally does not show the "N" status flag for
32275 any messages in a newsgroup. This feature enables a starting
32276 *approximation* of seen/unseen status that may be useful.
32278 &lt;End of help on this topic&gt;
32279 </BODY>
32280 </HTML>
32281 ====== h_config_expose_hidden_config =====
32282 <HTML>
32283 <HEAD>
32284 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
32285 </HEAD>
32286 <BODY>
32287 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
32289 If set, this causes configuration options and features that are normally
32290 hidden from view to be editable in the Setup/Config screen.
32293 The purpose of this feature is to allow you to change configuration
32294 features and variables that are normally hidden.
32295 This is particularly useful if you are using a remote configuration,
32296 where it is difficult to edit the contents manually, but it may also be used
32297 on a local pinerc configuration file.
32299 If set, several configuration variables and features that are normally
32300 hidden from view will show up in the Setup/Configuration screen.
32301 They will be at the bottom of the configuration screen.
32302 You can find them by searching for the words &quot;hidden configuration&quot;.
32305 Note that this is an advanced feature that should be used with care.
32306 The reason that this part of the configuration is normally hidden is because
32307 there is a significant potential for causing problems if you change these
32308 variables.
32309 If something breaks after a change try changing it back to see if that is
32310 what is causing the problem.
32311 There are also some variables that are normally hidden because they are
32312 manipulated through Alpine in other ways.
32313 For example, colors are normally set using the Setup/Kolors screen and
32314 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
32315 the Setup/AddressBooks screen, so there is little reason to edit these directly.
32316 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
32317 the Add, Delete, and Rename commands in the FOLDER LIST screen,
32318 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
32319 internally by Alpine and not set directly by the user.
32321 <UL>   
32322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32323 </UL><P>
32324 &lt;End of help on this topic&gt;
32325 </BODY>
32326 </HTML>
32327 ====== h_config_disable_signature_edit =====
32328 <HTML>
32329 <HEAD>
32330 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
32331 </HEAD>
32332 <BODY>
32333 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
32335 If set, this disables the editing of signature files from within
32336 the Setup/Config screen.
32338 <UL>   
32339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32340 </UL><P>
32341 &lt;End of help on this topic&gt;
32342 </BODY>
32343 </HTML>
32344 ====== h_config_disable_roles_templateedit =====
32345 <HTML>
32346 <HEAD>
32347 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
32348 </HEAD>
32349 <BODY>
32350 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
32352 If set, this disables the editing of template files within the
32353 Role setup screen.
32355 <UL>   
32356 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32357 </UL><P>
32358 &lt;End of help on this topic&gt;
32359 </BODY>
32360 </HTML>
32361 ====== h_config_disable_roles_sigedit =====
32362 <HTML>
32363 <HEAD>
32364 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
32365 </HEAD>
32366 <BODY>
32367 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
32369 If set, this disables the editing of signature files within the
32370 Role setup screen.
32372 <UL>   
32373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32374 </UL><P>
32375 &lt;End of help on this topic&gt;
32376 </BODY>
32377 </HTML>
32378 ====== h_config_disable_roles_setup =====
32379 <HTML>
32380 <HEAD>
32381 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
32382 </HEAD>
32383 <BODY>
32384 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
32386 If set, this disables the Setup/Rules/Roles command.
32388 <UL>   
32389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32390 </UL><P>
32391 &lt;End of help on this topic&gt;
32392 </BODY>
32393 </HTML>
32394 ====== h_config_disable_pipes_in_templates =====
32395 <HTML>
32396 <HEAD>
32397 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
32398 </HEAD>
32399 <BODY>
32400 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
32402 By default, if a template file name is followed by a vertical bar (|) then
32403 that causes the file to be executed to produce the text for the template.
32404 If this feature is set, then this is not allowed.
32406 <UL>   
32407 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32408 </UL><P>
32409 &lt;End of help on this topic&gt;
32410 </BODY>
32411 </HTML>
32412 ====== h_config_disable_pipes_in_sigs =====
32413 <HTML>
32414 <HEAD>
32415 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
32416 </HEAD>
32417 <BODY>
32418 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
32420 By default, if a signature file name is followed by a vertical bar (|) then
32421 that causes the file to be executed to produce the text for the signature.
32422 If this feature is set, then this is not allowed.
32424 <UL>   
32425 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32426 </UL><P>
32427 &lt;End of help on this topic&gt;
32428 </BODY>
32429 </HTML>
32430 ====== h_config_disable_password_cmd =====
32431 <HTML>
32432 <HEAD>
32433 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
32434 </HEAD>
32435 <BODY>
32436 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
32438 If set, then the Setup/Newpassword command is disabled.
32440 <UL>   
32441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32442 </UL><P>
32443 &lt;End of help on this topic&gt;
32444 </BODY>
32445 </HTML>
32446 ====== h_config_disable_password_caching =====
32447 <HTML>
32448 <HEAD>
32449 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
32450 </HEAD>
32451 <BODY>
32452 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
32454 Normally, loginname/password combinations are cached in Alpine so that
32455 you do not have to enter the same password more than once in a session.
32456 A disadvantage to this approach is that the password must be stored in
32457 the memory image of the running Alpine in order that it can be re-used.
32458 In the event that Alpine crashes and produces a core dump, and that core
32459 dump is readable by others, the loginname and password could be read
32460 from the core dump.
32462 If this feature is set, then the passwords will not be cached and you
32463 will have to retype the password whenever Alpine needs it.
32464 Even with this feature set there is still some chance that the core
32465 file will contain a password, so care should be taken to make the
32466 core files unreadable.
32468 NOTE: If PASSFILE caching is enabled, this does not disable it.
32469 That is a separate and independent feature.
32470 <UL>   
32471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32472 </UL><P>
32473 &lt;End of help on this topic&gt;
32474 </BODY>
32475 </HTML>
32476 ====== h_config_disable_kb_lock =====
32477 <HTML>
32478 <HEAD>
32479 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
32480 </HEAD>
32481 <BODY>
32482 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
32484 If set, then the Keyboard Lock command is removed from the MAIN MENU.
32486 <UL>   
32487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32488 </UL><P>
32489 &lt;End of help on this topic&gt;
32490 </BODY>
32491 </HTML>
32492 ====== h_config_disable_config_cmd =====
32493 <HTML>
32494 <HEAD>
32495 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
32496 </HEAD>
32497 <BODY>
32498 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
32500 If set, then the Setup/Config screen is disabled.
32502 <UL>   
32503 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32504 </UL><P>
32505 &lt;End of help on this topic&gt;
32506 </BODY>
32507 </HTML>
32508 ====== h_config_allow_chg_from =====
32509 <HTML>
32510 <HEAD>
32511 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
32512 </HEAD>
32513 <BODY>
32514 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
32516 This feature affects Alpine's handling of the &quot;From:&quot; header field
32517 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
32518 option.
32520 If this feature is set then the From line can be changed just like
32521 all the other header fields that can be changed.
32522 This feature defaults to <EM>ON</EM>.
32524 Even with this feature turned ON (the default) you will not be able 
32525 to change the From header unless you add it to your list of
32526 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
32527 You may also want to change the
32528 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
32529 if you want the From header to always show up in the composer without
32530 having to type the Rich Headers command first.
32532 Note that many sites restrict the use of this feature in order to
32533 reduce the chance of falsified addresses and misdirected mail.
32534 If you want to change the value of what gets included in the From header
32535 in messages you send
32536 look <A HREF="h_config_change_your_from">here</A> for a description.
32538 <UL>   
32539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32540 </UL><P>
32541 &lt;End of help on this topic&gt;
32542 </BODY>
32543 </HTML>
32544 ====== h_config_disable_collate =====
32545 <HTML>
32546 <HEAD>
32547 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
32548 </HEAD>
32549 <BODY>
32550 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
32552 This is a hard to understand feature that should only be used in rare cases.
32553 Normally, the C function call
32555 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
32557 is used by Alpine.
32558 If you want to try turning it off,
32559 setting this feature will turn it off.
32560 This part of the locale has to do with the sort order
32561 of characters in your locale.
32563 <UL>   
32564 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32565 </UL><P>
32566 &lt;End of help on this topic&gt;
32567 </BODY>
32568 </HTML>
32569 ====== h_config_quell_attach_extra_prompt =====
32570 <HTML>
32571 <HEAD>
32572 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
32573 </HEAD>
32574 <BODY>
32575 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
32577 By default, when you attempt to view an attachment externally
32578 from the &quot;Attachment View&quot; screen, you are asked if you
32579 really want to view the selected attachment.
32582 If this feature is set, you will <B>not</B> be prompted to confirm
32583 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
32584 prompt. This feature was added for those wanting to preserve that
32585 behavior (along with 
32586 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
32589 <UL>   
32590 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32591 </UL><P>
32592 &lt;End of help on this topic&gt;
32593 </BODY>
32594 </HTML>
32595 ====== h_config_quell_attach_ext_warn =====
32596 <HTML>
32597 <HEAD>
32598 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
32599 </HEAD>
32600 <BODY>
32601 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
32604 This feature suppresses the extra warning you can get when trying
32605 to view an attachment for which there is no mime-type match.  Turning
32606 on this feature will just run the program according to extension
32607 instead of first warning the user that it will run according to the
32608 file's extension.
32610 This feature can be used along side 
32611 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
32612 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
32614 <UL>   
32615 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32616 </UL><P>
32617 &lt;End of help on this topic&gt;
32618 </BODY>
32619 </HTML>
32620 ====== h_config_mailcap_params =====
32621 <HTML>
32622 <HEAD>
32623 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
32624 </HEAD>
32625 <BODY>
32626 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
32628 If set, this will allow mailcap named parameter substitution to occur
32629 in mailcap entries.
32630 By default, this is turned off to prevent security problems that may occur
32631 with some incorrect mailcap configurations.
32632 For more information, see RFC1524 and look for "named parameters" in the
32633 text of the RFC.
32635 <UL>   
32636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32637 </UL><P>
32638 &lt;End of help on this topic&gt;
32639 </BODY>
32640 </HTML>
32641 ====== h_config_disable_shared =====
32642 <HTML>
32643 <HEAD>
32644 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
32645 </HEAD>
32646 <BODY>
32647 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
32649 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
32650 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
32651 will be disabled.
32652 The reason this feature exists is because there are some implementations
32653 of system password lookup routines that are very slow when presented with
32654 a long loginname that does not exist.
32655 This feature could be set to prevent the delay at startup time when the
32656 names above are searched for in the password file.
32658 <UL>   
32659 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32660 </UL><P>
32661 &lt;End of help on this topic&gt;
32662 </BODY>
32663 </HTML>
32664 ====== h_config_hide_nntp_path =====
32665 <HTML>
32666 <HEAD>
32667 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
32668 </HEAD>
32669 <BODY>
32670 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
32672 Normally the Path header that Alpine generates when posting to a newsgroup
32673 contains the name of the computer from which the message is being sent and
32674 the user name.
32675 Some believe that this information is used by spammers.
32676 If this feature is set, that information will be replaced with the text
32678 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
32680 instead.
32682 It should be noted that many servers being connected to will still reveal
32683 the information that this feature attempts to protect.
32685 <UL>   
32686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32687 </UL><P>
32688 &lt;End of help on this topic&gt;
32689 </BODY>
32690 </HTML>
32691 ====== h_config_no_bezerk_zone =====
32692 <HTML>
32693 <HEAD>
32694 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
32695 </HEAD>
32696 <BODY>
32697 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
32699 POSIX mandates a timezone in UNIX mailbox format folder delimiters
32700 (the line that begins with From <SPACE>).
32701 Some versions of Berkeley mail have trouble with this, and don't recognize
32702 the line as a message delimiter.
32703 If this feature is set, the timezone will be left off the delimiter line.
32705 <UL>   
32706 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32707 </UL><P>
32708 &lt;End of help on this topic&gt;
32709 </BODY>
32710 </HTML>
32711 ====== h_config_quell_domain_warn =====
32712 <HTML>
32713 <HEAD>
32714 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
32715 </HEAD>
32716 <BODY>
32717 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
32719 When your configuration is set up so that your domain name contains no dots,
32720 it is usually a configuration error.
32721 By default, Alpine will warn you about this when you start it up.
32722 You will see a warning message that looks like
32725 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
32728 If this feature is set, the warning is turned off.
32730 <UL>   
32731 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32732 </UL><P>
32733 &lt;End of help on this topic&gt;
32734 </BODY>
32735 </HTML>
32736 ====== h_config_quell_imap_env =====
32737 <HTML>
32738 <HEAD>
32739 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
32740 </HEAD>
32741 <BODY>
32742 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
32744 In the MESSAGE INDEX screen, if the open folder is being accessed
32745 using IMAP, Alpine normally tries to paint the index lines on the screen
32746 as soon as the information arrives from the IMAP server.
32747 This means that the index information makes it onto the screen more quickly
32748 than it otherwise would.
32749 This sometimes results in behavior that bothers some users.
32750 For example, when paging to a new page of the index, it may be possible for
32751 the lines to be painted on the screen in a random order, rather than from
32752 top to bottom.
32755 Setting this feature causes Alpine to wait for all of the information
32756 to be gathered before it paints the index screen.
32757 Once it collects all of the information, the screen will be painted quickly
32758 from top to bottom.
32760 <UL>   
32761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32762 </UL><P>
32763 &lt;End of help on this topic&gt;
32764 </BODY>
32765 </HTML>
32766 ====== h_config_quell_news_env =====
32767 <HTML>
32768 <HEAD>
32769 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
32770 </HEAD>
32771 <BODY>
32772 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
32774 In the MESSAGE INDEX screen, if the open folder is being accessed
32775 using NNTP (News), Alpine normally tries to paint the index lines on the screen
32776 as soon as the information arrives from the NNTP server.
32777 This means that the index information makes it onto the screen more quickly
32778 than it otherwise would.
32779 This sometimes results in behavior that bothers some users.
32780 For example, when paging to a new page of the index, it may be possible for
32781 the lines to be painted on the screen in a random order, rather than from
32782 top to bottom.
32785 Setting this feature causes Alpine to wait for all of the information
32786 to be gathered before it paints the index screen.
32787 Once it collects all of the information, the screen will be painted quickly
32788 from top to bottom.
32790 <UL>   
32791 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32792 </UL><P>
32793 &lt;End of help on this topic&gt;
32794 </BODY>
32795 </HTML>
32796 ====== h_config_quell_content_id =====
32797 <HTML>
32798 <HEAD>
32799 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
32800 </HEAD>
32801 <BODY>
32802 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
32804 This feature changes the behavior of Alpine when sending messages.
32805 It is intended to work around a bug in Microsoft's Outlook XP mail user
32806 agent.
32807 As of this writing, Microsoft has acknowledged the bug but
32808 has not added it to the Knowledge Base.
32809 We have been told that there will be a post-SP1 hotfix for Outlook XP.
32810 This particular bug has bug fix number OfficeQFE:4781.
32811 The nature of the bug is that messages with attachments that
32812 contain a Content-ID header (which standard Alpine attachments do)
32813 do not show the attachment indicator (a paperclip) when viewed with
32814 Outlook XP.
32815 So the user has no indication that the message contains an attachment.
32818 If this feature is set then Alpine will remove most Content-ID headers
32819 before sending a message.
32820 If an attachment is of type MESSAGE, then the existing Content-ID headers
32821 inside the message will be left intact.
32822 This would only happen with Alpine if a message was forwarded as an attachment
32823 or if a message with a message attached was forwarded.
32824 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
32825 the Content-ID headers of the alternative parts will not be removed.
32828 Because the Content-ID header is a standard part of MIME it is possible
32829 that setting this feature will break something.
32830 For example, if an attachment has a Content-ID header that is necessary
32831 for the correct functioning of that attachment, it is possible that Alpine
32832 may remove that header when the attachment is forwarded.
32833 However, it seems fairly safe at this time.
32836 <UL>   
32837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32838 </UL><P>
32839 &lt;End of help on this topic&gt;
32840 </BODY>
32841 </HTML>
32842 ====== h_config_winpos_in_config =====
32843 <HTML>
32844 <HEAD>
32845 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
32846 </HEAD>
32847 <BODY>
32848 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
32850 PC-Alpine only.
32853 Normally, PC-Alpine will store its window size and position in the
32854 Windows Registry.
32855 This is convenient if you want to use the same remote
32856 configuration from more than one PC.
32857 If you use multiple configuration files to start PC-Alpine, you may want
32858 to store the window size and position in the configuration file instead
32859 of in the Registry.
32860 Setting this feature causes the value to be stored in 
32861 <A HREF="h_config_window_position">Window-Position</A>.
32864 <UL>   
32865 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32866 </UL><P>
32867 &lt;End of help on this topic&gt;
32868 </BODY>
32869 </HTML>
32870 ====== h_config_quell_ssl_largeblocks =====
32871 <HTML>
32872 <HEAD>
32873 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
32874 </HEAD>
32875 <BODY>
32876 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
32878 PC-Alpine only.
32880 This feature changes the behavior of fetching messages
32881 and attachments so that the message data is fetched in chunks no larger
32882 than 12K bytes.
32883 This works around a bug in Microsoft's SSL/TLS support.
32884 Some versions of Microsoft SSL are not able to read full-sized (16K)
32885 SSL/TLS packets.
32886 Some servers will send such packets and this will
32887 cause PC-Alpine to crash with the error
32890 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
32893 Microsoft is aware of the problem and has developed a hotfix for it, it is
32894 discussed in article 300562 in the Microsoft Knowledge Base.
32896 <UL>   
32897 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32898 </UL><P>
32899 &lt;End of help on this topic&gt;
32900 </BODY>
32901 </HTML>
32902 ====== h_config_quell_partial =====
32903 <HTML>
32904 <HEAD>
32905 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
32906 </HEAD>
32907 <BODY>
32908 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
32910 Partial fetching is a feature of the IMAP protocol.
32911 By default, Alpine
32912 will use partial fetching when copying the contents of a message or attachment
32913 from the IMAP server to Alpine.
32914 This means that the fetch will be done in many
32915 small chunks instead of one big chunk. The main benefit of this approach is
32916 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
32917 to stop the fetch early. In some cases partial fetching may cause a performance
32918 problem so that the fetching of data takes significantly longer when partial
32919 fetching is used. Turning on this feature will turn off partial fetching.
32921 <UL>   
32922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32923 </UL><P>
32924 &lt;End of help on this topic&gt;
32925 </BODY>
32926 </HTML>
32927 ====== h_config_quell_personal_name_prompt =====
32928 <HTML>
32929 <HEAD>
32930 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
32931 </HEAD>
32932 <BODY>
32933 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
32935 PC-Alpine only.  This feature quells the prompting for a 
32936 <A HREF="h_config_pers_name">personal name</A>.  This
32937 prompt normally happens before composing a message, and only happens when
32938 there is no personal name already set.
32940 <UL>   
32941 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32942 </UL><P>
32943 &lt;End of help on this topic&gt;
32944 </BODY>
32945 </HTML>
32946 ====== h_config_quell_user_id_prompt =====
32947 <HTML>
32948 <HEAD>
32949 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
32950 </HEAD>
32951 <BODY>
32952 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
32954 PC-Alpine only.  This feature quells the prompting for a 
32955 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
32956 if the information can be obtained from the login name used
32957 to open the INBOX.  Normally, this prompt happens before composing
32958 a message, and only happens when there is no user-id already set
32959 in the configuration.
32961 With this feature set, composing a message is only possible after
32962 establishing a connection to the INBOX.
32964 <UL>   
32965 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32966 </UL><P>
32967 &lt;End of help on this topic&gt;
32968 </BODY>
32969 </HTML>
32970 ====== h_config_save_aggregates =====
32971 <HTML>
32972 <HEAD>
32973 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
32974 </HEAD>
32975 <BODY>
32976 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
32978 This feature will optimize an aggregate copy operation, if
32979 possible, by issuing a single IMAP <EM>COPY</EM> command with a
32980 list of the messages to be copied.
32981 This feature is set by default.
32982 This may reduce network traffic and elapsed time for the Save.
32983 <EM>However, many IMAP servers (including the UW IMAP server) do
32984 not preserve the order of messages when this optimization is applied.</EM>
32985 If this feature is not set, 
32986 Alpine will copy each message individually and the order of the messages
32987 will be preserved.
32989 <UL>   
32990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32991 </UL><P>
32992 &lt;End of help on this topic&gt;
32993 </BODY>
32994 </HTML>
32995 ====== h_config_use_system_translation =====
32996 <HTML>
32997 <HEAD>
32998 <TITLE>FEATURE: Use System Translation</TITLE>
32999 </HEAD>
33000 <BODY>
33001 <H1>FEATURE: Use System Translation</H1>
33003 UNIX Alpine only.
33005 Alpine normally uses its own internal software to convert between the multi-byte
33006 representation of characters and the Unicode representation of those
33007 same characters.
33008 It converts from the multi-byte characters your keyboard produces to Unicode,
33009 and from Unicode to the multi-byte characters your display expects.
33010 Alpine also uses its own internal software to decide how much space on
33011 the screen a particular Unicode character will occupy.
33014 Setting this feature tells Alpine to use the system-supplied routines to
33015 perform these tasks instead.
33016 In particular there are three tasks and three system routines that will
33017 be used for these tasks.
33020 To convert from multi-byte to Unicode the routine
33023 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33026 is used.
33027 To convert from Unicode to multi-byte the routine
33030 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33033 is used.
33034 And to find the screen width a particular Unicode character will
33035 occupy the routine used is
33038 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33041 This feature has been only lightly tested.
33042 The internal routines should normally be used unless you run into
33043 a problem that you think may be solved by using the system routines.
33044 Note that your environment needs to be set up for these
33045 routines to work correctly.
33046 In particular, the LANG or LC_CTYPE variable in your environment will
33047 need to be set.
33050 <UL>   
33051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33052 </UL><P>
33053 &lt;End of help on this topic&gt;
33054 </BODY>
33055 </HTML>
33056 ====== h_config_suspend_spawns =====
33057 <HTML>
33058 <HEAD>
33059 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33060 </HEAD>
33061 <BODY>
33062 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33064 This feature affects Alpine's behavior when process suspension is enabled
33065 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33066 temporarily interact with the operating system command &quot;shell&quot; 
33067 without
33068 quitting Alpine, and then subsequently resume the still-active Alpine session.
33071 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33072 is set and subsequently the Ctrl-Z key
33073 is pressed, Alpine will normally suspend itself and return temporary control
33074 to Alpine's parent shell process.  However, if this feature is set, Alpine
33075 will instead create an inferior subshell process.  This is useful when the
33076 parent process is not intended to be used interactively.  Examples include
33077 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33078 or via a menu system.<P>
33080 Note that one typically resumes a suspended Alpine by entering the Unix
33081 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33082 enter the &quot;exit&quot; command instead.
33084 <UL>   
33085 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33086 </UL><P>
33087 &lt;End of help on this topic&gt;
33088 </BODY>
33089 </HTML>
33090 ====== h_config_8bit_smtp =====
33091 <HTML>
33092 <HEAD>
33093 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33094 </HEAD>
33095 <BODY>
33096 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33098 This feature affects Alpine's behavior when sending mail.
33099 By default, this feature is set.
33100 Internet standards
33101 require that all electronic mail messages traversing the global Internet
33102 consist of 7bit ASCII characters unless a pair of cooperating mail 
33103 transfer agents explicitly agree to allow 8bit messages.  In general, 
33104 then, exchanging messages in non-ASCII characters requires MIME encoding.
33106 However, there are now Internet standards that allow for unencoded 8bit
33107 exchange of messages between cooperating systems.  When this feature is set
33108 Alpine will try to negotiate unencoded 8bit transmission during the
33109 sending process.  Should the negotiation fail, Alpine will fall back to its
33110 ordinary encoding rules. 
33112 Note, this feature relies on your system's mail transport agent or
33113 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33114 having the negotiation mechanism introduced in
33115 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33116 &quot;8BITMIME&quot;. 
33118 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33119 it is possible that this feature might cause problems for some servers. 
33120 <P><UL>
33121 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33122 </UL>
33123 <P>&lt;End of help on this topic&gt;
33124 </BODY>
33125 </HTML>
33126 ====== h_config_8bit_nntp =====
33127 <HTML>
33128 <HEAD>
33129 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33130 </HEAD>
33131 <BODY>
33132 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33134 This feature affects Alpine's behavior when posting news.  
33138 The Internet standard for exchanging USENET news messages (RFC-1036)
33139 specifies that USENET messages should conform to Internet mail standards
33140 and contain only 7bit characters, but much of the news transport software
33141 in use today is capable of successfully sending messages containing 8bit
33142 characters.  Hence, many people believe that it is appropriate to send 8bit
33143 news messages without any MIME encoding.
33147 Moreover, there is no Internet standard for explicitly negotiating 8bit
33148 transfer, as there is for Internet email.  Therefore, Alpine provides the
33149 option of posting unencoded 8bit news messages, though not as the default.
33150 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33151 postings that contain 8bit characters. 
33155 Note, articles may cross a path or pass through news transport software
33156 that is unsafe or even hostile to 8bit characters.  At best this will only
33157 cause the posting to become garbled.  The safest way to transmit 8bit
33158 characters is to leave Alpine's MIME encoding turned on, but recipients
33159 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33160 messages.
33162 &lt;End of help on this topic&gt;
33163 </BODY>
33164 </HTML>
33165 ====== h_config_mark_for_cc =====
33166 <HTML>
33167 <HEAD>
33168 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33169 </HEAD>
33170 <BODY>
33171 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33173 This feature affects Alpine's MESSAGE INDEX display.
33174 By default, a '+' is displayed in the first column if the
33175 message is addressed directly to you.
33176 When this feature is set and the message is not addressed to you, then a
33177 '-' character is displayed if the message is instead Cc'd directly
33178 to you.
33181 <UL>   
33182 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33183 </UL><P>
33184 &lt;End of help on this topic&gt;
33185 </BODY>
33186 </HTML>
33187 ====== h_config_tab_uses_unseen =====
33188 <HTML>
33189 <HEAD>
33190 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33191 </HEAD>
33192 <BODY>
33193 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33195 This feature affects Alpine's behavior when using the TAB
33196 <A HREF="h_common_nextnew">NextNew Command</A>
33197 to move from one folder to the next.
33198 Alpine's usual behavior is to search for folders
33199 with <EM>Recent</EM> messages in them.
33200 Recent messages are messages that have arrived since the last time the
33201 folder was opened.
33204 Setting this feature causes Alpine to search for <EM>Unseen</EM>
33205 messages instead of Recent messages.
33206 Unseen messages remain Unseen until you view them (or flag then as Seen with
33207 the <A HREF="h_common_flag">Flag Command</A>).
33208 Setting this feature allows you to locate messages you have not read
33209 instead of only recently received messages.
33210 When this feature is set, the feature
33211 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
33212 will have no effect, so the checking may be slower.
33215 Another reason why you might want to use this feature is that Alpine sometimes
33216 opens folders implicitly behind the scenes, and this clears the
33217 Recent status of all messages in the folder.
33218 One example where this happens is when Saving or filtering a
33219 message to another folder.
33220 If that message has some <A HREF="h_config_keywords">keywords</A>
33221 set, then because of some shortcomings
33222 in the IMAP specification, the best way to ensure that those keywords are
33223 still set in the saved copy of the message is to open the folder and
33224 set the keywords explicitly.
33225 Because this clears the Recent status of all messages in that folder the
33226 folder will not be found by the NextNew command unless this feature is set.
33229 &lt;End of help on this topic&gt;
33230 </BODY>
33231 </HTML>
33232 ====== h_config_tab_new_only =====
33233 <HTML>
33234 <HEAD>
33235 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
33236 </HEAD>
33237 <BODY>
33238 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
33240 This feature affects Alpine's behavior when using the TAB key to move from
33241 one message to the next.  Alpine's usual behavior is to select the next
33242 unread message or message flagged as "Important".
33246 Setting this feature causes Alpine to skip the messages flagged as important,
33247 and select unread messages exclusively.  Tab behavior when there are no
33248 new messages left to select remains unchanged.
33250 &lt;End of help on this topic&gt;
33251 </BODY>
33252 </HTML>
33253 ====== h_config_warn_if_subj_blank =====
33254 <HTML>
33255 <HEAD>
33256 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
33257 </HEAD>
33258 <BODY>
33259 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
33261 This feature affects Alpine's behavior when you send a message being
33262 composed.
33263 If this option is set, Alpine will check to see if the message about to be sent
33264 has a subject or not.
33265 If not, you will be asked if you want to send the message anyway.
33268 <UL>   
33269 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33270 </UL><P>
33271 &lt;End of help on this topic&gt;
33272 </BODY>
33273 </HTML>
33274 ====== h_config_warn_if_fcc_blank =====
33275 <HTML>
33276 <HEAD>
33277 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
33278 </HEAD>
33279 <BODY>
33280 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
33282 This feature affects Alpine's behavior when you send a message being
33283 composed.
33284 If this option is set, Alpine will check to see if the message about to be sent
33285 has an Fcc or not.
33286 If not, you will be asked if you want to send the message anyway.
33289 <UL>   
33290 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33291 </UL><P>
33292 &lt;End of help on this topic&gt;
33293 </BODY>
33294 </HTML>
33295 ====== h_config_warn_if_no_to_or_cc =====
33296 <HTML>
33297 <HEAD>
33298 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
33299 </HEAD>
33300 <BODY>
33301 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
33303 This feature affects Alpine's behavior when you send a message being
33304 composed.
33305 If this option is set, Alpine will check to see if the message about to be sent
33306 has either a To address, a Cc address, or a Newsgroup.
33307 If none of these is set,
33308 you will be asked if you want to send the message anyway.
33311 This feature is closely related to
33312 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
33313 Alpine will normally ask if you want to copy a message only to the Fcc.
33314 This feature also applies to cases where there is a Bcc but still no To, Cc,
33315 or Newsgroup.
33316 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
33317 message with only an Fcc, then you won't be asked about sending with
33318 a blank To and Cc and Newsgroups header even if this feature is set.
33319 Similarly, if you have already been asked if you want to send to the Fcc
33320 only and you have answered Yes, then you won't be asked again about sending with
33321 blank To, Cc, and Newsgroups headers even if this feature is set.
33324 <UL>   
33325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33326 </UL><P>
33327 &lt;End of help on this topic&gt;
33328 </BODY>
33329 </HTML>
33330 ====== h_config_quell_dead_letter =====
33331 <HTML>
33332 <HEAD>
33333 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
33334 </HEAD>
33335 <BODY>
33336 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
33338 This feature affects Alpine's behavior when you cancel a message being
33339 composed.  Alpine's usual behavior is to write the canceled message to
33340 a file named 
33341 <!--chtml if pinemode="os_windows"-->
33342 &quot;DEADLETR&quot;,
33343 <!--chtml else-->
33344 &quot;dead.letter&quot; in your home directory,
33345 <!--chtml endif-->
33346 overwriting any previous message. Under
33347 some conditions (some routine), this can introduce a noticeable delay.
33348 Setting this feature will cause Alpine NOT to write canceled compositions
33349 into the file.
33351 NOTE: Enabling this feature means NO record of canceled messages is
33352 maintained.
33354 This feature affects the newer option
33355 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
33356 number of dead letter files to keep around.
33357 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
33359 <UL>   
33360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33361 </UL><P>
33362 &lt;End of help on this topic&gt;
33363 </BODY>
33364 </HTML>
33365 ====== h_config_quell_beeps =====
33366 <HTML>
33367 <HEAD>
33368 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
33369 </HEAD>
33370 <BODY>
33371 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
33373 This feature affects Alpine's behavior when it displays status message
33374 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
33375 will not affect the display of such messages, but will cause those that
33376 emit a beep to become silent.
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_suppress_user_agent =====
33386 <HTML>
33387 <HEAD>
33388 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
33389 </HEAD>
33390 <BODY>
33391 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
33393 If this feature is set then Alpine will not generate a
33394 <CODE>User-Agent</CODE> header in outgoing messages.
33396 <UL>   
33397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33398 </UL><P>
33399 &lt;End of help on this topic&gt;
33400 </BODY>
33401 </HTML>
33402 ====== h_config_quell_lock_failure_warnings =====
33403 <HTML>
33404 <HEAD>
33405 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
33406 </HEAD>
33407 <BODY>
33408 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
33410 This feature affects Alpine's behavior when it encounters a problem
33411 acquiring a mail folder lock.  Typically, a secondary file associated
33412 with the mail folder being opened is created as part of the locking
33413 process.  On some systems, such file creation has been administratively
33414 precluded by the system configuration.
33416 Alpine issues a warning when such failures occur, which can become bothersome
33417 if the system is configured to disallow such actions.  Setting this
33418 feature causes Alpine to remain silent when this part of lock creation fails.
33420 WARNING: systems that have been configured in a way that precludes locking
33421 introduce some risk of mail folder corruption when more than one program
33422 attempts to modify the mail folder.  This is most likely to occur to one's
33423 INBOX or other incoming message folder. 
33425 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
33427 <UL>   
33428 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33429 </UL><P>
33430 &lt;End of help on this topic&gt;
33431 </BODY>
33432 </HTML>
33433 ====== h_config_enable_role_take ======
33434 <HTML>
33435 <HEAD>
33436 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
33437 </HEAD>
33438 <BODY>
33439 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
33441 Normally, the Take command takes addresses from a message and helps you
33442 put them into your Address Book.
33443 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
33444 you may find it useful
33445 to be able to Take information from a message's headers and put it into
33446 a new Rule.
33447 When this feature is set, you will be given an extra prompt that gives
33448 you the choice to Take into the Address Book or Take into a rule.
33449 <P><UL>
33450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33451 </UL>
33453 &lt;End of help on this topic&gt;
33454 </BODY>
33455 </HTML>
33456 ====== h_config_enable_take_export ======
33457 <HTML>
33458 <HEAD>
33459 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
33460 </HEAD>
33461 <BODY>
33462 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
33464 Normally, the Take command takes addresses from a message and helps you
33465 put them into your Address Book.
33466 When this feature is set, you will be given an extra prompt that gives you
33467 the choice to Take addresses into a file instead of your Address
33468 Book.
33469 Only the user@domain_name part of the address is put in the file.
33470 <P><UL>
33471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33472 </UL>
33474 &lt;End of help on this topic&gt;
33475 </BODY>
33476 </HTML>
33477 ====== h_config_quell_folder_internal_msg ======
33478 <HTML>
33479 <HEAD>
33480 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
33481 </HEAD>
33482 <BODY>
33483 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
33485 This feature determines whether or not Alpine will create 
33486 &quot;pseudo messages&quot; in folders that are in standard Unix or 
33487 MMDF format. <P> 
33489 Alpine will normally create these pseudo messages when they are not already
33490 present in a standard Unix or MMDF folder.  Their purpose is to record
33491 certain mailbox state data needed for correct IMAP and POP server
33492 operation, and also for Alpine to be able to mark messages as Answered when
33493 the Reply has been postponed.<P>
33495 Sites that do not use IMAP/POP for remote mail access, and that need to
33496 support mail tools that are adversely affected by the presence of the
33497 pseudo-messages (e.g. some mail notification tools) may enable this
33498 feature to tell Alpine not to create them.  Note that Alpine's 
33499 &quot;Answered&quot; flag
33500 capability will be adversely affected if this is done.<P>
33502 Note too that, even if this feature is enabled, Alpine will not remove
33503 pseudo-messages when it encounters them (e.g. those created by UW's imapd
33504 or ipopd servers.) This feature has no effect on folders that are not in
33505 standard Unix or MMDF format, as pseudo-messages are not needed in the
33506 other formats to record mailbox state information.
33507 <P><UL>
33508 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33509 </UL>
33511 &lt;End of help on this topic&gt;
33512 </BODY>
33513 </HTML>
33514 ====== h_config_mulnews_as_typed ======
33515 <HTML>
33516 <HEAD>
33517 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
33518 </HEAD>
33519 <BODY>
33520 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
33522 This feature will be of little use to most users.
33523 It has no effect unless the feature
33524 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
33525 is set.
33527 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
33528 then the setting of this feature may have an effect on the names of the
33529 newsrc files used.
33530 Normally, the name of the news server will be canonicalized before it is
33531 used in the newsrc file name.
33532 For example, if you type the news server name
33535 <CENTER><SAMP>servername</SAMP></CENTER>
33538 it is likely that the canonical name will be something like
33541 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33544 Or it may be the case that
33547 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33550 is really an alias (a DNS CNAME) for
33553 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
33556 If this feature is not set, then the canonicalized names will be used.
33557 If this feature is set, then the name you typed in (or put in your
33558 configuration) will be used.
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_empty_dirs ======
33568 <HTML>
33569 <HEAD>
33570 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
33571 </HEAD>
33572 <BODY>
33573 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
33575 This feature causes Alpine to remove from the display any directories
33576 that do not contain at least one file or directory.  This can be useful
33577 to prevent overly cluttered folder lists when a collection is stored on
33578 a server that treats all names as both a folder and a directory.
33581 Note, enabling this feature can cause surprising behavior!  For example,
33582 you can still use Add to create a directory, but unless you immediately
33583 enter that directory and create a folder, that newly created directory
33584 may not be displayed next time you enter the folder list.
33587 The description above is not quite correct.
33588 Only directories which potentially may hold messages are hidden if empty.
33589 That is, a directory which is really just a directory and is not selectable
33590 as a folder will not be hidden.
33591 Such directories can occur on servers that treat most names as both a folder
33592 and a directory.
33593 These directories are typically created implicitly when a folder is created
33594 inside a directory that does not yet exist.
33597 <UL>   
33598 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33599 </UL><P>
33600 &lt;End of help on this topic&gt;
33601 </BODY>
33602 </HTML>
33603 ====== h_config_termcap_wins =====
33604 <HTML>
33605 <HEAD>
33606 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
33607 </HEAD>
33608 <BODY>
33609 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
33611 This feature may affect Alpine's low-level input routines.  Termcap (or
33612 terminfo, depending on how your copy of Alpine was compiled and linked)
33613 is the name of the database that describes terminal capabilities.  In
33614 particular, it describes the sequences of characters that various keys
33615 will emit.
33618 An example would be the Up Arrow key on the keyboard.  Up
33619 Arrow is not a distinct character on most Unix systems.  When you press
33620 the Up Arrow key a short sequence of characters are produced.  This
33621 sequence is supposed to be described in the termcap database by the
33622 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
33623 are using terminfo instead of termcap).
33626 By default, Alpine defines some terminal
33627 escape sequences that are commonly used.  For example, the sequence
33628 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
33629 &quot;ESC&nbsp;[&nbsp;A&quot;
33630 is also recognized as an Up Arrow key.  These are chosen because common
33631 terminals like VT100's or ANSI standard terminals produce these
33632 sequences when you press the Up Arrow key.
33635 If your system's termcap
33636 (terminfo) database assigns some other function to the sequence
33637 &quot;ESC&nbsp;O&nbsp;A&quot;
33638 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
33639 database assigns a sequence that doesn't begin with an escape
33640 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
33641 This usually works fine
33642 because most terminals emit the escape sequences that Alpine has defined
33643 by default.  We have also found that it is usually better to have these
33644 defaults take precedence over the definitions contained in the database
33645 because the defaults are more likely to be correct than the database.
33648 There are some terminals where this breaks down.  If you want Alpine to
33649 believe the definitions given in your termcap (terminfo) database in
33650 preference to the defaults the Alpine itself sets up, then you may turn
33651 this feature on.  Then, sequences of characters that are defined in
33652 both termcap (terminfo) and in Alpine's set of defaults will be
33653 interpreted the way that termcap (terminfo) says they should be
33654 interpreted.  Also, if your terminal capabilities database assigns a
33655 sequence that doesn't begin with escape, it will not be ignored.
33658 <UL>   
33659 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33660 </UL><P>
33661 &lt;End of help on this topic&gt;
33662 </BODY>
33663 </HTML>
33664 ====== h_config_cruise_mode =====
33665 <HTML>
33666 <HEAD>
33667 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
33668 </HEAD>
33669 <BODY>
33670 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
33672 This feature affects Alpine's behavior when you hit the
33673 &quot;Space&nbsp;Bar&quot; at
33674 the end of a displayed message.  Typically, Alpine complains that the end
33675 of the text has already been reached.  Setting this feature causes such
33676 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
33677 taking you to the next &quot;interesting&quot; message,
33678 or scanning ahead to the 
33679 next incoming folder with &quot;interesting&quot; messages.
33682 <UL>   
33683 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33684 </UL><P>
33685 &lt;End of help on this topic&gt;
33686 </BODY>
33687 </HTML>
33688 ====== h_config_cruise_mode_delete =====
33689 <HTML>
33690 <HEAD>
33691 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
33692 </HEAD>
33693 <BODY>
33694 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
33696 This feature modifies the behavior of Alpine's 
33697 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
33698 Setting this feature causes Alpine to implicitly delete read
33699 messages when it moves on to display the next &quot;interesting&quot; message.
33701 NOTE: Beware when enabling this feature AND the 
33702 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
33703 feature.
33705 <UL>   
33706 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33707 </UL><P>
33708 &lt;End of help on this topic&gt;
33709 </BODY>
33710 </HTML>
33711 ====== h_config_slash_coll_entire =====
33712 <HTML>
33713 <HEAD>
33714 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
33715 </HEAD>
33716 <BODY>
33717 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
33719 The slash (/) command is available from the MESSAGE INDEX screen when
33720 the folder is sorted by either Threads or OrderedSubject, and the
33721 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
33722 is set to something other than &quot;none&quot;.
33723 Normally, the slash command Collapses or Expands the subthread that
33724 starts at the currently highlighted message, if any.
33725 If this option is set, then the slash command Collapses or Expands the
33726 <EM>entire</EM> current thread instead of just the subthread.
33727 The current thread is simply the top-level thread that contains the
33728 current message.
33731 <UL>   
33732 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33733 </UL><P>
33734 &lt;End of help on this topic&gt;
33735 </BODY>
33736 </HTML>
33737 ====== h_config_color_thrd_import =====
33738 <HTML>
33739 <HEAD>
33740 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
33741 </HEAD>
33742 <BODY>
33743 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
33745 This option affects only the THREAD INDEX screen.
33746 Whether or not you ever see a THREAD INDEX screen depends on the setting
33747 of the configuration option
33748 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
33749 and on the sort order of the index.
33752 If a message within a thread is flagged as Important
33753 and this option is set, then
33754 the entire line in the THREAD INDEX will be colored the color of the
33755 Index-important Symbol, which can be set using the
33756 <A HREF="h_color_setup">Setup Kolor</A> screen.
33759 <UL>   
33760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33761 </UL><P>
33762 &lt;End of help on this topic&gt;
33763 </BODY>
33764 </HTML>
33765 ====== h_config_allow_goto =====
33766 <HTML>
33767 <HEAD>        
33768 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
33769 </HEAD>
33770 <BODY>
33771 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
33773 This feature modifies the behavior of Alpine's file browser.  Setting this
33774 feature causes Alpine to offer the "G Goto" command in the file browser.
33775 That is the default.
33779 The Goto command allows you to explicitly type in the desired directory.
33781 &lt;End of help on this topic&gt;
33782 </BODY></HTML>
33783 ====== h_config_add_ldap =====
33784 <HTML>
33785 <HEAD>
33786 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
33787 </HEAD>
33788 <BODY>
33789 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
33791 If both the Directory option
33792 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
33793 and this feature are set,
33794 then when an implicit directory lookup is done from the
33795 composer you will automatically be prompted to add the result of the
33796 directory lookup to your address book.
33798 <UL>   
33799 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33800 </UL><P>
33801 &lt;End of help on this topic&gt;
33802 </BODY>
33803 </HTML>
33804 ===== h_patterns_compat_behavior =====
33805 <HTML>
33806 <HEAD>
33807 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
33808 </HEAD>
33809 <BODY>
33810 <H1>Rules Behavior Changes in Pine 4.50</H1>
33812 In Alpine, Rules that contain unrecognized elements
33813 are ignored.
33814 In most cases, the unrecognized elements will be something that was
33815 added as a new Rules feature in a later version of Alpine.
33816 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
33817 ignore rules that contained unrecognized elements.
33818 For example, a new element of Rules that was added in Pine 4.50 is
33819 Age interval.
33820 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
33821 all messages older than a week red.
33822 Now, if you run Pine 4.44 using that same configuration file, it will not
33823 recognize the Age interval and so will just ignore it.
33824 That means that all messages will match that rule so all messages will
33825 be colored red when using Pine version 4.44.
33828 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
33829 However, since the behavior still exists in versions prior to Pine 4.50 and
33830 since Filtering is a potentially destructive operation, another measure
33831 was taken to attempt to avoid unintentional Filtering of messages.
33832 The first time that you run Alpine or a Pine that is version 4.50 or greater,
33833 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
33834 will be copied to a new Filters configuration variable
33835 with a different name (&quot;Patterns-Filters2&quot;).
33836 From then on, Alpine will continue to use the new
33837 variable.
33838 Of course, Pine version 4.44 or lower will continue to use the old
33839 variable.
33840 That means that if you are using Alpine
33841 and also using a version of Pine that is older than 4.50, they will not
33842 share the configuration information about Filters.
33843 If you make a change in one version you won't see it in the other version.
33846 Since Scoring can be used to trigger Filtering, the same thing has been
33847 done for Score rules.
33848 The old configuration variable name is (&quot;Patterns-Scores&quot;)
33849 and the new name is (&quot;Patterns-Scores2&quot;).
33850 The same is not true of Role, Indexcolor, and Other rules that are
33851 thought to be less harmful when a mistake is made.
33854 &lt;End of help on this topic&gt;
33855 </BODY>
33856 </HTML>
33857 ======= h_config_filt_opts_sentdate =======
33858 <HTML>
33859 <HEAD>
33860 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
33861 </HEAD>
33862 <BODY>
33863 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
33865 By default, the Age interval of a Pattern uses a message's time of
33866 arrival to compute the age of the message.
33867 If this feature is set, the date in the message's Date header will
33868 be used instead.
33870 &lt;End of help on this topic&gt;
33871 </BODY>
33872 </HTML>
33873 ======= h_config_filt_opts_notdel =======
33874 <HTML>
33875 <HEAD>
33876 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
33877 </HEAD>
33878 <BODY>
33879 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
33881 If this option is set then a message will be moved into the
33882 specified folder only if it is not marked for deletion.
33883 This is useful if you have multiple Alpine sessions running
33884 simultaneously and you don't want messages to be filtered into a
33885 folder more than once.
33886 It is also useful if you want to filter
33887 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
33888 This method is not foolproof.
33889 There may be cases where a message
33890 gets marked deleted and so it is never filtered into the folder.
33891 For example, if you deleted it in another Alpine session or another mail
33892 program that didn't use the filtering rule.
33894 This option has no effect if the Filter Action is not set to Move.
33896 &lt;End of help on this topic&gt;
33897 </BODY>
33898 </HTML>
33899 ======= h_config_filt_opts_nonterm =======
33900 <HTML>
33901 <HEAD>
33902 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
33903 </HEAD>
33904 <BODY>
33905 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
33907 If this option is set then this is a non-terminating rule.
33908 Usually, for each message, Alpine searches through the Filter Rules until
33909 a match is found and then it performs the action associated with that rule.
33910 Rules following the match are not considered.
33911 If this option is set then the search for matches will continue at the next
33912 rule.
33914 If a non-terminating rule matches then the actions associated with
33915 that rule, except for any implied deletion of the message, are performed
33916 before the match for the next rule is checked.
33917 For example, if the non-terminating rule sets the Important status, then that
33918 status will be set when the next rule is considered.
33919 However, if the non-terminating rule Moves the message, the message will
33920 actually be copied instead of copied and deleted so that it is still there
33921 for the next rule.
33922 A moved message is deleted after all the relevant rules have been checked.
33923 The name of the &quot;Move&quot; action is confusing in this case because
33924 a single message can be moved to more than one folder.
33925 It turns the Move into a Copy instead, but it is still followed by a deletion
33926 at the end.
33928 This option may be useful if you want to have a single message filtered to
33929 two different folders because it matches two different Patterns.
33930 For example, suppose you normally filter messages to a particular mailing
33931 list into one folder, and messages addressed directly to you into a second
33932 folder.
33933 If a message is sent to both you and the list (and you can tell that by
33934 looking at the headers of the message) this option may give you a convenient
33935 way to capture a copy to each folder.
33936 (It may also cause you to capture two copies to each folder,
33937 depending on whether your mail system delivers one or two copies of the
33938 message to you and on how the list works.)
33940 &lt;End of help on this topic&gt;
33941 </BODY>
33942 </HTML>
33943 ===== h_mainhelp_smime ======
33944 <HTML>
33945 <HEAD>
33946 <TITLE>S/MIME Overview</TITLE>
33947 </HEAD>
33948 <BODY>
33949 <H1>S/MIME Overview</H1>
33951 S/MIME is a standard for the public key encryption and signing of email.
33952 UNIX Alpine contains a basic implementation of S/MIME based on
33953 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
33954 To check if this version of Alpine supports S/MIME look at
33955 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
33956 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
33958 Some limitations:
33959 <UL>
33960    <LI> There is no PC-Alpine implementation.
33961    <LI> There is no provision for checking for CRLs
33962         (Certificate Revocation Lists) in Alpine.
33963    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
33964    <LI> There is no mechanism available for feeding either an entire incoming
33965         or an entire outgoing message to an external
33966         filter and using that external filter to do S/MIME or PGP processing.
33967    <LI> Because the implementation currently uses OpenSSL, there is only a very
33968         limited integration with the Mac OS Keychain (the storing and access of
33969         public certificates).
33970    <LI> There is no way to view or manipulate the lists of certificates from
33971         within Alpine.
33972 </UL>
33974 The S/MIME configuration screen is reached by going to the Main Menu and typing
33975 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
33978 <H2>S/MIME BASICS</H2>
33980 In order to digitally sign messages you send you must have a public/private key-pair.
33981 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
33982 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
33983 users or a company which provides certificates for its workers.
33984 These certificates are bound to an email address, so the identity being verified is the
33985 email address not a person's name.
33987 Mail is signed by using the sender's private key, which only the owner of the private key
33988 has access to.
33989 The signature is verified using the signer's public key, which anyone can
33990 have access to.
33991 With Alpine, the first time you receive a signed message the public key of the
33992 sender will be stored for future use.
33995 Mail is encrypted using the recipient's public key and decrypted by
33996 the recipient with their private key.
33999 You need a key of your own in order to sign outgoing messages and to have others
34000 encrypt messages sent to you.
34001 You do not need a key of your own to verify signed messages sent by others or to
34002 encrypt messages sent to others.
34004 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34006 By default UNIX Alpine stores the certificates it uses in a directory in your
34007 home directory.
34008 The directory name is
34010 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34012 Within that directory are three subdirectories.
34013 Each of the three subdirectories contains files with PEM-encoded contents,
34014 the default format for OpenSSL.
34015 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34016 The files within that directory have names that are email addresses with the
34017 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34018 An example filename is
34020 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34022 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34023 your private key.
34024 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34025 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34026 Authorities that you want to trust but that aren't contained in the set of system CAs.
34027 Those files may have arbitrary names as long as they end with the
34028 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34030 <H2>HOW TO SIGN AND ENCRYPT</H2>
34032 If you have a certificate you may sign outgoing messages.
34033 After typing the Ctrl-X command to send a message you will see the prompt
34035 <CENTER><SAMP>Send message?</SAMP></CENTER>
34037 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34038 Typing the &quot;G&quot; command will change the prompt to
34040 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34042 Typing the &quot;E&quot; command will change the prompt to
34044 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34046 You may even type both to get
34048 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34051 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34053 The reading of a signed message should not require any special action on
34054 your part.
34055 There should be an editorial addition at the start of the message which
34056 says either
34058 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34062 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34064 If an encrypted message is sent to you the encrypted text will not
34065 be shown.
34066 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34067 you are viewing the message) and supply your passphrase when asked.
34069 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34070 which gives you some information about the certificate used to sign or encrypt the message.
34072 <H2>MISCELLANEOUS</H2>
34074 You may have access to a private certificate in the PKCS12 format,
34075 which would sometimes be in a file with a &quot;.p12&quot; suffix.
34076 The UNIX shell command
34078 <CENTER><SAMP>openssl pkcs12 -in file.p12 -out file.pem</SAMP></CENTER>
34080 may work to convert that from the PKCS12 format to the PEM format.
34081 Then that file could be placed in the &quot;<SAMP>private</SAMP>&quot;
34082 directory with a filename of your email address followed by the
34083 suffix &quot;<SAMP>.key</SAMP>&quot;.
34086 &lt;End of help on this topic&gt;
34087 </BODY>
34088 </HTML>
34089 ====== h_config_smime_pubcertdir =====
34090 <HTML>
34091 <HEAD>
34092 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34093 </HEAD>
34094 <BODY>
34095 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34097 UNIX Alpine only.
34099 If the option
34100 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34101 is set then this option will have no effect.
34103 Normally, Public Certificates for use with S/MIME will be stored in the directory
34104 which is the value of this option.
34105 Those certificates will be stored in PEM format, one certificate per file.
34106 The name of the file for the certificate corresponding to
34108 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34110 should be
34112 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34114 For example, a file for user@example.com would be in the file
34116 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34118 in this directory.
34120 Use the Setup/SMIME screen to modify this variable.
34122 Typically, the public certificates that you have will come from S/MIME signed
34123 messages that are sent to you.
34124 Alpine will extract the public certificate from the signed message and store
34125 it in the certificates directory.
34126 These PEM format public certificates look something like:
34127 <PRE>
34128 -----BEGIN CERTIFICATE-----
34129 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34130 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34131 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34133 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34134 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34135 -----END CERTIFICATE-----
34136 </PRE>
34138 <UL>   
34139 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34140 </UL><P>
34142 <UL>   
34143 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34144 </UL><P>
34145 &lt;End of help on this topic&gt;
34146 </BODY>
34147 </HTML>
34148 ====== h_config_smime_pubcertcon =====
34149 <HTML>
34150 <HEAD>
34151 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34152 </HEAD>
34153 <BODY>
34154 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34156 UNIX Alpine only.
34158 If this option is set it will be used instead of
34159 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34161 This option gives you a way to store certificates remotely on an IMAP server
34162 instead of storing the certificates one per file locally.
34163 In order to do that you just give this option a remote folder name for a folder
34164 which does not yet exist.
34165 The name is similar to the name you might use for a remote configuration file.
34166 A remote folder name might look something like:
34168 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34171 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34172 about the syntax of folder names.
34174 Use the Setup/SMIME screen to modify this variable.
34176 <UL>   
34177 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34178 </UL><P>
34180 <UL>   
34181 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34182 </UL><P>
34183 &lt;End of help on this topic&gt;
34184 </BODY>
34185 </HTML>
34186 ====== h_config_smime_privkeydir =====
34187 <HTML>
34188 <HEAD>
34189 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
34190 </HEAD>
34191 <BODY>
34192 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
34194 UNIX Alpine only.
34196 In order to sign outgoing S/MIME messages you will need a
34197 personal digital ID certificate.
34198 You will usually get such a certificate from a certificate authority such as
34199 Thawte or CAcert.
34200 (In order to encrypt outgoing messages you don't need a personal digital ID, you
34201 need the public certificate of the recipient instead.)
34202 If the option
34203 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
34204 is set then this option will have no effect.
34206 Normally, Private Keys for use with S/MIME will be stored in the directory
34207 which is the value of this option.
34208 Those certificates will be stored in PEM format, one certificate per file.
34209 The name of the file for the certificate corresponding to your
34211 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34213 should be
34215 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
34217 For example, if your address is user@example.com the name of the file would be
34219 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
34221 in this directory.
34223 Use the Setup/SMIME screen to modify this variable.
34225 Typically, the private key that you have will come from a Certificate
34226 Authority.
34227 The private key should be stored in a PEM format file that
34228 looks something like:
34229 <PRE>
34230 -----BEGIN RSA PRIVATE KEY-----
34231 Proc-Type: 4,ENCRYPTED
34232 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
34234 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
34235 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
34236 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
34238 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
34239 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
34240 -----END RSA PRIVATE KEY-----
34241 </PRE>
34243 <UL>   
34244 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34245 </UL><P>
34247 <UL>   
34248 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34249 </UL><P>
34250 &lt;End of help on this topic&gt;
34251 </BODY>
34252 </HTML>
34253 ====== h_config_smime_privkeycon =====
34254 <HTML>
34255 <HEAD>
34256 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
34257 </HEAD>
34258 <BODY>
34259 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
34261 UNIX Alpine only.
34263 If this option is set it will be used instead of
34264 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34266 This option gives you a way to store keys remotely on an IMAP server
34267 instead of storing the keys one per file locally.
34268 In order to do that you just give this option a remote folder name for a folder
34269 which does not yet exist.
34270 The name is similar to the name you might use for a remote configuration file.
34271 A remote folder name might look something like:
34273 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
34276 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34277 about the syntax of folder names.
34279 Use the Setup/SMIME screen to modify this variable.
34281 <UL>   
34282 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34283 </UL><P>
34285 <UL>   
34286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34287 </UL><P>
34288 &lt;End of help on this topic&gt;
34289 </BODY>
34290 </HTML>
34291 ====== h_config_smime_cacertdir =====
34292 <HTML>
34293 <HEAD>
34294 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
34295 </HEAD>
34296 <BODY>
34297 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
34299 UNIX Alpine only.
34301 If the option
34302 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
34303 is set then this option will have no effect.
34305 CACert is a shorthand name for certification authority certificate.
34306 Normally Alpine will use the CACerts that are located in the standard system
34307 location for CACerts.
34308 It may be the case that one of your correspondents has a Digital ID which has
34309 been signed by a certificate authority that is not in the regular set of system certificate
34310 authorities.
34311 You may supplement the system list by adding further certificates of your own.
34312 These should  be stored in the directory
34313 which is the value of this option.
34314 The certificates will be stored in PEM format, one certificate per file.
34315 The names of the files can be anything ending in &quot;.crt&quot;.
34317 Use the Setup/SMIME screen to modify this variable.
34319 These PEM format CA certificates look very similar to your public
34320 certificates for particular email addresses
34321 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
34323 <UL>   
34324 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34325 </UL><P>
34327 <UL>   
34328 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34329 </UL><P>
34330 &lt;End of help on this topic&gt;
34331 </BODY>
34332 </HTML>
34333 ====== h_config_smime_cacertcon =====
34334 <HTML>
34335 <HEAD>
34336 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
34337 </HEAD>
34338 <BODY>
34339 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
34341 UNIX Alpine only.
34343 If this option is set it will be used instead of
34344 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34346 This option gives you a way to store certificates remotely on an IMAP server
34347 instead of storing the certificates one per file locally.
34348 In order to do that you just give this option a remote folder name for a folder
34349 which does not yet exist.
34350 The name is similar to the name you might use for a remote configuration file.
34351 A remote folder name might look something like:
34353 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
34356 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34357 about the syntax of folder names.
34359 Use the Setup/SMIME screen to modify this variable.
34361 <UL>   
34362 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34363 </UL><P>
34365 <UL>   
34366 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34367 </UL><P>
34368 &lt;End of help on this topic&gt;
34369 </BODY>
34370 </HTML>
34371 ========== h_config_smime_sign_by_default ==========
34372 <HTML>
34373 <HEAD>
34374 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
34375 </HEAD>
34376 <BODY>
34377 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
34379 UNIX Alpine only.
34381 This feature only has an effect if your version of Alpine includes
34382 support for S/MIME.
34383 It affects Alpine's behavior when you send a message.
34384 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
34386 Only the default value is affected.
34387 In any case, you may still toggle the Signing option on or off before sending
34388 with the &quot;G Sign&quot; command (provided you have a personal digital ID
34389 certificate).
34391 <UL>   
34392 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34393 </UL><P>
34396 <UL>   
34397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34398 </UL><P>
34399 &lt;End of help on this topic&gt;
34400 </BODY>
34401 </HTML>
34402 ========== h_config_smime_pubcerts_in_keychain ==========
34403 <HTML>
34404 <HEAD>
34405 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
34406 </HEAD>
34407 <BODY>
34408 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
34410 UNIX Alpine only.
34412 If this feature is set the Mac OS X default keychain will be used as the place
34413 to store public certificates instead of a
34414 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34415 or a
34416 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34418 <UL>   
34419 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34420 </UL><P>
34422 <UL>   
34423 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34424 </UL><P>
34425 &lt;End of help on this topic&gt;
34426 </BODY>
34427 </HTML>
34428 ========== h_config_smime_dont_do_smime ==========
34429 <HTML>
34430 <HEAD>
34431 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
34432 </HEAD>
34433 <BODY>
34434 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
34436 UNIX Alpine only.
34438 Setting this feature turns off all of Alpine's S/MIME support.
34439 You might want to set this if you are having trouble due to the S/MIME support.
34441 <UL>   
34442 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34443 </UL><P>
34446 <UL>   
34447 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34448 </UL><P>
34449 &lt;End of help on this topic&gt;
34450 </BODY>
34451 </HTML>
34452 ========== h_config_smime_encrypt_by_default ==========
34453 <HTML>
34454 <HEAD>
34455 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
34456 </HEAD>
34457 <BODY>
34458 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
34460 UNIX Alpine only.
34462 This feature only has an effect if your version of Alpine includes
34463 support for S/MIME.
34464 It affects Alpine's behavior when you send a message.
34465 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
34467 Only the default value is affected.
34468 In any case, you may still toggle the Encrypt option on or off before sending
34469 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
34470 for the recipient).
34472 <UL>   
34473 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34474 </UL><P>
34477 <UL>   
34478 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34479 </UL><P>
34480 &lt;End of help on this topic&gt;
34481 </BODY>
34482 </HTML>
34483 ========== h_config_smime_remember_passphrase ==========
34484 <HTML>
34485 <HEAD>
34486 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
34487 </HEAD>
34488 <BODY>
34489 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
34491 UNIX Alpine only.
34493 This feature only has an effect if your version of Alpine includes
34494 support for S/MIME.
34495 If this option is set, you will only have to enter your passphrase for your private key
34496 once during an Alpine session.
34498 <UL>   
34499 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34500 </UL><P>
34503 <UL>   
34504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34505 </UL><P>
34506 &lt;End of help on this topic&gt;
34507 </BODY>
34508 </HTML>
34509 ====== h_config_smime_transfer_pub_to_con =====
34510 <HTML>
34511 <HEAD>
34512 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
34513 </HEAD>
34514 <BODY>
34515 <H1>S/MIME: Transfer Public Certs to Container</H1>
34517 UNIX Alpine only.
34519 The Transfer command will copy the public certificates in your configured
34520 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34521 to the container in your configured
34522 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34523 This might be useful if you decide to switch from using a cert directory to a cert
34524 container.
34526 Warning: Any previous contents in the container will be lost.
34528 <UL>   
34529 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34530 </UL><P>
34532 <UL>   
34533 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34534 </UL><P>
34535 &lt;End of help on this topic&gt;
34536 </BODY>
34537 </HTML>
34538 ====== h_config_smime_transfer_pub_to_dir =====
34539 <HTML>
34540 <HEAD>
34541 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
34542 </HEAD>
34543 <BODY>
34544 <H1>S/MIME: Transfer Public Certs to Directory</H1>
34546 UNIX Alpine only.
34548 The Transfer command will copy the public certificates in your configured
34549 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34550 to the directory in your configured
34551 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34552 This might be useful if you decide to switch from using a cert container to a cert
34553 directory.
34555 <UL>   
34556 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34557 </UL><P>
34559 <UL>   
34560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34561 </UL><P>
34562 &lt;End of help on this topic&gt;
34563 </BODY>
34564 </HTML>
34565 ====== h_config_smime_transfer_priv_to_con =====
34566 <HTML>
34567 <HEAD>
34568 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
34569 </HEAD>
34570 <BODY>
34571 <H1>S/MIME: Transfer Private Keys to Container</H1>
34573 UNIX Alpine only.
34575 The Transfer command will copy the private keys in your configured
34576 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34577 to the container in your configured
34578 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34579 This might be useful if you decide to switch from using a key directory to a key
34580 container.
34582 Warning: Any previous contents in the container will be lost.
34584 <UL>   
34585 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34586 </UL><P>
34588 <UL>   
34589 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34590 </UL><P>
34591 &lt;End of help on this topic&gt;
34592 </BODY>
34593 </HTML>
34594 ====== h_config_smime_transfer_priv_to_dir =====
34595 <HTML>
34596 <HEAD>
34597 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
34598 </HEAD>
34599 <BODY>
34600 <H1>S/MIME: Transfer Private Keys to Directory</H1>
34602 UNIX Alpine only.
34604 The Transfer command will copy the private keys in your configured
34605 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34606 to the directory in your configured
34607 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34608 This might be useful if you decide to switch from using a key container to a key
34609 directory.
34611 <UL>   
34612 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34613 </UL><P>
34615 <UL>   
34616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34617 </UL><P>
34618 &lt;End of help on this topic&gt;
34619 </BODY>
34620 </HTML>
34621 ====== h_config_smime_transfer_cacert_to_con =====
34622 <HTML>
34623 <HEAD>
34624 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
34625 </HEAD>
34626 <BODY>
34627 <H1>S/MIME: Transfer CA Certs to Container</H1>
34629 UNIX Alpine only.
34631 The Transfer command will copy the CA certificates in your configured
34632 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
34633 to the container in your configured
34634 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34635 This might be useful if you decide to switch from using a CA cert directory to a CA cert
34636 container.
34638 Warning: Any previous contents in the container will be lost.
34640 <UL>   
34641 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34642 </UL><P>
34644 <UL>   
34645 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34646 </UL><P>
34647 &lt;End of help on this topic&gt;
34648 </BODY>
34649 </HTML>
34650 ====== h_config_smime_transfer_cacert_to_dir =====
34651 <HTML>
34652 <HEAD>
34653 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
34654 </HEAD>
34655 <BODY>
34656 <H1>S/MIME: Transfer CA Certs to Directory</H1>
34658 UNIX Alpine only.
34660 The Transfer command will copy the CA certificates in your configured
34661 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34662 to the directory in your configured
34663 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34664 This might be useful if you decide to switch from using a CA cert container to a CA cert
34665 directory.
34667 <UL>   
34668 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34669 </UL><P>
34671 <UL>   
34672 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34673 </UL><P>
34674 &lt;End of help on this topic&gt;
34675 </BODY>
34676 </HTML>
34677 ====== h_config_smime_transfer_pubcon_to_key =====
34678 <HTML>
34679 <HEAD>
34680 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34681 </HEAD>
34682 <BODY>
34683 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34685 Mac OS X Alpine only.
34687 The Transfer command will copy the public certificates in your configured
34688 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34689 to your default Mac OS X Keychain.
34690 This might be useful if you decide to switch from using a cert container to using
34691 the Keychain to store your public certs, which you may do by using the
34692 feature
34693 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
34695 <UL>   
34696 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34697 </UL><P>
34699 <UL>   
34700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34701 </UL><P>
34702 &lt;End of help on this topic&gt;
34703 </BODY>
34704 </HTML>
34705 ====== h_config_smime_transfer_pubkey_to_con =====
34706 <HTML>
34707 <HEAD>
34708 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34709 </HEAD>
34710 <BODY>
34711 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34713 UNIX Alpine only.
34715 The Transfer command will copy the public certificates in your configured
34716 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34717 to your default Mac OS X Keychain.
34718 This might be useful if you decide to switch from using a cert container to using
34719 the Keychain to store your public certs.
34721 <UL>   
34722 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34723 </UL><P>
34725 <UL>   
34726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34727 </UL><P>
34728 &lt;End of help on this topic&gt;
34729 </BODY>
34730 </HTML>
34731 ====== h_config_lame_list_mode =====
34732 <HTML>
34733 <HEAD>
34734 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
34735 </HEAD>
34736 <BODY>
34737 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
34739 This feature modifies the method Alpine uses to ask your IMAP
34740 server for folder names to display in the FOLDER LIST screen.
34741 It is intended to compensate for a small set of IMAP servers that
34742 are programmed to ignore a part of the request, and thus respond
34743 to Alpine's query with nonsensical results.
34746 If you find that Alpine is erroneously displaying blank folder lists,
34747 try enabling this feature.
34750 NOTE: Enabling this feature has consequences for the Goto and Save
34751 commands.  Many servers allow access to folders outside the area
34752 reserved for your personal folders via some reserved character,
34753 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
34754 allows, at the Goto and Save prompts, quick access to folders
34755 outside your personal folder collection without requiring a specific
34756 collection definition.  This behavior will generally not be available
34757 when this feature is enabled.
34760 <UL>   
34761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34762 </UL><P>
34763 &lt;End of help on this topic&gt;
34764 </BODY>
34765 </HTML>
34766 ====== h_config_enable_mulnewsrcs =====
34767 <HTML>
34768 <HEAD>
34769 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
34770 </HEAD>
34771 <BODY>
34772 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
34774 This feature makes it so Alpine can use multiple newsrcs based on
34775 the news server being connected to, which allows for separate lists
34776 of subscribed-to newsgroups. When this feature is not set, there is only
34777 one list of newsgroups.
34779 Under this feature, the name of a newsrc is based on the news server.
34780 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
34781 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
34782 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
34783 Setting this feature for the first time will allow for the option of using
34784 your old newsrc the next time you read news.
34786 If this feature is set, then the feature
34787 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
34788 also may affect the name of the newsrc file that is used.
34790 <UL>   
34791 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34792 </UL><P>
34793 &lt;End of help on this topic&gt;
34794 </BODY>
34795 </HTML>
34796 ======= h_ab_export_vcard =======
34797 <HTML>
34798 <HEAD>
34799 <TITLE>Address Book Export Format</TITLE>
34800 </HEAD>
34801 <BODY>
34802 <H1>Address Book Export Format</H1>
34804 You are exporting address book data from Alpine to a file outside of Alpine.
34805 You are being asked to choose the format of the export.
34806 Here are the choices:
34808 <DL>
34809 <DT><EM>A</EM>ddress List</DT>
34810 <DD>
34811 The addresses from the address book entries you are saving
34812 from will be saved one address per line.
34813 Address book lists (those with more than one address) will have
34814 all of their addresses saved separately.
34815 </DD>
34817 <DT><EM>V</EM>Card</DT>
34818 <DD>
34819 The entries will be saved in
34820 <A HREF="h_whatis_vcard">vCard</A> format.
34821 </DD>
34823 <DT><EM>T</EM>ab Separated</DT>
34824 <DD>
34825 The entries will be saved in tab-separated columns.
34826 There will be just 4 columns of data that correspond to Alpine's
34827 Nickname field, Full Name field, Address field, and Comment field.
34828 It might prove useful to Select only the Simple, non-List address book
34829 entries before Saving.
34830 </DD>
34832 <DT><EM>^C</EM> Cancel</DT>
34833 <DD>
34834 Cancel out of the Save.
34835 </DD>
34837 </DL>
34841 &lt;End of help on this topic&gt;
34842 </BODY>
34843 </HTML>
34844 ====== h_config_predict_nntp_server =====
34845 <HTML>
34846 <HEAD>
34847 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
34848 </HEAD>
34849 <BODY>
34850 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
34852 This feature allows Alpine to assume that the open NNTP server at the
34853 time of composition is the NNTP server to which the message should be
34854 posted.  This is especially recommended when there are multiple News
34855 collections.  If this feature is not set, Alpine will try to post to the first server in
34856 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
34857 this feature also negates the need to add News collection servers to
34858 the <!--#echo var="VAR_nntp-server"--> variable.
34860 This feature can be especially handy when used in conjunction with
34861 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
34863 <UL>   
34864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34865 </UL><P>
34866 &lt;End of help on this topic&gt;
34867 </BODY>
34868 </HTML>
34869 ====== h_config_nntp_search_uses_overview =====
34870 <HTML>
34871 <HEAD>
34872 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
34873 </HEAD>
34874 <BODY>
34875 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
34877 This feature should probably be turned on unless it causes trouble.
34878 The results of the NNTP overview command (XOVER) may be used to help
34879 with some searches in news groups.
34880 It should result in quicker response time.
34881 Turning this feature on apparently causes search results which are
34882 different from what you would get with the feature turned off on some
34883 servers.
34885 <UL>   
34886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34887 </UL><P>
34888 &lt;End of help on this topic&gt;
34889 </BODY>
34890 </HTML>
34891 ====== h_config_thread_sorts_by_arrival =====
34892 <HTML>
34893 <HEAD>
34894 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
34895 </HEAD>
34896 <BODY>
34897 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
34899 This feature affects how a threading sort arranges threads.  The default way
34900 to arrange threads is by the date of the earliest message in the thread.
34901 This feature arranges threads by the last message to arrive in a thread.
34903 This feature causes old threads that get recent messages to sort to the bottom,
34904 where previously a message arrival to a thread would not rearrange the order of
34905 that thread.
34907 <UL>   
34908 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34909 </UL><P>
34910 &lt;End of help on this topic&gt;
34911 </BODY>
34912 </HTML>
34913 ====== h_config_textplain_int =====
34914 <HTML>
34915 <HEAD>
34916 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
34917 </HEAD>
34918 <BODY>
34919 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
34921 This feature modifies the method Alpine uses to display Text/Plain
34922 MIME attachments from the Attachment Index screen.  Normally, the
34923 &quot;View&quot; command searches for any externally defined (usually
34924 via the
34925 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
34926 and displays the selected text within that viewer.
34929 Enabling this feature causes Alpine to ignore any external viewer
34930 settings and always display text with Alpine's internal viewer.
34933 <UL>   
34934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34935 </UL><P>
34936 &lt;End of help on this topic&gt;
34937 </BODY>
34938 </HTML>
34939 ====== h_config_wp_columns =====
34940 <HTML>
34941 <HEAD>
34942 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
34943 </HEAD>
34944 <BODY>
34945 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
34947 Web Alpine only.
34949 This configuration setting specifies the number of horizontal characters
34950 used to format various WebAlpine pages.  Smaller values will tend to reduce
34951 the amount of horizontal scrolling required to view pages within narrow
34952 browsers, such as those found on PDAs, and larger values will tend to 
34953 spread more information across the page.
34956 The Message List page uses the width to determine how many characters
34957 to assign each field.  Note, a smaller value may result in a disproportionate
34958 amount of blank space between fields on each line.  Similarly, a large
34959 value may result in cramped fields or horizontal scrolling.
34962 The Message View page uses this value to determine when to wrap lines
34963 in displayed message text.  Note, a smaller value may result in jagged
34964 right margins or confusing quoting.  A larger value may cause lines of text to
34965 run beyond the browser's right edge, requiring horizontal scrolling.
34968 <UL>   
34969 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34970 </UL><P>
34971 &lt;End of help on this topic&gt;
34972 </BODY>
34973 </HTML>
34974 ====== h_config_wp_state =====
34975 <HTML>
34976 <HEAD>
34977 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
34978 </HEAD>
34979 <BODY>
34980 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
34982 Web Alpine only.
34984 Various aspects of cross-session state.
34987 <UL>   
34988 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34989 </UL><P>
34990 &lt;End of help on this topic&gt;
34991 </BODY>
34992 </HTML>
34993 ====== h_config_wp_aggstate =====
34994 <HTML>
34995 <HEAD>
34996 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
34997 </HEAD>
34998 <BODY>
34999 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
35001 Web Alpine only.
35003 Aggregate operations tab state.
35006 <UL>   
35007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35008 </UL><P>
35009 &lt;End of help on this topic&gt;
35010 </BODY>
35011 </HTML>
35012 ====== h_config_wp_indexlines =====
35013 <HTML>
35014 <HEAD>
35015 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
35016 </HEAD>
35017 <BODY>
35018 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
35020 Web Alpine only.
35022 Number of index lines in table.
35025 <UL>   
35026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35027 </UL><P>
35028 &lt;End of help on this topic&gt;
35029 </BODY>
35030 </HTML>
35031 ====== h_config_wp_indexheight =====
35032 <HTML>
35033 <HEAD>
35034 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
35035 </HEAD>
35036 <BODY>
35037 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
35039 Web Alpine only.
35041 Index table row height.
35044 <UL>   
35045 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35046 </UL><P>
35047 &lt;End of help on this topic&gt;
35048 </BODY>
35049 </HTML>
35050 ====== h_config_rss_news =====
35051 <HTML>
35052 <HEAD>
35053 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
35054 </HEAD>
35055 <BODY>
35056 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
35058 Web Alpine only.
35060 RSS News feed.
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_rss_weather =====
35070 <HTML>
35071 <HEAD>
35072 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
35073 </HEAD>
35074 <BODY>
35075 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
35077 Web Alpine only.
35079 RSS Weather feed.
35082 <UL>   
35083 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35084 </UL><P>
35085 &lt;End of help on this topic&gt;
35086 </BODY>
35087 </HTML>
35088 ====== h_config_send_confirms_only_expanded =====
35089 <HTML>
35090 <HEAD>
35091 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
35092 </HEAD>
35093 <BODY>
35094 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
35096 This Web Alpine option specifies whether or not a Send confirmations
35097 happens when a composed message is readied for sending or not.  The
35098 default behavior is to not confirm that the nicknames were expanded to
35099 the intended addresses.
35102 <UL>   
35103 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35104 </UL><P>
35105 &lt;End of help on this topic&gt;
35106 </BODY>
35107 </HTML>
35108 ====== h_config_enable_jump_command =====
35109 <HTML>
35110 <HEAD>
35111 <TITLE>FEATURE: enable-jump-command</TITLE>
35112 </HEAD>
35113 <BODY>
35114 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
35116 This Web Alpine option specifies whether or not a Jump command is
35117 offered in the Message List and Message View pages.  The command is
35118 implemented as an input field in the left column of the List and View
35119 screens. 
35122 When enabled and a number is entered in the input field while the
35123 Message List is displayed, the Message List is reframed with the
35124 specified message.  While viewing a message, the message associated
35125 with the specified message number is displayed.
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_config_enable_newmail_sound =====
35135 <HTML>
35136 <HEAD>
35137 <TITLE>FEATURE: enable-newmail-sound</TITLE>
35138 </HEAD>
35139 <BODY>
35140 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
35142 This Web Alpine option specifies whether or not a sound file is sent
35143 to the web browser along with the newmail notification message.
35147 <UL>   
35148 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35149 </UL><P>
35150 &lt;End of help on this topic&gt;
35151 </BODY>
35152 </HTML>
35153 ====== h_config_render_html_internally =====
35154 <HTML>
35155 <HEAD>
35156 <TITLE>FEATURE: render-html-internally</TITLE>
35157 </HEAD>
35158 <BODY>
35159 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
35161 By default, Web Alpine will pass cleansed HTML text you receive in messages 
35162 to the browser for display (rendering).  This feature causes Web Alpine to convert 
35163 the HTML text into plain text in the same way Unix and PC-Alpine do.
35167 <UL>   
35168 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35169 </UL><P>
35170 &lt;End of help on this topic&gt;
35171 </BODY>
35172 </HTML>
35173 ====== h_config_role_undo =====
35174 Yes, remember changes and exit back to list of roles; No, discard changes
35175 made in this screen; ^C, cancel exit and stay in this config screen.
35176 ====== h_exit_editor =====
35177 S, save changes and exit from the editor; D, do not save changes but
35178 do exit from the editor; or ^C, cancel exit and stay in the editor.
35179 ====== h_config_undo =====
35180 Yes, save changes and exit; No, exit without saving any changes made since
35181 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
35182 ====== h_os_index_whereis =====
35183 Enter ^V or ^Y to go immediately to the last or first message in the index.
35184 Or, enter the match string followed by RETURN.
35185 ====== h_os_index_whereis_agg =====
35186 Enter ^V or ^Y to go immediately to the last or first message in the index,
35187 Or, enter the match string followed by RETURN (or ^X to select all matches).
35188 =========== h_oe_add_full ==================
35189 Type the full name of the person being added and press the RETURN key.
35190 Press ^C to cancel addition.
35191 =========== h_oe_add_nick ==================
35192 Type a short nickname and press RETURN.  A nickname is a short easy-to-
35193 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
35194 ========== h_oe_add_addr ================
35195 Type the e-mail address and press RETURN.
35196 Press ^C to cancel addition.
35197 ========== h_oe_crlst_full ==============
35198 Type a long name or description for the list that you are creating and
35199 press RETURN.  Press ^C to cancel creation of list.
35200 =========== h_oe_crlst_nick =============
35201 Type a nickname (short, easy-to-remember name or single word) for the list
35202 you are creating and press RETURN.  Press ^C to cancel.
35203 ========== h_oe_crlst_addr ==============
35204 Type an e-mail address, or a nickname already in the address book that you
35205 want to be part of this list and press RETURN.
35206 ========== h_oe_adlst_addr =============
35207 Type an e-mail address or a nickname already in the address book that you
35208 want to add to this list and press RETURN.
35209 ========== h_oe_editab_nick ============
35210 Change the nickname using the arrow keys and delete key.  Press RETURN
35211 when done.  Press ^C to cancel editing and leave the nickname as it was.
35212 ========== h_oe_editab_full ============
35213 Change the full name using the arrow keys and delete key.  Press RETURN
35214 when done.  Press ^C to cancel editing and leave the full name as it was.
35215 ========== h_oe_editab_addr ============
35216 Change the address using the arrow keys and delete key.  Press RETURN
35217 when done.  Press ^C to cancel editing and leave the address as it was.
35218 ========== h_oe_editab_fcc ============
35219 Change the fcc using the arrow keys and delete key.  Press RETURN when
35220 done.  Press ^C to cancel editing and leave the fcc as it was.
35221 ========== h_oe_editab_comment ============
35222 Change the comment field using the arrow keys and delete key.  Press RETURN
35223 when done.  Press ^C to cancel editing and leave the comment as it was.
35224 ====== h_ab_forward =====
35225 Yes, expand nicknames and qualify local names with your current domain name;
35226 No, leave nicknames and local names as is;  ^C, cancel.
35227 ========== h_ab_export ==========
35228 Type the name of a file to write the addresses into and
35229 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
35230 ========== h_ab_edit_a_field ==========
35231 Edit any of the fields of the currently selected entry by typing one of the
35232 letters at the bottom of the screen.  Press ^C to cancel edit.
35233 ====== h_ab_del_data_revert =====
35234 Press B to completely delete addrbook and revert to default, C to delete config
35235 and revert while leaving data, or D to only delete data (make it empty).
35236 ====== h_ab_del_data_modify =====
35237 Press B to completely delete addrbook, C to delete configuration while leaving
35238 data, or D to delete data (make it empty) but leave config. ^C to cancel.
35239 ====== h_ab_del_config_modify =====
35240 Yes, remove this address book from my configuration.
35241 No, make no changes now.
35242 ====== h_ab_del_config_revert =====
35243 Yes, remove this address book from my config and revert to default.
35244 No, make no changes now.
35245 ====== h_ab_del_default =====
35246 Yes, remove this default address book from my configuration.
35247 No, make no changes now.
35248 ====== h_ab_really_delete =====
35249 Yes, delete the actual contents of the address book, not just the 
35250 configuration.  No, don't delete the data after all, cancel and start over.
35251 ====== h_ab_del_ignore =====
35252 Press I to ignore all the default address books for this category.  Press R to
35253 remove this one address book and add the others to your personal list.
35254 ====== h_ab_del_dir_ignore =====
35255 Press I to ignore all the default directory servers for this category.
35256 Press R to remove this one server and add the others to your personal list.
35257 ====== h_ab_copy_dups =====
35258 Yes, overwrite the existing entry.
35259 No, skip duplicates but save the rest. Press ^C to cancel.
35260 ====== h_confirm_cancel =====
35261 Type C to Confirm that you want to abandon the message you are composing.
35262 Type N or ^C to cancel out of the cancel and keep composing.
35263 ====== h_ab_text_or_vcard =====
35264 Text, start composer with displayed text already included.
35265 VCard, start composer with address book entry attached as a vCard. ^C cancels.
35266 ====== h_ab_backup_or_ldap =====
35267 Backup, copy email address from entry and allow editing of it.
35268 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
35269 ====== h_ldap_text_or_vcard =====
35270 Text: export displayed text for selected entry. Address: export only the
35271 email address. VCard: export entry in vCard format. ^C cancels.
35272 ====== h_ab_save_exp =====
35273 Save, save entry or entries to an address book.
35274 Export, save to file outside of pine. ^C cancels save.
35275 ====== h_ab_add =====
35276 A, add a brand new entry to this address book.
35277 E, edit the entry that is currently highlighted. ^C to cancel.
35278 ====== h_ab_shuf =====
35279 U, swap order of highlighted address book and the one above it.
35280 D, swap order of highlighted address book and the one below it. ^C to cancel.
35281 ====== h_ab_shuf_up =====
35282 U, swap order of highlighted address book and the one above it.
35283 Press ^C to cancel.
35284 ====== h_ab_shuf_down =====
35285 D, swap order of highlighted address book and the one below it.
35286 Press ^C to cancel.
35287 ====== h_folder_prop =====
35288 Count is # of messages in the folder, Unseen means messages that have not
35289 been read, New means messages that were Recently added to the folder.
35290 ====== h_role_shuf =====
35291 U, swap order of highlighted rule and the one above it.
35292 D, swap order of highlighted rule and the one below it. ^C to cancel.
35293 ====== h_role_shuf_up =====
35294 U, swap order of highlighted rule and the one above it.
35295 Press ^C to cancel.
35296 ====== h_role_shuf_down =====
35297 D, swap order of highlighted rule and the one below it.
35298 Press ^C to cancel.
35299 ====== h_incoming_shuf =====
35300 B, swap order of highlighted directory and the one before it.
35301 F, swap order of highlighted directory and the one after it. ^C to cancel.
35302 ====== h_incoming_shuf_up =====
35303 B, swap order of highlighted directory and the one before it.
35304 Press ^C to cancel.
35305 ====== h_incoming_shuf_down =====
35306 F, swap order of highlighted directory and the one after it.
35307 Press ^C to cancel.
35308 ====== h_dir_shuf =====
35309 U, swap order of highlighted directory and the one above it.
35310 D, swap order of highlighted directory and the one below it. ^C to cancel.
35311 ====== h_dir_shuf_up =====
35312 U, swap order of highlighted directory and the one above it.
35313 Press ^C to cancel.
35314 ====== h_dir_shuf_down =====
35315 D, swap order of highlighted directory and the one below it.
35316 Press ^C to cancel.
35317 ====== h_hdrcolor_shuf =====
35318 U, swap order of highlighted Header Color and the one above it.
35319 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
35320 ====== h_hdrcolor_shuf_up =====
35321 U, swap order of highlighted Header Color and the one above it.
35322 Press ^C to cancel.
35323 ====== h_hdrcolor_shuf_down =====
35324 D, swap order of highlighted Header Color and the one below it.
35325 Press ^C to cancel.
35326 ========== h_oe_editab_al ============
35327 Change the address using the arrow keys and delete key.  Press RETURN
35328 when done.  Press ^C to cancel editing and leave the address as it was.
35329 ========== h_dir_comp_search ===============
35330 Type a string to look for just like you would in the composer. Your configured
35331 rules for the servers with the implicit flag set will be used.
35332 ========== h_oe_searchab ===============
35333 Type the word or name you want to search for and press RETURN.  If you press
35334 RETURN without entering anything the word in [] will be searched for.
35335 ========== h_oe_chooseabook ==========
35336 Choose the address book you want to save the new entry in.
35337 Use ^N or ^P to change address books.  ^C to cancel.
35338 ========== h_oe_takeaddr ==========
35339 Edit the e-mail address using the arrow and delete keys.  Press RETURN
35340 when done.  Press ^C to cancel adding this entry to the address book.
35341 ========== h_oe_take_replace ==========
35342 Press R to replace the old entry with this new data.  You will still have
35343 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
35344 ========== h_oe_take_replace_or_add ==========
35345 Press R to replace the old entry.  Press A to add the selected addresses to
35346 the old existing list.  N to enter another nickname. ^C to cancel now.
35347 ========== h_oe_takename ==========
35348 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
35349 when done.  Press ^C to cancel adding this entry to the address book.
35350 ========== h_oe_takenick ==========
35351 Type a nickname (short easy-to-remember name, initials or single word) for this
35352 entry in the address book and press RETURN.  Press ^C to cancel addition.
35353 ========== h_oe_jump ==========
35354 Type the message number you want to jump to and press RETURN.  The word "end"
35355 represents the last message. Press ^C to cancel jumping to another message.
35356 ========== h_oe_jump_thd ==========
35357 Type the thread number you want to jump to and press RETURN.  The word "end"
35358 represents the last thread. Press ^C to cancel jumping to another thread.
35359 ========== h_oe_debuglevel ==========
35360 Higher number shows more debugging details.
35361 Press ^C if you want to cancel the change.
35362 ========== h_oe_broach ==========
35363 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
35364 to go to the previous/next collections in the list.  Press ^C to cancel goto.
35365 ========== h_oe_foldsearch ==========
35366 Type the text you want to search for in foldernames and press RETURN.  If you
35367 press RETURN without entering anything, any text in [] will be searched for.
35368 ========== h_oe_foldrename ==========
35369 Change the old name of the folder to the new name using the arrow and
35370 delete keys and press RETURN.  Press ^C to cancel rename.
35371 ========== h_oe_login ==========
35372 Enter your login name for the host you are opening the mailbox on.  Just press
35373 RETURN to use your login from this host as is, or edit it with delete key.
35374 ========== h_oe_passwd ==========
35375 Type your password for the host and login shown as part of the prompt.
35376 Press ^C to cancel opening folder.
35377 ========== h_oe_choosep ==========
35378 Enter the number associated with the printer you want to select.  Press ^C to
35379 cancel the printer selection.  The current selection is highlighted.
35380 ========== h_oe_customp ==========
35381 Type the name of the Unix print command and press RETURN.  Press ^C to
35382 cancel the printer selection.
35383 ========== h_oe_searchview ==========
35384 Type the word or name you want to search for and press RETURN.  If you press
35385 RETURN without entering anything the word in [] will be searched for.
35386 ========== h_oe_keylock ==========
35387 The keyboard is in use and locked by another user.  Only that user can
35388 unlock this keyboard by typing the password.
35389 ========== h_wt_expire ==========
35390 At the beginning of each month Alpine offers to rename your current sent-mail
35391 folder to one named for the month so you have a sent-mail folder for each month
35392 ========== h_wt_delete_old ==========
35393 It is the beginning of the month, and we need to conserve disk
35394 space.  Please delete any sent-mail that you do not need.
35395 ========== h_select_sort ==========
35396 Select the order for sorting the index by typing the capitalized letter.
35397 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
35398 ========== h_no_F_arg ============
35399 Enter name of file to be opened.
35401 ========== h_sticky_personal_name ==========
35402 Type in your name as you want it to appear on outgoing email.  This entry
35403 will be saved into your Alpine configuration file.
35404 ========== h_sticky_inbox ============
35405 INBOX syntax is usually {complete.machine.name}INBOX
35406 This entry will be saved in your Alpine configuration file.
35407 ========== h_sticky_smtp ============
35408 The name of the computer on your campus that relays your outgoing email
35409 to the Internet.  This entry will be saved in your Alpine configuration file.
35410 ========== h_sticky_user_id ==========
35411 The username or login-id part of your email address.  This entry will be
35412 saved in your Alpine configuration file.
35413 ========== h_sticky_domain ==========
35414 The domain part of your email address, NOT the name of your PC.  This
35415 entry will be saved in your Alpine configuration file.
35416 ========== h_bounce =========
35417 Enter the address or nickname of the intended recipient.  Alpine will resend
35418 the message, which will retain the original author's From: address.
35419 ========== h_incoming_add_folder_nickname =========
35420 Enter an (optional) nickname that will be used in lieu of the actual
35421 host and folder names in the FOLDER LIST display.
35422 ========== h_anon_forward ==========
35423 Enter the address of your intended recipient, or ^C to cancel.
35424 Example: jsmith@somewhere.edu
35425 ========== h_news_subscribe ==========
35426 Enter the name of the newsgroup to which you wish to subscribe,
35427 or ^C to cancel.  Example: comp.mail.pine
35428 ========== h_pipe_msg ==========
35429 Enter the name of the Unix command to which you wish to send this
35430 message, or ^C to cancel.
35431 ========== h_pipe_attach ==========
35432 Enter the name of the Unix command to which you wish to send this
35433 attachment, or ^C to cancel.
35434 ========== h_select_by_num ==========
35435 Enter a list of message numbers (or number ranges), or ^C to cancel.  The word
35436 "end" represents the last message. Example: 2-5,7-9,11,19,35-end
35437 ========== h_select_by_thrdnum ==========
35438 Enter a list of thread numbers (or number ranges), or ^C to cancel.  The word
35439 "end" represents the last thread. Example: 2-5,7-9,11,19,35-end
35440 ========== h_select_txt_from ==========
35441 Messages with From: headers containing the entered string will be selected.
35442 ^C to cancel. ^G again to see original options.
35443 ========== h_select_txt_not_from ==========
35444 Messages without From: headers containing the entered string will be selected.
35445 ^C to cancel. ^G again to see original options.
35446 ========== h_select_txt_to ==========
35447 Messages with To: headers containing the entered string will be selected.
35448 ^C to cancel. ^G again to see original options.
35449 ========== h_select_txt_not_to ==========
35450 Messages without To: headers containing the entered string will be selected.
35451 ^C to cancel. ^G again to see original options.
35452 ========== h_select_txt_cc ==========
35453 Messages with Cc: headers containing the entered string will be selected.
35454 ^C to cancel. ^G again to see original options.
35455 ========== h_select_txt_not_cc ==========
35456 Messages without Cc: headers containing the entered string will be selected.
35457 ^C to cancel. ^G again to see original options.
35458 ========== h_select_txt_subj ==========
35459 Messages with Subject: headers containing the entered string will be selected.
35460 ^C to cancel.  ^X enters Subject: line of current message.
35461 ========== h_select_txt_not_subj ==========
35462 Messages without Subject headers containing the entered string will be selected.
35463 ^C to cancel.  ^X enters Subject: line of current message.
35464 ========== h_select_txt_all ==========
35465 All messages containing the entered string will be selected.  Headers and body,
35466 but not encoded attachments, will be compared.  Enter ^C to cancel.
35467 ========== h_select_txt_not_all ==========
35468 All messages that don't contain the entered string will be selected.  Headers
35469 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
35470 ========== h_select_txt_body ==========
35471 All messages containing the entered string will be selected. Body text, but
35472 not headers or encoded attachments, will be compared. ^C to cancel.
35473 ========== h_select_txt_not_body ==========
35474 All messages that don't contain the entered string will be selected. Body
35475 text, but not headers or encoded attachments, will be compared. ^C to cancel.
35476 ========== h_select_txt_recip ==========
35477 Messages with Cc: or To: headers containing the entered string will be selected.
35478 ^C to cancel. ^G again to see original options.
35479 ========== h_select_txt_not_recip ==========
35480 Messages without Cc: or To: headers containing the string will be selected.
35481 ^C to cancel. ^G again to see original options.
35482 ========== h_select_txt_partic ==========
35483 Messages with Cc, To, or From headers containing the string will be selected.
35484 ^C to cancel. ^G again to see original options.
35485 ========== h_select_txt_not_partic ==========
35486 Messages without Cc, To, or From headers containing the string will be selected.
35487 ^C to cancel. ^G again to see original options.
35488 ========== h_select_date ==========
35489 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
35490 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
35491 ========== h_attach_index_whereis ==========
35492 Enter some text that appears in the Attachment Index entry for the desired
35493 attachment.  The first attachment containing that text will be highlighted.
35494 ========== h_kb_lock ==========
35495 Keystrokes entered here (up to a RETURN) comprise a password that must
35496 be entered again later in order to unlock the keyboard.
35497 ========== h_compose_default ==========
35498 N, compose a new message. R, set a role.
35499 ^C to cancel.
35500 ========== h_untranslatable ==========
35501 Send using UTF-8 character set; Send but replace untranslatable characters
35502 with question marks; return to the composer; or cancel message altogether.
35503 ========== h_compose_intrptd ==========
35504 N, compose a new msg. I, continue interrupted msg. R, set a role.
35505 ^C to cancel.
35506 ========== h_compose_postponed ==========
35507 N, compose a new message. P, continue postponed msg. R, set a role.
35508 ^C to cancel.
35509 ========== h_compose_intrptd_postponed ==========
35510 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35511 R, set a role. ^C to cancel.
35512 ========== h_compose_form ==========
35513 N, compose a new message. F, use form letter. R, set a role.
35514 ^C to cancel.
35515 ========== h_compose_intrptd_form ==========
35516 N, compose a new msg. I, continue interrupted msg. F, use form letter.
35517 R, set a role. ^C to cancel.
35518 ========== h_compose_postponed_form ==========
35519 N, compose a new message. P, continue postponed msg. F, use form letter.
35520 R, set a role. ^C to cancel.
35521 ========== h_compose_intrptd_postponed_form ==========
35522 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35523 F, use form letter. R, set a role. ^C to cancel.
35524 ========== h_config_context_del_except ==========
35525 If you delete the last exceptional collection you can only add it back by
35526 manually editing the exceptions config file.
35527 ========== h_config_whereis ==========
35528 To move quickly to a particular line, enter a search string or
35529 ^C to cancel.
35530 ========== h_config_edit_scorei ==========
35531 Enter interval in the form (min,max). -INF and INF may be used to represent
35532 -infinity and infinity. ^C to cancel change. RETURN to accept change.
35533 ========== h_config_add ==========
35534 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
35535 pressing RETURN sets the Empty Value (this turns off any global default).
35536 ========== h_config_add_custom_color ==========
35537 Enter a header fieldname. For example, "subject" or "from".
35539 ========== h_config_add_pat_hdr ==========
35540 Enter a header fieldname. For example, "reply-to" or "organization" or
35541 any fieldname you want that isn't included already.
35542 ========== h_config_print_opt_choice ==========
35543 You may edit either the initialization string (characters printed before
35544 printing starts) or the trailer string.  Choose one or ^C to cancel.
35545 ========== h_config_print_init ==========
35546 Enter a C-style string for this.  You may use common backslash escapes like
35547 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
35548 ========== h_config_change ==========
35549 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
35550 delete current (highlighted) character, etc.  Enter ^C to cancel change.
35551 ========== h_config_replace_add ==========
35552 Replace ignores the current default, Add places the current default in your
35553 editing buffer as if you had typed it in.
35554 ========== h_config_insert_after ==========
35555 Enter a nickname for this print command.  (InsertBefore puts the new item
35556 before the current line, InsertAfter puts it after the current line.)
35557 ========== h_config_print_cmd ==========
35558 Enter command to be executed for the printer.  Use normal editing keys
35559 to modify, ^C to cancel, carriage return to accept current value.
35560 ========== h_config_role_del ==========
35561 Answering Yes will remove this rule completely from your rules list.
35562 ========== h_config_role_addfile ==========
35563 Type the name of a file to add to your configuration. You don't need to
35564 use a file, you may add rules directly (with Add) without using a file.
35565 ========== h_config_role_delfile ==========
35566 Answering Yes will remove this rule file completely from your rules list.
35567 The rules data file itself will not be removed.
35568 ========== h_config_print_del ==========
35569 Answering Yes will remove this printer completely from your printer list.
35570 ========== h_config_print_name_cmd ==========
35571 You may edit the Nickname of this printer, the Command to be executed when
35572 printing, or change the Options associated with this printer.
35573 ========== h_send_check_fcc ==========
35574 Yes, send message without an Fcc.
35575 No, return to composer.
35576 ========== h_send_check_subj ==========
35577 Yes, send message without a Subject.
35578 No, return to composer.
35579 ========== h_send_check_to_cc ==========
35580 Yes, send message without a To address, or a Cc address, or a Newsgroup.
35581 No, return to composer.
35582 ========== h_send_fcc_only ==========
35583 Yes, copy message to Fcc only and send to NO recipients.
35584 No, return to composer.
35585 ========== h_send_prompt ==========
35586 Yes, send the message.
35587 No or ^C, return to composer.
35588 ========== h_send_prompt_flowed ==========
35589 Yes, send the message.  No or ^C, return to composer.
35590 What's Flowed? See Do Not Send Flowed Text in config screen.
35591 ========== h_send_prompt_dsn ==========
35592 Yes, send the message.  No or ^C, return to composer.
35593 What's DSNOpts? See Enable Delivery Status Notification in config screen.
35594 ========== h_send_prompt_dsn_flowed ==========
35595 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
35596 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
35597 ========== h_role_confirm ==========
35598 Yes, use displayed role. No, compose without a role.
35599 ^C, cancel the message. ^T, select a role from your other eligible roles.
35600 ========== h_norole_confirm ==========
35601 Return, compose without a role.
35602 ^C, cancel the message. ^T, select a role from your eligible roles.
35603 ========== h_custom_print ==========
35604 Enter a Unix command that accepts its data on standard input.
35605 Alpine will display any information the command sends to standard output.
35606 ========== h_convert_abooks_and_sigs ==========
35607 You will be given the opportunity to convert address books and signature files
35608 to remote configurations.
35609 ========== h_convert_abooks ==========
35610 You will be given the opportunity to convert address books to remote
35611 configurations.
35612 ========== h_flag_keyword ==========
35613 Enter the name of the keyword you want to add for this folder.
35614 No spaces, parentheses, braces, percents or asterisks are allowed.
35615 ========== h_select_keyword ==========
35616 Enter the keyword you want to match, or use ^T to select a keyword from a list
35617 of possible keywords for this folder. Use ! to look for non-matches instead.
35618 ========== h_type_keyword ==========
35619 Enter the keyword you want to add. You may add a nickname in the next step.
35620 No spaces, parentheses, braces, percents or asterisks are allowed.
35621 ========== h_type_keyword_nickname ==========
35622 Enter an optional nickname for the keyword you want to add.
35623 Type Carriage return to use the keyword name instead of a nickname.
35624 ========== h_convert_sigs ==========
35625 You will be given the opportunity to convert signature files to remote
35626 configurations.
35627 ========== h_convert_abook ==========
35628 Yes is fairly safe. You will be ADDing a remote address book that is a copy
35629 of the current address book. The current abook won't be removed automatically.
35630 ========== h_convert_sig ==========
35631 Answering Yes copies the contents of the signature file into your Alpine
35632 configuration file. After that, the contents of the file will not be used.
35633 ========== h_save_addman ==========
35634 Enter the simple name of the folder you want to add. Carriage return to
35635 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
35636 ========== h_reopen_folder ==========
35637 Yes reopens the folder, as if you were starting over. This uncovers new mail.
35638 No leaves the folder index as it was without discovering new mail.
35639 ========== h_convert_pinerc_server ==========
35640 This is the name of the host (computer) where the remote Alpine configuration
35641 will be stored. This should be an IMAP server that you have permission to use.
35642 ========== h_convert_pinerc_folder ==========
35643 Enter the correct remote folder name. This folder is special and should
35644 contain only configuration data. It shouldn't contain other mail messages.
35645 ========== h_role_compose ==========
35646 Compose a New message, Reply to current message, Forward current message, or
35647 Bounce message. Then you will be asked to choose one of your Roles to be used.
35648 ========== h_save_size_changed ==========
35649 The reported size of a message is not the same as the actual size. Answer Yes
35650 to continue and hope for the best or No to Cancel the entire Save.
35651 ========== h_select_by_larger_size ==========
35652 Enter a number or ^C to cancel. All messages greater than this many characters
35653 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35654 ========== h_select_by_smaller_size ==========
35655 Enter a number or ^C to cancel. All messages less than this many characters
35656 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35657 ========== h_preserve_field ==========
35658 Use 'p' to toggle between preserving or not preserving the original To:
35659 and Cc: fields of the message. Enter ^C to cancel message.