* Corrections to spelling errors, contributed by Jens Schleusener.
[alpine.git] / pith / pine.hlp
blob2e9b6f77e73159908c3f080530d28d468bffcad1
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-2020 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 437 2020-06-08 19:26:03
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2020 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2009 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 This is a development version of Alpine. These enhancements are
177 released after the release of version 2.22. Please report any
178 problems you find with this release.
180 <P> Additions include:
182 <UL>
183 <LI> Add support for the OAUTHBEARER authentication method in Gmail. Thanks to
184      Alexander Perlis for suggesting it and explaining how the method works.
186 <LI> Support for the SASL-IR IMAP extension that avoids a round trip during
187      authentication. Similar support added for the SMTP, NNTP and POP3 
188      protocols. Thanks to Geoffrey Bodwin for a report that lead to this
189      implementation.
191 <LI> Alpine can pass an HTML message to an external web browser, by using the
192      &quot;External&quot; command in the <a href="h_attachment_screen">ATTACHMENT INDEX</a>
193      screen. <A href="h_command_external_browser">Learn more</A>.
195 <LI> New configuration variable
196      <a href="h_external_loads_inline_images_only"><!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>
197      that controls if Alpine will keep the source link to all the images in the
198      HTML message, or will only pass a link to inline images included in the message. For your
199      privacy and security this feature is enabled by default.
201 <LI> New variable system-certs-path that allows users to indicate the 
202      location of the directory where certificates are located. In PC-Alpine 
203      this must be C:\\libressl\\ssl\\certs. The C: drive can be replaced 
204      by the name of the drive where the binary and DLL files are located.
206 <LI> New variable system-certs-file that allows users to configure the
207      location of a container of certificate authority (CA) certificates
208      to be used to validate certificates of remote servers.
210 <LI> Remove sleep of 5 seconds for mailcap programs that use the terminal
211      to display content. Suggested by Carl Edquist. In addition, remove
212      configurable process table command and its corresponding sleep time.
213 </UL>
216 Bugs that have been addressed include:
217 <UL>
218 <LI>Bug in PC-Alpine that made Alpine go into an infinite loop and
219     consume CPU when it was iconized. Reported by Holger Schieferdecker in
220     comp.mail.pine.
222 <LI>Crash in Alpine when attempting to reply to a multipart/alternative 
223     message that is malformed, and the option to include attachments in
224     reply is enabled. Reported and patched by Peter Tirsek.
226 <LI>Bug that makes Alpine split encoded words in the subject of a message
227     in the middle of a utf-8 character into two encoded words, breaking the
228     encoding. Reported by Jean Chevalier.
230 <LI> Alpine would not redraw the screen when a check for new mail in an
231     incoming folder failed due to a failurec while validating the server 
232     certificate, and the user did not allow the connection to proceed.
234 <LI> Crash in Alpine while resizing the screen when using any of the tokens
235     SUBJKEYTEXT, SUBJECTTEXT, or SUBJKEYINITTEXT in the index format, and 
236     the screen was resized. Reported by Iggy Mogo.
238 <LI> When Alpine is trying to authenticate to Gmail, using the XOAUTH2 method,
239     it does not display the url the user needs to open, in order to authorize
240     Alpine to access Gmail using XOAUTH2 when Alpine still has not created
241     a screen. Reported by Baron Fujimoto.
243 <LI> When an html anchor does not quote the link in the href parameter,
244     alpine does not link to it.
246 <LI> Attempt to fix a bug that breaks scrolling of a message in Alpine when
247      the screen is resized. Reported in the Debian bug system at
248      <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=956361">https://bugs.debian.org/cgi-bin/bugreport.cgie?bug=956361</A>.
249 </UL>
252 Version 2.22 addresses bugs found in previous releases and has several
253 additions as well.
256 Additions include:
258 <UL>
259 <LI> Support for <A HREF="h_xoauth2">XOAUTH2</A> authentication method in Gmail.
261 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
263 <LI> NTLM authentication support with the ntlm library, in Unix systems.
264 Based on code provided by Maciej W. Rozycki.
266 <LI> Add /tls1_3 flag for servers that support it. Read more information
267 in the secure protocols <A HREF="h_network_encryption_security">help</A>.
269 <LI> To increase user's privacy, remove phone-home code that would prompt 
270 users to send an email message upon starting Alpine for the first time for 
271 purposes of counting. Your use of Alpine does not disclose information about 
272 you or your use of Alpine to the developers of Alpine.
274 <LI> New variable 
275 <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> 
276 that allows users to configure versions of the SSL/TLS protocol that Alpine is 
277 restricted to try when establishing a secure connection SSL/TLS to a remote 
278 server. The default can be set at compilation time.
280 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
281 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
283 <LI> Improvements to the configure stage of compilation. Some of
284 these contributed by Helmut Grohne. See
285 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
287 <LI> Add &quot;remove password&quot; command to the management screen for the 
288 password file encryption key. This allows users to use their password file
289 without entering a master password.
291 <LI> Add the &quot;g&quot; option to the select command that works in IMAP 
292 servers that implement the X-GM-EXT-1 capability (such as the one offered 
293 by Gmail.) This allows users to do selection in Alpine as if they were 
294 doing a search in the web interface for Gmail.
296 <LI> New variable close-connection-timeout, which tells Alpine to close
297 a connection that is having problems being kept alive after the number
298 of seconds configured in this variable, if the connection has not
299 recovered. The default is 0, which means to keep the connection alive
300 and wait for the connection to recover.
302 <LI> When a message is of type multipart/mixed, and its first part is
303 multipart/signed, Alpine will include the text of the original message
304 in a reply message, instead of including a multipart attachment.
305 Suggested by Barry Landy.
307 <LI> S/MIME: Some clients do not transform messages to canonical form when 
308 signing first and encrypting second, which makes Alpine fail to parse the 
309 signed data after encryption. Reported by Holger Trapp.
311 <LI> Add /auth=XYZ to the way to define a server. This allows users to  
312 select the method to authenticate to an IMAP, SMTP or POP3 server.
313 Examples are /auth=plain, or /auth=gssapi, etc.
315 <LI> Add backward search in the index screen. Based on patch by Astyanax Foo, 
316 submitted in 2009, but resubmitted by Erich Eckner on 2019.
318 <LI> SMIME: When Alpine is set to validate a message using the user's store, and
319      user agrees to save a certificate of another user, use the saved 
320      certificate immediately to verify the smime message. Reported by 
321      Stefan Mueller.
323 <LI> Do not use a delay when printing messages to screen when the initial
324      keystroke sequence of commands is active. Based on a report from Holger
325      Trapp.
327 <LI> In PC-Alpine, when the decoded name of an attachment does not agree
328      with its encoded name, Alpine will offer to save the file using the
329      UTF8 encoded name.
330 </UL>
333 Bugs that have been addressed include:
334 <UL>
335    <LI> Width of characters is not always determined correctly when wcwidth
336         is used. Revert to using code for the Windows operating system. 
337         Reported by Andrew Ho.
339    <LI> The call realpath(..., NULL) gives an error in Solaris, which means that
340         we need to allocate memory for storing the resolved path. Reported by
341         Fabian Schmidt.
343    <LI> Crash when attempting to bounce a message due to lack of space in
344         allocated space for key menu array. Reported by David Sewell.
346    <LI> Crash when a CA certificate failed to load, and user attempted to
347         view certificate information of other certificate authorities.
349    <LI> Crash in the S/MIME configuration screen when a user turned off S/MIME, and
350         then re-enabled it. Also crash when attempting to enter the S/MIME 
351         configuration screen if S/MIME was turned off.
353    <LI> Deactivate some color code from Pico (as standalone editor in the
354         windows version) until I find a way to activate it again. This is 
355         not critical and it is not something that PC-Pico must have (some 
356         of it already exists in other ways, like color support, what does 
357         not exist is the more complex code that Unix-Pico has with color 
358         codes for specific colors.)
360    <LI> When a message is multipart, and the first part is flowed text, 
361         then forwarding the message will set the first part to be flowed, 
362         and sent that way even when the option Do Not Send Flowed Text is 
363         enabled. Reported by Holger Trapp.
365    <LI> When a message/rfc822 part of a message is encoded with
366         Content-Transfer-Encoding: QUOTED-PRINTABLE, Alpine will stop 
367         processing that message. Later this causes Alpine to crash because 
368         when it displays messages, it assumes that both header and body 
369         parts are processed. Reported by Mark Crispin in 2010, in the 
370         Alpine-info list (message with subject "crash bug in 
371         alpine/mailpart.c:format_msg_att()") with no example, and reported 
372         now by Holger Trapp, with an example.
374    <LI> In addition to the previous report, Alpine encodes message/rfc822
375         messages as QUOTED-PRINTABLE, in contradiction with RFC 2045, 
376         when it receives a report that its encoding is 8bit. We preserve 
377         the encoding reported by the IMAP server, and do not encode in 
378         QUOTED-PRINTABLE.
380    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
381         build when using Visual Studio 2017. Fix contributed by 
382         Ulf-Dietrich Braunmann.
384    <LI> When the locale is not set up to UTF-8, alpine might determine the 
385         width of a character incorrectly. Reported by Alexandre Fedotov.
387    <LI> In some rare cases, when attachments are deleted before saving 
388         emails, the filenames will be displayed in RFC1522 representation, 
389         instead of in decoded form. Reported and patched by Wang Kang.
391    <LI> When colors are edited from the main setup configuration screen, some
392         color settings are not updated until Alpine is restarted. Reported by
393         Andrew Hill.
395    <LI> If the first part of a message is multipart/alternative, and the 
396         first part of this is also a multipart type, then Alpine might 
397         fail to select the first text part when replying to a message. 
398         Reported by Lucio Chiappetti.
400    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
401         Reported and patched by Kyle George.
403    <LI> If the directory where Alpine saves the certificates is empty,
404         alpine would not create a self-signed certificate to encrypt the 
405         password file.
407    <LI> S/MIME: The list of public certificates is freed before it is 
408         reused when a signature fails to verify. This causes Alpine to 
409         crash. Patch submitted by Linus Torvalds.
411    <LI> S/MIME: A message could fail to verify its signature even if the
412         certificate was saved when the message was open. Based on a report 
413         by David Woodhouse to the RedHat bugzilla system.
415    <LI> When there are time changes in the clock, Alpine might go to sleep
416         for big amounts of time while displaying messages in the screen. 
417         Reset sleep time to 5 seconds in case it finds it needs to sleep 
418         more than 5 seconds or a negative amount of time.
420    <LI> Restore recognition of empty directories. It was deleted by mistake
421         when added support for internationalization in folders. Based on a 
422         report by Michael Rutter.
424    <LI> Alpine stops parsing the mailcap file when it finds an invalid entry.
425         Reported by Matt Roberds to the Debian bug system at 
426         <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370">https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370</A>.
428    <LI> Crash with error "Lock when already locked" when an attempt to check
429         for new mail on a locked stream that is being used for a save 
430         operation. Reported by Carlos E.R.
432    <LI> Alpine removes trailing spaces from passwords, making a longin attempt
433         fail. Reported by R. Lyons.
435    <LI> Alpine crashes when opening a remote imap folder and computing scores.
436         Reported by Paul DeStefano.
438    <LI> When more than one server was given in the server-name configuration
439         option of rldap servers, none of them worked. Reported by Robert Wolf.
440 </UL>
443 Version 2.21 addresses bugs found in previous releases and has several 
444 additions as well.
447 Additions include:
448 <UL>
449   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
450        user to choose the dictionary used to spell check, in case the user 
451        communicates in more than one language. Examples of values for the 
452        variable are "en_US" or "de_DE", etc. Only the first 10 
453        dictionaries are offered.
455   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
456        Based on a contribution by Wang Kang.
458   <LI> Colors configured in Alpine are inherited in the composer.
460   <LI> When Alpine is compiled with password file and SMIME support 
461        the password file is encrypted using a private key/public 
462        certificate pair. If one such pair cannot be found, one will be 
463        created. <A HREF="h_password_file_support">Learn more</A>.
465   <LI> Alpine builds with any version of OpenSSL greater than or equal
466        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
467        LibreSSL.
469   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
470        format, which removes text in the SUBJECT between &quot;[&quot; and 
471        &quot;]&quot;.
473   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
474        but it differns in that it gives the time in which the message was
475        sent for messages that are less than a week old. it uses a 24 hour
476        format.
478   <LI> Alpine will include attachments when forwarding some 
479        multipart/alternative messages for which it did not use to include 
480        attachments.
482   <LI> New configuration option 
483        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
484        which adds more ways to control features and variables when you
485        start to reply to a message.
487   <LI> Added support for RFC 2971 - IMAP ID extension.
489   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
490        that allows users to ignore errors in the computation of the size
491        of a message from defective servers.
493   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
494        clients such as Thunderbird do not validate signatures that use sha1 digest.
496   <LI> Add the configuration variable "default-directories", which is called
497        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
498        variable saves a list of directories that are readily accessible 
499        for save or export of attachments. This makes it easier to save 
500        attachments in directories that are hard to navigate to, or that 
501        are accessed frequently.
503   <LI> When a filename is attached and its name is encoded, the save 
504        attachment command will offer to save the file in the encoded form. 
505        This might work for some users, but the save command will have a 
506        subcommand ^N to decode the file name and save the file with the 
507        decoded name.
509   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
510        as well as autocompletes automatically when only one possibility exists 
511        for the ^J attach command.
513   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
514        the html OL tag.
516   <LI> Ignore message from smtp server after a successful authentication
517        challenge.
519   <LI> When a message is saved in the Form Letter folder, add the ability
520        to save the role being used to compose such message so that settings
521        such as the SMTP server set in the role can be used when sending
522        such form message. Suggested and patched by Frank Doepper.
524   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
525        SSLCERTSDIR is not found.
527   <LI> When Alpine sends an attachment, it will set the boundary attribute
528        in lower case, as some SMTP servers, such as those of libero.it 
529        reject messages if the boundary attribute is in uppercase.
531   <LI> Add the ability to change the private key and certificates used
532        to encrypt a password file in the SMIME setup configuration screen.
533        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
535   <LI> SMIME: The ctrl-E command that gives information on the certificate
536        is only available for messages that have a signed or encrypted 
537        part.
539   <LI> SMIME: If a message contains a RFC822 attachment that is
540        signed/decrypted add the ability to view its SMIME information.
542   <LI> SMIME: Certificate information in the S/MIME screen is available 
543        for certificates stored in a container.
545   <LI> SMIME: Offer the common name of the person, instead of the name of
546        file containing the certificate, as the name to be displayed in the 
547        certificate management screen for certificate authorities. 
548        Suggested by Matthias Rieber.
550   <LI> SMIME: Management of several alternate name (SAN) certificates is 
551        improved. When importing a SAN certificate, also import a certificate
552        for the filename, besides for the e-mail addresses in the
553        certificate. Suggested by Matthias Rieber.
555   <LI> SMIME: add full year when displaying information about a certificate
556        in the certificate management screen. Suggested by Matthias Rieber.
558   <LI> SMIME: sort certificates by some type of alphabetical order in the
559        displayed name.
561   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
562        certificates included in signatures, when the option "Validate 
563        Using Certificate Store Only" is enabled. If the user does not wish 
564        to save it, validation will fail.
566   <LI> HTML: Add support for decoding entities in hexadecimal notation.
567        Suggested by Tulip&aacute;nt Gergely.
569   <LI> The &quot;#&quot; command, when used as part of an aggregate
570        operation will allow users to select the role used in either 
571        replying, forwarding or replying to the group of selected messages, 
572        Suggested by Hisashi T Fujinaka.
574   <LI> If the charset of a message can not be determined, use the value set
575        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
577   <LI> Resizing setup screen will redraw screen.
579   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
580        in the width ambiguous zone, it will use other means to determine
581        the width, such as call wcwidth.
583   <LI> Pico: Code reorganization in the search command to make it easier to
584        add subcommands of the search command.
586   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
587        subcommand of the search command to bring this choice into view.
589   <LI> Pico: Add the ability to search for strings in the beginning or end
590        of a line. Use the Ctrl-^ subcommand of the search command to bring 
591        this choice into view.
593   <LI> For a multipart/alternative message, the Take Address command will 
594        work on the part that is being read.
596   <LI> When sending a message, allow for 512 characters of consecutive 
597        non-white space before folding the subject line.
599   <LI> Make sure titlebar (the line at the top of the screen) always 
600        contains the name of the folder/newsgroup that is open, if this 
601        fits in the title.
603   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
604        will also scramble the name, version and operating system in the 
605        message-id header. Based on a contribution by Dennis Davis, which 
606        is itself based on a contribution by Mark Hills.
608   <LI> Change in logic in imap_set_password function to make Alpine ask if
609        a user wants to save a password before reading the password file.
611   <LI> When exporting all parts of a message, if two attachments have the same
612        name, do not overwrite a file more than once, but instead add a counter
613        number to the filename to make a new file that does not exist in the file
614        system.
616   <LI> Add the Control-R subcommand to the save command for attachments. 
617        This subcommand toggles if the saving will be done in binary mode 
618        for text attachments. When a user saves an attachment using binary
619        mode it will be saved as it was sent, otherwise the attachment will
620        be transformed to UTF-8 for further transformation through internal
621        and user defined filters for saving.
623   <LI> Add command line argument -smimedir, which allows users to specify
624        the default path for a directory that contains the public, private, 
625        and ca directories. This is useful in case a user has a backup of 
626        old certificates that cannot be installed in the ~/.alpine-smime 
627        dir.
629   <LI> Reimplementation of the code that allows the .pinerc file to be a
630        symbolic link by Kyle George from tcpsoft.com to use realpath.
632   <LI> When saving an attachment, the "^T" command leads to a screen where the
633        "A" command can be used to add a file. A directory can be added by
634        pressing "^X" after the "A" command. Added after a suggestion by
635        Stefan Goessling.
637   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
638        scroll through the history of directories used to save attachments, 
639        while preserving the given name of the file. Suggested by Peter 
640        Koellner.
642   <LI> SMIME: Turn off automatic signing and encrypting of a message when
643        bouncing. Suggested after a discussion with Matthias Rieber.
645   <LI> When messages are selected, warn the user if a message that is not
646        selected will be bounced, or if not all selected messages will be 
647        bounced. Suggested by Ulf-Dietrich Braumann.
649   <LI> The bounce command adds a subcommand to choose a role.
651   <LI> When selecting messages by number, the &quot;.&quot; character can 
652        be used to specify the message on which the cursor is on.
654   <LI> When Alpine opens an attachment, it sometimes changes the extension 
655        of the file that is being opened and replaces it by another for the 
656        same mime type. If Alpine finds that the extension of the file 
657        corresponds with the mime type, according to the mime-types file, 
658        then it will keep it, and no substitution will be made.
660   <LI> Set no restrictions on the length of encoded subjects, but encode
661        words in length of no more than 75 characters.
662 </UL>
666 Bugs that have been addressed include:
667 <UL>
668   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
669        Alpine will use the function ASN1_TIME_print to determine the date 
670        of validity. Reported by Ben Stienstra.
672   <LI> SMIME: Crash when attempting to unlock the password file and an
673        incorrect password is entered.
675   <LI> SMIME: Crash when checking the signature of a message that contains
676        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
677        Krellner.
679   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
681   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
682        remote containers. Reported by Matthias Rieber.
684   <LI> SMIME: certificates included in messages were not being transferred
685        to a remote container.
687   <LI> SMIME: Crash if public certificates are located in an inaccessible
688        remote server and the private key is not available.
690   <LI> SMIME: Alpine does not remove temporary files created when adding a 
691        CA certificate to a container. Reported by Holger Trapp.
693   <LI> SMIME: When reading a local certificate, Alpine converts the name 
694        of the certificate to lowercase, which may make Alpine not be able 
695        to read such certificate. Reported by Dennis Davis.
697   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
698        entering a password to read an encrypted message will make Alpine 
699        forget the key and not ask the password to unlock it again in case 
700        it is necessary to unlock it again. Reported by Ulf-Dietrich 
701        Braumann.
703   <LI> Alpine would use freed memory while trying to compute the color
704        of the titlebar. This happened when trying to continue a postponed 
705        message.
707   <LI> Alpine failed to read an encrypted password file if too many
708        passwords were saved in the password file.
710   <LI> When selecting messages while in Threaded Index Screen, some 
711        messages other than top of threads could appear in the index, making
712        Alpine display messages &quot;out of the screen.&quot;
714   <LI> The index format would be chopped at the position of an unrecognized 
715        token, instead of skipping the token as intended.
717   <LI> Work in progress: Avoid calling non-safe functions when Alpine
718        receives a signal. See bug report 
719        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
721   <LI> Crash when attempting to read a message after a bounce command. 
722        In order to produce a crash one needed to use the ^T subcommand and 
723        do a search in a LDAP directory. The crash is produced by changes 
724        to the text in the title bar. Reported by Heinrich Mislik in the 
725        Alpine-info list.
727   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
728        making Alpine not display the correct character at the position 
729        that wrapping is done. Reported by Wang Kang.
731   <LI> Pico: Searching for a string that is too long causes Pico to crash
732        in the next search.
734   <LI> Fix vulnerability in regex library. This only affects those who use
735        this library, such as the windows version of Alpine. See 
736        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
737        for more details.
739   <LI> Alpine would not set include and lib paths for OpenSSL if this was
740        installed in /usr/local/ssl.
742   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
743        contents when saving its configuration.
745   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
746        the name. Reported by Andreas Fehr.
748   <LI> When opening an INBOX folder in a context different from the 
749        incoming folders collection, from the command line, Alpine would 
750        open the INBOX folder from the incoming folders collection.
752   <LI> Mismatch in size of UCS and CELL caused a corruption in the
753        content of a pointer, which made the speller in PC-Alpine get the 
754        content of a word incorrectly.
756   <LI> Skip testing openssl compatibility version when cross-compilation
757        is detected. Fix contributed by Antti Sepp&auml;l&auml;
759   <LI> Alpine fails to remove temporary files used during a display or sending
760        filter. Fix contributed by Phil Brooke.
762   <LI> When the index is in zoomed state, adding new messages to the 
763        selection would not show those messages if those messages are on 
764        top of the current message in the top of the screen. Reported by
765        Ulf-Dietrich Braumann. In addition, when the user scrolls through
766        the index, this scroll smoothly, without jumping pages. Reported
767        by Holger Trapp.
769   <LI> Crash when reviewing history of saving attachments.
771   <LI> Crash when canceling a goto command on a local collection that has
772        not been expanded and attempting to expand such collection.
774   <LI> Crash in Pico when forwarding messages that contain a direction mark
775        at the end of a line. Reported by James Mingo.
777   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
778 </UL>
782 Version 2.20 addresses bugs found in previous releases and has several 
783 additions as well.
786 Additions include:
789 <UL>
790   <LI> Upgrade UW-IMAP to Panda IMAP from 
791        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
792   <LI> S/MIME: Add screen to manage certificates.
793   <LI> S/MIME: Signatures are validated using the user's certificates instead
794        of the ones included in the message. Behavior can be disabled by
795        disabling the option <A href="h_config_smime_use_cert_store">
796         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
797        by default.
798   <LI> S/MIME: sign messages using intermediate certificates when needed 
799        and possible.
800   <LI> S/MIME: validation of certificates for servers that modify signed 
801        content.
802   <LI> S/MIME: signed and encrypted messages will be signed first and 
803        encrypted second, so that they can be decoded by other clients.
804   <LI> S/MIME: add the sender certificate to the list of certificates in
805        encrypted messages to make it possible for the sender to decrypt
806        the message they sent.
807   <LI> S/MIME: When transferring certificates to a local container, create 
808        container with default names PublicContainer, PrivateContainer and 
809        CAContainer, as appropriate for these files, unless the user has 
810        provided some other names.
811   <LI> S/MIME: Forwarding a message will include the signed part as part
812        of the text and not as a multipart message, just as the reply
813        command does.
814   <LI> HTML: Style tag in body of html message causes Alpine to not write
815        its content until a new &lt;/style&gt;
816   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
817        the same inline tag; the same is valid for the &lt;HR&gt; tag.
818   <LI> Add support to selective expunge through a subcommand of the 
819        select-apply commands. Read more in the <A 
820        HREF="h_index_cmd_expunge">help</A> for the expunge command.
821   <LI> Pico: New subcommand of the search command, allows to reverse the
822        direction of search.
823   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
824        the key and certificate used to encrypt the password file are saved 
825        in the ~/.alpine-smime/.pwd directory, or in the directory specified
826        by the -pwdcertdir command line option. 
827        <A HREF="h_password_file_support">Learn more</A>.
828   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
829        server to use different ways to connect using ssl, for 
830        example {server.com/tls1} will attempt to connect to 
831        server.com at the ssl imap port (port 993) and establish a 
832        connection using TLSv1. These flags can be used in 
833        conjunction with the /ssl flag, the ssl flag is redundant. 
834        Conversely, however, the /ssl flag does not imply any of 
835        these flags; the /ssl flag means SSLv3 or, if not available, 
836        SSLv2 in the SSL port.
837   <LI> Alpine does not attempt to automatically reopen a collection 
838        that was not opened due to cancellation by the user. 
839        Instead, the user must try to open it explicitly.
840   <LI> Alpine searches for a certificate that matches an email address in
841        all addresses in a certificate (instead of just the first 
842        one) but when it tries to unlock the certificate, it asks 
843        for the password for the first email address in that 
844        certificate.
845   <LI> Style tag in body of html message causes Alpine to not write its content
846        until a new &lt;/style&gt;
847   <LI> Experimental: Write the content-type of a message in 
848        lowercase, as some non-compliant servers do not understand 
849        uppercase content-type, such as those of GMX.de.
850   <LI> Experimental: Do not send the RSET command before attempting
851        to send a message, as this causes a delay in some evily managed
852        servers.
853   <LI> Opening a folder updates recent count in maildrops (this 
854        already works for other types of folders)
855   <LI> Automatically redraw screen after opening an attachment 
856        instead of simply clearing it.
857   <LI> Pico: Justification works without need of a predefined quote 
858        string. This allows justification of blocks of text that are 
859        indented with spaces.
860   <LI> Decode the name of attachment names, so they can be written as part   
861        of the description of the part. 
862   <LI> Check bounds and tie strings off to improve security. Contributed 
863        by James Jerkins.
864   <LI> Replace tabs by spaces in From and Subject fields to control for
865        size in screen of these fields. Change only in index screen display.
866   <LI> Aggregate operations allows bouncing a list of messages using a role.
867        Suggested by Ulf-Dietrich Braumann.
868   <LI> Disable saving new passwords to the password file. Implemented
869        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
870   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
871      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
872      Charles M. Register.
873 </UL>
877 Bugs that have been addressed include:
878 <UL>
879   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
880        in personal names. Reported by Lev Gorenstein.
881   <LI> When writing the .pinerc file, lines were truncated if they were longer
882        than 10,000 characters. This could cause data corruption, so now lines
883        are allowed to be of any length.
884   <LI> S/MIME: signed messages that contained an attachment would not validate.
885   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
886        validate. Thanks to Andreas Schamanek for testing, debugging and 
887        advising during the process of fixing this problem.
888   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
889        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
890        and Stefan Mueller.
891   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
892        home directory.
893   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
894        SMIME making it not possible to sign or encrypt messages.
895   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
896        information that is not part of the body, and hence making the body
897        of the message seem wrong.
898   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
899        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
900        enabled, the message contains 8bit characters and the smtp server 
901        supports 8bit sending.
902   <LI> When replying to several messages, subject will be decoded first,
903        and then stripped from re/fwd before they are compared to determine
904        the subject of the replied message.
905   <LI> Crash when tcp connection to NNTP server was lost after connection
906        had been established, but lost immediately afterwards.
907   <LI> Crash with message &quot;lock when already locked&quot;, when painting
908        an index was based on scores that needed information from a remote
909        addressbook in the same server as the folder opened. Reported by
910        Peter Koellner.
911   <LI> Crash in message/rfc822 attachments encoded in base64.
912   <LI> Postponed messages whose content-type is text/html, text/enriched and
913        text/richtext are sent with that content-type, even though, after
914        resuming composition, Alpine had changed its type to text/plain.
915   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
916        character set, which might lead to a crash or a corruption in the 
917        screen. Work was done to contain the bug. A more complete fix will 
918        be done in a future release. Reported by Professor Robert Funnell.
919   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
920   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
921   <LI> Save command did not warn of existence of a message with a deleted 
922        attachment in an aggregate save, unless cursor was positioned on a message 
923        with a deleted attachment. Reported by Florian Herzig.
924   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
925        in an IMAP server.
926   <LI> DATE tokens were not internally transformed to UTF-8, which made their
927        values not appear complete in the screen. Reported by Werner Scheinast.
928   <LI> Fixes to configure script so that it will not require PAM for every system.
929   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
930        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
931        during the build. Fix by Ulf-Dietrich Braumann.
932   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
933        needs to use tcl_getstringresult() instead. Reported by 
934        Ulf-Dietrich Braumann.
935   <LI> Quoted string in URL Viewers configuration variable were not 
936        unquoted before passing to viewer.
937   <LI> Fix in configure script to detect location of tcl library; add
938        /usr/local in FreeBSD and fix a bug in configure script that used 
939        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
940        by Werner Scheinast.
941   <LI> Move SSL configurations from UW-IMAP to configure script, and
942        update OpenSSL configuration for Mac OS X.
943   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
944   <LI> When the download of an attachment is interrumpted, Alpine stills
945      caches what was downloaded, making the download incomplete for 
946      subsequent calls of Alpine attempting to open the attachment. In the 
947      future, Alpine will not cache any downloaded part of the attachment 
948      when it is interrupted.
949 </UL>
954 Version 2.11 addresses bugs found in previous releases and has a few 
955 additions as well.
958 Additions include:
961 <UL>
962    <LI> Alpine requires version 1.0.0c of Openssl to build.
963    <LI> Increase encryption of S/MIME encrypted messages.
964    <LI> Pico: Improvements in justification of paragraphs: lines that begin
965 with a quote string, followed by a space were considered individual paragraphs,
966 now they are considered part of a paragraph. Based on earlier joint work
967 with Jeff Franklin.
968    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
969    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
970 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
971    <LI> Added recognition of ws and wss URIs.
972    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
973  <A HREF="h_config_directory_color">directory names</A>,
974  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
975    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
976 used in the display of the INDEX SCREEN.
977    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
978 that adds the ability to preserve To: and Cc: fields when replying to a 
979 message, as specified by original sender.
980    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
981  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
982    <LI> Quota command includes subcommands for printing, forwarding, etc.
983 </UL>
986 Bugs that have been addressed include:
988 <UL>
989   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
990   <LI> Crash when resizing the screen in a configuration screen.
991   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
992   <LI> Do not use a shell to open a browser.
993   <LI> Configure script did not test for crypto or pam libraries.
994   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
995   <LI> Change Cygwin directory separator to &quot;/&quot;.
996   <LI> Alpine could set List- headers, contrary to RFC 2369.
997 </UL>
1000 Version 2.10 addresses bugs found in previous releases and has a few 
1001 additions as well.
1004 Additions include:
1007 <UL>
1008    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
1009    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
1010    <LI> Foreign characters are decoded correctly in IMAP folder names.
1011    <LI> Question about breaking connection to slow servers includes their name.
1012    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
1013    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
1014    <LI> Cygwin: Alpine builds without need of patch.
1015    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
1016    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
1017    <LI> Add support for strong encryption of password file when S/MIME is built in.
1018 </UL>
1021 Bugs that have been addressed include:
1024 <UL>
1025    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
1026    <LI> Double allocation of memory in Pico.
1027    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
1028    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
1029    <LI> Not recognition of environment variables in some options.
1030    <LI> Not display of login prompt during initial keystrokes.
1031    <LI> justification of long urls breaks them.
1032    <LI> Incorrect New Mail message when envelope is not available.
1033    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
1034    <LI> Crash when resizing the screen after display of LDAP search.
1035    <LI> Crash when redrawing screen while opening a remote folder collection.
1036    <LI> Infinite loop in scrolltool function during notification of new mail.
1037    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
1038    <LI> No display of signed and encrypted S/MIME messages.
1039    <LI> Alpine will not build with OpenSSL.
1040    <LI> Crash for double locking in calls to c-client.
1041    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
1042    <LI> Ignore the references header when threading messages
1043    <LI> No update of colors in index screen after update to addressbook.
1044 </UL>
1047 Version 2.01 addresses bugs found in previous releases and has a few 
1048 additions as well.
1051 Additions include:
1054 <UL>
1055    <LI> Fixed non-ASCII web alpine handling
1056    <LI> Added web alpine help.
1057    <LI> Allow web alpine inbox on second IMAP server.
1058    <LI> Allow web alpine config reset after bad inbox-path gets set.
1059    <LI> Added web alpine ability to create group contact from contact list members.
1060    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
1061    <LI> Tidied up web alpine script layout.
1062    <LI> Fixed web alpine status message ordering
1063    <LI> Added web alpine Fcc setting via Contacts in Compose
1064    <LI> Fixed web alpine autodraft attachment issues
1065    <LI> Fixed web alpine problems with recent count maintenance
1066    <LI> Fixed web alpine newmail arrival display in message list
1067    <LI> Added web alpine confirmation to folder create for Move/Copy
1068    <LI> Added web alpine user-domain support
1069    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
1070 </UL>
1073 Bugs that have been addressed include:
1076 <UL>
1077    <LI> In web alpine fixed delete all selected within a search result to reorient
1078         correctly to whole-mailbox message list.
1079    <LI> Fixed web alpine delete in view page to be sensitive to sort
1080    <LI> Fixed web alpine open of folder within directory from folder manager page.
1081    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
1082    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
1083    <LI> Fixed web alpine adding contacts from message list and view
1084    <LI> Fixed web alpine create of non-existent fcc
1085    <LI> Remove mistakenly left debugger statement in web alpine javascript.
1086    <LI> Some UNIX alpine build problems fixed
1087    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
1088         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
1089         by locale charmap call on some Solaris 8 systems.
1090    <LI> MacOS Keychain logins were not working correctly with generic host names, like
1091         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
1092         new password requests when not needed
1093    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
1094         last folder in the list
1095    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
1096         looked for along with the email address
1097    <LI> Changes to configure to get spellcheck options with work with arguments.
1098    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
1099         returned by gethostname (iPhone can do this)
1100    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
1101         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
1102    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
1103         Jake Scott of marganstanley.com.
1104    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
1105         is not used in alpine.
1106    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
1107         Apparently this causes RIM Blackberry BIS service problems. This is not
1108         used in alpine.
1109    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
1110    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
1111         Fix from Ludwig Nussel of SUSE and from Crispin.
1112    <LI> Include whole filename in export filename history
1113    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
1114 </UL>
1117 Version 2.00
1118 addressed bugs found in previous releases and had a few additions as well.
1120 Additions included:
1123 <UL>
1124    <LI> Redesigned Web Alpine interface
1125    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
1126         in UNIX versions of Alpine
1127    <LI> Attempt to include the attachment filename as part of the name of the
1128         temporary file used when viewing an attachment with an external program.
1129         Add some randomness to that filename to make it hard to predict the filename.
1130         Add a filename extension, usually derived from the type/subtype, to the
1131         temporary filename. This was previously done only on Windows and MacOS X.
1132    <LI> Enhance address completion in the composer (TAB command) so that it looks
1133         through nicknames, fullnames, and addresses from the address book; addresses
1134         from the message being viewed, if any; and the results from
1135         <A HREF="h_direct_config">LDAP Directory Server</A>
1136         lookups for all of the defined directory servers that have the
1137         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
1138         feature set.
1139    <LI> Make the default character set setting more liberal in what it will accept
1140         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
1141    <LI> Remove the Alpine revision number from the titlebar in released versions
1142         while leaving it there in snapshot versions
1143    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
1144         display of asterisks when you type a password for Alpine
1145    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
1146    <LI> When the
1147         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
1148         feature is turned on convert not only the dates in the index screen but also
1149         the dates in the MESSAGE VIEW
1150 </UL>
1153 Bugs addressed in the 2.00 release included:
1156 <UL>
1157    <LI> Crash when using tab-completion for selecting a Save filename
1158    <LI> Make Web Alpine help text images relative for more portability
1159    <LI> Fixed attach save of html parts in Web Alpine
1160    <LI> Viewing, printing, exporting, replying, and bouncing of message
1161         digests was broken. Replying and bouncing should not have been
1162         allowed at all for digests. It would be nice to have a more standard
1163         index-like view of a message digest but that has not been addressed
1164         with this minor bug fix.
1165    <LI> Adjust wrapping of HTML messages so that the margins specified by
1166         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
1167         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
1168         are observed correctly
1169    <LI> Interrupt of WhereIs command in index was broken
1170    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1171         option did not work correctly interpreting unknown characters in message headers
1172    <LI> Long address lines could cause blank continuation lines
1173    <LI> Save to a local default INBOX failed if the primary collection was also local,
1174         which it is by default. The save went to  ~/mail/inbox instead.
1175    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
1176         inbox, not the inbox in the primary collection
1177    <LI> Address book entries with lots of addresses would be truncated when
1178         entered in the composer with a screen size wider than 270 or so characters
1179    <LI> Some fields in the index screen were truncated when the screen width was
1180         wider than 256 characters
1181    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
1182         folder, and there is a more than 10 minute pause between typing the TAB
1183         and typing the Yes
1184 </UL>
1187 Version 1.10(962)
1188 addressed bugs found in previous releases and had a few additions as well.
1190 Additions included:
1193 <UL>
1194    <LI> Add the possibility of setting a default role
1195         (see <A HREF="h_role_select">Roles Screen</A>)
1196         which may be convenient if your work flow involves acting in one
1197         role for a while then switching to another role and staying in the
1198         new role for another period of time
1199    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1200         is encountered, ask the user if he or she wants to continue with the
1201         risky Save anyway instead of aborting. This may be helpful if your
1202         IMAP server is broken in this way but be aware that it is possible there
1203         was a real error instead of just a broken server implementation.
1204    <LI> Some configure adjustments for Kerberos detection and
1205         for SCO OpenServer 5 support
1206    <LI> Hide INBOX in a collection if it also appears as an
1207         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1208    <LI> Show asterisks for feedback when the user is typing a password
1209    <LI> Performance improvement for threading of large folders
1210    <LI> Previously, the search used to find
1211         Pattern matches containing To patterns searched for both To
1212         and Resent-To headers. The relatively complicated search this
1213         produces causes problems when using some deficient IMAP servers.
1214         Now the default is to look only for To headers and ignore the
1215         presence of Resent-To. The previous behavior may be restored
1216         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1217    <LI> Add an
1218         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1219         to help with reading malformed unlabeled messages
1220    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1221    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1222    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1223 </UL>
1226 Bugs addressed in the 1.10(962) release included:
1229 <UL>
1230    <LI> Crash when encountering certain errors from an SMTP server
1231    <LI> Crash in composer caused by overflow in replace_pat()
1232    <LI> Hang when authenticating to an SMTP server that fails with a
1233         &quot;connection disconnected&quot; error
1234    <LI> Bug in handling of trailing tab character in flowed text
1235    <LI> Security enhancement for mailcap parameter substitution
1236    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1237         did not work if the message being replied to was not flowed text
1238         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1239         was not turned on
1240    <LI> Don't allow printer to be changed through hidden config screen
1241         if system administrator didn't want it to be allowed
1242    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1243         should know that it won't work, causing error messages to appear
1244    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1245         of double-quote double-quote didn't work right
1246    <LI> Quoting wasn't being done to protect special characters from the
1247         MacOS X shell when
1248         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1249         was not defined
1250    <LI> On MacOS X message attachments should be shown internally instead of
1251         being shown using the Mail application
1252    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1253         sometimes set the outgoing charset to X-UNKNOWN, making the result
1254         unreadable
1255    <LI> When the sending of a message failed lines with leading spaces had one
1256         additional space inserted in each of those lines when the user
1257         was returned to the composer
1258    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1259         that contained non-ascii characters because it was truncating the
1260         line being searched so that it was shorter than what was visible on
1261         the screen
1262    <LI> When composing, an attachment with a long name that causes wrapping in
1263         just the wrong place would generate an error and cause the send
1264         of the attachment to fail
1265    <LI> After calling the file browser to attach a file in the composer, a resize
1266         of the window when back in the composer would redraw the last screen that
1267         had been shown in the browser instead of the current composer screen
1268    <LI> Possible crash in index screen when encountering unparsable addresses
1269         or when using one of the PRIORITY tokens or the HEADER token in the
1270         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1271    <LI> Problems with Header Color editing if the configuration option
1272         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1273         was inadvertently changed to the Empty Value in the hidden config screen
1274    <LI> When resuming the final postponed message from an Exchange server the user
1275         could get a certificate validation failure because alpine was trying
1276         to validate the canonical name of the folder instead of the name the
1277         user used
1278    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1279         failure to find a match
1280    <LI> Make matching of extension names case independent in mimetypes files
1281    <LI> Windows dialog boxes for entering text were not working correctly
1282    <LI> Replying to or Forwarding multipart/alternative messages which had a
1283         single text/html part did not work well
1284    <LI> Printing the print confirmation page caused a crash
1285    <LI> A To line with a long, quoted personal name could display incorrectly
1286         if it was close to the same width as the screen
1287    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1288         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1289         are turned on hide (0/0) when the folder is empty
1290    <LI> Folder completion while Saving didn't work if the collection being
1291         saved to was the local home directory
1292 </UL>
1295 Version 1.00
1296 was an evolutionary release based on Pine, which was also
1297 developed at the University of Washington.
1298 It is upwards-compatible for existing Pine users.
1301 Changes included:
1303 <UL>
1304    <LI> Ground-up reorganization of source code around addition
1305         of "pith/" core routine library.
1306    <LI> Fundamental improvement in Alpine's internal text handling, which
1307         is now based exclusively on Unicode. This allows displaying incoming
1308         messages and producing outgoing messages in many different languages.
1309    <LI> Ground-up reorganization of build and install procedures
1310         based on GNU Build System's autotools. NOTE, the included IMAP library
1311         build is not based on autotools, so some features will not work. However,
1312         it should get built automatically during the Alpine build process.
1313    <LI> Web-based version included built on TCL designed to run under
1314         a suitable CGI-supporting web server such as Apache.
1315 </UL>
1319 Details on changes in previous (prerelease) versions of Alpine
1320 may be found at the following URL:
1322 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1325 <HR WIDTH="75%"><P>
1327 <H2>Getting Help</H2>
1328 <DL>
1329 <DT>Online Help</DT>
1330 <DD>
1331 Every Alpine screen and command has associated help text
1332 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1333 </DD>
1335 <DT>Web Help</DT>
1336 <DD>
1337 The most current source of information about Alpine,
1338 including new version availability, is the web page at
1340 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1341 </DD>
1342 </DL>
1344 <HR WIDTH="75%"><P>
1346 <H2>Additional Information</H2>
1348 General Alpine configuration information can be found
1349 <A HREF="h_news_config">here</A>.
1351 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1352 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1353 access is provided by the IMAP Toolkit Environment (c-client library)
1354 version <!--#echo var="C_CLIENT_VERSION"-->.
1355 <P> 
1356 Alpine was developed until 2009 by the Office of Computing 
1357 &amp; Communications at the University of Washington in Seattle.  
1358 Since then, the effort of developing Alpine has been continued by
1359 a community of volunteers who make good software even better!
1362 Alpine Copyright 2013-2020 Eduardo Chappa, 
1363 <BR> Copyright 2006-2008 University of Washington.
1366 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1367 or instead you can find the Apache License, version 2.0 at the web URL:
1370 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1373 &lt;End of Release Notes&gt;
1374 </BODY>
1375 </HTML>
1376 ====== h_password_file_support ======
1377 <HTML>
1378 <HEAD>
1379 <TITLE>Encryption for Password File Support Explained</TITLE>
1380 </HEAD>
1381 <BODY>
1382 <H1>Encryption for Password File Support Explained</H1>
1384 Index<BR>
1385 <OL>
1386 <LI><A HREF="#content">Explanation</A>
1387 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1388 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1389 </OL>
1391 <P><A NAME="content">Unix Alpine Only.</A>
1393 <P> If your version of Alpine has been built with password file support
1394 then you can use a special file to save your passwords, and avoid typing
1395 them every time you open a connection to a remote server.
1397 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1398 password file will be encrypted with a strong key. There are two ways in 
1399 which this can happen: Alpine will either use a matching private key and 
1400 public certificate pair that you already own, or it will create one for 
1401 you, just for purposes of encrypting this file. We describe both processes 
1402 below.
1404 <P> Initially, Alpine will scan your public and private directories for a 
1405 certificate/private key pair that works. Alpine will pick the first pair 
1406 that it finds that matches. 
1408 <P> Once a pair has been chosen, it will be copied to the directory 
1409 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1410 that directory. The first time this process is done, this directory will 
1411 be created, a key/certificate pair will be copied to it, from then on 
1412 this pair will be used to encrypt and decrypt your password file. 
1414 <P> If you want to use a specific key and certificate pair to encrypt
1415 your password file, you can create the directory ~/.alpine-smime/.pwd 
1416 manually, and then create your preferred key/certificate pair there.
1417 Alpine will use this key regardless of if it has expired, or if it is
1418 self-signed. These issues do not affect the encryption or decryption
1419 of the password file.
1421 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1422 your key/certificate pair, you can specify a different one with the 
1423 -pwdcertdir command line option in Alpine. If the directory specified by 
1424 this option is not found Alpine will fail to encrypt and decrypt your 
1425 password file. However if it exists, Alpine will search for a 
1426 key/certificate pair in that
1427 directory, and if it does not find one, it will create one and save it
1428 in that directory.
1430 <P> Alpine does not care about the names of the key and certificates in 
1431 this directory, but the private key must have &quot;.key&quot; extension 
1432 and your public certificate must have the &quot;.crt&quot; extension. The
1433 name of the private key will be used in the prompt when you are asked
1434 to unlock your key to decrypt your password.
1436 <P> If Alpine cannot find a suitable private key and public certificate 
1437 pair to encrypt your password, it will create one. You will be asked to 
1438 create a &quot;Master Password&quot; to protect such key. At this moment 
1439 there are no restrictions on passwords, other than they have to be at 
1440 least 8 characters long, but future versions of Alpine will include 
1441 functionality to restrict master passwords, as set up by the administrator 
1442 of the system in the pine.conf.fixed file.
1444 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1446 <P>Assume you have a private key called peter@address.com.key in your, 
1447 ~/.alpine-smime/private directory, and a public certificate called 
1448 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1449 are your only key/certificate pair.
1451 <P> When Alpine starts for the first time, without command line options, 
1452 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1453 it will create it. Then it will go through your keys and certificates and 
1454 find a pair that it can use, and copy the files peter@address.com.key,
1455 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1456 you can do the same by copying these files by yourself. This can be done
1457 with the sequence of commands
1459 <PRE>
1460 mkdir ~/.alpine-smime/.pwd
1461 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1462 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1463 </PRE>
1465 <P> When Alpine starts, you will be asked the password to unlock your
1466 private key with the prompt.
1468 <PRE>
1469 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1470 </PRE>
1472 <P> If you prefer to use different names for your private and public keys 
1473 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1474 preserve the extension of the files. For example, you can use the names 
1475 private_key.key and public_cert.crt instead. In this case, the prompt you 
1476 will see when you are asked to unlock your private key will read
1478 <PRE>
1479 Enter password of key &lt;private_key&gt; to unlock password file:
1480 </PRE>
1482 <P>Observe that you do not need to use an existing key/certificate pair, 
1483 and that you can create a new private key/public certificate pair to 
1484 encrypt and decrypt your password file. Alpine provides a mechanism to
1485 change the encryption key for this file in the S/MIME configuration
1486 screen.
1488 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1490 <P> If Alpine cannot find a suitable private key and public certificate pair
1491 to encrypt your password file, it will create one. When doing so, it will
1492 start the process with the following warning:
1494 <PRE>
1495 Creating a Master Password for your Password file.
1496 </PRE>
1498 <P> Then Alpine will ask you to enter your Master Password:
1500 <PRE>
1501 Create master password (attempt 1 of 3):
1502 </PRE>
1504 <P> Once you enter this password, and it validates according to system policy,
1505 you will be asked to confirm this password. 
1507 <PRE>
1508 Confirm master password (attempt 1 of 3):
1509 </PRE>
1511 <P> If you input the same password, then Alpine will set that as your 
1512 Master Password, and you will use this password to unlock your key in the 
1513 future.
1515 <P> If you would like to switch your Master Password in the future, you can 
1516 do so by creating a new public key and public certificate pair. You can do 
1517 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1518 Certificate for Password File&quot; section, simply enter your current 
1519 password to unlock your current key and then press &quot;C&quot; to create 
1520 a new key.
1523 &lt;End of help&gt;
1524 </BODY>
1525 </HTML>
1526 ====== h_network_encryption_security ======
1527 <HTML>
1528 <HEAD>
1529 <TITLE>Network Encryption Security Explained</TITLE>
1530 </HEAD>
1531 <BODY>
1532 <H1>Network Encryption Security Explained</H1>
1534 You can specify which encryption protocol you would like to try when
1535 creating a secure connection to a server. Alpine will attempt to use
1536 that encryption protocol, but in practice the protocol being used will
1537 default to the most secure protocol that both Alpine and the server
1538 support.
1540 <P> If you use the latest version of OpenSSL, the /ssl modifier to the 
1541 server definition will use the most secure version of the TLS encryption 
1542 protocol. The same will be true if you try /tls1_1 or /tls1_2, but in an 
1543 old version of OpenSSL (pre 1.1.0 series) /tls1_1 might mean to use 
1544 version 1.1 of the TLS protocol.
1546 <P> You will never go wrong by using the /ssl modifier. At the time of
1547 this writing OpenSSL had released version 1.1.1, with support for
1548 TLS version 1.3. If your version of OpenSSL does not support this version
1549 of the TLS protocol, then the /tls1_3 modifier will only mean to use
1550 the most secure version of the TLS protocol that OpenSSL and the
1551 server can negotiate. In future versions of OpenSSL, /tls1_3 might mean
1552 to try to negotiate a higher version of the TLS protocol.
1554 <P> In order to avoid confusion, the /ssl flag is the best way to guarantee
1555 the highest encryption protocol available, and it is the recommended
1556 modifier to the server definition to create a secure encrypted connection.
1559 &lt;End of help&gt;
1560 </BODY>
1561 </HTML>
1562 ====== h_xoauth2 ======
1563 <HTML>
1564 <HEAD>
1565 <TITLE>XOAUTH2 Authenticator Explained</TITLE>
1566 </HEAD>
1567 <BODY>
1568 <H1>XOAUTH2 Authenticator Explained</H1>
1570 The XOAUTH2 authenticator method is a way in which you can sign in to your
1571 account to read and send email. This method is different from the traditional
1572 username/password that users are accostumed to, and it needs to be set up
1573 by the user. This text will help you understand this authentication method.
1576 The most important difference between this method and other authentication
1577 methods is what happens if someone steals your credentials. This method is
1578 attached to three components: Your username, your password and your email
1579 program.
1582 At the beginning of this process, the developer of the email program 
1583 registers the email program with the email service provider (Gmail, 
1584 Outlook, etc.) In return, the email service provider creates an id and
1585 secret for the email program, which the email program will use in the 
1586 future. Since Alpine is an open source program, these values are part
1587 of the source code, and are known to everyone, and cannot be obfuscated.
1590 After a program has been registered with an email service provider, the 
1591 user must authorize the email program access to their email account in 
1592 that service. Alpine helps you do that, but it cannot do all the process 
1593 for you, and you will need to use an external web browser to authorize
1594 Alpine to read and send email.
1597 This part of the process is simple. Alpine creates a URL based on the id 
1598 and secret created by the email service, which the user opens. Once the 
1599 URL has been opened, the user signs in to the server, and once signed into
1600 the account, the user is asked to authorize Alpine access to the email 
1601 account. If the user agrees, an &quot;<I>Access Code</I>&quot; will be
1602 generated.
1605 An Access Code is a very long string, and so the recommendation is to copy 
1606 and paste this code back into Alpine, at the time Alpine is helping you 
1607 set up this authenticator. This part of the process is done only once per 
1608 email program (If you run Alpine in several computers, you would do this 
1609 once per computer. Each computer gets its own Access Code.)
1612 Once Alpine has an Access Code, it goes back internally to the email 
1613 service and asks it to generate two strings, called the &quot;<I>Refresh 
1614 Token</I>&quot; and the &quot;<I>Access Token</I>&quot;. This part is 
1615 invisible to the user, and they will never see it, but in order for you to 
1616 understand what to do in case you lose them, you need to understand their 
1617 use.
1620 The <I>Access Token</I> is the equivalent of a temporary password. It 
1621 allows the user to access (and reaccess as many times as they would like)
1622 their email account for a limited amount of time, typically 1 hour after
1623 it was issued. After that time expires, users need a new Access Token.
1626 The <I>Refresh Token</I> is the equivalent of a password generator. With 
1627 this token, Alpine can go to the email service provider and request a new 
1628 Access Token. This part of the process does not need user intervention, 
1629 anyone can do this, as long as they have the Refresh Token, program id and 
1630 program secret, so it is important that users keep their Refresh Token as 
1631 secure as they can.
1634 Given that the Refresh Token and the Access Token are long strings, users 
1635 are not supposed to be able to memorize them and recall them later. Alpine 
1636 will store them in the password file, should a user have one. Otherwise, 
1637 the user will have to create one each time they run Alpine, starting by 
1638 creating the Access Code all over each time they try to sign in to their 
1639 email account. When Alpine is compiled with SSL and password file support, 
1640 it will default to saving this information using encryption and under a 
1641 master password, so unless they have made changes to this process, their 
1642 Refresh and Access Tokens are saved securely and persist from one session 
1643 to the next.
1646 Should any person steal your Refresh Token, you must login to your account 
1647 with your username and password and revoke Alpine authorization to your 
1648 account. This is enough to stop the person who stole your Refresh Token 
1649 from accessing your email service. In the case of Gmail, changing your 
1650 password will invalidate your Refresh Token, and this will be enough to 
1651 prevent others from using a stolen Refresh Token. Consult with your email
1652 service provider to learn what you can do if someone steals your Refresh
1653 Token.
1656 If, for any reason, Alpine cannot sign in to your email service for two 
1657 consecutive times with Access Codes generated by your Refresh Token, it 
1658 will remove the Refresh Token from your password file, forcing you to get 
1659 a new one, by getting an Access Code first, and granting authorization to
1660 Alpine to access your email once again.
1663 This implementation of XOAUTH2 knows the list of servers that it can 
1664 access using the same credentials, so Alpine will be able to read and send 
1665 emails using the same Access Token. You will not have to create 
1666 Access and Refresh Tokens for the IMAP and SMTP servers separately.
1669 &lt;End of help&gt;
1670 </BODY>
1671 </HTML>
1672 ====== h_tls_failure_details ======
1673 <HTML>
1674 <HEAD>
1675 <TITLE>Certificate Validation Details</TITLE>
1676 </HEAD>
1677 <BODY>
1678 <H1>Certificate Validation Details</H1>
1680 This screen gives details as to why the certificate validation failed: the
1681 name of the desired server system; the reason for failure; and the name on
1682 the certificate.  This is primarily of interest to experts.
1685 &lt;End of help&gt;
1686 </BODY>
1687 </HTML>
1688 ====== h_tls_failure ======
1689 <HTML>
1690 <HEAD>
1691 <TITLE>TLS or SSL Failure</TITLE>
1692 </HEAD>
1693 <BODY>
1694 <H1>TLS or SSL Failure</H1>
1696 An attempt was made to establish a secure, encrypted connection to the
1697 server system using either Transport Layer Security (TLS) or the older
1698 Secure Sockets Layer (SSL).  This attempt failed.
1701 You should contact your server system management for more assistance.
1702 The problem is probably at the server system and not in Alpine or your local
1703 system.  The text in this screen may be helpful for the server system
1704 management in debugging the problem,
1707 &lt;End of help&gt;
1708 </BODY>
1709 </HTML>
1710 ====== h_tls_validation_failure ======
1711 <HTML>
1712 <HEAD>
1713 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1714 </HEAD>
1715 <BODY>
1716 <H1>TLS and SSL Certificate Validation Failures</H1>
1718 An attempt was made to establish a secure, encrypted connection to the
1719 server system using either Transport Layer Security (TLS) or the older
1720 Secure Sockets Layer (SSL).
1723 An important part of this procedure is server certificate validation.  A
1724 server certificate is an &quot;electronic identification card&quot; for the server
1725 system that is signed by a well-known certificate authority (CA).  Alpine
1726 compares the server system identity in the server certificate with the
1727 name of the server system to which it is trying to connect.  Alpine also
1728 verifies that the CA signature is authentic.
1731 Some common failure conditions are:
1734 <UL>
1735   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1736 signed its own certificate.  This does not necessarily indicate anything
1737 bad; the server operators may simply have elected to not purchase a
1738 signed certificate from a certificate authority.
1740   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1741 the signature on the server system is from an unknown certificate authority.
1742 It can also mean that no certificate authority certificates have been
1743 installed on the local UNIX system.
1745   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1746 the same as either of the above two conditions in UNIX Alpine.  Note that
1747 Windows systems typically have a full set of certificate authority
1748 certificates installed, so it is more likely to be a self-signed
1749 certificate than an unknown certificate authority.
1751   <LI> Server name does not match certificate.  This means that the server
1752 presented a proper signed certificate for a name other than the desired
1753 name.
1754 </UL>
1757 Any of these conditions can indicate that you are being attacked and have
1758 been directed to an imposter server that will record your password and
1759 your private mail messages.  It can also mean something innocuous.
1762 If you are certain that the problem is innocuous, you can append the
1763 option
1766 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1769 to the server system name where it appears in your configuration (e.g. the
1770 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1771 a folder-collection, or a news or SMTP server).  This will
1772 disable certificate validation.  On the other hand, if you are attacked,
1773 you will get no warning if you do this.
1775 <P> When you get an error indicating a self-signed certificate from the 
1776 remote server, you can download and install the certificate for that 
1777 server. Avoid using the /NoValidate-Cert modifier. Alpine cannot help you 
1778 with this process because certificates are part of the system and are not 
1779 under the control of the user. Find directions on how to download and 
1780 install certificates for your system using your favorite search engine.
1783 &lt;End of Cert Validation Failures help&gt;
1784 </BODY>
1785 </HTML>
1786 ====== h_oauth2_start ======
1787 <HTML>
1788 <HEAD>
1789 <TITLE>Setting up XOAUTH2 Authentication</TITLE>
1790 </HEAD>
1791 <BODY>
1792 <H1>Setting up XOAUTH2 Authentication</H1>
1794 You are trying to connect to a server that uses the XOAUTH2 method of
1795 authentication.
1798 In order to set this up, you need to authenticate in the target server
1799 and authorize Alpine to access your email account.
1802 After you have authorized Alpine, the server will generate an
1803 &quot;access code.&quot; In order to use this code, press 'C'
1804 and copy and paste this code back into Alpine.
1807 After you have input the code, Alpine will conclude logging you into your
1808 account.
1811 &lt;End of setting up XOAUTH2 Authentication help&gt;
1812 </BODY>
1813 </HTML>
1814 ====== h_release_tlscerts ======
1815 <HTML>
1816 <HEAD>
1817 <TITLE>TLS and SSL usage note</TITLE>
1818 </HEAD>
1819 <BODY>
1820 <H1>TLS and SSL usage note</H1>
1823 When using Alpine from Unix or Windows 2000,
1824 server certificates must be signed by a trusted certificate authority.
1825 You may relax this requirement (at the cost of some security) by using
1827 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1828 modifier in the mailbox name.
1831 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1834 The fully-qualified host name of the server should be used
1835 so that it matches the host name in the server certificate.
1837 Here is an example of a host specification that directs Alpine to use
1838 the SSL port (993) and an encrypted data stream.
1840 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1842 &lt;End of TLS usage help&gt;
1843 </BODY>
1844 </HTML>
1845 ====== h_news_config ======
1846 <HTML>
1847 <HEAD>
1848 <TITLE>Alpine Configuration</TITLE>
1849 </HEAD>
1850 <BODY>
1851 <H1>Alpine Configuration</H1>
1853 <H2>Using Environment Variables</H2>
1855 The values of Alpine configuration options may include environment variables
1856 that are replaced by the value of the variable at the time Alpine is run
1857 (and also at the time the config option is changed).
1858 The syntax to use environment variables is a subset of the common Unix
1859 shell dollar-syntax.
1860 For example, if
1862 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1864 appears in the value of an Alpine configuration option it is looked up in the
1865 envirom ent (using getenv(&quot;VAR&quot;)) and its
1866 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1867 To include a literal dollar sign you may precede the dollar sign with another
1868 dollar sign.
1869 In other words, if the text
1871 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1873 is the value of a configuration option, it will be expanded to
1875 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1877 and no environment lookup will be done.
1878 For Unix Alpine it will also work to use a backslash character to
1879 escape the special meaning of the dollar sign, but $$ is preferable since
1880 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1881 to be in a shared configuration file.
1884 This all sounds more complicated than it actually is.
1885 An example may make it clearer.
1886 Unfortunately, the way in which environment variables are set is OS-dependent 
1887 and command shell-dependent.
1888 In some Unix command shells you may use
1890 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1891    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1893 Now, if you use Alpine's Setup/Config screen to set
1895 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1897 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1898 so that this would be equivalent to
1900 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1902 Note, environment variable substitution happens after configuration
1903 options that are lists are split into the separate elements of the list,
1904 so a single environment variable can't contain a list of values.
1907 The environment variable doesn't have to be the only thing
1908 after the equal sign.
1909 However, if the name of the variable is not at the end of the line or
1910 followed by a space (so that you can tell where the variable name ends),
1911 it must be enclosed in curly braces like
1913 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1915 It is always ok to use the braces even if you don't need to.
1917 It is also possible to set a default value for an environment variable.
1918 This default value will be used if the environment variable is not
1919 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1920 The syntax used to set a default value is
1922 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1924 If the config file contains
1926 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1928 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1929 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1930 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1931 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1932 the default value.
1933 (Note that the variable is called &quot;personal-name&quot; in the config
1934 file but is displayed in the config screen as
1935 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1936 In general, the value that goes into a config file is never exactly the
1937 same as the value you see on the screen.)
1940 An example where an environment variable might be useful is the
1941 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1942 Suppose most users used the server
1944 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1946 but that there were some exceptions who used
1948 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1950 In this case, the system manager might include the following line in
1951 the systemwide default Alpine configuration file
1953 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1955 For the exceptional users adding
1957 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1959 to their environment should work.
1961 Another example might be the case where a user has to use a different
1962 SMTP server from work and from home.
1963 The setup might be something as simple as
1965 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1967 or perhaps a default value could be given.
1968 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1969 a list of SMTP servers.
1972 <H2>Configuration precedence</H2>
1974 There are several levels of Alpine configuration.  Configuration values at
1975 a given level override corresponding values at lower levels.  In order of
1976 increasing precedence:
1978 <UL>
1979  <LI> built-in defaults
1980  <LI> system-wide
1981 <!--chtml if pinemode="os_windows"-->
1982       config file from command line or provided
1983       by "PINECONF" environment variable
1984 <!--chtml else-->
1985       pine.conf file
1986 <!--chtml endif-->
1987  <LI> personal configuration file
1988  <LI> personal exceptions configuration file
1989  <LI> command-line options
1990  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1991  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1992 </UL>
1994 The values in both the personal configuration file and the
1995 <A HREF="h_config_exceptions">exceptions</A>
1996 configuration file may be set using the Setup command.
1997 Setup/Config is the command to change most of the personal configuration
1998 options.
1999 The other Setup subcommands are also used to change the configuration,
2000 for example, Setup/AddressBook, Setup/Rules, and so on.
2001 Changing the personal exceptions configuration is very similar.
2002 To change a value in the Config screen you would use the command
2003 Setup/eXceptions/Config.
2004 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
2006 There are a couple exceptions to the rule that configuration values are replaced
2007 by the value of the same option in a higher-precedence file.
2008 The Feature-List variable has values that are additive, but can be
2009 negated by prepending &quot;no-&quot; in front of an individual feature name.
2010 So for features, each individual feature's value is replaced by the value
2011 of the same feature in a higher-precedence file.
2012 Note that this is done automatically for you when you change these values via
2013 the Setup/Config command.
2014 The other exception to the <EM>replace</EM> semantics happens when you
2015 use <A HREF="h_config_inheritance">configuration inheritance</A>
2016 for option lists.
2019 <H2>File name defaults</H2>
2021 Notes:<P>
2023 <BR> &lt;exe dir&gt; = directory where pine.exe found.
2024 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
2025 <BR> # = default file name is overridable in pinerc.
2026 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
2027 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
2028 <BR> + between the mailcap paths implies that the two files are combined.
2029 <BR> ; between other default paths implies that the first one found is used.
2030 </P>
2031 Alpine looks for most support files in the same directory it finds its
2032 personal configuration file (pinerc).  The -p command-line flag may be
2033 used to specify a particular path name for the pinerc file.  If a
2034 pinerc file does not exist, it will be created (if directory permissions
2035 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
2036 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
2037 file does not exist in either one, it will create one in the first of those
2038 two directories that is writable.  In detail:
2039 <PRE>
2041 PC-Alpine:
2043  executable     &lt;DOS search path&gt;&#92;pine.exe
2044  help index     &lt;exe dir&gt;&#92;pine.ndx
2045  help text      &lt;exe dir&gt;&#92;pine.hlp
2047  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
2048  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
2049  global cfg     $PINECONF
2051  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
2052  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
2053  signature#     &lt;pinerc dir&gt;&#92;pine.sig
2054  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
2055  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
2056  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
2057  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
2058  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
2059  postponed#     $HOME&#92;mail&#92;postpond.mtx
2060  interrupted    $HOME&#92;mail&#92;intruptd
2062 Unix Alpine:
2064  executable     &lt;Unix search path&gt;/pine
2065  persnl cfg     ~/.pinerc
2066  except cfg     ~/.pinercex
2067  global cfg     <!--#echo var="PINE_CONF_PATH"-->
2068  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
2069  local help     <!--#echo var="PINE_INFO_PATH"-->
2071  interrupted    ~/.pine-interrupted-mail
2072  debug          ~/.pine-debugN
2073  crash          ~/.pine-crash
2074  newsrc#        ~/.newsrc
2075  signature#     &lt;pinerc dir&gt;/.signature
2076  addressbook#   &lt;pinerc dir&gt;/.addressbook
2077  postponed#     ~/mail/postponed-msgs
2078  sentmail#      ~/mail/sent-mail
2079  mailcap#       ~/.mailcap + /etc/mailcap
2080                            + /usr/etc/mailcap + /usr/local/etc/mailcap
2081  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
2083  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
2084  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
2085  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
2086  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
2087  password       /etc/passwd
2089 Unix Alpine and PC-Alpine:
2091  .ab*           remote addressbook support files
2092  a[1-9]*        temporary (while Alpine is running) addressbook files
2094 </PRE>
2097 <H2>Mailcap files</H2>
2099 Alpine honors the mailcap configuration system for specifying external
2100 programs for handling attachments.  The mailcap file maps MIME attachment
2101 types to the external programs loaded on your system that can display
2102 and/or print the file.  A sample mailcap file comes bundled with the Alpine
2103 distribution.  It includes comments that explain the syntax you need to
2104 use for mailcap.  With the mailcap file, any program (mail readers,
2105 newsreaders, WWW clients) can use the same configuration for handling
2106 MIME-encoded data.
2109 <H2>MIME-Types files</H2>
2111 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
2112 what Content-Type to use for labeling an attached file, based on
2113 the file extension.  That is, this file provides a mapping between
2114 filename extensions and MIME content-types.
2117 <H2>Environment variables</H2>
2119 PC-Alpine uses the following environment variables:
2120 <DL>
2121 <DT>PINERC</DT>
2122 <DD>Optional path to pinerc file.</DD>
2123 <DT>PINERCEX</DT>
2124 <DD>Optional path to personal exceptions configuration file.</DD>
2125 <DT>PINECONF</DT>
2126 <DD>Optional path to global pine config file.</DD>
2127 <DT>HOME</DT>
2128 <DT>TMPDIR, TMP, or TEMP</DT>
2129 <DT>COMSPEC</DT>
2130 <DT>MAILCAPS</DT>
2131 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
2132 <DT>USER_DICTIONARY</DT>
2133 <DD>Used to specify the file to contain the user's spell check
2134 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
2135 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
2136 </DL>
2138 Unix Alpine uses the following environment variables:
2139 <DL>
2140 <DT>TERM</DT>
2141 <DD>Tells Alpine what kind of terminal is being used.</DD>
2142 <DT>DISPLAY</DT>
2143 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
2144 <DT>SHELL</DT>
2145 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
2146 <DT>TMPDIR, TMP, or TEMP</DT>
2147 <DT>MAILCAPS</DT>
2148 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
2149 </DL>
2150 <!--chtml if pinemode="os_windows"-->
2152 <H2>Common PC-Alpine Configuration Problems</H2>
2154 <H3>Configuration settings aren't being saved</H3>
2156 <P>This problem can happen if you run pine from one directory and
2157 then decide to move your pine directory to another location.  PC-Alpine
2158 stores certain variables, including the configuration location, in the
2159 Windows Registry (which you shouldn't ever need to manually edit).  There
2160 are a couple of ways to go about removing or resetting the values in the
2161 registry.
2164 1) Run PC-Alpine's registry value deletion command.  This can be done by
2165 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
2166 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
2167 value to the above command.
2170 2) Tell PC-Alpine where to look for the configuration file.  Configuration
2171 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
2172 option, you can tell PC-Alpine the location of your pinerc.  An example of
2173 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;.
2174 Again, you can use the DOS prompt or the shortcut method explained in (1).
2177 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
2178 set registry values to the current setting, and is therefore useful with
2179 the &quot;-p&nbsp;PINERC&quot; option.
2181 <!--chtml endif-->
2183 &lt;End of Configuration Notes&gt;
2184 </BODY>
2185 </HTML>
2186 ====== h_news_legal ======
2187 <html>
2188 <head>
2189 <TITLE>Alpine Legal Notices</TITLE>
2190 </head>
2191 <body>
2193 <H1>Alpine Legal Notices</H1>
2195 Alpine and its constituent programs are covered by the Apache License Version 2.0.
2199 &lt;End of Alpine Legal Notices&gt;
2200 </BODY>
2201 </HTML>
2202 ===== h_info_on_mbox =====
2203 <HTML>
2204 <HEAD>
2205 <TITLE>Information on mbox driver</TITLE>
2206 </HEAD>
2207 <BODY>
2208 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
2210 Beginning with Pine 4.00 (Pine came before Alpine)
2211 a new INBOX access method is
2212 available as part of the standard configuration.  It is called the
2213 &quot;mbox&quot; driver and it works like this:<P>
2216 <BLOCKQUOTE>
2217 If the file &quot;mbox&quot; exists in the user's home directory, and
2218 is in Unix mailbox format, then when INBOX is opened this file will be
2219 selected as INBOX instead of the mail spool file.  Messages will be
2220 automatically transferred from the mail spool file into the mbox
2221 file.
2222 </BLOCKQUOTE>
2225 The advantage of this method is that, after new mail has been copied
2226 from the system mail spool, all subsequent access is confined to the
2227 user's home directory, which is desirable on some systems.  However, a
2228 possible disadvantage is that mail tools other than those from the
2229 University of Washington will not know to look for mail in the user's
2230 mbox file.  For example, POP or IMAP servers other than those from the
2231 University of Washington, and many &quot;new mail notification&quot;
2232 programs may not work as expected with this driver enabled.<P>
2234 To disable this behavior, either remove/rename the &quot;mbox&quot;
2235 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
2236 option in Setup/Config
2237 and add &quot;mbox&quot; to it:
2239 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
2241 &lt;End of help on this topic&gt;
2242 </BODY>
2243 </HTML>
2244 ===== h_info_on_locking =====
2245 <HTML>
2246 <HEAD>
2247 <TITLE>FAQs on Alpine Locking</TITLE>
2248 </HEAD>
2249 <BODY>
2250 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
2252 There is an extensive section on locking in the Alpine technical notes;
2253 this information is intended to provide answers to some common questions:<P>
2254 <OL>
2255 <LI> Why did locking change in Pine 4.00?<BR>
2256 The actual locking mechanisms did not change in 4.00.
2257 What changed is that when one particular locking mechanism used by Alpine 
2258 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
2259 failure would occur, but no warning was issued.<P>
2261 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
2262 Yes.  It means that Alpine was unable to create a lockfile in the
2263 spool directory, generally because of overly restrictive protections on the
2264 spool directory.  The correct permissions on the spool directory for
2265 running Alpine are 1777, i.e. read-write-execute permission for everyone,
2266 with the sticky-bit set, so only owners of a file can delete them.<P>
2268 <LI> Why does Alpine require that the mail spool directory have 1777
2269    protections?<BR>
2270 Alpine was designed to run without special privileges.  This means that in
2271 order to create a lockfile in the spool directory, it is necessary to have
2272 the spool directory permissions be world-writable.<P>
2274 <LI> Can't you create the lockfile somewhere else?<BR>
2275 No.  The lockfile in question must be in the mail spool directory, because
2276 that's where the mail delivery program expects to find it, and the purpose
2277 of the file is to coordinate access between the mail client (Alpine) and the
2278 mail delivery program.<P>
2280 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
2281 No.  Remember that the individual mail files in the spool directory are
2282 NOT world-writable, only the containing directory.  Setting the &quot;sticky
2283 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
2284 -- means that only the owner of the file (or root) can delete files in the 
2285 directory.  So the only bad behavior that is invited by the 1777 mode is that 
2286 anyone could
2287 create a random file in the spool directory.  If the spool directory is
2288 under quota control along with home directories, there is little incentive
2289 for anyone to do this, and even without quotas a periodic scan for
2290 non-mail files usually takes care of the problem.  <P>
2292 <LI> Why not run Alpine as setgid mail?<BR>
2293 Alpine was never designed to run with privileges, and to do so introduces a
2294 significant security vulnerability.  For example, if a user suspends Alpine,
2295 the resulting shell will have group privileges.  This is one example of
2296 why we strongly recommend against running Alpine as a privileged program.
2297 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
2298 users
2299 could not test Alpine versions or other mailers that had not been installed
2300 by the system administrators.<P>
2303 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
2304 There are, but they all have different sets of tradeoffs, and not all will
2305 work on all systems.  Some examples:<UL>
2306  <LI> Use lock system calls.  Works fine on a few systems, provided mail
2307    spool is local.   Doesn't work reliably if NFS is used.
2308    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
2309    use the same calls.
2310  <LI> Deliver mail to user's home directory.  An excellent solution, highly
2311    recommended -- but one which is incompatible with some &quot;legacy&quot; 
2312 mail tools that always look in the spool directory for the mail.
2313 </UL><P>
2315 <LI> Are these spool directory lock files the only kinds of locks used by
2316    Alpine?<BR>
2317 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
2318 mailbox format folders, these are used to coordinate access between
2319 multiple Alpine sessions.  <P>
2321 <LI> What about the 
2322 <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>
2323 This is for people who are content to live dangerously, or who have
2324 specific knowledge that the spool directory lockfiles are superfluous on
2325 their system (because both Alpine and the mail delivery program are using 
2326 system call file locking in a context that works reliably, e.g. not NFS.)<P>
2328 <LI> Where can I find more details on how Alpine locking works?<BR>
2329 See the Alpine Technical Notes.<P>
2331 </OL>
2333 &lt;End of help on this topic&gt;
2334 </BODY>
2335 </HTML>
2336 ===== h_finding_help ====
2337 <HTML>
2338 <HEAD>
2339 <TITLE>Finding more information and requesting help</TITLE>
2340 </HEAD>
2341 <BODY>
2342 <H1>Places to Look for More Answers</H1>
2343 If you have questions about or problems with Alpine that you cannot resolve 
2344 after consulting the program's internal, context-sensitive help screens, here 
2345 are additional information resources that you may find helpful:
2347 <UL>
2348   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
2350   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
2352   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
2353 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
2354   since the last version, which may be useful for you to be aware of, 
2355 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
2356 a change in the way an aspect of Alpine works.  There, you will also find notes 
2357 on Alpine configuration.<P>
2358   <LI> The main site for Alpine contains information on configuring and solving problems
2359        with Alpine, it can be found at
2361 <CENTER><A HREF="http://alpine.x10host.com/alpine/">http://alpine.x10host.com/alpine/</A></CENTER>  
2363   <LI> Archives of the Alpine-info mailing list, at <A 
2364 href="http://mailman13.u.washington.edu/pipermail/alpine-info/">http://mailman13.u.washington.edu/pipermail/alpine-info/</A>
2366   <LI>The newsgroup comp.mail.pine.
2368 </UL>
2369 <P><HR WIDTH="75%">
2370 <H1>Requesting help</H1>
2371 If the internal help, the Release Notes, and your 
2372 local online and print resources do not help you resolve a problem, please
2373 start by contacting your local computer support staff and asking for help.
2375 This is especially true if:
2376 <ul>
2377   <li>You suddenly have trouble sending or receiving mail.
2378   <li>You receive a "disk quota exceeded" message.
2379   <li>You have forgotten your password.
2380   <li>You think your account may have been compromised.
2381   <li>You need help viewing an attachment.
2382   <li>You need to know how to configure your:
2383       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2384       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2385       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2386       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2387   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2388   <li>You want to block email from a particular person.
2389   <li>You're going on vacation and need to autorespond to incoming mail.
2390   <li>You want to automatically file or filter incoming messages.
2391 </ul>
2393 In all of these cases,
2394 you should contact <B>your</B> support staff, because <B>only they</B> 
2395 will be able to assist you effectively. Your support staff may be, depending on who 
2396 provides you with the email account you use Alpine with, for example:<UL>
2397 <LI> the computing help desk of (a department of) your university, school, 
2398 employer, ... ; or
2399 <LI> the customer service center of your Internet Service Provider; or
2400 <LI> the friendly volunteer helpers of your Freenet; or
2401 <LI> the person who setup your computer and internet connection.
2402 </UL>
2405 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2406 newsgroup can be a valuable source of information and assistance for Alpine 
2407 user issues.
2409 For systems/email administrators, developers, trainers, user support
2410 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2411 level, the mailing list alpine-info is available; for information on
2412 subscribing and posting to it, see
2414 <CENTER><A HREF="https://mailman13.u.washington.edu/mailman/listinfo/alpine-info">https://mailman13.u.washington.edu/mailman/listinfo/alpine-info</A></CENTER>
2417 Regardless of whom you are asking for help with Alpine, remember 
2418 to provide as much detail as you can about the
2419 nature of any problem you are encountering, such as
2420 <UL>
2421 <LI>when it first occurred;
2422 <LI>what, if anything, happened that might have brought it about;
2423 <LI>whether it still persists;
2424 <LI>whether it is reproducible, and if so, how;
2425 <LI>what, if anything, you already tried to solve it.
2426 </UL> 
2427 It may also be helpful if you specify what version of Alpine you are using 
2428 <!--chtml if pinemode="running"-->
2429 -- this is <!--#echo var="ALPINE_VERSION"--> --
2430 <!--chtml endif-->
2431 and on what system, and when the copy of Alpine you are using was created
2432 <!--chtml if pinemode="running"-->
2433 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2434 <!--chtml endif-->
2436 <!--chtml if pinemode="running"-->
2437 <P>   
2438 When the Alpine program you are currently using was installed, a support
2439 contact email address may have been set up; in that case, you can simply select
2440 this link now to send a message to it:<BR>
2441 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2442 <!--chtml endif-->
2443 <!--chtml if [ -r PINE_INFO_PATH ]-->
2444 <HR WIDTH="75%">Local Support Contacts:<P>
2445 <!--#include file="PINE_INFO_PATH"-->
2446 <HR WIDTH="75%">
2447 <!--chtml endif-->
2448 <P> 
2449 &lt;End of help on this topic&gt;
2450 </BODY>
2451 </HTML>
2452 ===== new_user_greeting ======
2453 <HTML>
2454 <HEAD>
2455 <TITLE>NEW USER GREETING</TITLE>
2456 </HEAD>
2457 <BODY>
2458 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2459 <BR>
2460 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2461 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2462 select Setup/Config to see many of the options available to you. Also note
2463 that all screens have context-sensitive help text available.<P>
2464 <!--chtml if pinemode="phone_home"-->
2465 SPECIAL REQUEST:
2466 This software was originally created and maintained as a public
2467 service by the University of Washington until 2009; updates are made 
2468 available as a public service of the Alpine community. It is always 
2469 helpful to have an idea of how many users are using Alpine. Are you 
2470 willing to be counted as an Alpine user? Pressing 
2471 <A HREF="X-Alpine-Phone-Home:">Return</A>
2472 will send an anonymous (meaning, your real email address will not be revealed) 
2473 message to the Alpine developers for purposes of tallying.
2475 <!--To Exit this screen and continue your Alpine session press "E".-->
2476 <!--chtml else-->
2477 To Exit this screen and continue your Alpine session press "Return".
2478 <!--chtml endif-->
2479 </BODY>
2480 </HTML>
2481 ===== new_alpine_user_greeting ======
2482 <HTML>
2483 <HEAD>
2484 <TITLE>NEW ALPINE USER GREETING</TITLE>
2485 </HEAD>
2486 <BODY>
2487 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2488 <BR>
2489 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2490 Your Alpine configuration file indicates that you may have used Pine before
2491 but not Alpine.
2492 If you are familiar with the way Pine works, you should be comfortable
2493 using Alpine.
2494 Your Pine configuration file is automatically used for Alpine.
2495 The Release Notes may be viewed by pressing 
2496 &quot;R&quot; now or while in the MAIN MENU.
2498 <!--chtml if pinemode="phone_home"-->
2499 SPECIAL REQUEST:
2500 This software was originally created and maintained as a public
2501 service by the University of Washington until 2009; updates are made 
2502 available as a public service of the Alpine community. It is always 
2503 helpful to have an idea of how many users are using Alpine. Are you 
2504 willing to be counted as an Alpine user? Pressing 
2505 <A HREF="X-Alpine-Phone-Home:">Return</A>
2506 will send an anonymous (meaning, your real email address will not be revealed) 
2507 message to the Alpine developers for purposes of tallying.
2509 <!--To Exit this screen and continue your Alpine session press "E".-->
2510 <!--chtml else-->
2511 To Exit this screen and continue your Alpine session press "Return".
2512 <!--chtml endif-->
2513 </BODY>
2514 </HTML>
2515 ===== new_version_greeting ======
2516 <HTML>
2517 <HEAD>
2518 <TITLE>NEW VERSION GREETING</TITLE>
2519 </HEAD>
2520 <BODY>
2521 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2522 <BR>
2523 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2524 Your Alpine configuration file indicates that you may not have used 
2525 this version of Alpine before.  This version's significant changes are
2526 documented in the Release Notes, which may be viewed by pressing 
2527 &quot;R&quot; now or while in the MAIN MENU.
2529 <!--chtml if pinemode="phone_home"-->
2530 SPECIAL REQUEST:
2531 This software was originally created and maintained as a public
2532 service by the University of Washington until 2009; updates are made 
2533 available as a public service of the Alpine community. It is always 
2534 helpful to have an idea of how many users are using Alpine. Are you 
2535 willing to be counted as an Alpine user? Pressing 
2536 <A HREF="X-Alpine-Phone-Home:">Return</A>
2537 will send an anonymous (meaning, your real email address will not be revealed) 
2538 message to the Alpine developers for purposes of tallying.
2540 <!--To Exit this screen and continue your Alpine session press "E".-->
2541 <!--chtml else-->
2542 To Exit this screen and continue your Alpine session press "Return".
2543 <!--chtml endif-->
2544 </BODY>
2545 </HTML>
2547 ===== main_menu_tx ======
2548 <HTML>
2549 <HEAD>
2550 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2551 </HEAD>
2552 <BODY>
2553 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2554 <DIV ALIGN=CENTER>
2555 Version <!--#echo var="ALPINE_VERSION"-->
2556 <!--chtml if pinemode="running"-->
2557 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2558 <!--chtml endif-->
2559 </DIV>
2560 <CENTER>Copyright 2013-2020 Eduardo Chappa,
2561 <BR>Copyright 2006-2008 University of Washington.
2562 </CENTER>
2565 When you are viewing a help screen, there may be links to
2566 other topics highlighted (in Reverse video) in the text.
2567 Here is an example.
2568 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2569 highlighted.
2570 If you type carriage return (or V for View Link, see the commands at the
2571 bottom of the screen) you will be taken to a new help screen to view the
2572 Introduction.
2573 The commands at the bottom of the screen should then include
2574 &quot;P Prev Help&quot;.
2575 If you type &quot;P&quot; you will end up back here.
2576 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2577 to the place you were in Alpine when you entered Help.
2578 In this case, you would go back to the MAIN MENU.
2579 There are also other links that are highlighted in bold (or the color used
2580 by your terminal to display bold).
2581 The items after the Introduction in the TABLE OF CONTENTS are all examples
2582 of such links.
2583 In order to view those links, you first have to make the link you want
2584 to view the current link.
2585 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2586 (see bottom of screen) can do that for you.
2589 <H2>TABLE OF CONTENTS</H2>
2590 <OL>
2591   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2592   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2593 <!--chtml if [ -r PINE_INFO_PATH ]-->
2594   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2595 <!--chtml endif-->
2596   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2597   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2598   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2599   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2600   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2601   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2602   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2603   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2604   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2605   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2606   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2607   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2608   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2609   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2610   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2611   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2612   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2613   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2614   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2615   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2616   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2617   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2618   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2619   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2620   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2621 </OL>
2624 &lt;End of help on this topic&gt;
2625 </BODY>
2626 </HTML>
2627 ===== h_mainhelp_intro ======
2628 <HTML>
2629 <HEAD>
2630 <TITLE>Introduction</TITLE>
2631 </HEAD>
2632 <BODY>
2633 <H1>Introduction</H1>
2635 Alpine is an &quot;Alternatively Licensed Program for Internet
2636 News and Email&quot; produced until 2009 by the University of Washington.
2637 It is intended to be an easy-to-use program for
2638 sending, receiving, and filing Internet electronic mail messages and
2639 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2640 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2641 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2642 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2643 Directory Access Protocol).<p>
2645 Although originally designed for inexperienced email users, Alpine has
2646 evolved to support many advanced features.  There are an ever-growing
2647 number of configuration and personal-preference options, though which of
2648 them are available to you is determined by your local system managers. 
2650 <H2>WHAT ALPINE DOES...</H2>
2652 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2653 allows you to
2654 compose and read messages using Internet mail standards.  (Whether you
2655 can correspond with others on the Internet depends on whether or not your
2656 computer is connected to the Internet.)  Alpine also allows reading and
2657 posting messages on the Internet &quot;net news&quot; system, provided
2658 that your site operates a suitable news server.
2660 <H2>WHAT ALPINE DOES NOT DO...</H2>
2662 A &quot;mail user agent&quot; such as Alpine is just one part of a
2663 messaging system. Here are some things that are <B>not</B> done by Alpine,
2664 but require other programs:<P>
2665 <UL>
2666  <LI> Actual relaying of email... which is done by &quot;message transfer 
2667 agents&quot;.
2668  <LI> Vacation messages... automatically responding to incoming messages
2669  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2670 email.
2671  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2672  <LI> List processing... resending one message to a list of recipients.
2673 </UL>
2676 &lt;End of help on this topic&gt;
2677 </BODY>
2678 </HTML>
2680 ===== h_mainhelp_pinehelp ======
2681 <HTML>
2682 <HEAD>
2683 <TITLE>Alpine Help</TITLE>
2684 </HEAD>
2685 <BODY>
2686 <H1>Alpine Help</H1>
2688 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2689 use will have its own help text, explaining the choices available for that
2690 screen. This general help section, on the other hand, attempts to give an 
2691 overall picture of what Alpine is capable of doing, as well as pointers to 
2692 additional help sections about specific topics.<p>
2694 Much of the help text contains links to further help topics, similar to
2695 how the World Wide Web works.
2696 You may choose a link to view using the &quot;NextLink&quot; and
2697 &quot;PrevLink&quot; commands to change the link that is highlighted.
2698 The &quot;View Link&quot; command will then show you the highlighted link.
2699 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2700 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2701 will return you to the location in Alpine before you asked for help.
2702 For example, if you are reading this text in Alpine you may return to the
2703 help table of contents with the &quot;Prev Help&quot; command or you may view the
2704 Release notes link in the next paragraph and then return here with
2705 &quot;Prev Help&quot;.
2708 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2709 on the current Alpine version are also available from the MAIN MENU: Press
2710 <!--chtml if pinemode="function_key"-->
2711 &quot;F9&quot;
2712 <!--chtml else-->
2713 &quot;R&quot;
2714 <!--chtml endif-->
2715 to browse the release notes.  These include changes since the last release,
2716 configuration information, the history of the Alpine
2717 project, credits, and legal notices.
2719 Alpine releases are available via the world wide web at
2721 <CENTER><SAMP><A 
2722 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2723 ></CENTER>
2726 If you would like to print <EM>all</EM> of Alpine's internal help text
2727 (not recommended) for a little light bedtime reading, then press
2728 <!--chtml if pinemode="function_key"-->
2729 &quot;F12&quot;
2730 <!--chtml else-->
2731 &quot;Z&quot;
2732 <!--chtml endif-->
2733 now.  (This assumes that the
2734 copy of Alpine you are using has been properly configured for printing
2735 at your site.)
2737 &lt;End of help on this topic&gt;
2738 </BODY>
2739 </HTML>
2740 ===== h_mainhelp_localsupport ======
2741 <HTML>
2742 <HEAD>
2743 <TITLE>Local Support Contacts</TITLE>
2744 </HEAD>
2745 <BODY>
2746 <H1>Local Support Contacts</H1>
2748 <!--chtml if [ -r PINE_INFO_PATH ]-->
2749 <!--#include file="PINE_INFO_PATH"-->
2750 <!--chtml else-->
2751 No Local Support Contacts configured.
2752 <!--chtml endif-->
2755 &lt;End of help on this topic&gt;
2756 </BODY>
2757 </HTML>
2759 ===== h_mainhelp_cmds ======
2760 <HTML>
2761 <HEAD>
2762 <TITLE>Giving Commands in Alpine</TITLE>
2763 </HEAD>
2764 <BODY>
2765 <H1>Giving Commands in Alpine</H1>
2767 Unless configured otherwise
2768 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2769 the bottom two lines of the screen are always used to list the
2770 commands you can give.  You press the keys that are highlighted to give
2771 the command.  The commands for getting help and going back to the main
2772 menu are always present (except when viewing help as you are now).
2773 <!--chtml if pinemode="function_key"-->
2774 <!--chtml else-->
2776 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2777 you see at the bottom of any screen. In some cases there are 3 or
2778 even 4 different
2779 sets of keys that can be seen by using the O key. <EM>All commands are 
2780 active</EM>, even if they are not currently showing at the bottom of your 
2781 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2782 remind yourself of the proper key to press to perform an operation.
2784 <H2>Control Key Commands</H2>
2785 When composing mail, and in a few other places, in Alpine you
2786 have to use Control keys. This means pressing the Control key (usually labeled 
2787 &quot;Ctrl&quot;) and the
2788 letter indicated at the same time.  Usually, this is shown with a
2789 &quot;^&quot; in front of the letter.  On some systems, certain control
2790 characters are intercepted before they get to Alpine.  As a work-around,
2791 you can press the ESCAPE key twice followed by the desired key.  For
2792 example, if Ctrl-O (^O) does not work on your system, try typing
2793 &quot;ESC ESC O&quot;.
2794 <!--chtml endif-->
2795 <H2>Paging Up and Down</H2>
2796 The &quot;+&quot; and &quot;-&quot; keys are used for
2797 moving to the next or previous page.  The space bar is a synonym for
2798 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2799 up as you do in the message composer.  On screens with a WhereIs (search)
2800 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2801 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2802 of the message or list.
2804 <H2>Return Key</H2>
2805 The return key is usually a synonym for a frequently used
2806 command.  When viewing a message, there is currently not a default
2807 command, so RETURN does nothing; when in the index, it is synonymous with
2808 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2809 enclosed in square brackets [] is the same as the return key.
2811 <H2>Control Keys Not Used By Alpine</H2>
2812 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2813 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2814 at prompts for file/folder names, control keys must be used for editing and 
2815 navigation functions.
2818 Alpine has used nearly all the control keys available.  There are, however,
2819 certain control keys that are reserved by other programs or for technical
2820 reasons.  Alpine does not use any of these keys:
2821 <DL>
2822  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2823  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2824  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2825 </DL>
2827 Note: Ctrl-S and Ctrl-Q can be subject to 
2828 <A HREF="h_special_xon_xoff">special handling</A>.
2830 In addition, while the ESC key alone is not used for command input,
2831 Alpine will recognize two consecutive ESC key presses followed by a letter 
2832 key as a substitute for control key input.  For example, the control key
2833 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2834 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2835 This is useful if the communication program you are using
2836 (e.g. Telnet) has its own, conflicting, idea of what certain control
2837 characters mean.
2840 <H2>Repainting the Screen</H2>
2841 Sometimes what is displayed on the screen will be
2842 incorrect due to noise on the phone line or other causes and you will want
2843 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2844 command to do this.  It never hurts to do it when in doubt.
2847 &lt;End of help on this topic&gt;
2848 </BODY>
2849 </HTML>
2850 ===== h_mainhelp_status ======
2851 <HTML>
2852 <HEAD>
2853 <TITLE>Titlebar Line</TITLE>
2854 </HEAD>
2855 <BODY>
2856 <H1>Titlebar Line</H1>
2858 The top line of the screen is Alpine's titlebar line.  It will always display
2859 the current version of Alpine and will also convey information about the
2860 status of the program.  This is where you look to find out what
2861 collection, folder and message number is active and where you are in Alpine.
2864 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2865 (typically your INBOX) is &quot;locked&quot; by another mail session --
2866 most likely a more recent session of Alpine has taken the INBOX lock.
2869 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2870 access a
2871 folder on a remote mail server, and for some reason, communication with
2872 the mail server has either been lost, or never successfully established.
2873 This can be a result of trying to open a non-existent folder, or one
2874 stored on an invalid or non-operational server, or it can mean that Alpine
2875 has been suspended for more that 30 minutes while accessing a remote mail
2876 server.
2879 &lt;End of help on this topic&gt;
2880 </BODY>
2881 </HTML>
2882 ===== h_mainhelp_mainmenu ======
2883 <HTML>
2884 <HEAD>
2885 <TITLE>Main Menu</TITLE>
2886 </HEAD>
2887 <BODY>
2888 <H1>Main Menu</H1>
2890 The Main Menu lists Alpine's main options.
2891 The key or keys you must type to enter your
2892 choice are to the left of each option or command name.
2893 You can type either uppercase or lowercase letters,
2894 and you should not press &lt;Return&gt; after typing the
2895 letter (unless you are specifically asking for the default,
2896 highlighted command).
2899 From the Main Menu you can choose to read online help, write (compose) and 
2900 send a message, look at an index of your mail messages, open or maintain
2901 your mail folders, update your address book, configure Alpine, and quit Alpine.
2902 There are additional options listed at
2903 the bottom of the screen as well.
2906 The Help command usually returns context-sensitive help information.
2907 However, in the Main Menu you get the most general help, which includes
2908 a Table of Contents.
2909 The last entry in the Table of Contents is an Index of help topics,
2910 so this is a good place to go if you are having trouble finding how
2911 to do something.
2913 <H2>Main Menu Commands</H2>
2914 The Alpine main menu lists the most common Alpine functions. A <a
2915 href="h_main_menu_commands">full list of these
2916 commands</a> and what they do is available.
2918 &lt;End of help on this topic&gt;
2919 </BODY>
2920 </HTML>
2921 ===== h_mainhelp_abooks ======
2922 <HTML>
2923 <HEAD>
2924 <TITLE>Address Books</TITLE>
2925 </HEAD>
2926 <BODY>
2927 <H1>Address Books</H1>
2930 As you use email, you can build a list of your regular email correspondents 
2931 in your Alpine
2932 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2933 screen. Your
2934 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2935 You can use the address book to store email addresses for individuals or
2936 groups, to create easily
2937 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2938 address when you are composing a message.
2940 There are two ways to add addresses to your address book: you can add them 
2941 manually or take them from messages (by pressing T to access the Take command). 
2942 With either method, you specify nicknames for your correspondents. A single 
2943 address book entry (or nickname) can point to just one email address, or, it can
2944 point to more than one. When it points to more than one, it is called a 
2945 distribution list. Each distribution list has a nickname, a full name, and a 
2946 list of addresses. These
2947 addresses may be actual addresses, other nicknames in your address book, or 
2948 other
2949 distribution lists.
2952 Additional information is available in Alpine's online help:
2953 <ul>
2954   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2955 </ul>
2957 &lt;End of help on this topic&gt;
2958 </BODY>
2959 </HTML>
2960 ===== h_mainhelp_ldap ======
2961 <HTML>
2962 <HEAD>
2963 <TITLE>LDAP</TITLE>
2964 </HEAD>
2965 <BODY>
2966 <H1>LDAP</H1>
2968 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2969 an organization's shared
2970 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2971 large address
2972 books, rather like the White Pages provided by the phone company. As an Alpine 
2973 user, it is not
2974 necessary to know much about how this works, only how to use it and how to 
2975 configure
2978 More information on configuring LDAP is available in Alpine's online help:
2979 <ul>
2980   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2981 </ul>
2983 Additional help on using LDAP in Alpine is also available:
2984 <ul>
2985   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2986 </ul>
2988 &lt;End of help on this topic&gt;
2989 </BODY>
2990 </HTML>
2991 ===== h_mainhelp_index ======
2992 <HTML>
2993 <HEAD>
2994 <TITLE>Index of Messages</TITLE>
2995 </HEAD>
2996 <BODY>
2997 <H1>Index of Messages</H1>
2999 In Alpine's message index, the selected message is highlighted. The first 
3000 column on the left is blank, shows a &quot;+&quot; if the message was
3001 sent directly to you (i.e., it is not a
3002 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
3004 The second column may be blank, or it may contain:
3005 <ul>
3006   <li>"N" if the message is new (unread), </li>
3007   <li>"A" if you have answered the message (using the Reply command), </li>
3008   <li>"D" if you have marked the message for deletion.</li>
3009 </ul>
3012 Note: If you answer a message as well as mark it deleted (in either order), 
3013 you will only see the &quot;D&quot;.
3016 The rest of the columns in the message line show you the message
3017 number, date sent, sender, size, and subject. For details, press ? (Help).  
3018 The behavior and appearance of the Index screen is highly configurable.
3019 In the Setup/Config screen search (with the WhereIs command) for options
3020 that contain the words &quot;index&quot; or &quot;thread&quot; to see
3021 many of the configuration possibilities.
3022 In particular, the
3023 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
3024 option may be used to configure the look of the standard MESSAGE INDEX lines
3025 in many different ways.
3026 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
3027 read the help text there for more information.
3029 Most of the commands you need to handle your messages are visible at the
3030 bottom of the screen, and you can press O (OTHER CMDS) to see additional
3031 commands that are available.
3032 You do not need to see these &quot;other commands&quot;
3033 on the screen to use them. That is, you never need to press O as a prefix
3034 for any other command.
3037 Additional information is available in Alpine's online help:
3038 <ul>
3039   <li><a href="h_mail_index">Message Index Commands</a></li>
3040 </ul>
3042 &lt;End of help on this topic&gt;
3043 </BODY>
3044 </HTML>
3045 ===== h_mainhelp_reading ======
3046 <HTML>
3047 <HEAD>
3048 <TITLE>Reading Messages</TITLE>
3049 </HEAD>
3050 <BODY>
3051 <H1>Reading Messages</H1>
3053 The message text screen shows you the text of the message along with
3054 its header. If a message has attachments, those will be listed (but not
3055 displayed) also.  The titlebar line displays information about the currently
3056 open message, folder and collection.  You see the name of the collection
3057 (if there is one) in angle brackets, then the name of the folder, then the
3058 message number and finally the position within the current message (in
3059 percent). If the message is marked for deletion
3060 &quot;DEL&quot; will appear in the
3061 upper right as well.
3064 As with every Alpine screen, the bottom two lines show you the commands 
3065 available.
3067 <P>Additional information is available in Alpine's online help:
3068 <ul>
3069   <li><a href="h_mail_view">Message Text Screen</a></li>
3070   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
3071   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
3072 </ul>
3074 &lt;End of help on this topic&gt;
3075 </BODY>
3076 </HTML>
3077 ===== h_mainhelp_composing ======
3078 <HTML>
3079 <HEAD>
3080 <TITLE>Composing Messages</TITLE>
3081 </HEAD>
3082 <BODY>
3083 <H1>Composing Messages</H1>
3085 To write a message, press C (Compose). You see the Compose Message
3086 screen, which is divided into two parts: the header area and the message
3087 text area. The header area is where information on the recipient (the To:
3088 field) and the subject line go, while the message text area contains the
3089 actual text of the email message. Different commands are available to you
3090 when your cursor is in different areas on this screen. To see additional
3091 help on commands in either the message text or header area, type
3092 <Control>G (Get help).
3095 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
3096 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
3098 <P>The following information from Alpine's online help may prove useful:
3099 <ul>
3100   <li><a href="h_composer_to">Message Header Commands</a></li>
3101   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
3102   <li><a href="h_composer">Composer Commands</a></li>
3103   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
3104   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
3105   <li><a href="h_compose_send">Send Command</a></li>
3106   <li><a href="h_compose_spell">Spell Check Command</a></li>
3107 </ul>
3109 &lt;End of help on this topic&gt;
3110 </BODY>
3111 </HTML>
3112 ===== h_mainhelp_collections ======
3113 <HTML>
3114 <HEAD>
3115 <TITLE>Collection Lists</TITLE>
3116 </HEAD>
3117 <BODY>
3118 <H1>Collection Lists</H1>
3120 Collection lists are Alpine's way of organizing groups of folders. Each
3121 "collection" can reside on a different server, for example, and contain a
3122 different group of mail folders.
3125 For more information on this, see:
3126 <ul>
3127   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
3128 </ul>
3130 Additional information relating to collection lists is also available in 
3131 Alpine's online
3132 help:
3133 <ul>
3134   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
3135   <li><a href="h_collection_screen">Collection List Screen</a></li>
3136 </ul>
3138 &lt;End of help on this topic&gt;
3139 </BODY>
3140 </HTML>
3141 ===== h_mainhelp_folders ======
3142 <HTML>
3143 <HEAD>
3144 <TITLE>Folders</TITLE>
3145 </HEAD>
3146 <BODY>
3147 <H1>Folders</H1>
3149 Messages can quickly accumulate in your INBOX folder. If you use email
3150 often, you soon could have hundreds. You need to delete messages you do
3151 not want, and you can use folders to organize messages you wish to save. A
3152 folder is a collection of one or more messages that are stored (just like
3153 the messages in your INBOX) so you can access and manage them.
3156 You can organize your email messages into different folders by topic,
3157 correspondent, date, or any other category that is meaningful to you. You
3158 can create your own folders, and Alpine automatically provides three:
3159 <ul>
3160   <li>The INBOX folder: messages sent to you are listed in this folder.
3161       When you first start Alpine and go to the Message Index screen, you are
3162 looking at the list of messages in your INBOX folder. Every incoming
3163 message remains in your INBOX until you delete it or save it in another
3164 folder. </li>
3165   <li>The sent-mail folder: copies of messages you send are stored in this 
3166 folder. This is
3167 convenient if you cannot remember whether you actually sent a message and want 
3168 to check, or
3169 if you want to send a message again.</li>
3170   <li>The saved-messages folder: copies of messages you save are stored in this 
3171 folder
3172 unless you choose to save them to other folders you create yourself.</li>
3173 </ul>
3176 More information about folders is available in Alpine's online help:
3177 <ul>
3178   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
3179   <li><a href="h_folder_maint">Help for Folder List</a></li>
3180   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
3181   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
3182 Explained</a></li>
3183   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
3184 </ul>
3186 &lt;End of help on this topic&gt;
3187 </BODY>
3188 </HTML>
3189 ===== h_mainhelp_color ======
3190 <HTML>
3191 <HEAD>
3192 <TITLE>Color</TITLE>
3193 </HEAD>
3194 <BODY>
3195 <H1>Color</H1>
3197 If the terminal emulator you are using is capable of displaying color or if
3198 you are using PC-Alpine, then it is possible to set up Alpine so that various
3199 parts of the display will be shown in colors you configure. This is done
3200 using the Setup Color screen, available from the MAIN MENU by selecting
3201 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
3202 stands for Config in this context).
3205 For example, you may color things like the titlebar, the current item,
3206 the keymenu, and the status messages.
3207 You may also color lines in the index, and headers and quoted text in the
3208 MESSAGE TEXT screen.
3209 You use the Color Setup screen for configuring most of this, but you must
3210 use the IndexColor setup for coloring whole index lines.
3211 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
3214 The following entries in Alpine's online help provide additional information 
3215 about how to use color:
3216 <UL>
3217   <LI> <A HREF="h_color_setup">Color Setup screen</A>
3218   <LI> <A HREF="h_rules_incols">Index Line Color</A>
3219   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
3220   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
3221 </UL>
3223 &lt;End of help on this topic&gt;
3224 </BODY>
3225 </HTML>
3226 ===== h_mainhelp_mouse ======
3227 <HTML>
3228 <HEAD>
3229 <TITLE>Using a Mouse</TITLE>
3230 </HEAD>
3231 <BODY>
3232 <H1>Using a Mouse</H1>
3234 If you are using PC-Alpine mouse support is turned on automatically.
3235 If you are using UNIX Alpine within an X terminal window or within
3236 a terminal emulator that supports an xterm-style mouse, then you may
3237 turn on support for the mouse with the feature
3238 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
3239 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
3241 PC-Alpine offers considerable mouse support.  You can view what is
3242 &quot;clickable&quot; by dragging your mouse over any screen; when the
3243 arrow cursor changes into a hand, you found something. Mouse-click
3244 possibilities include navigating between screens and folders and
3245 double-clicking on hyperlinks to open your Web browser.
3246 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
3247 screen.  Examples of right-click options include &quot;copy&quot; after
3248 selecting text to copy and &quot;View in New Window&quot; when you click
3249 on a particular message in the Message Index. The menu choices available
3250 to you will vary based upon what screen is open, where on the screen your
3251 cursor is located, and even what action you have already taken.
3252 Within a folder, you may set the &quot;Important&quot; flag on any
3253 message.
3255 X terminal mouse support is more limited but still quite powerful.
3256 As with PC-Alpine, clicking on any of the commands in the keymenu at
3257 the bottom of the screen will execute that command as if you typed it.
3258 Double-clicking on a link, for example the link to the
3259 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
3260 will take you to that link.
3261 Double-clicking on an index line will view the message, and so on.
3263 &lt;End of help on this topic&gt;
3264 </BODY>
3265 </HTML>
3266 ===== h_mainhelp_keywords ======
3267 <HTML>
3268 <HEAD>
3269 <TITLE>Keywords</TITLE>
3270 </HEAD>
3271 <BODY>
3272 <H1>Keywords</H1>
3274 Within a folder, you may set the &quot;Important&quot; flag on any
3275 message.
3276 This doesn't have any system-defined meaning and is only called
3277 the Important flag because many users use it to signify that a message
3278 is important to them in some way.
3280 You may also define your own set of keywords.
3281 You might know these as user defined flags or as labels.
3282 These are similar to the Important flag but you choose the names for yourself.
3284 Alpine will only display keywords that
3285 have been added by you in the Flag Details screen or
3286 that have been configured by you using the Setup/Config option
3287 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
3288 Keywords set by other means (for example, by another email client) will not
3289 show up in Alpine unless you configure Alpine to know about them.
3290 They will show up in the Flag Details screen, but will not show up, for example,
3291 in the index line.
3294 The following entries in Alpine's online help provide additional information 
3295 about how to use keywords:
3296 <ul>
3297   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
3298   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
3299 </ul>
3301 &lt;End of help on this topic&gt;
3302 </BODY>
3303 </HTML>
3304 ===== h_mainhelp_roles ======
3305 <HTML>
3306 <HEAD>
3307 <TITLE>Roles</TITLE>
3308 </HEAD>
3309 <BODY>
3310 <H1>Roles</H1>
3312 You may play different roles depending on who you are replying to. For
3313 example, if you are replying to a message addressed to help-desk you may
3314 be acting as a Help Desk Worker. That role may require that you use a
3315 different return address and/or a different signature.
3318 To configure roles, go to the MAIN MENU and use the Setup command
3319 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
3320 The following entries in Alpine's online help provide additional information 
3321 about how to
3322 use roles:
3323 <ul>
3324   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
3325   <li><a href="h_role_select">Roles Screen</a></li>
3326 </ul>
3328 &lt;End of help on this topic&gt;
3329 </BODY>
3330 </HTML>
3331 ===== h_mainhelp_filtering ======
3332 <HTML>
3333 <HEAD>
3334 <TITLE>Filtering</TITLE>
3335 </HEAD>
3336 <BODY>
3337 <H1>Filtering</H1>
3339 The software that actually delivers mail (the stuff that happens
3340 before Alpine is involved) for you is in a better position to do mail filtering
3341 than Alpine itself.
3342 If possible, you may want to look into using that sort of mail filtering to
3343 deliver mail to different folders, delete it, or forward it.
3344 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3347 Filtering is a way to automatically move certain messages from one folder
3348 to another or to automatically delete messages.
3349 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3350 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3351 Alpine doesn't have the ability to forward mail to another address or
3352 to deliver vacation messages.
3355 To configure filtering, go to the MAIN MENU and use the Setup command
3356 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3357 The following entries in Alpine's online help provide additional information 
3358 about how to use filtering:
3359 <UL>
3360   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3361 </UL>
3363 &lt;End of help on this topic&gt;
3364 </BODY>
3365 </HTML>
3366 ===== h_mainhelp_patterns ======
3367 <HTML>
3368 <HEAD>
3369 <TITLE>Patterns</TITLE>
3370 </HEAD>
3371 <BODY>
3372 <H1>Patterns</H1>
3374 Patterns are used with Roles, Filtering, Index Coloring,
3375 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3376 The following entries in Alpine's online help provide information 
3377 about using Patterns:
3378 <UL>
3379   <LI> <A HREF="h_rule_patterns">Patterns</A>
3380 </UL>
3382 &lt;End of help on this topic&gt;
3383 </BODY>
3384 </HTML>
3385 ===== h_mainhelp_cmdlineopts ======
3386 <HTML>
3387 <HEAD>
3388 <TITLE>Command Line Options</TITLE>
3389 </HEAD>
3390 <BODY>
3391 <H1>Command Line Options</H1>
3393 Alpine accepts a number of command line arguments, allowing you, for
3394 example, to start Alpine and immediately access a particular folder.
3395 Many of these arguments overlap with options in the Alpine configuration file.
3396 If there is a difference, then an option set on the command line takes
3397 precedence.
3398 Alpine expects command line arguments (other than addresses) to be
3399 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3400 A <a href="h_command_line_options">full list</a> of command line
3401 possibilities is available.
3403 &lt;End of help on this topic&gt;
3404 </BODY>
3405 </HTML>
3406 ===== h_mainhelp_config ======
3407 <HTML>
3408 <HEAD>
3409 <TITLE>Alpine Configuration</TITLE>
3410 </HEAD>
3411 <BODY>
3412 <H1>Alpine Configuration</H1>
3414 Unless it has been administratively disabled, the Setup command on the
3415 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3416 The possible subcommands are for general Configuration settings,
3417 Printer settings, Changing your Password, Signature setup,
3418 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3419 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3420 and Color configuration.
3421 In particular, the &quot;Config&quot; subcommand has many features you may
3422 set or unset and many other configuration variables that may be set to change
3423 the way Alpine works.
3424 Every one of the hundreds of options available in that configuration settings
3425 screen has help text associated with it.
3426 You may read that text by moving the cursor to highlight the option and then
3427 typing the Help command.
3429 These settings are stored in your personal
3430 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3431 <A HREF="h_config_remote_config">remotely</A>),
3432 but on shared systems these settings
3433 may be over-ridden by a system-wide control file (due to local site
3434 security or support policies).  A global pine configuration file can also
3435 be used to set default values for all Alpine users on a particular system.
3436 Power users may be interested in splitting their personal configuration
3437 data into two pieces, a generic piece and
3438 <A HREF="h_config_exceptions">exceptions</A> which apply to
3439 a particular platform.
3440 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3441 General Alpine configuration information can be found
3442 <A HREF="h_news_config">here</A>.
3444 &lt;End of help on this topic&gt;
3445 </BODY>
3446 </HTML>
3447 ===== h_mainhelp_aggops ======
3448 <HTML>
3449 <HEAD>
3450 <TITLE>Aggregate Operations</TITLE>
3451 </HEAD>
3452 <BODY>
3453 <H1>Aggregate Operations</H1>
3455 When you are in the MESSAGE INDEX, the available commands
3456 (for example, Delete, Undelete, Save, Reply, and so on)
3457 normally act on a single message.
3458 So, for example, if you press the Delete command, the currently highlighted
3459 message is marked Deleted.
3460 These commands that normally act on a single message may be applied to
3461 several messages at once instead.
3463 By default this feature is turned on, but it could be administratively turned
3464 off to reduce complexity.
3465 The feature
3466 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3467 in the Setup/Config screen is used to turn it off or on.
3468 When this feature is turned on, the four commands &quot;Select&quot;,
3469 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3470 are available.
3471 The two selection commands allow you to mark a set of
3472 messages as being &quot;selected&quot;.
3473 The &quot;ZoomMode&quot; command will toggle between
3474 displaying only the selected messages and displaying all the messages.
3475 The &quot;Apply&quot; command allows you to
3476 apply one of the regular MESSAGE INDEX commands to all of the selected
3477 messages instead of to only the highlighted message.
3479 An example aggregate operation would be to catch up when reading
3480 a news group.
3481 That is, get rid of all the messages in the news group so that you can
3482 start fresh.
3483 The easiest way to do this in Alpine is to use aggregate operations.
3484 You want to Delete all of the messages in the group.
3485 You could start at the top and type &quot;D&quot; once for every message.
3486 A much faster method is to first Select all of the messages in the group,
3487 and then Delete all of them.
3488 This would take four keystrokes:
3490 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3491 <BR>
3492 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3494 Another use of Select is to use it for searching for a particular message
3495 or set of messages in a large folder.
3496 You may know that the message was From a certain user.
3497 You could select all messages from that user to start, and use Zoom to
3498 look at only those messages.
3499 If there were still too many messages to look at you could Narrow the
3500 set of messages further by selecting from all of those messages only
3501 the ones that were after a certain date, or contained a particular phrase
3502 in the Subject, or were too a particular address, and so on.
3503 That may be the end of what you are doing, or you may want to use Apply to
3504 Save or Forward or Print all of the selected messages.
3506 Some related help topics are
3507 <UL>
3508 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3509 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3510 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3511 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3512 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3513 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3514 </UL>
3516 &lt;End of help on this topic&gt;
3517 </BODY>
3518 </HTML>
3519 ===== h_mainhelp_readingnews ======
3520 <HTML>
3521 <HEAD>
3522 <TITLE>Reading News</TITLE>
3523 </HEAD>
3524 <BODY>
3525 <H1>Reading News</H1>
3527 <H2>Background</H2>
3528 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3529 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3530 Usenet newsgroups allow groups of people with common interests to discuss 
3531 particular topics. You might find newsgroups related to your career, or you 
3532 might wish to check out the online discussion among the fans of your favorite 
3533 television show. 
3535 <H2>Configuring Alpine for Reading News</H2>
3536 Alpine often arrives
3537 pre-configured by your system administrator to automatically access the
3538 newsgroups offered by your organization, Internet Service Provider, or
3539 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3540 need additional details on <a href="h_configuring_news">how to
3541 configure Alpine to read news</a>.
3543 <H2>Accessing Newsgroups</H2>
3544 The first step in reading news is to access the newsgroups collections
3545 screen from Alpine. If everything is configured properly, you should be able
3546 to do this by first typing L (folder List), then selecting the folder
3547 collection listed as "News." The actual name of this collection may differ
3548 from system to system.
3550 <H2>Subscribing to Newsgroups</H2>
3552 Once you have accessed the news collection, you need to subscribe to a
3553 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3554 will keep a record of the newsgroups in which you are interested and which
3555 articles in those newsgroups have been read.
3557 <H2>Using Newsgroups</H2> 
3558 Alpine uses the similar commands to read news as to read mail. For example,
3559 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3560 and the R command Replies to a news posting. Basically, Alpine allows you to
3561 read news as if it were mail, so you don't need to change the way you
3562 interact with Alpine.
3564 There is also additional Alpine help available on 
3565 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3567 &lt;End of help on this topic&gt;
3568 </BODY>
3569 </HTML>
3570 ===== h_mainhelp_securing ======
3571 <HTML>
3572 <HEAD>
3573 <TITLE>Securing your Alpine Session</TITLE>
3574 </HEAD>
3575 <BODY>
3576 <H1>Securing your Alpine Session</H1>
3578 By default, Alpine will attempt to connect to an IMAP server on the normal
3579 IMAP service port (143).
3580 If the Alpine you are using has been built to
3581 support &quot;Transport Layer Security&quot; (TLS)
3582 and &quot;Secure Sockets Layer&quot; (SSL) 
3583 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3584 and the server offers the STARTTLS capability, then a secure (encrypted)
3585 session will be established.
3587 When you are connected to a remote folder the titlebar will contain a plus sign
3588 in the far right column if the connection is encrypted using TLS or SSL.
3589 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3590 if the connection is encrypted.
3592 <H2>More Information on Alpine with SSL and TLS</H2>
3593 <UL>
3594 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3595 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3596 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3597 <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>
3598 </UL>
3599 <H2>Here are some other security-related features and options</H2>
3601 <UL>
3602 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3603 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3604 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3605 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3606 <LI> <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> option </LI>
3607 </UL>
3609 &lt;End of help on this topic&gt;
3610 </BODY>
3611 </HTML>
3612 ===== h_mainhelp_problems ======
3613 <HTML>
3614 <HEAD>
3615 <TITLE>Reporting Problems</TITLE>
3616 </HEAD>
3617 <BODY>
3618 <H1>Reporting Problems</H1>
3620 We ask that you first read the relevant help screens and then seek
3621 assistance from your own local support staff.  Once you are sure that your
3622 difficulty is not a local configuration problem, you might look at the
3623 help section explaining where to look for
3624 <A HREF="h_finding_help">more information</A> and where to 
3625 get assistance.
3628 <ADDRESS>
3629    Eduardo Chappa &lt;chappa@gmx.com&gt;
3630 </ADDRESS>
3633 &lt;End of help on this topic&gt;
3634 </BODY>
3635 </HTML>
3636 ===== h_main_menu_commands ======
3637 <HTML>
3638 <HEAD>
3639 <TITLE>MAIN MENU COMMANDS</TITLE>
3640 </HEAD>
3641 <BODY>
3642 <H1>MAIN MENU COMMANDS</H1>
3644 <!--chtml if pinemode="function_key"-->
3645 &nbsp;Available&nbsp;Commands&nbsp;--
3646 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3647 &nbsp;------------------------------
3648 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3649 ----------<BR>
3650 &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>
3651 &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>
3652 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3653 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3654 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3655 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3656 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3657 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3658 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3659 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3660 &nbsp;F7&nbsp;&nbsp;<A 
3661 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3662 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3663 &nbsp;F8&nbsp;&nbsp;<A 
3664 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3665 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3666 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 
3667 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3668 &nbsp;F10&nbsp;<A 
3669 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 
3670 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3671 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3672 &nbsp;F11&nbsp;<A 
3673 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3674 <!--chtml else-->
3675 &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>
3676 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3677 &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>
3678 &nbsp;C&nbsp;&nbsp;<A 
3679 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>
3680 &nbsp;I&nbsp;&nbsp;<A 
3681 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>
3682 &nbsp;L&nbsp;&nbsp;<A 
3683 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>
3684 &nbsp;A&nbsp;&nbsp;<A 
3685 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3686 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3687 &nbsp;S&nbsp;&nbsp;<A 
3688 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 
3689 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3690 &nbsp;Q&nbsp;&nbsp;Quit&nbsp;Alpine&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;J&nbsp;&nbsp;<A HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3691 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3692 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3693 <!--chtml endif-->
3696 NOTE:
3697 <OL>
3698  <LI>For help on a particular command, highlight the bold text associated
3699 with it above and hit Return.
3700  <LI> The availability of certain commands (e.g. some of the options under
3701 SETUP) is determined by Alpine configuration files and system capabilities.
3702 At some sites, certain commands may not be available due to security or
3703 support concerns.
3704 </OL>
3706 &lt;End of help on this topic&gt;
3707 </BODY>
3708 </HTML>
3710 ===== h_command_line_options ======
3711 <HTML>
3712 <HEAD>
3713 <TITLE>COMMAND LINE OPTIONS</TITLE>
3714 </HEAD>
3715 <BODY>
3716 <H1>COMMAND LINE OPTIONS</H1>
3717 Possible starting arguments for Alpine:
3719 <DL COMPACT>
3721 <DT> <EM>[addresses]</EM>
3723 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3724 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3725 <EM>Alpine</EM> will startup in
3726 the composer with a message started to the addresses specified.
3727 Once the message is sent, the <EM>Alpine</EM> session closes.
3728 Standard input redirection is allowed.
3729 Separate multiple addresses with a space between them.
3730 Addresses are placed in the &quot;To&quot; field only.
3733 <DT> &lt; <EM>file</EM>
3735 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3736 into the body of the message.
3737 Once the message is sent, the <EM>Alpine</EM> session closes. 
3740 <DT> -attach <EM>file</EM>
3742 <DD> Go directly into composer with given file attached.
3745 <DT> -attachlist <EM>file-list</EM>
3747 <DD> Go directly into composer with given files attached.
3748 This must be the last option on the command line.
3751 <DT> -attach_and_delete <EM>file</EM>
3753 <DD> Go directly into composer with given file attached, delete when finished.
3756 <DT> -aux <EM>local_directory</EM>
3758 <DD> <EM>PC-Alpine</EM> only.
3759 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3760 files, like debug files, address books, and signature files.  The pinerc may 
3761 be local or remote.
3764 <DT> -bail
3766 <DD> If the personal configuration file doesn't already exist, exit.
3767 This might be useful if the configuration file is accessed using some
3768 remote filesystem protocol. If the remote mount is missing this will cause
3769 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3772 <DT> -c <EM>n</EM>
3774 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3775 This is used when there are multiple folder collections (contexts) and you 
3776 want to open a folder not in the primary collection.
3779 <DT> -conf
3781 <DD> Configuration: Prints a sample system configuration file to the
3782 screen or standard output. To generate an initial system configuration 
3783 file, execute
3785 <PRE><CODE>
3786                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3787 </CODE></PRE>
3790 To generate a system configuration file using settings from an old
3791 system configuration file, execute
3793 <PRE><CODE>
3794                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3795 </CODE></PRE>
3797 A system configuration file is not required.
3800 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3802 <DD> Copy an address book file to a remote address book folder.
3803 If the remote folder doesn't exist, it will be created.
3804 If it exists but the first message in the folder isn't a remote address
3805 book header message, the copy will be aborted.
3806 This flag will not usually be used by a user.
3807 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3808 and copy entries from the local address book by using aggregate Save in
3809 the address book screen.
3812 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3814 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3815 If the remote folder doesn't exist, it will be created.
3816 If it exists but the first message in the folder isn't a remote pinerc
3817 header message, the copy will be aborted.
3818 This flag may be useful to users who already have a local pinerc file and
3819 would like to convert it to a remote pinerc folder and use that instead.
3820 This gives a way to bootstrap that conversion without having to manually
3821 reset all of the variables in the remote pinerc folder.
3824 <DT> -d <EM>debug-level</EM>
3826 <DD> Debug Level:  Sets the level of debugging information written by
3827 <EM>Alpine</EM>.
3828 <EM>debug-level</EM> can be set to any integer 0-9.
3829 A debug level of 0 turns off debugging for the session.
3830 (Actually there are some levels higher than 9, but you probably don't
3831 want to see them.)
3834 <DT> -d <EM>keywords</EM>
3836 <DD> You may use a more detailed version of the debugging flag to set
3837 the debug level in separate parts of <EM>Alpine</EM>.
3838 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3839 verbose=0..9.
3840 <EM>Flush</EM> causes debugging information to be flushed immediately to
3841 the debug file as it is written.
3842 <EM>Verbose</EM> is the general debugging verbosity level.
3843 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3844 is useful when you are trying to figure out what is responsible for delays.
3845 <EM>Numfiles</EM> sets the number of debug files saved.
3846 <EM>Imap</EM> sets the debug level for the debugging statements related
3847 to the conversation with the IMAP server, and more generally, for the
3848 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3849 <EM>Tcp</EM> turns on some TCP/IP debugging.
3852 <DT> -f <EM>folder</EM>
3854 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3855 of the standard INBOX.
3858 <DT> -F <EM>file</EM>
3860 <DD> Open named text file for viewing and forwarding.
3863 <DT> -h
3865 <DD> Help:  Prints the list of available command-line arguments to the
3866 screen.
3869 <DT> -i
3871 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3872 screen instead of the MAIN MENU.
3875 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3878 <DT> -I <EM>a,b,c,...</EM>
3880 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3881 sequence of commands upon startup.
3882 This allows users to get <EM>Alpine</EM> to start in any
3883 of its menus/screens.
3884 You cannot include any input to the composer in the initial keystrokes.
3885 The key &lt;Return&gt; is represented by a ``CR'' in
3886 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3887 Control keys are two character sequences beginning with ``^'', such as
3888 ``^I''.
3889 A tab character is ``TAB''.
3890 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3891 ``DOWN'', ``LEFT'', and ``RIGHT''.
3892 A restriction is that you can't mix function keys and character keys in this
3893 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3894 A user can always use only <EM>character</EM> keys in the startup list even
3895 if he or she is using <EM>function</EM> keys normally, or vice versa.
3896 If an element in this list is a string of characters surrounded by double
3897 quotes (&quot;) then it will be expanded into the individual characters in
3898 the string, excluding the double quotes.
3901 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3904 <DT> -install
3906 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3907 some basic information to help with getting properly set up.
3910 <DT> -k
3912 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3913 the input of commands to be function-keys.
3914 Otherwise, commands are linked to the regular character keys.
3917 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3918 <EM>Feature-List</EM>.
3921 <DT> -n <EM>n</EM>
3923 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3924 FOLDER INDEX screen with the current message being the specified
3925 message number.
3928 <DT> -nosplash
3930 <DD> <EM>PC-Alpine</EM> only.
3931 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3932 This may be helpful for certain troubleshooting or terminal server scenarios.
3935 <DT> -o <EM>folder</EM>
3937 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3940 <DT> -p <EM>pinerc</EM>
3942 <DD> Uses the named file as the personal configuration file instead of
3943 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3944 Alpinerc may be either a local file or a remote configuration folder.
3947 <DT> -P <EM>pinerc</EM>
3949 <DD> Uses the named file as the system wide configuration file instead of
3950 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3951 Alpinerc may be either a local file or a remote configuration folder.
3954 <DT> -passfile <EM>passfile</EM>
3956 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3957 This should be a fully-qualified filename.
3960 <DT> -pinerc <EM>file</EM>
3962 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3963 settings of variables that the user has made.
3964 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3967 <DT> -r
3969 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3970 <EM>Alpine</EM> in restricted mode can only send email to itself.
3971 Save and export are limited.
3974 <DT> -registry <EM>cmd</EM>
3976 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3977 <EM>Alpine</EM>'s registry entries.
3978 Possible values for <EM>cmd</EM> are set, clear, and dump.
3979 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3980 entries according to its current settings.
3981 <EM>Clear</EM> will clear the registry values.
3982 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3983 <EM>Dump</EM> will display the values of current registry settings.
3984 Note that the dump command is currently disabled.
3985 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3986 the registry only if there currently aren't any values set.
3989 <DT> -sort <EM>key</EM>
3991 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3992 FOLDER INDEX screen.
3993 <EM>Key</EM> can have the following values: 
3994 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3995 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3996 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3997 The default value is &quot;arrival&quot;.
3998 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
4001 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
4004 <DT> -uninstall
4006 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
4007 in Windows settings.  The registry settings are removed and
4008 the password cache is cleared.
4011 <DT> -url <EM>url</EM>
4013 <DD> Open the given URL.
4016 <DT> -v
4018 <DD> Version:  Print version information to the screen.
4021 <DT> -x <EM>exceptions_config</EM>
4023 <DD> Configuration settings in the exceptions configuration override your normal
4024 default settings.
4025 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
4028 <DT> -z
4030 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
4031 will suspend the <EM>Alpine</EM> session.
4034 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
4035 <EM>Feature-List</EM>.
4038 <DT> -<EM>option</EM>=<EM>value</EM>
4040 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
4041 For example, <EM>-signature-file=sig1</EM> or
4042 <EM>-Feature-List=signature-at-bottom</EM>.
4043 Note:  Feature-List values are
4044 additive and features may be preceded with no- to turn them off.
4045 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
4046 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
4047 <EM>-Feature-List=signature-at-bottom</EM>.
4050 </DL>
4052 &lt;End of help on this topic&gt;
4053 </BODY>
4054 </HTML>
4055 ===== h_configuring_news ======
4056 <HTML>
4057 <HEAD>
4058 <TITLE>CONFIGURING NEWS</TITLE>
4059 </HEAD>
4060 <BODY>
4061 <H1>CONFIGURING NEWS</H1>
4062 Alpine can access news folders in any one of three different ways:
4063 <DL>
4064 <DT>REMOTE NNTP</DT>
4065 <DD>Using the Network News Transport Protocol (NNTP) to
4066 access news on a remote news server.  In this case the newsrc file is
4067 stored on the machine where Alpine is running.
4070 To specify a remote news-collection accessed via NNTP use the
4071 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
4072 Server: value to the NNTP server's hostname appended with the
4073 communication method &quot;/service=NNTP&quot;, and set the Path:
4074 value to the &quot;#news.&quot; namespace (without the quotes).  See
4075 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
4076 help text for a more complete explanation of access method, and the
4077 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4078 text for a more complete explanation of &quot;namespace&quot;.
4080 Instead of specifying a news-collection, you may simply set the
4081 <A HREF="h_config_nntp_server">NNTP Server</A>
4082 option, which will cause Alpine to create a default news-collection for you.
4083 Another NNTP option that may be of interest is
4084 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
4086 <DT>REMOTE IMAP</DT>
4087 <DD>Using the Internet Message Access Protocol (IMAP) to
4088 access news on a remote news server.  In this case, your newsrc file is
4089 stored on the news server, in your home directory, so you must have an
4090 account on the news server, but you would be running Alpine on a different
4091 machine.  The news server must be running an IMAPd server process. 
4094 To specify a remote news-collection accessed via IMAP use the
4095 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
4096 Server: value to the IMAP server's hostname, and set the Path: value
4097 to the &quot;#news.&quot; namespace (without the quotes).  See the
4098 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4099 text for a more complete explanation of &quot;namespace&quot;.
4101 </DD>
4103 <DT>LOCAL</DT>
4104 <DD>Using local file access to the news database.  In this
4105 case, your newsrc file is stored on the news server, in your home
4106 directory, so you must have an account on the news server, and you would
4107 be running Alpine on the same machine.
4110 To specify a local news-collection use the SETUP/collectionList
4111 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
4112 set the Path: value to the &quot;#news.&quot; namespace (without the
4113 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
4114 field's help text for a more complete explanation of &quot;namespace&quot;.
4116 </DD>
4117 </DL>
4121 NOTE: Should no news-collection be defined as above, Alpine will
4122 automatically create one using the Setup/Config screen's
4123 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
4124 will be created as a &quot;Remote NNTP&quot; as described above.
4128 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
4129 possible.  If you don't have an account on the news server, or if the news
4130 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
4131 sure, ask your service provider, university, or company for help.)  In
4132 this case, your Unix .newsrc file can be transferred to your PC.  A good
4133 place to put it would be in the same directory as your PINERC file, under
4134 the name NEWSRC, but you can 
4135 <A HREF="h_config_newsrc_path">specify a different location</A>
4136 via Alpine's Setup/Config screen.
4139 Other configuration features related to news are
4140 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
4141 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
4142 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
4143 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
4144 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
4145 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
4146 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
4147 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
4150 &lt;End of help on this topic&gt;
4151 </BODY>
4152 </HTML>
4153 ===== h_reading_news ======
4154 <HTML>
4155 <HEAD>
4156 <TITLE>READING NEWS</TITLE>
4157 </HEAD>
4158 <BODY>
4159 <H1>READING NEWS</H1>
4161 Alpine uses almost the same commands for manipulating news folders as for
4162 mail folders.  This means, for example, that when you are done with a
4163 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
4164 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
4165 most newsreaders, wherein a message is implicitly dismissed after you have
4166 looked at it once. We strongly believe that Alpine should offer as much
4167 consistency as possible between mail and news, so the mail paradigm --
4168 wherein a message does not magically disappear without explicit action by
4169 the user -- is used for news as well. <P>
4171 If you answer a message in a news folder, the index view will show the
4172 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
4173 keep track of what news as been read has no way of storing this flag, so
4174 it will not be preserved across sessions.  The Deleted flag is the only
4175 one that is preserved when you leave and then return to a newsgroup.  As an
4176 additional note on replies, when you Reply to a newsgroup message and say
4177 you want to reply to all recipients, Alpine will ask if you want to post the
4178 message to all the newsgroups listed in the original message. <P>
4180 If you would like Alpine to mark more-or-less recent news messages as
4181 &quot;New&quot;, then set the
4182 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
4183 feature (which is set by default).  This will cause messages after the last one you have marked as
4184 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
4185 &quot;N&quot; status often makes it easier to distinguish later news
4186 articles from those you've previously seen, but not yet disposed of via
4187 the &quot;D&quot; key.  Note that this is an approximation, not an exact
4188 record of which messages you have not seen.
4191 A frequent operation in news-reading is &quot;catching up&quot; -- that
4192 is, getting rid of all the messages in the newsgroup so that you can
4193 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
4194 Select command.  You would enter the following four keystrokes:
4195 <tt>;aad</tt> to select all messaged, and then apply the delete (or
4196 dismiss) command to all of them.
4199 There are also additional details on 
4200 <A HREF="h_configuring_news">configuring news</a>.
4203 &lt;End of help on this topic&gt;
4204 </BODY>
4205 </HTML>
4206 ====== h_help_index ======
4207 <HTML>
4208 <HEAD>
4209 <TITLE>Help Index</TITLE>
4210 </HEAD>
4211 <BODY>
4212 <H1>Help Index</H1>
4213 <ul>
4214 <li><a href="h_mainhelp_abooks">Address Books</a></li>
4215 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
4216 <li><a href="h_main_addrbook">Address Book Command</a>
4217 <li><a href="h_abook_view">Address Book View Explained</a>
4218 <li><a href="h_compose_addrcomplete">Address Completion</a>
4219 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
4220 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
4221 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
4222 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
4223 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
4224 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
4225 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
4226 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
4227 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
4228 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
4229 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
4230 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
4231 <li><a href="h_mainhelp_config">Alpine Configuration</a>
4232 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
4233 <li><a href="h_news_legal">Alpine Legal Notices</a>
4234 <li><a href="h_compose_alted">Alt Editor Command</a>
4235 <li><a href="h_index_cmd_apply">Apply Command</a>
4236 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
4237 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
4238 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
4239 <li><a href="h_composer_browse">BROWSER</a>
4240 <li><a href="h_common_bounce">Bounce Command</a>
4241 <li><a href="h_compose_cancel">Cancel Command</a>
4242 <li><a href="h_config_change_your_from">Changing your From Address</a>
4243 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
4244 <li><a href="h_mainhelp_color">Color</a>
4245 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
4246 <li><a href="h_composer">COMPOSER COMMANDS</a>
4247 <li><a href="h_mainhelp_composing">Composing Messages</a>
4248 <li><a href="h_mainhelp_collections">Collection Lists</a>
4249 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
4250 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
4251 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
4252 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
4253 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
4254 <li><a href="h_common_compose">Compose Command</a>
4255 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
4256 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
4257 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
4258 <li><a href="h_mainhelp_config">Configuration</a>
4259 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
4260 <li><a href="h_config_dflt_color">Default Color</a>
4261 <li><a href="h_common_delete">Delete and Undelete Commands</a>
4262 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
4263 <li><a href="h_special_list_commands">Email List Commands Explained</a>
4264 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
4265 <li><a href="h_folder_open">Explanation of Folder Selection</a>
4266 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
4267 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
4268 <li><a href="h_ge_export">Export File Selection</a>
4269 <li><a href="h_ge_allparts">Export Message File Selection</a>
4270 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
4271 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
4272 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
4273 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
4274 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
4275 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
4276 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
4277 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
4278 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
4279 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
4280 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
4281 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
4282 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
4283 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
4284 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
4285 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
4286 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
4287 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
4288 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
4289 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
4290 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
4291 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
4292 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
4293 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
4294 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
4295 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
4296 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
4297 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
4298 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
4299 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
4300 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
4301 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
4302 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
4303 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
4304 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
4305 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
4306 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
4307 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
4308 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
4309 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
4310 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
4311 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
4312 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
4313 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
4314 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
4315 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
4316 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
4317 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
4318 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
4319 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
4320 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
4321 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
4322 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
4323 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
4324 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
4325 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
4326 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
4327 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
4328 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
4329 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
4330 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
4331 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
4332 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
4333 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
4334 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
4335 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
4336 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
4337 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
4338 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
4339 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
4340 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
4341 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
4342 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
4343 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
4344 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
4345 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
4346 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4347 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4348 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4349 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4350 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4351 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4352 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4353 <li><a href="h_external_loads_inline_images_only">FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>
4354 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4355 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4356 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4357 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4358 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4359 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4360 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4361 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4362 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4363 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4364 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4365 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4366 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4367 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4368 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4369 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4370 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4371 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4372 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4373 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4374 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4375 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4376 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4377 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4378 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4379 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4380 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4381 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4382 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4383 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4384 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4385 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4386 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4387 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4388 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4389 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4390 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4391 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4392 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4393 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4394 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4395 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4396 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4397 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4398 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4399 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4400 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4401 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4402 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4403 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4404 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4405 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4406 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4407 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4408 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4409 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4410 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4411 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4412 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4413 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4414 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4415 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4416 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4417 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4418 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4419 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4420 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4421 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4422 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4423 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4424 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4425 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4426 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4427 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4428 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4429 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4430 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4431 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4432 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4433 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4434 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4435 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4436 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4437 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4438 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4439 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4440 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4441 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4442 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4443 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4444 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4445 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4446 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4447 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4448 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4449 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4450 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4451 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4452 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4453 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4454 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4455 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4456 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4457 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4458 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4459 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4460 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4461 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4462 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4463 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4464 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4465 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4466 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4467 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4468 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4469 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4470 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4471 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4472 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4473 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4474 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4475 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4476 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4477 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4478 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4479 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4480 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4481 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4482 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4483 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4484 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4485 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4486 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4487 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4488 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4489 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4490 <li><a href="h_mainhelp_filtering">Filtering</a>
4491 <li><a href="h_finding_help">Finding more information and requesting help</a>
4492 <li><a href="h_common_flag">Flag Command</a>
4493 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4494 <li><a href="h_mainhelp_folders">Folders</a>
4495 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4496 <li><a href="h_common_folders">Folder List Command</a>
4497 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4498 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4499 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4500 <li><a href="h_config_change_your_from">From Address, Changing</a>
4501 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4502 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4503 <li><a href="h_common_goto">Goto Command</a>
4504 <li><a href="h_common_hdrmode">HdrMode Command</a>
4505 <li><a href="h_mainhelp_pinehelp">Help</a>
4506 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4507 <li><a href="h_folder_maint">Help for Folder List</a>
4508 <li><a href="h_valid_folder_names">IMAP</a>
4509 <li><a href="h_ge_import">Import File Selection</a>
4510 <li><a href="h_mainhelp_index">Index of Messages</a>
4511 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4512 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4513 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4514 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4515 <li><a href="h_mainhelp_intro">Introduction</a>
4516 <li><a href="h_main_journal">Journal Command</a>
4517 <li><a href="h_common_jump">Jump Command</a>
4518 <li><a href="h_compose_justify">Justify Command</a>
4519 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4520 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4521 <li><a href="h_mainhelp_ldap">LDAP</a>
4522 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4523 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4524 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4525 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4526 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4527 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4528 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4529 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4530 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4531 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4532 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4533 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4534 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4535 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4536 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4537 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4538 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4539 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4540 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4541 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4542 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4543 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4544 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4545 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4546 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4547 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4548 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4549 <li><a href="h_common_index">Message Index Command</a>
4550 <li><a href="h_mainhelp_mouse">Mouse</a>
4551 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4552 <li><a href="new_user_greeting">NEW USER GREETING</a>
4553 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4554 <li><a href="h_mainhelp_readingnews">News Reading</a>
4555 <li><a href="h_folder_subscribe">Newsgroup Subscribe Screen explained</a>
4556 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4557 <li><a href="h_common_nextnew">NextNew Command</a>
4558 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4559 <li><a href="h_mainhelp_readingnews">NNTP</a>
4560 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4561 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4562 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4563 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4564 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4565 <li><a href="h_config_color_style">OPTION: Color Style</a>
4566 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4567 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4568 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4569 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4570 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4571 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4572 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4573 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4574 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4575 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4576 <li><a href="h_config_encryption_range">OPTION: <!--#echo var="VAR_encryption-protocol-range"--></a>
4577 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4578 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4579 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4580 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4581 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4582 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4583 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4584 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4585 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4586 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4587 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4588 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4589 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4590 <li><a href="h_config_font_name">OPTION: Font Name</a>
4591 <li><a href="h_config_font_size">OPTION: Font Size</a>
4592 <li><a href="h_config_font_style">OPTION: Font Style</a>
4593 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4594 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4595 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4596 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4597 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4598 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4599 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4600 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4601 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4602 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4603 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4604 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4605 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4606 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4607 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4608 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4609 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4610 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4611 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4612 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4613 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4614 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4615 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4616 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4617 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4618 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4619 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4620 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4621 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4622 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4623 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4624 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4625 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4626 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4627 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4628 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4629 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4630 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4631 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4632 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4633 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4634 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4635 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4636 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4637 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4638 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4639 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4640 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4641 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4642 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4643 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4644 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4645 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4646 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4647 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4648 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4649 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4650 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4651 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4652 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4653 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4654 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4655 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4656 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4657 <li><a href="h_config_printer">OPTION: Printer</a>
4658 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4659 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4660 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4661 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4662 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4663 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4664 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4665 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4666 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4667 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4668 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4669 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4670 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4671 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4672 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4673 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4674 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4675 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4676 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4677 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4678 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4679 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4680 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4681 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4682 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4683 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4684 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4685 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4686 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4687 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4688 <li><a href="h_config_status_color">OPTION: Status Color</a>
4689 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4690 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4691 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4692 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4693 <li><a href="h_config_quit_query_timeo">OPTION: <!--#echo var="VAR_close-connection-timeout"--></a>
4694 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4695 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4696 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4697 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4698 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4699 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4700 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4701 <li><a href="h_config_title_color">OPTION: Title Color</a>
4702 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4703 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4704 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4705 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4706 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4707 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4708 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4709 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4710 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4711 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4712 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4713 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4714 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4715 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4716 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4717 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4718 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4719 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4720 <li><a href="h_mainhelp_patterns">Patterns</a>
4721 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4722 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4723 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4724 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4725 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4726 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4727 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4728 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4729 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4730 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4731 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4732 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4733 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4734 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4735 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4736 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4737 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4738 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4739 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4740 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4741 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4742 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4743 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4744 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4745 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4746 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4747 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4748 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4749 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4750 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4751 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4752 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4753 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4754 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4755 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4756 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4757 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4758 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4759 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4760 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4761 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4762 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4763 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4764 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4765 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4766 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4767 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4768 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4769 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4770 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4771 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4772 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4773 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4774 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4775 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4776 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4777 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4778 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4779 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4780 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4781 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4782 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4783 <li><a href="h_common_pipe">Pipe Command</a>
4784 <li><a href="h_valid_folder_names">POP</a>
4785 <li><a href="h_common_postpone">Postpone Command</a>
4786 <li><a href="h_common_print">Print Command</a>
4787 <li><a href="h_mainhelp_readingnews">Reading News</a>
4788 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4789 <li><a href="h_mainhelp_roles">Roles</a>
4790 <li><a href="h_role_select">ROLES SCREEN</a>
4791 <li><a href="h_compose_readfile">Read File Command</a>
4792 <li><a href="h_mainhelp_reading">Reading Messages</a>
4793 <li><a href="h_main_release_notes">Release Notes Command</a>
4794 <li><a href="h_common_reply">Reply and Forward Commands</a>
4795 <li><a href="h_compose_richhdr">Rich Header Command</a>
4796 <li><a href="h_common_role">Role Command</a>
4797 <li><a href="h_mainhelp_smime">S/MIME</a>
4798 <li><a href="h_index_cmd_select">Searching for Messages</a>
4799 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4800 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4801 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4802 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4803 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4804 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4805 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4806 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4807 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4808 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4809 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4810 <li><a href="h_common_save">Save and Export Commands</a>
4811 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4812 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4813 <li><a href="h_compose_send">Send Command</a>
4814 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4815 <li><a href="h_main_setup">Setup Command</a>
4816 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4817 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4818 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4819 <li><a href="h_mainhelp_smime">S/MIME</a>
4820 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4821 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4822 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4823 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4824 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4825 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4826 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4827 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4828 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4829 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4830 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4831 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4832 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4833 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4834 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4835 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4836 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4837 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4838 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4839 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4840 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4841 <li><a href="h_index_cmd_sort">Sort Command</a>
4842 <li><a href="h_compose_spell">Spell Check Command</a>
4843 <li><a href="h_common_suspend">Suspend Command</a>
4844 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4845 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4846 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4847 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4848 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4849 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4850 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4851 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4852 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4853 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4854 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4855 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4856 <li><a href="h_common_take">TakeAddr Command</a>
4857 <li><a href="h_mainhelp_status">Titlebar Line</a>
4858 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4859 <li><a href="h_config_usenone_color">Use None Color</a>
4860 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4861 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4862 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4863 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4864 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4865 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4866 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4867 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4868 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4869 </UL>
4872 &lt;End of Help Index&gt;
4873 </BODY>
4874 </HTML>
4877 ============== h_config_remote_config =============
4878 <HTML>
4879 <HEAD>
4880 <TITLE>Remote Configuration</TITLE>
4881 </HEAD>
4882 <BODY>
4883 <H1>Remote Configuration</H1>
4885 You may use the command line argument &quot;-p pinerc&quot; to tell
4886 Alpine to use a non-default configuration file.
4887 There are two types of storage for configuration information.
4888 <EM>Local</EM> configuration files are used by default.
4889 These are just regular files on the UNIX system or on the PC.
4890 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4891 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4892 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4893 The advantage of using a remote configuration is that the same information
4894 may be accessed from multiple platforms.
4895 For example, if you use one computer at work and another at home, the same
4896 configuration could be used from both places.
4897 A configuration change from one place would be seen in both places.
4898 To use a remote configuration you simply give a
4899 <A HREF="h_valid_folder_names">remote folder name</A>
4900 as the argument to the &quot;-p&quot; command line option.
4901 The command line might look something like:
4903 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4905 If there are special characters in the command shell you use, you may need to
4906 quote the last argument (to protect the curly braces from the shell).
4907 The command might look like:
4909 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4911 You should choose a folder name for a folder that does not yet exist.
4912 It will be created containing an empty configuration.
4913 Do not use a folder that you wish to store regular mail messages in.
4915 The Setup/RemoteConfigSetup command will help you convert from a local
4916 configuration to a remote configuration.
4917 It will create a remote configuration for you and copy your current local
4918 configuration to it.
4919 It will also help you convert local address books into remote address books
4920 and local signature files into literal signatures contained in the
4921 remote configuration file.
4923 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4924 may copy a local pinerc file to a remote configuration folder by hand
4925 by using the command line option &quot;-copy_pinerc&quot;.
4927 Another command line option, which is somewhat related to remote
4928 configuration, is the option &quot;-x exceptions_config&quot;.
4929 The configuration settings in the exceptions configuration override
4930 your default settings.
4931 It may be useful to store the default configuration (the -p argument) remotely
4932 and to have the exceptions configuration stored in a local file.
4933 You might put generic configuration information in the remote configuration
4934 and platform-specific configuration on each platform in the exceptions
4935 configuration.
4936 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4937 can be either remote folders or local files.
4939 There is another command line argument that works only with PC-Alpine and
4940 which may prove useful when using a remote configuration.
4941 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4942 to store your local auxiliary files.
4943 This only has an effect if your configuration file is remote.
4944 Some examples of auxiliary files are debug files, address book files, and
4945 signature files.
4947 &lt;End of help on this topic&gt;
4948 </BODY>
4949 </HTML>
4950 ============== h_config_exceptions =============
4951 <HTML>
4952 <HEAD>
4953 <TITLE>Generic and Exceptional Configuration</TITLE>
4954 </HEAD>
4955 <BODY>
4956 <H1>Generic and Exceptional Configuration</H1>
4958 If you use Alpine from more than one platform it may be convenient
4959 to split your configuration information into two pieces, a generic piece
4960 and exceptions that apply to a particular platform.
4961 For example, suppose you use Alpine from home and from work.
4962 Most of your configuration settings are probably the
4963 same in both locations, so those settings belong in the generic settings
4964 configuration.
4965 However, you may use a different SMTP server and INBOX
4966 from home than you do from work.
4968 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4970 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4971 options could be
4972 part of your exceptional configuration so that they could be different in the
4973 two places.
4975 The command line option &quot;-x exceptions_config&quot;
4976 may be used to split your configuration into generic and exceptional pieces.
4977 &quot;Exceptions_config&quot; may be either local or remote.
4978 The regular Alpine configuration file will contain the generic data, and
4979 &quot;exceptions_config&quot; will contain the exceptional data.
4981 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4982 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4983 in the same local directory that the regular config file is located in (usually
4984 the Unix home directory).
4985 If the regular config file is remote (because the command line option
4986 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4987 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4988 If the file does not already exist then no exceptions will be used.
4989 You can force exceptions to be used by using the &quot;-x&quot; option or
4990 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4992 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4993 PC-Alpine will use the value of the
4994 environment variable <CODE>$PINERCEX</CODE>.
4995 If that is not set, PC-Alpine will look for
4996 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4997 in the same local directory that the regular config file is located in.
4998 If the regular config file is remote (because the command line option
4999 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
5000 local directory specified by the &quot;-aux local_directory&quot; command
5001 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
5002 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
5004 When you have an exception configuration there is a new command
5005 in the Alpine Setup screen, Setup/eXceptions.
5006 It toggles between exceptions and the regular configuration.
5007 This is the usual way to make changes in your exceptional configuration data.
5008 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
5009 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
5010 for Config or &quot;K&quot; for Kolor.
5012 For most people, splitting the configuration information into two pieces is
5013 going to be most useful if the generic information is accessed
5014 <A HREF="h_config_remote_config">remotely</A>).
5015 That data will be the same no matter where you access it from and if you
5016 change it that change will show up everywhere.
5017 The exceptional data will most commonly be in a local file, so that the
5018 contents may easily be different on each computing platform used.
5020 If you already have a local configuration file with settings you like
5021 you may find that the command Setup/RemoteConfigSetup is useful
5022 in helping you convert to a remote configuration.
5023 The command line flag &quot;-copy_pinerc&quot;
5024 may also be useful.
5026 &lt;End of help on this topic&gt;
5027 </BODY>
5028 </HTML>
5029 ============== h_config_inheritance =============
5030 <HTML>
5031 <HEAD>
5032 <TITLE>Configuration Inheritance</TITLE>
5033 </HEAD>
5034 <BODY>
5035 <H1>Configuration Inheritance</H1>
5037 Configuration inheritance is a power user feature.
5038 It is confusing and not completely supported by the configuration
5039 user interface.
5040 We start with an explanation of how configuration works in hopes of making
5041 it easier to describe how inheritance works.
5043 Alpine uses a hierarchy of configuration values from different locations.
5044 There are five ways in which each configuration option (configuration
5045 variable) can be set.
5046 In increasing order of precedence they are:
5048 <OL>
5049 <LI> the system-wide configuration file.
5051 <LI> the personal configuration file
5053 <LI> the personal exceptions file
5055 <LI> a command line argument
5057 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
5058 </OL>
5060 The fixed configuration file is normally
5061 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
5063 The system-wide configuration file is normally
5064 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
5065 set for PC-Alpine.
5066 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
5067 is used for the system-wide configuration.
5068 This location can be set or changed on the command line with the -P flag.
5069 The system-wide configuration file can be either a local file or a
5070 remote configuration folder.
5072 For Unix Alpine, the personal configuration file is normally the file
5073 <CODE>.pinerc</CODE> in the user's home directory.
5074 This can be changed with the -p command line flag.
5075 For PC-Alpine, the personal configuration file is in
5076 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
5077 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
5078 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
5079 This can be changed with the -p command line flag.
5080 If -p is used, the configuration data may be in a local file or a remote config
5081 folder.
5083 For Unix Alpine, the personal exceptions configuration file is named
5084 <CODE>.pinercex</CODE> and is in the same directory as the personal
5085 configuration file, if that configuration file is not remote, and is in
5086 the home directory if the personal configuration file is remote.
5087 If the file exists, then exceptions are turned on.
5088 If it doesn't, then you are not using exceptions.
5089 Alternatively, you may change the location of the exceptions configuration
5090 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5091 Like the personal configuration data, exceptions_config may be
5092 either local or remote.
5094 For PC-Alpine, the personal exceptions configuration file is named
5095 <CODE>PINERCEX</CODE> and is in the same directory as the personal
5096 configuration file unless the personal configuration file is remote.
5097 In that case, it is in the local directory specified by the
5098 &quot;-aux local_directory&quot; command line argument.
5099 (In the case that the personal configuration is remote and there is no
5100 &quot;-aux&quot; command line argument, Alpine searches for
5101 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
5102 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
5103 If the file exists, then exceptions are turned on.
5104 If it doesn't, then you are not using exceptions.
5105 You may change the location of the exceptions configuration
5106 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5107 or with the
5108 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
5109 option).
5111 To reiterate, the value of a configuration option is taken from the
5112 last location in the list above in which it is set.
5113 Or, thinking about it slightly differently, a default value for an option
5114 is established in the system-wide configuration file (or internally by Alpine
5115 if there is no value in the system-wide file).
5116 That default remains in effect until and unless it is overridden by a value in a
5117 location further down the list, in which case a new &quot;default&quot;
5118 value is established.
5119 As we continue down the list of locations we either retain the
5120 value at each step or establish a new value.
5121 The value that is still set after going through the whole list of
5122 configuration locations is the one that is used.
5124 So, for example, if an option is set in the system-wide configuration
5125 file and in the personal configuration file, but is not set in the
5126 exceptions, on the command line, or in the fixed file; then the value
5127 from the personal configuration file is the one that is used.
5128 Or, if it is set in the system-wide config, in the personal config, not
5129 in the exceptions, but is set on the command line; then the value
5130 on the command line is used.
5132 Finally we get to inheritance.
5133 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
5134 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
5135 the inheritance mechanism makes it possible to <EM>combine</EM>
5136 the values from different locations instead of <EM>replacing</EM> the value.
5137 This is true of all configuration lists other than the &quot;Feature-List&quot;,
5138 for which you may already set whatever you want at
5139 any configuration location (by using the &quot;no-&quot; prefix if
5140 necessary).
5142 To use inheritance, set the first item in a configuration list to the
5143 token &quot;INHERIT&quot;, without the quotes.
5144 If the first item is &quot;INHERIT&quot;,
5145 then instead of replacing the default value established so far, the rest of
5146 the list is appended to the default value established so far and that is
5147 the new value.
5149 Here is an example which may make it clearer. Suppose we have:
5151 <PRE>
5152  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5153  Personal config    :   smtp-server = INHERIT, mysmtp.home
5154  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
5155  Command line       :   smtp-server = &lt;No Value Set&gt;
5156  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5157 </PRE>
5160 This would result in an effective smtp-server option of
5162 <PRE>
5163  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
5164 </PRE>
5166 The &quot;INHERIT&quot; token can be used in any of the configuration files
5167 and the effect cascades.
5168 For example, if we change the above example to:
5170 <PRE>
5171  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5172  Personal config    :   smtp-server = INHERIT, mysmtp.home
5173  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5174  Command line       :   smtp-server = &lt;No Value Set&gt;
5175  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5176 </PRE>
5179 This would result in:
5181 <PRE>
5182  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
5183 </PRE>
5185 Unset variables are skipped over (the default value is carried forward) so
5186 that, for example:
5188 <PRE>
5189  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5190  Personal config    :   smtp-server = &lt;No Value Set&gt;
5191  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5192  Command line       :   smtp-server = &lt;No Value Set&gt;
5193  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5194 </PRE>
5197 produces:
5199 <PRE>
5200  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
5201 </PRE>
5204 If any later configuration location has a value set (for a particular list
5205 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
5206 then that value replaces whatever value has been defined up to that point.
5207 In other words, that cancels out any previous inheritance.
5209 <PRE>
5210  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5211  Personal config    :   smtp-server = INHERIT, mysmtp.org
5212  Exceptions config  :   smtp-server = yoursmtp.org
5213  Command line       :   smtp-server = &lt;No Value Set&gt;
5214  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5215 </PRE>
5218 results in:
5220 <PRE>
5221  smtp-server = yoursmtp.org
5222 </PRE>
5225 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
5226 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
5227 difficult to insert the value &quot;INHERIT&quot; into the list of values
5228 for the option using the normal Setup tools.
5229 In other words, the color setting screen (for example) does not
5230 provide a way to input the text &quot;INHERIT&quot; as the first
5231 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
5232 The way to do this is to either edit the pinerc file directly and manually
5233 insert it, or turn
5234 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
5235 feature and insert it using the Setup/Config screen.
5237 &lt;End of help on this topic&gt;
5238 </BODY>
5239 </HTML>
5240 ============== h_special_xon_xoff =============
5241 <HTML>
5242 <HEAD>
5243 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
5244 </HEAD>
5245 <BODY>
5246 <H1>XOFF/XON Handling within Alpine</H1>
5248 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
5249 and XON) as normal characters, even though Alpine does not use them.
5250 However, the printer, modem, or communication software you are using may
5251 be configured for &quot;software flow control,&quot; which means that
5252 XON/XOFF must be treated as special characters by the operating system.
5253 If you see messages such as &quot;^S not defined for this screen&quot;,
5254 then your system is probably using software flow control. In this case
5255 you will need to set the
5256 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
5257 feature.
5259 If you <EM>do</EM> set this
5260 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
5261 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
5262 and see if that puts things right.  Printing via the
5263 &quot;attached-to-ansi&quot; or 
5264 &quot;attached-to-wyse&quot;
5265 option will automatically enable software
5266 flow-control handling for the duration of the printing.
5268 &lt;End of help on this topic&gt;
5269 </BODY>
5270 </HTML>
5271 ============= h_special_help_nav =============
5272 <HTML>
5273 <HEAD>
5274 <TITLE>Help Text Navigation Explained</TITLE>
5275 </HEAD>
5276 <BODY>
5277 <H1>Help Text Navigation Explained</H1>
5279 Alpine contains extensive context-sensitive help text.   At any point, 
5280 pressing the &quot;?&quot; key will bring up a page of help text
5281 explaining the options available to you.  You can leave the help
5282 text screen and return to normal Alpine operation by pressing
5284 <!--chtml if pinemode="function_key"-->
5285 F3 function
5286 <!--chtml else-->
5287 &quot;E&quot;
5288 <!--chtml endif-->
5289 key to Exit Help at any time.
5292 Within the help screen you might find a word or phrase displayed in 
5293 inverse text and others displayed in bold typeface.  Such words and
5294 phrases are used to tell you Alpine has more information available on
5295 the topic they describe.
5296 The inverted text is the &quot;selected&quot; topic.  
5297 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
5298 displayed in bold type
5299 is &quot;selected&quot;.
5300 Hit the Return key to display the information Alpine has available on that
5301 topic.  While viewing such additional information, the 
5302 <!--chtml if pinemode="function_key"-->
5303 F3 function
5304 <!--chtml else-->
5305 &quot;P&quot;
5306 <!--chtml endif-->
5307 key will return you to the previous help screen, and the
5308 <!--chtml if pinemode="function_key"-->
5309 F2 function
5310 <!--chtml else-->
5311 &quot;E&quot;
5312 <!--chtml endif-->
5313 key will Exit the Help system altogether.
5316 The "N" command will tell you the internal name of the help text you are 
5317 reading each time, so that you can send this name in the text of a message 
5318 and create a direct link to that internal help using the x-pine-help URL 
5319 scheme. For example, the direct link to this item is 
5320 x-pine-help:h_special_help_nav. If you add this text to a message, then
5321 a person using Pine to read such message would have a direct link to this
5322 help text.
5325 When you are finished reading this help text, you can press the
5326 <!--chtml if pinemode="function_key"-->
5327 F3 function
5328 <!--chtml else-->
5329 &quot;P&quot;
5330 <!--chtml endif-->
5331 key to return to the previously displayed help text.
5334 &lt;End of help on this topic&gt;
5335 </BODY>
5336 </HTML>
5337 ============= h_special_list_commands =============
5338 <HTML>
5339 <HEAD>
5340 <TITLE>Email List Commands Explained</TITLE>
5341 </HEAD>
5342 <BODY>
5343 <H1>Email List Commands Explained</H1>
5345 Electonic mail lists provide a way for like-minded users to join in
5346 discussions on topics of interest.  The email list itself is 
5347 represented by a
5348 single address that participants send messages to when they have
5349 something of interest to share with other members of the list.  The
5350 receiving computer then, either automatically or after review by the
5351 list's owner (or moderator), sends a copy of that message to each
5352 member of the list.
5355 Usually, subscribing and unsubscribing is done by sending requests in
5356 an email message to a special address setup to handle managing list
5357 membership.  Often this is the name of the list followed by
5358 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5359 the address used to send messages to the list.
5362 Unfortunately, email list participation commands are more a matter
5363 of convention than standard, and thus may vary from list to list.
5364 Increasingly, list management software is adding information to
5365 the copy of the postings as they're copied to the list members that
5366 explains how to do the various list management functions.
5369 Alpine will recognize this information and offer the management commands
5370 they represent in a simple display. One or more of the following
5371 operations will be made available:
5373 <DL>
5374 <DT>Help</DT>
5375 <DD>
5376 A method to get help on subscribing, unsubscribing, 
5377 an explanation of what the list is about, or special instructions
5378 for participation.  This may be in the form of a reply in response
5379 to an email message, or instructions on how to connect to a Web site.
5380 </DD>
5382 <DT>Unsubscribe</DT>
5383 <DD>
5384 A method to get your email addressed removed from the list of
5385 recipients of the email list.
5386 </DD>
5388 <DT>Subscribe</DT>
5389 <DD>
5390 A method to get your email address added to the list of recipients
5391 of the email list.  It may be in the form of a message sent to 
5392 a special address or you may be connected to a web site.
5393 <DD>
5394 </DD>
5396 <DT>Post</DT>
5397 <DD>
5398 A method used to post to the email list.  However, it might also 
5399 indicate that no posting is allowed directly to the list.
5400 </DD>
5402 <DT>Owner</DT>
5403 <DD>
5404 A method to contact the list owner for special questions you might
5405 have regarding the list.
5406 </DD>
5408 <DT>Archive</DT>
5409 <DD>
5410 A method to view an archive of previous messages posted to the list.
5411 This may be in the form of a mail folder on a remote computer, an
5412 IMAP mailbox or even a Web site.
5413 </DD>
5414 </DL>
5417 &lt;End of help on this topic&gt;
5418 </BODY>
5419 </HTML>
5420 ============= h_quota_command =============
5421 <HTML>
5422 <HEAD>
5423 <TITLE>Quota Screen Explained</TITLE>
5424 </HEAD>
5425 <BODY>
5426 <H1>Quota Screen Explained</H1>
5428 <P> This screen summarizes the quota report for this mailbox in the
5429 IMAP server. For each resource that you have a quota, this reports summarizes
5430 its use and limit.
5432 <P> Your IMAP server administrator may have set a quota based either on 
5433 the total size of your mailbox (STORAGE), or the number of messages in 
5434 your mailbox (MESSAGES), or some other criteria. This will be reported
5435 to you indicating the type of quota, its total use and its limit.
5437 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5438 1024 bytes. Each of the characters that you see in this help text is one 
5439 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5440 by Alpine are normally less than 4 kibibytes in size (which includes 
5441 headers and text). Other email programs may send messages with bigger 
5442 sizes when they send messages, since they send plain text and an 
5443 alternative part in HTML.
5445 <P> A convenient way to save space for the STORAGE type of quota is by 
5446 deleting attachments. This is done on each individual message by pressing 
5447 the &quot;V&quot; command while reading the message text, then moving the cursor 
5448 to the position of the attachment that is to be deleted, then pressing
5449 &quot;D&quot; to delete such attachment, going back to reading the 
5450 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5451 save the message in the same folder you are reading from. The saved 
5452 message will not have the attachment that was marked deleted. Now you
5453 can delete and expunge the message with the unwanted attachment.
5456 &lt;End of help on this topic&gt;
5457 </BODY>
5458 </HTML>
5459 ============= h_mail_thread_index =============
5460 <HTML>
5461 <HEAD>
5462 <TITLE>THREAD INDEX COMMANDS</TITLE>
5463 </HEAD>
5464 <BODY>                 
5465 <H1>THREAD INDEX COMMANDS</H1>
5466 <!--chtml if pinemode="function_key"-->
5467 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>
5468 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5469 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>
5470 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>
5471 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>
5472 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>
5473 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>
5474 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>
5475 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>
5476 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>
5477 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>
5478 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>
5479 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>
5480 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>
5481 <BR>
5482 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5483 -----------------------------<BR>
5484 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>
5485 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>
5486 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>
5487 <BR>
5488 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5489 -----------------------------<BR>
5490 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
5491 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5492 <BR>
5493 <!--chtml else-->
5494 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>
5495 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5496 &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>
5497 &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>
5498 &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>
5499 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>
5500 &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>
5501 &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>
5502 &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>
5503 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>
5504 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5505 <BR>
5506 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5507 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5508 &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>
5509 &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>
5510 &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>
5511 &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>
5512 &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>
5513 &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>
5514 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5515 <!--chtml endif-->
5518 NOTE:
5519 <OL>
5520  <LI>For help on a particular command, highlight the bold text associated
5521 with it above and hit Return.
5522  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5523 </OL>
5525 <H2>Description of the THREAD INDEX Screen</H2>
5527 The THREAD INDEX displays summary information from each
5528 thread (conversation) in the current folder.
5529 This is useful if you want to quickly
5530 scan new threads, or find a particular thread without having to go
5531 through the text of each message, or to quickly get rid of junk
5532 threads, etc.
5533 The current thread is always highlighted.
5534 Each line of the THREAD INDEX contains the following columns: <P>
5535 <DL>
5536  <DT>STATUS:</DT>
5537  <DD> The markings on the left side of the thread tell you about its
5538 status.  You may see one or more of the following codes on any given
5539 thread:
5540 <UL>
5541   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5542   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5543   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5544   <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.
5545   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5546         message in the thread was sent to you as a cc:. This symbol will only show up if
5547         the feature
5548         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5549   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5550         &quot;select&quot; command.  (Some systems may optionally allow selected
5551         messages to be denoted by the index line being displayed in bold
5552         type instead.)
5553   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5554       to mark at least one message in this thread as &quot;important&quot;.
5555 </UL></DD><P>
5557  <DT>THREAD NUMBER:</DT>
5558  <DD>Threads in a folder are numbered, from one through the number
5559 of threads in the folder, to help you know where you are in the folder.
5560 </DD><P>
5562  <DT>DATE STARTED:</DT>
5563  <DD>The date the thread was started. This is actually from the Date header
5564 of the first message in the thread. It doesn't take different time zones
5565 into account.</DD><P>
5567  <DT>WHO STARTED THE THREAD:</DT>
5568  <DD>This is usually the name of the sender of the first message in the thread, taken from
5569 the From header of the message.
5570 If there is no personal name given in that
5571 address, then the email address is used instead.
5572 If the message is from you (or from one of your
5573 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5574 then the recipient's name is shown here instead, with the characters
5575 &quot;To: &quot; inserted before the name.
5576 (The idea of this is that if you started the thread you would rather see who
5577 the mail was sent to instead of that the mail was from you.)
5578 In Newsgroups, if you are
5579 the sender and there are no email recipients, the newsgroup name will be
5580 listed after the &quot;To: &quot;.
5581 </DD><P>
5583  <DT>SIZE:</DT>
5584  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5586  <DT>SUBJECT:</DT>
5587  <DD>As much of the thread's subject line as will fit on the screen.
5588 This is the subject of the first message in the thread.</DD>
5589 </DL>
5591 <P><UL>
5592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5593 </UL>
5595 &lt;End of help on this topic&gt;
5596 </BODY>
5597 </HTML>
5598 ============= h_mail_index =============
5599 <HTML>
5600 <HEAD>
5601 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5602 </HEAD>
5603 <BODY>                 
5604 <H1>MESSAGE INDEX COMMANDS</H1>
5605 <!--chtml if pinemode="function_key"-->
5606 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>
5607 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5608 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>
5609 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>
5610 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>
5611 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>
5612 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>
5613 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>
5614 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>
5615 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>
5616 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>
5617 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>
5618 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>
5619 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>
5620 <BR>
5621 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5622 -----------------------------<BR>
5623 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>
5624 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>
5625 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>
5626 <BR>
5627 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5628 -----------------------------<BR>
5629 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
5630 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>
5631 <BR>
5632 <!--chtml else-->
5633 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>
5634 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5635 &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>
5636 &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>
5637 &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>
5638 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>
5639 &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>
5640 &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>
5641 &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>
5642 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>
5643 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5644 Miscellaneous&nbsp;Operations<BR>
5645 ------------------------<BR>
5646 &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>
5647 &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>
5648 &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>
5649 &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>
5650 &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>
5651 &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>
5652 &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>
5653 &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>
5654 <!--chtml endif-->
5657 NOTE:
5658 <OL>
5659  <LI>For help on a particular command, highlight the bold text associated
5660 with it above and hit Return.
5661  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5662 </OL>
5664 <H2>Description of the MESSAGE INDEX Screen</H2>
5666 The MESSAGE INDEX displays summary information from each
5667 message in the current folder.
5668 This is useful if you want to quickly
5669 scan new messages, or find a particular message without having to go
5670 through the text of each message, or to quickly get rid of junk
5671 messages, etc.
5673 The current message is always highlighted
5674 and many commands operate on the current message.
5675 For example, the Delete command will delete the current message.
5676 If the folder is sorted by either Threads or OrderedSubject, then, depending
5677 on some of your configuration settings, a single line in the index may
5678 refer to an entire thread or to a subthread.
5679 If that is the case, then the commands that normally operate on the current
5680 message will operate on the thread or subthread instead.
5681 For example, the Delete command will delete the whole collapsed thread
5682 instead of just a single message.
5684 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5685 you can change this with the 
5686 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5687 in the SETUP CONFIGURATION screen): <P>
5688 <DL>
5689  <DT>STATUS:</DT>
5690  <DD> The markings on the left side of the message tell you about its
5691 status.  You may see one or more of the following codes on any given
5692 message:
5693 <UL>
5694   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5695          yet eXpunged the folder.
5696   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5697   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5698          to be answered.
5699   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5700          forward a message.
5701   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5702         directly to your account, your copy is not part of a cc: or a
5703         mailing list.
5704   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5705         message was sent to you as a cc:. This symbol will only show up if
5706         the feature
5707         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5708   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5709         &quot;select&quot; command.  (Some systems may optionally allow selected
5710         messages to be denoted by the index line being displayed in bold
5711         type.)
5712   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5713       to mark this message as &quot;important&quot;.
5714 </UL></DD><P>
5716  <DT>MESSAGE NUMBER:</DT>
5717  <DD>Messages in a folder are numbered, from one through the number
5718 of messages in the folder, to help you know where you are in the folder.
5719 These numbers are always in increasing order, even if you sort the folder
5720 in a different way.</DD><P>
5722  <DT>DATE SENT:</DT>
5723  <DD>The date the message was sent.  By default, messages are
5724 ordered by arrival time, not by date sent.  Most of the time, arrival time
5725 and date sent (effectively departure time) are similar.  Sometimes,
5726 however, the index will appear to be out of order because a message took a
5727 long time in delivery or because the sender is in a different time
5728 zone than you are. This date is just the date from the Date header
5729 field in the message.</DD><P>
5731  <DT>WHO SENT THE MESSAGE:</DT>
5732  <DD>This is usually the name of the sender of the message, taken from
5733 the From header of the message.
5734 If there is no personal name given in that
5735 address, then the email address is used instead.
5736 If the message is from you (or from one of your
5737 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5738 then the recipient's name is shown here instead, with the characters
5739 &quot;To: &quot; inserted before the name.
5740 (The idea of this is that if you sent the mail you would rather see who
5741 the mail was sent to instead of that the mail was from you.
5742 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5743 above.
5744 In particular, use the FROM token or the FROMORTONOTNEWS token
5745 in place of the FROMORTO token.)
5746 In Newsgroups, if you are
5747 the sender and there are no email recipients, the newsgroup name will be
5748 listed after the &quot;To: &quot;. </DD><P>
5750  <DT>SIZE:</DT>
5751  <DD>The number in parentheses is the number of characters in the message.
5752 It may have a suffix of K, M, or G which means the number should be
5753 multiplied by one thousand, one million, or one billion to get the
5754 size of the message.</DD><P>
5756  <DT>SUBJECT:</DT>
5757  <DD>As much of the message's subject line as will fit on the screen.</DD>
5758 </DL>
5760 <P><UL>
5761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5762 </UL>
5764 &lt;End of help on this topic&gt;
5765 </BODY>
5766 </HTML>
5767 ============= h_mail_view ========================
5768 <HTML>
5769 <HEAD>
5770 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5771 </HEAD>
5772 <BODY>
5773 <H1>MESSAGE TEXT SCREEN</H1>
5774 <!--chtml if pinemode="function_key"-->
5775 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>
5776 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5777 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>
5778 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>
5779 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>
5780 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>
5781 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>
5782 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>
5783 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>
5784 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>
5785 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>
5786 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>
5787 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>
5788 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>
5789 <BR>
5790 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5791 ------------------------------<BR>
5792 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5793 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5794 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5795 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5796 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5797 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5798 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5799 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5800 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5801 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5802 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5803 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5804 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5805 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5806 <!--chtml else-->
5807 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5808 ---------------------------------<BR>
5809 <BR>
5810 &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>
5811 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>
5812 &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>
5813 &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>
5814 &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>
5815 &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>
5816 &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>
5817 &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>
5818 &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>
5819 <BR>
5820 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5821 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5822 &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>
5823 &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>
5824 &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>
5825 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>
5826 <BR>
5827 General&nbsp;Alpine&nbsp;Commands<BR>
5828 ---------------------<BR>
5829 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5830 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5831 &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>
5832 &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>
5833 &nbsp;&nbsp;&nbsp;&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>
5834 <!--chtml endif-->
5837 NOTE:
5838 <OL>
5839  <LI>For help on a particular command, highlight the bold text associated
5840 with it above and hit Return.
5841  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5842 </OL>
5844 <H2>Description of the MESSAGE TEXT Screen</H2>
5846 The top line of the view message screen displays status
5847 information about the currently open collection and folder and about the
5848 current message.  It shows the name of the collection in angle brackets
5849 and then the name of the folder.  The line also displays the number
5850 of messages in the folder, the number of the current message and the
5851 percentage of the current message that has been displayed on the screen.
5852 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5853 right corner.
5854 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5855 in the corner.
5858 NOTE: to rapidly move to the end of a message, hit the
5859 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5860 (or Ctrl-W) key followed
5861 by Ctrl-V.  Similarly,
5862 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5863 followed by Ctrl-Y will take you to the beginning of
5864 a message.
5866 <H2>Explanation of Alternate Character Sets</H2>
5868 Alpine attempts to stay out of the way so that it won't prevent you from
5869 viewing mail in any character set.  It will simply send the message to
5870 your display device.  If the device is capable of displaying the
5871 message as it was written it will do so.  If not, the display may be
5872 partially or totally incorrect.
5873 If the message contains characters that are not representable in your 
5874 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5875 variable in your configuration, then a warning message will be printed
5876 to your screen at the beginning of the message display.
5877 It is probably best to use UNIX Alpine in a terminal emulator
5878 capable of displaying UTF-8 characters.
5879 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5880 more information about character set settings.
5882 <P><UL>
5883 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5884 </UL>
5886 &lt;End of help on this topic&gt;
5887 </BODY>
5888 </HTML>
5889 ======= h_index_cmd_select =======
5890 <HTML>
5891 <HEAD>
5892 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5893 </HEAD>
5894 <BODY>
5895 <H1>Selecting: Select and WhereIs/Select</H1>
5897 Aggregate operations give you the ability to process a group of messages
5898 at once.  Acting on multiple messages requires two steps: (1) selecting a
5899 set of messages and then; (2) applying a command to that set. The first
5900 part is handled by the select command.  Select allows you to
5901 select messages based on their status (read, answered, etc.), contents,
5902 date, size, or keywords.
5903 You may also select based on one of your Rules or based on threads,
5904 and there are quick options to select a specific message or range of messages,
5905 to select the current message, or to select all messages.
5908 We describe the various selection criteria briefly:
5911 <DL>
5912 <DT>select All</DT>
5913 <DD> Marks all the messages in the folder as selected.
5914 </DD>
5916 <DT>select Cur</DT>
5917 <DD> Selects the currently highlighted message or currently highlighted
5918 set of messages if in a threaded view.
5919 </DD>
5921 <DT>select by Number</DT>
5922 <DD> Select by message number. This may be a comma-separated list instead or
5923 a single entry.
5924 Each element in the list may be either a single message number or a range
5925 of numbers with a dash between the lowest and highest member of the range.
5926 Some examples are 7 to select only message number 7; 2-5 to select messages
5927 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5928 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5929 substitute for the highest numbered message in the folder, while the
5930 character &quot;.&quot; represents the message number holding the position
5931 of the cursor in the folder.
5932 If in a separate thread index where the numbers refer to threads instead of
5933 to messages, then you will be selecting all of the messages in the
5934 referenced threads instead of selecting by message number.
5935 </DD>
5937 <DT>select by Date</DT>
5938 <DD> Select by either the date stored in the Date headers of each message,
5939 or by the date when the messages arrived.
5940 This does not adjust for different time zones, but just checks to see what
5941 day the message was sent on.
5942 You may type in a date. If you do, the date should be in the form
5943 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5944 For example,
5945 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5947 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5948 If the date you want is close to the current date, it is probably
5949 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5950 is displayed, instead of typing in the date yourself.
5951 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5952 the date of the currently highlighted message. 
5954 There are six possible settings that are selected using the
5955 &quot;^W&nbsp;Toggle When&quot; command.
5956 Three of them select messages based on the Date headers.
5957 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5958 and &quot;SENT ON&quot;.
5959 SINCE is all messages with the selected date or later.
5960 BEFORE is all messages earlier than the selected date (not including the day
5961 itself).
5962 ON is all messages sent on the selected date.
5963 The other three select messages in the same way but they use the arrival
5964 times of the messages instead of the Date headers included in the messages.
5965 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5966 and &quot;ARRIVED ON&quot;.
5967 When you save a message from one folder to another the arrival time is
5968 preserved.
5969 </DD>
5971 <DT>select by Text</DT>
5972 <DD> Selects messages based on the message contents.
5973 This allows you to select a set of messages based on whether or not the
5974 message headers or message body contain specified text.
5975 You may look for text in the Subject, the From header,
5976 the To header, or the Cc header.
5977 You may also choose Recipient, which searches for the text in
5978 either the To or the Cc header;
5979 or Participant, which means To or Cc or From.
5980 Besides those specific header searches, you may also search the entire
5981 header and text of the message with &quot;All Text&quot;, or just the
5982 body of the message.
5984 To search for the absence of text, first type the &quot;! Not&quot; command
5985 before typing the specific type of text search.
5986 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5987 search for all messages that do not contain a particular word in their
5988 Subjects.
5990 If you choose a Subject search, you may use the subject from the current
5991 message by typing the &quot;^X Cur Subject&quot; command.
5992 You may then edit it further if you wish.
5993 For example, you might select the subject of a reply and edit the
5994 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5995 the original message being replied to.
5996 All of the other header searches allow you to use addresses from the
5997 headers of the current message if you want to.
5998 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5999 &quot;^W Cur Cc&quot;.
6000 In each case, if there is more than one address, only the first is offered.
6001 </DD>
6003 <DT>select by Status</DT>
6004 <DD> Selects messages based on their status.
6005 You may select all New, Important, Deleted, Answered, Recent, or Unseen
6006 messages.
6007 Or, if you first type the &quot;! Not&quot; command, you get not New,
6008 or not Important, and so on.
6009 If you select Deleted messages, you will get all messages with their
6010 Deleted flag set.
6011 Likewise for Important messages, all messages that you have flagged as
6012 being Important with the
6013 <A HREF="h_common_flag">Flag</A> command.
6014 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
6015 because they try to match what you see on the screen by default.
6016 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
6017 and Unanswered.
6018 If you have looked at the message, or deleted it, or answered it; then it
6019 is not considered &quot;New &quot;.
6020 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
6022 &quot;Answered&quot; is another one that is a little different.
6023 It means that the message has been Answered <EM>and</EM> is not deleted.
6024 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
6025 the opposite of &quot;Answered&quot;!
6026 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
6027 both Unanswered <EM>and</EM> not deleted.
6029 The other two types were added later because the special nature of the
6030 New flag was not what was wanted by all users.
6031 New does match what you see in the index by default, but if you use
6032 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6033 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6034 be exactly what you want.
6035 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6036 they are deleted or answered, and
6037 &quot;Recent&quot; selects all of the messages that have been added to
6038 the folder since you started this Alpine session.
6039 (That's not technically quite true. If there are multiple mail clients
6040 reading an IMAP mailbox, each message will be marked as Recent in only
6041 one of the client's sessions.)
6042 </DD>
6044 <DT>select by siZe</DT>
6045 <DD> Selects messages based on their size being smaller than or larger
6046 than the size you specify.
6047 The size is the number of bytes.
6048 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
6049 the number.
6050 For example, 7K is the same as 7000.
6051 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
6052 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
6053 Use the &quot;^W&quot; command to toggle back and forth between Smaller
6054 and Larger.
6055 </DD>
6057 <DT>select by Keyword</DT>
6058 <DD> Selects messages that either have or do not have
6059 (using the &quot;!&nbsp;Not&quot; command)
6060 a particular <A HREF="h_config_keywords">Keyword</A> set.
6061 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
6062 command to select one from your list of keywords.
6064 <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.
6065 </DD>
6067 <DT>select by Rule</DT>
6068 <DD> Selects messages that either match or don't match
6069 (using the &quot;!&nbsp;Not&quot; command)
6070 one of the Rules you have defined.
6071 The most likely method of filling in the Rule is to use the
6072 &quot;^T&nbsp;To&nbsp;List&quot;
6073 command to select one of your Rules.
6074 All of the Rules you have defined will be in the list, including
6075 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
6076 They may not all make sense for this purpose, but they are all there for
6077 flexibility.
6078 You might find it useful to define some rules solely for the purpose
6079 of being used by the Select command.
6080 There is a special category for such Rules. They are called Search Rules.
6082 Unfortunately, Alpine does not allow all possible Rules to be defined.
6083 For example, there is no logical OR operation.
6084 OR is accomplished in the Filter Rules or the other types of Rules by
6085 simply defining two rules, one that matches the first part of the OR
6086 and another that matches the second part.
6087 But you can't do that here, since you only have a single Rule to work with.
6088 Likewise, the order of Rules is usually important.
6089 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6090 a message, then that stops the search for a further match.
6091 This means that you may be confused if you try to use Select by Rule to
6092 check your Filter rules because the order is important when filtering but
6093 is not considered here.
6094 </DD>
6096 <DT>select by tHread</DT>
6097 <DD> Selects all of the messages in the current thread.
6098 </DD>
6099 </DL>
6101 After you have an initial selection, the next and subsequent selection
6102 commands modify the selection.
6103 The select command changes. It first gives
6104 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
6105 &quot;unselect Current&quot;,
6106 &quot;Broaden selection&quot; (implements a logical OR), and
6107 &quot;Narrow selection&quot; (implements a logical AND).
6108 After you choose either Broaden or Narrow, you then choose one of the
6109 selection criteria listed above (by Text or Number or ...).
6110 You may use select as many times as you wish to get the selected set right.
6113 The WhereIs command has a feature (Ctrl-X) to
6114 select all the messages that match the WhereIs search. WhereIs searches
6115 through just the text that appears on the MESSAGE INDEX screen.
6116 This method is often slower than using the select command itself, unless the
6117 line you are looking for is not too far away in the index.
6120 The availability of the aggregate operations commands is determined by the
6121 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6122 Feature-List option in your Alpine
6123 configuration, which defaults to set.
6124 The features
6125 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
6127 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
6128 affect the behavior of the Select command.
6131 &lt;End of help on this topic&gt;
6132 </BODY>
6133 </HTML>
6134 ======= h_select_rule =======
6135 <HTML>
6136 <HEAD>
6137 <TITLE>Select: Rule</TITLE>
6138 </HEAD>
6139 <BODY>
6140 <H1>Select: Rule</H1>
6142 You are selecting messages that either match or don't match
6143 one of the Rules you have defined.
6144 You may either type the nickname of the Rule at the prompt, or use the
6145 &quot;^T&nbsp;To&nbsp;List&quot;
6146 command to select one of your Rules.
6147 All of the Rules you have defined will be in the list, including
6148 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
6149 They may not all make sense for this purpose, but they are all there for
6150 flexibility.
6151 Rules may be added by using the Setup/Rules screen off of the main Alpine
6152 menu.
6154 Unfortunately, Alpine does not allow all possible Rules to be defined.
6155 For example, there is no logical OR operation.
6156 OR is accomplished in the Filter Rules or the other types of Rules by
6157 simply defining two rules, one that matches the first part of the OR
6158 and another that matches the second part.
6159 But you can't do that here, since you only have a single Rule to work with.
6160 Likewise, the order of Rules is usually important.
6161 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6162 a message, then that stops the search for a further match.
6163 This means that you may be confused if you try to use Select by Rule to
6164 check your Filter rules because the order is important when filtering but
6165 is not considered here.
6168 &lt;End of help on this topic&gt;
6169 </BODY>
6170 </HTML>
6171 ======= h_select_text =======
6172 <HTML>
6173 <HEAD>
6174 <TITLE>Select: Text</TITLE>
6175 </HEAD>
6176 <BODY>
6177 <H1>Select: Text</H1>
6179 You are selecting messages based on the contents of the message.
6180 This allows you to select a set of messages based on whether or not the
6181 message headers or message body contain specified text.
6182 You may look for text in the Subject, the From header,
6183 the To header, or the Cc header.
6184 You may also choose Recipient, which searches for the text in
6185 either the To or the Cc header;
6186 or Participant, which means either the To header, or the Cc header,
6187 or the From header.
6188 Besides those specific header searches, you may also search the entire
6189 header and text of the message with &quot;All Text&quot;, or just the
6190 body of the message with &quot;Body&quot;.
6192 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
6193 before typing the specific type of text search.
6194 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
6195 search for all messages that do not contain a particular word in their
6196 Subjects.
6198 If you choose a Subject search, you may use the subject from the current
6199 message by typing the &quot;^X Cur Subject&quot; command.
6200 You may then edit it further if you wish.
6201 For example, you might select the subject of a reply and edit the
6202 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
6203 the original message being replied to.
6204 All of the other header searches allow you to use addresses from the
6205 headers of the current message if you want to.
6206 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
6207 &quot;^W Cur Cc&quot;.
6208 In each case, if there is more than one address, only the first is offered.
6211 &lt;End of help on this topic&gt;
6212 </BODY>
6213 </HTML>
6214 ======= h_select_status =======
6215 <HTML>
6216 <HEAD>
6217 <TITLE>Select: Status</TITLE>
6218 </HEAD>
6219 <BODY>
6220 <H1>Select: Status</H1>
6222 You are selecting messages based on the status of the message.
6223 For example, whether or not the message has been marked Deleted or Important,
6224 or whether or not it has been Answered or is New.
6225 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
6226 opposite: not Deleted, not Important, and so on.
6228 If you select Deleted messages, you will get all messages with their
6229 Deleted flag set.
6230 Likewise for Important messages, all messages that you have flagged as
6231 being Important with the
6232 <A HREF="h_common_flag">Flag</A> command.
6233 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
6234 because they try to match what you see on the screen by default.
6235 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
6236 and Unanswered.
6237 If you have looked at the message, or deleted it, or answered it; then it
6238 is not considered &quot;New &quot;.
6239 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
6241 &quot;Answered&quot; is another one that is a little different.
6242 It means that the message has been Answered <EM>and</EM> is not deleted.
6243 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
6244 the opposite of &quot;Answered&quot;!
6245 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
6246 both Unanswered <EM>and</EM> not deleted.
6248 (The New and Answered options may seem counter-intuitive.
6249 The reason it is done this way is
6250 because, by default, a Deleted message will show up with the &quot;D&quot;
6251 symbol in the MAIL INDEX screen even if it is New or Answered.
6252 The Delete symbol overrides the New and Answered symbols, because you
6253 usually don't care about the message anymore once you've deleted it.
6254 Similarly, you usually only care about whether a message is Answered or
6255 not if it is not Deleted.
6256 Once it is Deleted you've put it out of your mind.)
6258 The other two options were added later because the special nature of the
6259 New flag was not what was wanted by all users.
6260 New does match what you see in the index by default, but if you use
6261 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6262 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6263 be exactly what you expect.
6264 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6265 they are deleted or answered, and
6266 &quot;Recent&quot; selects all of the messages that have been added to
6267 the folder since you started this Alpine session.
6268 (That's not technically quite true. If there are multiple mail clients
6269 reading an IMAP mailbox, each message will be marked as Recent in only
6270 one of the client's sessions.
6271 That behavior can be convenienent for some purposes, like filtering, but
6272 it isn't usually what you expect when selecting.)
6275 &lt;End of help on this topic&gt;
6276 </BODY>
6277 </HTML>
6278 ======= h_index_cmd_apply =======
6279 <HTML>
6280 <HEAD>
6281 <TITLE>Apply Command</TITLE>
6282 </HEAD>
6283 <BODY>
6284 <H1>Apply Command</H1>
6286 Apply
6287 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
6288 is the second step of most aggregate operations.  Apply
6289 becomes active any time there is a defined set of selected messages.  The
6290 following commands can be applied to a selected message set: delete,
6291 undelete, reply, forward,
6292 <!--chtml if pinemode="os_windows"-->
6293 <!--chtml else--> 
6294 pipe,
6295 <!--chtml endif-->
6296 print, take address, save, export, bounce, and flag.
6299 The behavior of some of these commands in an aggregate sense is not easy to
6300 explain.  Try them out to see what they do.
6301 The feature
6302 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
6303 affects the behavior of the Apply command, as does the feature
6304 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
6307 &lt;End of help on this topic&gt;
6308 </BODY>
6309 </HTML>
6310 ======= h_index_cmd_zoom =======
6311 <HTML>
6312 <HEAD>
6313 <TITLE>ZoomMode Command</TITLE>
6314 </HEAD>
6315 <BODY>
6316 <H1>ZoomMode Command</H1>
6318 Another action you might want to take on a set of selected messages is to
6319 zoom in on them.  Like apply, zoom only becomes active when messages have
6320 been selected.
6321 ZoomMode
6322 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
6323 is a toggle command that allows you to
6324 zoom-in (and only see the selected messages) and zoom-out (to see all
6325 messages in the folder).  Neither apply nor zoom removes the markings that
6326 define the selected set; you need to use a select command in order
6327 to do that.
6330 &lt;End of help on this topic&gt;
6331 </BODY>
6332 </HTML>
6333 ======= h_index_collapse_expand =======
6334 <HTML>
6335 <HEAD>
6336 <TITLE>Collapse/Expand Command</TITLE>
6337 </HEAD>
6338 <BODY>
6339 <H1>Collapse/Expand Command</H1>
6341 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
6342 the folder is sorted by either Threads or OrderedSubject, and the
6343 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
6344 is set to something other than &quot;none&quot;.
6345 By default, this command collapses or expands the subthread that starts at
6346 the currently highlighted message, if any.
6347 If the subthread is already collapsed, then this command expands it.
6348 If the subthread is expanded, then this command collapses it.
6349 If there are no more messages below the current message in the
6350 thread tree (that is, there are no replies to the current message) then
6351 this command does nothing.
6354 The behavior of this command is affected by the option
6355 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6356 Normally, this command Collapses or Expands the subthread that
6357 starts at the currently highlighted message.
6358 If the above option is set, then this command Collapses or Expands the
6359 entire current thread instead of just the subthread.
6360 The current thread is simply the top-level thread that contains the
6361 current message.
6364 &lt;End of help on this topic&gt;
6365 </BODY>
6366 </HTML>
6367 ======= h_index_cmd_sort =======
6368 <HTML>
6369 <HEAD>
6370 <TITLE>Sort Command</TITLE>
6371 </HEAD>
6372 <BODY>
6373 <H1>Sort Command</H1>
6375 In Alpine's generic configuration, messages are presented in the order in
6376 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6377 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6378 You can also re-sort the folder on demand with the sort
6379 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6380 command.
6381 Your sorting options are:
6383 <UL>
6384  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6385  <LI> <A HREF="h_index_sort_date">D</A>ate
6386  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6387  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6388  <LI> t<A HREF="h_index_sort_thread">H</A>read
6389  <LI> <A HREF="h_index_sort_from">F</A>rom
6390  <LI> si<A HREF="h_index_sort_size">Z</A>e
6391  <LI> scor<A HREF="h_index_sort_score">E</A>,
6392  <LI> <A HREF="h_index_sort_to">T</A>o
6393  <LI> <A HREF="h_index_sort_cc">C</A>c
6394 </UL>
6397 The Reverse option will toggle the order the index is currently
6398 sorted by, but will not change the relative sort order.
6401 Sorting a folder does not actually rearrange the way the folder is saved,
6402 it just re-arranges how the messages are presented to you.  This means
6403 that Alpine has to do the work of sorting every time you change sort order.
6404 Sometimes, especially with PC-Alpine or with large folders, this could take
6405 a while.
6408 &lt;End of help on this topic&gt;
6409 </BODY>
6410 </HTML>
6411 ======= h_index_sort_default =======
6412 <HTML>
6413 <HEAD>
6414 <TITLE>SORT OPTION: Default</TITLE>
6415 </HEAD>
6416 <BODY>
6417 <H1>SORT OPTION: Default</H1>
6419 The <EM>Default</EM> sort option just means to use the default sort order
6420 set in the
6421 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6422 option in Setup/Config.
6425 &lt;End of help on this topic&gt;
6426 </BODY>
6427 </HTML>
6428 ======= h_index_sort_arrival =======
6429 <HTML>
6430 <HEAD>
6431 <TITLE>SORT OPTION: Arrival</TITLE>
6432 </HEAD>
6433 <BODY>
6434 <H1>SORT OPTION: Arrival</H1>
6436 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6437 in the order that they exist in the folder.  This is usually the same as the
6438 order in which they arrived.  This option is comparable to not sorting
6439 the messages at all.
6442 &lt;End of help on this topic&gt;
6443 </BODY>
6444 </HTML>
6445 ======= h_index_sort_date =======
6446 <HTML>
6447 <HEAD>
6448 <TITLE>SORT OPTION: Date</TITLE>
6449 </HEAD>
6450 <BODY>
6451 <H1>SORT OPTION: Date</H1>
6453 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6454 according to the date and time they were
6455 sent.
6458 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6459 identical to sorting by &quot;Arrival&quot;.
6462 &lt;End of help on this topic&gt;
6463 </BODY>
6464 </HTML>
6465 ======= h_index_sort_subj =======
6466 <HTML>
6467 <HEAD>
6468 <TITLE>SORT OPTION: Subject</TITLE>
6469 </HEAD>
6470 <BODY>
6471 <H1>SORT OPTION: Subject</H1>
6473 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6474 by subject. 
6477 Messages with the same subject are
6478 first grouped together, and then the groups of like-subject messages
6479 are arranged alphabetically.
6482 Alpine ignores leading &quot;Re:&quot; and
6483 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6484 likeness and alphabetical order of subject lines.
6487 &lt;End of help on this topic&gt;
6488 </BODY>
6489 </HTML>
6490 ======= h_index_sort_ordsubj =======
6491 <HTML>
6492 <HEAD>
6493 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6494 </HEAD>
6495 <BODY>
6496 <H1>SORT OPTION: OrderedSubject</H1>
6498 The <EM>OrderedSubject</EM> sort option arranges messages in the
6499 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6500 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6503 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6504 messages by the date of the oldest message in the group.
6507 This sort method provides for pseudo threading of conversations within
6508 a folder.
6509 You may want to try sorting by Thread instead.
6512 &lt;End of help on this topic&gt;
6513 </BODY>
6514 </HTML>
6515 ======= h_index_sort_thread =======
6516 <HTML>
6517 <HEAD>
6518 <TITLE>SORT OPTION: Thread</TITLE>
6519 </HEAD>
6520 <BODY>
6521 <H1>SORT OPTION: Thread</H1>
6523 The <EM>Thread</EM> sort option arranges messages in the
6524 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6525 they are part of a conversation (discussion thread) taking
6526 place within a mailbox or newsgroup.  This indication is
6527 based on information in the message's header -- specifically
6528 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6531 &lt;End of help on this topic&gt;
6532 </BODY>
6533 </HTML>
6534 ======= h_index_sort_from =======
6535 <HTML>
6536 <HEAD>
6537 <TITLE>SORT OPTION: From</TITLE>
6538 </HEAD>
6539 <BODY>
6540 <H1>SORT OPTION: From</H1>
6542 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6543 by the name of the author of the message.
6546 Messages with the same author are grouped together. Groups of
6547 messages are then put into alphabetical order according to message
6548 author.
6551 &lt;End of help on this topic&gt;
6552 </BODY>
6553 </HTML>
6554 ======= h_index_sort_size =======
6555 <HTML>
6556 <HEAD>
6557 <TITLE>SORT OPTION: Size</TITLE>
6558 </HEAD>
6559 <BODY>
6560 <H1>SORT OPTION: Size</H1>
6562 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6563 by their relative sizes.
6566 &lt;End of help on this topic&gt;
6567 </BODY>
6568 </HTML>
6569 ======= h_index_sort_score =======
6570 <HTML>
6571 <HEAD>
6572 <TITLE>SORT OPTION: Score</TITLE>
6573 </HEAD>
6574 <BODY>
6575 <H1>SORT OPTION: Score</H1>
6577 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6578 by their scores.
6581 Messages with the same score are sorted in arrival order.
6582 Scores are something you create using the
6583 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6586 &lt;End of help on this topic&gt;
6587 </BODY>
6588 </HTML>
6589 ======= h_index_sort_to =======
6590 <HTML>
6591 <HEAD>
6592 <TITLE>SORT OPTION: To</TITLE>
6593 </HEAD>
6594 <BODY>
6595 <H1>SORT OPTION: To</H1>
6597 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6598 by the names of the recipients of the message.
6601 Messages with the same recipients are grouped together. Groups of
6602 messages are then put into alphabetical order according to message
6603 recipients.
6606 &lt;End of help on this topic&gt;
6607 </BODY>
6608 </HTML>
6609 ======= h_index_sort_cc =======
6610 <HTML>
6611 <HEAD>
6612 <TITLE>SORT OPTION: Cc</TITLE>
6613 </HEAD>
6614 <BODY>
6615 <H1>SORT OPTION: Cc</H1>
6617 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6618 the names of the carbon copy addresses of the message.
6621 &lt;End of help on this topic&gt;
6622 </BODY>
6623 </HTML>
6624 ======= h_index_cmd_whereis =======
6625 <HTML>
6626 <HEAD>
6627 <TITLE>WhereIs Command</TITLE>
6628 </HEAD>
6629 <BODY>
6630 <H1>WhereIs Command</H1>
6632 The WhereIs
6633 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6634 command lets you search the MESSAGE INDEX for a word.
6635 It scans through whatever you see, usually the name of the author
6636 and the Subject line.
6637 WhereIs has special subcommands to let you find the beginning of the
6638 index (Ctrl-Y -- first message)
6639 or the end of the index (Ctrl-V -- last message).
6641 Note that WhereIs only searches through the visible text on the screen.
6642 For example, if only part of the Subject of a message is shown because it
6643 is long, then only the visible portion of the Subject is searched.
6644 Also note that WhereIs does not &quot;see&quot; the 
6645 &quot;X&quot; in column one of Index entries for selected messages
6646 so it can't be used to search for
6647 selected messages (use &quot;Zoom&quot; instead).
6649 If the feature
6650 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6651 is turned on,
6652 WhereIs can also be used as a quick way to select messages that match the
6653 string being searched for.
6654 Instead of typing carriage return to search for the next match, type
6655 Ctrl-X to select all matches.
6656 Once again, this only selects matches that are (or would be if the right
6657 index line was on the screen) visible.
6658 Truncated From lines or Subjects will cause matches to be missed.
6659 Although WhereIs is sometimes convenient for quick matching, the Select
6660 command is usually more powerful and usually faster.
6663 &lt;End of help on this topic&gt;
6664 </BODY>
6665 </HTML>
6666 ======= h_view_cmd_whereis =======
6667 <HTML>
6668 <HEAD>
6669 <TITLE>WhereIs Command</TITLE>
6670 </HEAD>
6671 <BODY>
6672 <H1>WhereIs Command</H1>
6674 The WhereIs
6675 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6676 command does a &quot;find in current message&quot; operation.  You
6677 type in text and Alpine will try to find it in the message you are
6678 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6679 or end (Ctrl-V) of the message.
6680 That is, to rapidly move to the end of a message, hit the 
6681 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6682 (or Ctrl-W) key followed
6683 by Ctrl-V.  Similarly,
6684 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6685 followed by Ctrl-Y will take you to the beginning of a message.
6688 &lt;End of help on this topic&gt;
6689 </BODY>
6690 </HTML>
6691 ======= h_view_cmd_hilite =======
6692 <HTML>
6693 <HEAD>
6694 <TITLE>View Hilite and Next item/Previous item</TITLE>
6695 </HEAD>
6696 <BODY>
6697 <H1>View Hilite and Next item/Previous item</H1>
6699 Sometimes messages may be in the form of formatted HTML text
6700 or they may contain URLs or Web server hostnames.
6701 When any of the features
6702 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6703 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6704 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6706 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6707 are enabled, Alpine will represent such selectable items in the text
6708 in bold typeface.  One of the selectable items will be displayed in
6709 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6710 Press the Return key to view the currently selected item.
6713 The Up and Down Arrows keys can be used to change the selected item
6714 (also see the feature
6715 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6716 If there are no selectable items in the direction of the arrow you
6717 pressed, Alpine will scroll the display in that direction until one
6718 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6719 items in the message text, use the Previous and Next item commands,
6720 <!--chtml if pinemode="function_key"-->F5 and F6
6721 <!--chtml else-->^B and ^F<!--chtml endif-->.
6724 &lt;End of help on this topic&gt;
6725 </BODY>
6726 </HTML>
6727 ======= h_view_cmd_viewattch =======
6728 <HTML>
6729 <HEAD>
6730 <TITLE>ViewAttch Command</TITLE>
6731 </HEAD>
6732 <BODY>
6733 <H1>ViewAttch Command</H1>
6736 The View/Save Attachment
6737 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6738 command allows you to handle MIME attachments to a message you have
6739 received.  Alpine shows you a list of the message attachments -- you just
6740 choose the attachment you want.  You may either view or save the
6741 selected attachment.
6744 Because many attachments require external programs for display, there
6745 is some system configuration that has to happen before you can
6746 actually display attachments.  Hopefully much of that will have been
6747 done already by your system administrator.  MIME configuration is
6748 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6749 on configuration in the
6750 <A HREF="h_news">release notes</A> for more information.)
6753 &lt;End of help on this topic&gt;
6754 </BODY>
6755 </HTML>
6756 ======= h_index_cmd_expunge =======
6757 <HTML>
6758 <HEAD>
6759 <TITLE>Expunge/Exclude Command</TITLE>
6760 </HEAD>
6761 <BODY>
6762 <H1>Expunge/Exclude Command</H1>
6764 Expunge/Exclude
6765 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6766 is the command Alpine uses to actually remove all messages
6767 marked for deletion.  With regular email files, expunge literally deletes
6768 the text from the current folder.  With newsgroups or shared mailboxes,
6769 you don't have permission to actually remove the message, so it is an
6770 exclude -- Alpine removes the message from your view of the folder even
6771 though it is not technically gone.
6773 <P> A selective expunge command is available in IMAP folders that support 
6774 the UID EXPUNGE extension in <A 
6775 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6776 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6777 as a subcommand of the apply command. If some selected messages are marked 
6778 deleted, then the apply command will offer the eXpunge command, which when 
6779 executed will only expunge those messages that are selected and deleted.
6781 <P> 
6782 Observe that the expunge command (when not used from the apply command) 
6783 will expunge/exclude all deleted messages from the folder, and so all 
6784 messages marked deleted will be expunged, regardless of if they are 
6785 selected or not. In other words, there is no protection against 
6786 potentially expunging more messages than only those that have been 
6787 selected and deleted.
6790 The configuration features
6791 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6793 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6794 affect the behavior of the Expunge command.
6797 &lt;End of help on this topic&gt;
6798 </BODY>
6799 </HTML>
6800 ======= h_common_compose =======
6801 <HTML>
6802 <HEAD>
6803 <TITLE>Compose Command</TITLE>
6804 </HEAD>
6805 <BODY>
6806 <H1>Compose Command</H1>
6808 The Compose command takes you into the Alpine message composer where you
6809 can start a new message for sending.  This is where you type in the
6810 message's text and specify its recipient list (the &quot;To:&quot;
6811 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6812 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6813 be attached to the message.
6816 When you type this command, Alpine will also automatically check for any
6817 interrupted (i.e., a message that was being composed when your modem
6818 or network connection was broken) or previously postponed messages and
6819 offer you a chance to continue working on those.
6822 <UL>   
6823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6824 </UL><P>
6825 &lt;End of help on this topic&gt;
6826 </BODY>
6827 </HTML>
6828 ======= h_common_index =======
6829 <HTML>
6830 <HEAD>
6831 <TITLE>Message Index Command</TITLE>
6832 </HEAD>
6833 <BODY>
6834 <H1>Message Index Command</H1>
6836 The Index command takes you to the MESSAGE INDEX screen that displays a
6837 summary caption for each message in the currently-open folder. One
6838 message will be highlighted; this is the &quot;Current&quot; message.
6839 The message commands available from this screen (e.g. View, Reply,
6840 Forward, Delete, Print, Save, etc) apply to the current message.
6843 &lt;End of help on this topic&gt;
6844 </BODY>
6845 </HTML>
6846 ======= h_common_folders =======
6847 <HTML>
6848 <HEAD>
6849 <TITLE>Folder List Command</TITLE>
6850 </HEAD>
6851 <BODY>
6852 <H1>Folder List Command</H1>
6854 This Folder List command takes you to the FOLDER LIST screen that displays
6855 the names of all your message folders and allows you to view, rename,
6856 delete, and add folders.  You can open (view) a different folder than the
6857 one currently open by highlighting the desired one (using the arrow keys
6858 or their control-key equivalents) and pressing RETURN.
6861 If you have multiple folder collections defined (see the Help text for
6862 the FOLDER LIST screen to learn more about Collections), you may need
6863 to press Return to expand the collection and display all of the
6864 folders in it.
6867 &lt;End of help on this topic&gt;
6868 </BODY>
6869 </HTML>
6870 ======= h_main_addrbook =======
6871 <HTML>
6872 <HEAD>
6873 <TITLE>Address Book Command</TITLE>
6874 </HEAD>
6875 <BODY>
6876 <H1>Address Book Command</H1>
6878 This command, available only from the MAIN MENU, takes you
6879 to the ADDRESS BOOK management screen.  From here, your personal address
6880 book(s) may be updated.
6883 &lt;End of help on this topic&gt;
6884 </BODY>
6885 </HTML>
6886 ======= h_main_setup =======
6887 <HTML>
6888 <HEAD>
6889 <TITLE>Setup Command</TITLE>
6890 </HEAD>
6891 <BODY>
6892 <H1>Setup Command</H1>
6894 The Setup command, available only from the MAIN MENU, prompts you for
6895 one of several configuration screens, including the SETUP CONFIGURATION 
6896 screen, by which you may activate optional Alpine features.
6899 &lt;End of help on this topic&gt;
6900 </BODY>
6901 </HTML>
6902 ======= h_main_release_notes =======
6903 <HTML>
6904 <HEAD>
6905 <TITLE>Release Notes Command</TITLE>
6906 </HEAD>
6907 <BODY>
6908 <H1>Release Notes Command</H1>
6910 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6911 as well as pointers to further information such as history and legal notes.
6914 &lt;End of help on this topic&gt;
6915 </BODY>
6916 </HTML>
6917 ======= h_main_kblock =======
6918 <HTML>
6919 <HEAD>
6920 <TITLE>Keyboard Lock Command</TITLE>
6921 </HEAD>
6922 <BODY>
6923 <H1>Keyboard Lock Command</H1>
6925 This command allows your Alpine session to be protected
6926 during a temporary absence from your terminal.
6929 &lt;End of help on this topic&gt;
6930 </BODY>
6931 </HTML>
6932 ======= h_main_journal =======
6933 <HTML>
6934 <HEAD>
6935 <TITLE>Journal Command</TITLE>
6936 </HEAD>
6937 <BODY>
6938 <H1>Journal Command</H1>
6940 This command displays a list of all the status messages Alpine has
6941 displayed (on the third line from the bottom of the screen). This may
6942 be useful if a message disappeared before you had a chance to read it.
6945 &lt;End of help on this topic&gt;
6946 </BODY>
6947 </HTML>
6948 ======= h_common_role =======
6949 <HTML>
6950 <HEAD>
6951 <TITLE>Role Command</TITLE>
6952 </HEAD>
6953 <BODY>
6954 <H1>Role Command</H1>
6956 The Role command is similar to the Compose command except that it starts
6957 off by letting you select a <A HREF="h_rules_roles">role</A>
6958 to be used for the composition.
6959 You may set up alternate roles by using Setup/Rules/Roles.
6962 &lt;End of help on this topic&gt;
6963 </BODY>
6964 </HTML>
6965 ======= h_common_conditional_cmds =======
6966 <HTML>
6967 <HEAD>
6968 <TITLE>Conditional Commands</TITLE>
6969 </HEAD>
6970 <BODY>
6971 <H1>Conditional Commands</H1>
6973 The presence or absence of certain commands, particularly in the
6974 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6975 whether or not specific features are set in your Alpine configuration.  
6976 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6977 Alpine's MAIN MENU.)  To see if a desired command's availability is
6978 conditioned on a feature setting, see the command's help text (highlight
6979 the phrase associated with the command and hit Return).
6982 Also note that some
6983 commands may be administratively disabled by your system manager;
6984 if they don't work, please check with your local help desk.
6987 <UL>   
6988 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6989 </UL><P>
6990 &lt;End of help on this topic&gt;
6991 </BODY>
6992 </HTML>
6993 ======= h_common_pipe =======
6994 <HTML>
6995 <HEAD>
6996 <TITLE>Pipe Command</TITLE>
6997 </HEAD>
6998 <BODY>
6999 <H1>Pipe Command</H1>
7001 Pipe
7002 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
7003 allows you to send a message to a specified Unix command for external
7004 processing.
7005 This command's availability is controlled by the
7006 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
7007 feature.
7008 By default, the processed text of the message is sent to the command
7009 you specify and the output is captured by Alpine and shown to you.
7010 When you run the pipe command, there are some sub-commands which may be
7011 used to alter this behavior.
7012 These sub-commands are described <A HREF="h_pipe_command">here</A>.
7015 &lt;End of help on this topic&gt;
7016 </BODY>
7017 </HTML>
7018 ======= h_common_goto =======
7019 <HTML>
7020 <HEAD>
7021 <TITLE>Goto Command</TITLE>
7022 </HEAD>
7023 <BODY>
7024 <H1>Goto Command</H1>
7026 Goto
7027 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
7028 is the command that lets you bypass Alpine's folder selection screens
7029 and jump directly to a new folder.  You can select any folder in the
7030 world: one in your current collection, one in a different collection or
7031 one in a collection you've never even used before.
7034 Alpine will help you as much as possible to narrow in on the folder you want.
7035 However, if the folder is outside of your defined collections, you are
7036 going to have to enter the exact folder location using the correct
7037 <A HREF="h_valid_folder_names">syntax</A>
7038 for a remote folder and/or fully-qualified path name.
7041 &lt;End of help on this topic&gt;
7042 </BODY>
7043 </HTML>
7044 ======= h_common_nextnew =======
7045 <HTML>
7046 <HEAD>
7047 <TITLE>NextNew Command</TITLE>
7048 </HEAD>
7049 <BODY>
7050 <H1>NextNew Command</H1>
7052 When you press the TAB key, Alpine advances to the next
7053 &quot;interesting&quot; message.
7054 This will be the next message you have not seen before, or the next message
7055 you have flagged Important, whichever comes first.
7056 Unread messages that have been deleted are not considered interesting.
7057 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
7058 articles after you have read them if you want to remove them from future
7059 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
7060 more information.)
7063 The NextNew command is affected by the feature
7064 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
7065 which causes Alpine to only consider Unread messages interesting, not messages
7066 flagged Important.
7069 This command behaves a little differently when it finds there are no more
7070 interesting messages left in the current folder.
7071 If the current folder is one of your Incoming Message Folders
7072 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
7073 or it is a newsgroup, then Alpine will try to find the next folder or
7074 newsgroup that contains <EM>Recent</EM> messages and will ask you
7075 if you want to open that folder.
7076 This behavior may be modified by using the
7077 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
7078 feature that causes Alpine to look for Unseen messages instead of Recent
7079 messages.
7080 The NextNew command's behavior is also affected by the configuration features
7081 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
7083 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
7086 &lt;End of help on this topic&gt;
7087 </BODY>
7088 </HTML>
7089 ======= h_common_jump =======
7090 <HTML>
7091 <HEAD>
7092 <TITLE>Jump Command</TITLE>
7093 </HEAD>
7094 <BODY>
7095 <H1>Jump Command</H1>
7097 This is Alpine's way of allowing you to go straight to a specific message.
7098 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
7099 configured such that typing in any number automatically jumps you to that
7100 message 
7101 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
7102 in the SETUP CONFIGURATION).
7105 &lt;End of help on this topic&gt;
7106 </BODY>
7107 </HTML>
7108 ======= h_common_flag =======
7109 <HTML>
7110 <HEAD>
7111 <TITLE>Flag Command</TITLE>
7112 </HEAD>
7113 <BODY>
7114 <H1>Flag Command</H1>
7116 Flag
7117 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7118 is the command that allows users to manipulate the status flags that
7119 appear on the left side of the MESSAGE INDEX screen.  The most common
7120 use of this is to mark a message as important. This is something of a
7121 note to yourself to get back to that message.  You may also use the
7122 flag command to set (or unset) the flags that indicate that a message
7123 is new, answered, deleted, or forwarded.<P>
7125 Provided the mail server supports it,
7126 you may also manipulate user-defined keywords
7127 for a message using the flag command.
7128 These keywords will be available if you use the Flag Details screen that you
7129 can get to after typing the
7130 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7131 command.
7132 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
7133 which are always present.
7134 You may add new keywords by using the Add KW command from the Flag Details screen
7135 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
7137 The availability of the flag command is determined by the
7138 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
7139 feature in your Alpine configuration. Also, it is possible that Flag could be
7140 administratively disabled by your system manager; if it doesn't work,
7141 please check with your local help desk before reporting a bug.
7142 The behavior of the flag command may be modified by the
7143 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
7144 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
7147 &lt;End of help on this topic&gt;
7148 </BODY>
7149 </HTML>
7150 ======= h_common_hdrmode =======
7151 <HTML>
7152 <HEAD>
7153 <TITLE>HdrMode Command</TITLE>
7154 </HEAD>
7155 <BODY>
7156 <H1>HdrMode Command</H1>
7158 Every email message comes with some header lines that you normally
7159 don't see (and don't want to see).
7160 These include anywhere from 3-20 lines (or more) added by the
7161 Internet mail transport system to record the route your message took,
7162 for diagnostic purposes.
7163 These are normally of no import and simply
7164 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
7165 This also includes other non-standard headers the message may contain.
7166 If you want to see these headers, there is a way to reveal them.
7169 The Header Mode
7170 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7171 command is a toggle that controls Alpine's handling of these header
7172 lines.  Normally, full headers is &quot;off&quot; and you only see a
7173 few lines about who a message is to and who it is from.  When you
7174 press
7175 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7176 to turn full headers on, Alpine will show you
7177 the normal header lines as well as delivery headers, comment headers,
7178 MIME headers, and any other headers present.
7181 Several different Alpine commands honor the header mode -- it affects how
7182 messages are displayed, how they appear in forward and reply email, how
7183 they are printed, how they are saved, and how they are exported.
7184 <!--chtml if pinemode="os_windows"-->
7185 <!--chtml else--> 
7186 The pipe command is also affected.
7187 <!--chtml endif-->
7190 The presence or absence of the Header Mode command is determined by the
7191 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7192 Feature-List option in your Alpine configuration.
7195 If you have also turned on the
7196 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
7197 option then the HdrMode command actually rotates through three states
7198 instead of just two.
7199 The first is the normal view with long quotes suppressed.
7200 The second is the normal view but with the long quotes included.
7201 The last enables the display of all headers in the message.
7202 When using Export, Pipe, Print, Forward, or Reply the quotes are
7203 never suppressed, so the first two states are identical.
7206 The behavior of the Header Mode command may be altered slightly by
7207 turning on the
7208 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
7209 Feature-List option in your Alpine configuration.
7210 In particular, it will cause the Header Mode to be persistent when moving
7211 from message to message instead of resetting to the default for each message.
7214 <UL>   
7215 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7216 </UL><P>
7217 &lt;End of help on this topic&gt;
7218 </BODY>
7219 </HTML>
7220 ======= h_common_print =======
7221 <HTML>
7222 <HEAD>
7223 <TITLE>Print Command</TITLE>
7224 </HEAD>
7225 <BODY>
7226 <H1>Print Command</H1>
7228 The Print
7229 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
7230 command allows you to print a copy of a message.
7231 There are many SETUP CONFIGURATION features that affect the
7232 Print command, including
7233 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
7234 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
7235 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
7236 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
7237 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
7238 You set up for printing by using the Printer option of the Setup command
7239 on the MAIN MENU.
7243 &lt;End of help on this topic&gt;
7244 </BODY>
7245 </HTML>
7246 ======= h_common_take =======
7247 <HTML>
7248 <HEAD>
7249 <TITLE>TakeAddr Command</TITLE>
7250 </HEAD>
7251 <BODY>
7252 <H1>TakeAddr Command</H1>
7255 With the Take Address
7256 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
7257 command, you can extract email addresses from an
7258 incoming message and save them in an address book.  This is an easy way
7259 to add to your address book and avoid having to remember the email
7260 addresses of the people who write to you.
7263 If the message is just to you individually, then you will only need to
7264 provide a nickname.  If the message contains more than one email address,
7265 then you will see an address
7266 selection screen that lets you choose the address you want to save into
7267 your address book, or lets you choose several of them add to a
7268 personal distribution list.
7271 Once you've added an entry to your address book, you can use it from the
7272 message composer by typing the nickname of the entry into one of the
7273 header fields (for example, into the To: field), or you can use ^T from
7274 the header field to select the entry from your address book.
7277 If the configuration feature
7278 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
7279 is set, the behavior of the Take command is altered slightly.
7282 &lt;End of help on this topic&gt;
7283 </BODY>
7284 </HTML>
7285 ======= h_ge_import =======
7286 <HTML>
7287 <HEAD>
7288 <TITLE>Import File Selection</TITLE>
7289 </HEAD>
7290 <BODY>
7291 <H1>Import File Selection</H1>
7293 You are importing a file that you previously
7294 exported from Alpine.
7295 You are now being asked for the name of that file.
7296 The easiest way to select a file is probably with the &quot;^T&quot;
7297 &quot;To Files&quot; command.
7298 Alternatively, you may type in a file name.
7299 It may be an absolute pathname.
7300 Otherwise, it is a file located in your home directory
7301 or current working directory
7302 <!--chtml if pinemode="running"-->
7303 (which, at least for your current Alpine &quot;session,&quot; 
7304 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7305 <!--chtml endif-->, depending on the
7306 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7307 In any case, you finish by typing a carriage return to accept the
7308 file name that is displayed.
7309 When the feature
7310 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7311 is turned on you may use TAB to complete partially typed in names.
7313 You may cancel the import operation by typing &quot;^C&quot; after exiting
7314 this help.
7316 &lt;End of help on this topic&gt;
7317 </BODY>
7318 </HTML>
7319 ======= h_ge_allparts =======
7320 <HTML>
7321 <HEAD>
7322 <TITLE>Export Message File Selection</TITLE>
7323 </HEAD>
7324 <BODY>
7325 <H1>Export Message File Selection</H1>
7327 You are Exporting a message from an Alpine mail folder
7328 to a plain text file.
7329 You also have the option of exporting all of the attachments associated
7330 with the message.
7331 You are now being asked for the name of the file to export <EM>to</EM>.
7332 The easiest way to select a file is probably with the &quot;^T&quot;
7333 &quot;To Files&quot; subcommand.
7334 After returning from that subcommand you will still be allowed to
7335 edit the name you have selected.
7336 Alternatively, you may type in a file name.
7337 It may be an absolute pathname.
7338 Otherwise, it is a file located in your home directory
7339 or current working directory
7340 <!--chtml if pinemode="running"-->
7341 (which, at least for your current Alpine &quot;session,&quot; 
7342 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7343 <!--chtml endif-->, depending on the
7344 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7345 In any case, you finish by typing a carriage return to accept the
7346 file name that is displayed.
7347 When the feature
7348 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7349 is turned on you may use TAB to complete partially typed in names.
7351 The message you are exporting appears to have some attachments.
7352 If you wish to save <EM>all</EM> of the attachments at once,
7353 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7354 saving of the attachments.
7355 You may turn it back off by typing &quot;^P&quot; again, which will now
7356 be labeled &quot;NoAllParts&quot; instead.
7357 If you want to save the parts the command displayed should be
7358 &quot;NoAllParts&quot;!
7359 When you choose to save attachments like this, the attachments will be saved
7360 in a newly created directory.
7361 That directory will have the same name as the file name you choose here,
7362 with the letters &quot;.d&quot; appended.
7363 If that directory already exists, then the letters &quot;.d_1&quot; will
7364 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7365 is found.
7366 For example, if you select the file name
7368 <CENTER><SAMP>filename</SAMP></CENTER>
7370 to export the message to, then the directory used for the attachments will be
7372 <CENTER><SAMP>filename.d</SAMP></CENTER>
7374 or perhaps
7376 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7378 The attachments will then be put into files inside that directory.
7379 The names for the attachment files will be derived from the attachments
7380 if possible.
7381 This is done in the same way as the default values are derived if you
7382 save them one at a time.
7383 (The &quot;filename&quot; parameter from the Content-Disposition header
7384 is the first choice. If that doesn't exist, the &quot;name&quot;
7385 parameter from the Content-Type header is used.)
7386 If a name for a particular attachment is not available, then the
7387 part number of the attachment is used, with the characters &quot;part_&quot;
7388 prepended.
7389 An example of that would be
7391 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7393 If you want to save only some of the attachments or if you want more control
7394 over the directory and filename where an attachment is saved you may
7395 cancel out of this command and View the attachment list.
7396 From there you can save each attachment individually.
7398 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7399 this help.
7401 &lt;End of help on this topic&gt;
7402 </BODY>
7403 </HTML>
7404 ======= h_ge_export =======
7405 <HTML>
7406 <HEAD>
7407 <TITLE>Export File Selection</TITLE>
7408 </HEAD>
7409 <BODY>
7410 <H1>Export File Selection</H1>
7412 You are Exporting or Saving something from within the Alpine world
7413 (a message, an attachment, etc.)
7414 to a plain text file.
7415 You are now being asked for the name of the file to export <EM>to</EM>.
7416 The easiest way to select a file is probably with the &quot;^T&quot;
7417 &quot;To Files&quot; subcommand.
7418 After returning from that subcommand you will still be allowed to
7419 edit the name you have selected.
7420 Alternatively, you may type in a file name.
7421 It may be an absolute pathname.
7422 Otherwise, it is a file located in your home directory
7423 or current working directory
7424 <!--chtml if pinemode="running"-->
7425 (which, at least for your current Alpine &quot;session,&quot; 
7426 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7427 <!--chtml endif-->, depending on the
7428 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7429 In any case, you finish by typing a carriage return to accept the
7430 file name that is displayed.
7431 When the feature
7432 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7433 is turned on you may use TAB to complete partially typed in names.
7435 If the object you are exporting is a message with some attachments,
7436 you may wish to save all of the attachments by typing the &quot;^P&quot;
7437 &quot;AllParts&quot; command to turn on saving of the attachments.
7438 This subcommand will only be visible if the message actually has attachments.
7439 You may also View the attachment list and save individual attachments from
7440 there.
7442 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7443 the Control-R subcommand to toggle if saving will be done in binary mode,
7444 meaning that the attachment will be decoded, but will not be transformed
7445 to UTF-8 for further processing (either in internal filters, or user
7446 supplied filters.) This is useful in case you either want to preserve
7447 the text as it was encoded originally to you, or the attachment was
7448 incorrectly attached (the attachment is not of text type) and you need
7449 the original text to process the attachment.
7451 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7452 this help.
7454 &lt;End of help on this topic&gt;
7455 </BODY>
7456 </HTML>
7457 ======= h_common_save =======
7458 <HTML>
7459 <HEAD>
7460 <TITLE>Save and Export Commands</TITLE>
7461 </HEAD>
7462 <BODY>
7463 <H1>Save and Export Commands</H1>
7465 Save
7466 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7467 and Export
7468 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7469 are the two alternatives Alpine gives you to keep a copy of the message
7470 you are reading. If you want to keep the message within Alpine's email
7471 world, use &quot;Save&quot;; if you want to use the message in another
7472 program, use &quot;Export&quot;.
7475 When you Save a message, it is put into an existing folder or into a new
7476 folder in one of your existing folder collections.  The message stays in
7477 email format and can be read by Alpine again.  Alpine may use a special format
7478 for its mail folders -- never edit an Alpine folder by hand or with any
7479 program other than Alpine.  The exact behavior of the Save command can be
7480 configured with the
7481 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7482 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7483 and 
7484 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7485 feature list settings.
7486 The name of the folder offered as a default is controlled by the option
7487 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7490 When you use Export, the message is placed in a plain text file in your
7491 home directory 
7492 <!--chtml if pinemode="running"-->
7493 (which, in the present configuration of your system, is
7494  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7495 <!--chtml endif-->
7496 or current working directory
7497 <!--chtml if pinemode="running"-->
7498 (which, at least for your current Alpine &quot;session,&quot; 
7499 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7500 <!--chtml endif-->, depending on the
7501 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7502 configuration setting.  In the normal case, only minimal
7503 headers are exported with the message; however, if the full header mode 
7504 (whose availability may be disabled  by setting the feature 
7505 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7506 in SETUP CONFIGURATION) is
7507 toggled on, then complete headers are exported along with the message
7508 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7509 defined, they may affect the contents of the exported file.)
7512 &lt;End of help on this topic&gt;
7513 </BODY>
7514 </HTML>
7515 ======= h_common_bounce =======
7516 <HTML>
7517 <HEAD>
7518 <TITLE>Bounce Command</TITLE>
7519 </HEAD>
7520 <BODY>
7521 <H1>Bounce Command</H1>
7523 The Bounce 
7524 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7525 command allows you to re-send, or &quot;remail&quot;, a
7526 message, as if you were never in the loop.  It is analogous to crossing
7527 out your address on a postal letter, writing a different address on the
7528 envelope, and putting it into the mailbox. Bounce is used primarily to
7529 redirect email that was sent to you in error.
7530 Also, some owners of email
7531 lists need the bounce command to handle list traffic.
7532 Bounce is not anonymous.
7533 A ReSent-From header is added to the message so that the recipient may
7534 tell that you Bounced it to them.
7537 The presence or absence of the Bounce command is determined by the
7538 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7539 feature in your Alpine configuration.
7540 The feature
7541 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7542 affects the behavior of the Bounce command.
7543 Also, it is possible that Bounce could be
7544 administratively disabled by your system manager; if it doesn't work,
7545 please check with your local help desk before reporting a bug.
7548 &lt;End of help on this topic&gt;
7549 </BODY>
7550 </HTML>
7551 ======= h_common_reply =======
7552 <HTML>
7553 <HEAD>
7554 <TITLE>Reply and Forward Commands</TITLE>
7555 </HEAD>
7556 <BODY>
7558 <H1>Reply and Forward Commands</H1>
7560 Replying 
7561 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7562 and Forwarding 
7563 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7564 are your two alternatives for following up on the
7565 message you are reading.  You would use reply if you want to get email
7566 back to the author of the message and/or the other people who have
7567 already seen it.  You use forward if you want somebody new to see the
7568 message.
7571 In the normal case, the only thing that you must supply when forwarding a
7572 message is the name/email address of the new recipient.
7573 Alpine will include the text of the forwarded message.
7574 Alpine will also include any attachments to the message.
7575 There is space above the forwarded text for you to include additional comments.
7578 When replying, you usually have to answer some questions.
7579 If the message is to multiple people and/or specified with a Reply-To: header,
7580 then you will have to decide who should get the reply.
7581 You also need to decide whether or not to include the previous
7582 message in your reply.
7583 Some of this is configurable.
7584 Specifically, see the
7585 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7586 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7587 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7589 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7590 configuration features.
7593 Both the Reply and Forward commands react to the full header mode toggle.
7594 If the full header mode is on, then all the header and delivery lines are
7595 included with the text of the message in your reply/forward.
7598 Other configuration features that affect the Reply command are
7599 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7600 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7601 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7604 &lt;End of help on this topic&gt;
7605 </BODY>
7606 </HTML>
7607 ======= h_common_delete =======
7608 <HTML>
7609 <HEAD>
7610 <TITLE>Delete and Undelete Commands</TITLE>
7611 </HEAD>
7612 <BODY>
7613 <H1>Delete and Undelete Commands</H1>
7615 Delete 
7616 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7617 and Undelete 
7618 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7619 allow you to change the Deleted flag for the current message.
7620 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7621 removes the mark.
7622 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7623 at the left hand edge of the index line.
7624 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7625 in the upper right hand corner of the screen.
7626 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7627 get rid of the message.
7628 The eXpunge command (available from the MESSAGE INDEX screen) actually
7629 removes all of the deleted messages in a folder.
7630 Once a message is eXpunged, it can't be retrieved.
7633 The Delete command is affected by the setting of the configuration feature
7634 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7637 &lt;End of help on this topic&gt;
7638 </BODY>
7639 </HTML>
7640 ======= h_common_postpone =======
7641 <HTML>
7642 <HEAD>
7643 <TITLE>Postpone Command</TITLE>
7644 </HEAD>
7645 <BODY>
7646 <H1>Postpone Command</H1>
7648 The postpone
7649 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7650 command allows you to temporarily stop working on the current
7651 message so you may read
7652 other messages or compose another message.  When you want to resume a
7653 message later, start to compose and answer &quot;yes&quot; to the
7654 &quot;Continue postponed composition?&quot; question.  You may
7655 postpone as many messages as you like.
7658 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7659 in the Setup/Config screen, then the Postpone command will prompt you for
7660 the folder in which to store your outgoing message.
7663 &lt;End of help on this topic&gt;
7664 </BODY>
7665 </HTML>
7666 ======= h_compose_cancel =======
7667 <HTML>
7668 <HEAD>
7669 <TITLE>Cancel Command</TITLE>
7670 </HEAD>
7671 <BODY>
7672 <H1>Cancel Command</H1>
7674 Cancel
7675 <!--chtml if pinemode="function_key"-->
7676 (F2)
7677 <!--chtml else-->
7678 (^C) 
7679 <!--chtml endif-->
7681 The Cancel command returns you to Alpine's normal mail processing and
7682 causes the message currently under composition to be thrown out.
7683 The message text <EM>will be lost</EM>.
7686 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
7687 will be preserved in the file named
7688 <!--chtml if pinemode="os_windows"-->
7689 &quot;DEADLETR&quot;.
7690 <!--chtml else-->
7691 &quot;dead.letter&quot; in your home directory.
7692 <!--chtml endif-->
7693 If you unintentionally cancel a message, look there for its text.
7696 &lt;End of help on this topic&gt;
7697 </BODY>
7698 </HTML>
7699 ======= h_compose_addrcomplete =======
7700 <HTML>
7701 <HEAD>
7702 <TITLE>Address Completion</TITLE>
7703 </HEAD>
7704 <BODY>
7705 <H1>Address Completion</H1>
7707 When entering addresses in the address fields of the composer (To, Cc, etc.)
7708 the TAB key may be used to help complete the address.
7709 Type a partial nickname and tap the TAB key to complete the typing.
7710 The unambiguous part of the name will be filled in automatically.
7711 Typing TAB twice in succession will bring up a selection list of possibilities,
7712 making it easy to find and choose the correct address.
7715 The matching algorithm is rather ad hoc.
7716 The search starts with a search of your address book.
7717 It counts as a match if the nickname, address, or fullname field of an
7718 entry begins with the text typed in so far. It is also a match if
7719 a later word in the fullname (for example, the middle name or last name)
7720 begins with the entered text.
7722 Next comes an LDAP search.
7723 The search will happen for any servers that have the
7724 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7725 feature set. You can set or unset the feature for each server independently
7726 in the Setup/Directory screen.
7728 Finally, if you are replying to or forwarding a message, that message is
7729 searched for likely candidate addresses that match the typed-in text.
7732 &lt;End of help on this topic&gt;
7733 </BODY>
7734 </HTML>
7735 ======= h_compose_richhdr =======
7736 <HTML>
7737 <HEAD>
7738 <TITLE>Rich Header Command</TITLE>
7739 </HEAD>
7740 <BODY>
7741 <H1>Rich Header Command</H1>
7743 The Rich Header command allows you to toggle between the list of 
7744 all message headers available for editing and those that are most
7745 common.
7748 Use this toggle to expose headers that are not normally visible by
7749 default.
7750 This set usually includes the
7751 &quot;Bcc:&quot;,
7752 &quot;Fcc:&quot;,
7753 &quot;Lcc:&quot;,
7754 and &quot;Newsgroups&quot;
7755 headers.
7756 If you are posting to a newsgroup the set of defaults is a little different.
7757 Obviously, in that case, the Newsgroups header is of interest so is not
7758 hidden.
7759 For news posting the hidden set includes the
7760 &quot;To:&quot;,
7761 &quot;Cc:&quot;,
7762 &quot;Bcc:&quot;,
7763 &quot;Fcc:&quot;,
7764 and &quot;Lcc:&quot;
7765 headers.
7766 You won't normally want to edit these, which is why they are hidden,
7767 but it is sometimes useful to be able to set them manually.
7770 The default sets of headers listed above can be altered.
7771 Any header that you have added to the
7772 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7773 option, but not to the
7774 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7775 option will appear when you use the Rich Headers command to
7776 make the Rich Headers visible.
7777 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7778 even without toggling the Rich Headers command.)
7781 &lt;End of help on this topic&gt;
7782 </BODY>
7783 </HTML>
7784 ======= h_compose_send =======
7785 <HTML>
7786 <HEAD>
7787 <TITLE>Send Command</TITLE>
7788 </HEAD>
7789 <BODY>
7790 <H1>Send Command</H1>
7792 The Send command
7793 <!--chtml if pinemode="function_key"-->
7794 (F3)
7795 <!--chtml else-->
7796 (^X) 
7797 <!--chtml endif-->
7798 tells Alpine you are finished composing.
7799 Before actually sending it, though, Alpine will ask you to confirm 
7800 your intention, and, at the same time, redisplayed the message text
7801 with the recipients at the top of the screen to give you the opportunity
7802 to review and verify that the message is addressed to the people
7803 you intended.
7805 If the feature
7806 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7807 then this confirmation prompt and any options it allows are skipped.
7810 This confirmation prompt may also offer, depending
7811 on your particular Setup/Config, options allowing you to set
7812 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7813 include attachments in the &quot;Fcc&quot; (if you had previously
7814 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7815 observe details of the
7816 <A HREF="h_config_verbose_post">message submission process</A>,
7817 choose the filter through which the
7818 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7819 or turn of flowed text generation.
7822 &lt;End of help on this topic&gt;
7823 </BODY>
7824 </HTML>
7825 ======= h_compose_markcutpaste =======
7826 <HTML>
7827 <HEAD>
7828 <TITLE>Mark, Cut and Paste Commands</TITLE>
7829 </HEAD>
7830 <BODY>
7831 <H1>Mark, Cut and Paste Commands</H1>
7833 You can define a &quot;block&quot; of text, which can subsequently
7834  be deleted or
7835 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7836 then moving the cursor to the end of the desired text block.  You can then
7837 &quot;cut&quot; the block out 
7838 <!--chtml if pinemode="function_key"-->
7839 &quot;F9&quot;,
7840 <!--chtml else-->
7841 &quot;Ctrl-K&quot;,
7842 <!--chtml endif-->
7843 move the cursor, and &quot;paste&quot; it
7844 <!--chtml if pinemode="function_key"-->
7845 &quot;F10&quot;,
7846 <!--chtml else-->
7847 &quot;Ctrl-U&quot;,
7848 <!--chtml endif-->
7849 in the new location.  Also, you can paste more than once, allowing you
7850 to use this feature to copy a block of text.<P>
7852 If you press 
7853 <!--chtml if pinemode="function_key"-->
7854 &quot;F9&quot;
7855 <!--chtml else-->
7856 &quot;^K&quot;
7857 <!--chtml endif-->
7858 without having marked anything, Alpine will delete
7859 a single line.  If you delete a group of lines together, Alpine keeps them
7860 in the same buffer, so 
7861 <!--chtml if pinemode="function_key"-->
7863 <!--chtml else-->
7865 <!--chtml endif-->
7866 will restore them as a block.  About
7867 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7868 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7869 &quot;type the character ^&quot;.
7872 &lt;End of help on this topic&gt;
7873 </BODY>
7874 </HTML>
7875 ======= h_compose_justify =======
7876 <HTML>
7877 <HEAD>
7878 <TITLE>Justify Command</TITLE>
7879 </HEAD>
7880 <BODY>
7881 <H1>Justify Command</H1>
7883 The Justify
7884 <!--chtml if pinemode="function_key"-->
7885 (F4)
7886 <!--chtml else-->
7887 (^J) 
7888 <!--chtml endif-->
7889 command reformats the text in the paragraph the cursor is in.
7890 Paragraphs are separated by one blank line or a line beginning with a space.
7891 This is useful when you have been editing a paragraph and the lines become
7892 uneven.  The text is left aligned or justified and the right is ragged.  If
7893 the text is already justified as typed with auto-wrap, no justification will
7894 be done.
7897 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7898 block of text, the Justify command is modified.
7899 Instead of automatically justifying the current paragraph you will be
7900 asked if you want to justify the paragraph, justify the selected region,
7901 or adjust the quote level of the selected region.
7902 Adjusting the quote level only works if you are using standard
7903 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7904 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7907 When composing a reply containing included text, the justify command
7908 will reformat text to the right of the 
7909 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7910 adding or removing indented lines as needed.  Paragraphs are separated
7911 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7912 line containing the indent string and one or more blank spaces.
7913 Included text that was previously indented (or &quot;quoted&quot;) is
7914 not preserved.
7917 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7918 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7919 use the standard
7920 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7923 &lt;End of help on this topic&gt;
7924 </BODY>
7925 </HTML>
7926 ======= h_compose_spell =======
7927 <HTML>
7928 <HEAD>
7929 <TITLE>Spell Check Command</TITLE>
7930 </HEAD>
7931 <BODY>
7932 <H1>Spell Check Command</H1>
7934 The &quot;To Spell&quot;
7935 <!--chtml if pinemode="function_key"-->
7936 (F12)
7937 <!--chtml else-->
7938 (^T) 
7939 <!--chtml endif-->
7940 command calls an external spell checking program to look over the
7941 message you are composing.  By default, Alpine uses
7943 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7945 if it knows where to find &quot;aspell&quot;.
7946 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7947 then the command used is
7949 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7951 Otherwise, the ancient &quot;spell&quot; command is used.
7953 For PC-Alpine, you must install the aspell library code that you
7954 may get from
7955 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7958 &lt;End of help on this topic&gt;
7959 </BODY>
7960 </HTML>
7961 ======= h_compose_alted =======
7962 <HTML>
7963 <HEAD>
7964 <TITLE>Alt Editor Command</TITLE>
7965 </HEAD>
7966 <BODY>
7967 <H1>Alt Editor Command</H1>
7969 The &quot;Alt Editor&quot; command's availability depends on the
7970 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7973 When the variable specifies a valid editor on your system, this
7974 command will launch it with the current text of your message
7975 already filled in.
7978 &lt;End of help on this topic&gt;
7979 </BODY>
7980 </HTML>
7981 ======= h_compose_readfile =======
7982 <HTML>
7983 <HEAD>
7984 <TITLE>Read File Command</TITLE>
7985 </HEAD>
7986 <BODY>
7987 <H1>Read File Command</H1>
7989 The &quot;Read File&quot;
7990 <!--chtml if pinemode="function_key"-->
7991 (F5)
7992 <!--chtml else-->
7993 (^R) 
7994 <!--chtml endif-->
7995 command allows you to copy in text from an existing file. You will be
7996 prompted for the name of a file to be inserted into the message.  The file
7997 name is relative to your home directory 
7998 <!--chtml if pinemode="running"-->
7999 (which, in the present configuration of your system, is
8000  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
8001 <!--chtml endif-->
8002 or current working directory
8003 <!--chtml if pinemode="running"-->
8004 (which, at least for your current Alpine &quot;session,&quot; 
8005 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
8006 <!--chtml endif-->, depending on the
8007 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
8008 configuration setting; or, the file name must be specified as a full path name 
8009 <!--chtml if pinemode="os_windows"-->
8010 -- for example: &quot;A:&#92;PAPER.TXT&quot;
8011 <!--chtml else-->
8012 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
8013 <!--chtml endif-->
8014 (without the quotation marks).
8017 The file will be inserted where the cursor is located.  <B>The
8018 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
8019 Unix machine but have files on a PC or Mac, the files must be transferred
8020 to the system Alpine is running on before they can be read.  Please ask your
8021 local computer support people about the correct way to transfer a file to 
8022 your Alpine system.
8025 &lt;End of help on this topic&gt;
8026 </BODY>
8027 </HTML>
8028 ======= h_config_tray_icon =======
8029 <HTML>
8030 <HEAD>
8031 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
8032 </HEAD>
8033 <BODY>
8034 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
8036 PC-Alpine only.
8038 This option restores a behavior of previous versions of PC-Alpine.
8039 These
8040 versions, when started, installed a PC-Alpine icon in the notification 
8041 tray of Window's Taskbar.  The primary use of this icon was to indicate
8042 new mail arrival by turning red (while the Taskbar icon remained green).
8043 Additionally, the icon now changes to yellow to signify that a mail folder
8044 has been closed unexpectedly.
8047 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
8048 color its Taskbar entry's icon red (as well as the icon in the Window
8049 Title).  This feature is only provided for backwards compatibility.
8052 &lt;End of help on this topic&gt;
8053 </BODY>
8054 </HTML>
8055 ======= h_common_suspend =======
8056 <HTML>
8057 <HEAD>
8058 <TITLE>Suspend Command</TITLE>
8059 </HEAD>
8060 <BODY>
8061 <H1>Suspend Command</H1>
8063 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
8064 enabled, you can, at almost any time, temporarily halt your Alpine session,
8065 <!--chtml if pinemode="os_windows"-->
8066 minimizing it into an icon.
8067 <!--chtml else-->
8068 and return to your system prompt.
8069 <!--chtml endif-->
8072 &lt;End of help on this topic&gt;
8073 </BODY>
8074 </HTML>
8075 ======= h_pipe_command =======
8076 <HTML>
8077 <HEAD>
8078 <TITLE>Pipe Command SubOptions</TITLE>
8079 </HEAD>
8080 <BODY>
8081 <H1>Pipe Command SubOptions</H1>
8083 By default, when you use the Pipe command, the processed text of the
8084 message is sent to the Unix command
8085 you specify and the output is captured by Alpine and shown to you.
8086 (This command is available in PC-Alpine, as well, but there aren't many
8087 Windows commands that work well with piping.)
8088 There are some sub-commands that may be used to alter this behavior.
8089 These are toggles that switch the behavior between two possibilities.
8090 They can be combined in any way you wish.
8092 By default, the prompt at the bottom of the screen looks like
8094 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
8098 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
8100 if you are piping more than one message.
8102 The sub-command options are:
8103 <DL>
8104    <DT>Shown Text or Raw Text</DT>
8105    <DD>This option toggles between sending the shown (processed) text
8106 of the message to the Unix command, and sending the
8107 raw (unprocessed) text of the message to the Unix command.
8108 The default is to send the shown text.
8109 The raw version of the message will contain all of the headers and any
8110 MIME encoding that the message contains.
8111 If you've selected the Raw Text then the prompt will have the additional word
8112 &quot;RAW&quot; in it, like
8114 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
8116 You can experiment with this option by piping to something simple like the
8117 Unix &quot;cat&quot; command.
8118    </DD>
8119    <DT>Captured Output or Free Output</DT>
8120    <DD>This option toggles between having Alpine capture the output of
8121 the Unix pipe command for display, and not capturing it.
8122 If the command you are piping to is a filter that will produce output
8123 you want to view, then you want to capture that output
8124 for display (the default).
8125 If the Unix command doesn't produce output or handles the display itself,
8126 then you want free output.
8127 When you've selected the Free Output option the prompt will change to
8129 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
8131    </DD>
8132    <DT>No Delimiter or With Delimiter</DT>
8133    <DD>This option controls whether or not a Unix mailbox style delimiter
8134 will come before the text of the message.
8135 This is the delimiter used in the common Unix mailbox format.
8136 It's the single line that begins with the five characters
8137 &quot;From&quot; followed by a &lt;SPACE&gt; character.
8138 You'll usually only want to include this if the Unix command requires
8139 input in the format of a traditional Unix mailbox file.
8140 When you've selected the With Delimiter option the prompt will change to
8142 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
8144    </DD>
8145    <DT>To Same Pipe or To Individual Pipes</DT>
8146    <DD>This option only shows up if you are running an aggregate
8147 pipe command.
8148 That is, the command was Apply Pipe, not just Pipe.
8149 You have the option of piping all of the selected messages through a
8150 single pipe to a single instance of the Unix command,
8151 or piping each individual message through a separate pipe to separate
8152 instances of the Unix command.
8153 The default is that all of the output will go through a single pipe
8154 to a single instance of the command.
8155 You can try this option with a command like &quot;less&quot;, with Free
8156 Output enabled.
8157 When you've selected the Individual Pipes option the prompt will change to
8159 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
8161    </DD>
8162 </DL>
8165 As mentioned earlier, the options can be combined in any way you wish.
8166 You may leave them all off, turn them all on, or turn some of them on
8167 and some of them off.
8168 If you use the pipe command a second time in the same session the default
8169 options will be what you used the last time.
8172 &lt;End of help on this topic&gt;
8173 </BODY>
8174 </HTML>
8175 ========== h_emptydir_subfolder_name =========
8176 <HTML>
8177 <HEAD>
8178 <TITLE>ENTER SUBFOLDER NAME</TITLE>
8179 </HEAD>
8180 <BODY>
8181 <H1>Enter Subfolder Name</H1>
8183 <P> 
8184 This is the name of a new subfolder in the directory you are creating.
8185 Because empty directories are hidden and therefore not useful, you must also
8186 create a subfolder in the directory you are creating in order that the
8187 directory remains visible.
8189 Alternatively, you may turn off the configuration feature
8190 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
8191 so that empty directories remain visible.
8192 If you do that, you will not be required to create the subfolder when you
8193 create a directory.
8196 &lt;End of help on this topic&gt;
8197 </BODY>
8198 </HTML>
8199 ========== h_incoming_add_folder_name =========
8200 <HTML>
8201 <HEAD>
8202 <TITLE>ENTER FOLDER NAME</TITLE>
8203 </HEAD>
8204 <BODY>
8205 <H1>Enter Folder Name</H1>
8207 <P> 
8208 This is the name of the folder on the previously specified server.
8209 By default the folder name is interpreted as defining a section of your personal
8210 folder area.  This area and how you specify it are defined by the
8211 server, if one is specified.
8214 To define a folder outside the default area, prefix
8215 the path with the namespace to use when interpreting the
8216 given path.  If a namespace is specified, the folder name begins with the
8217 sharp (#) character followed by the name of the namespace
8218 and then the namespace's path-element-delimiter.  Aside from the
8219 name's format, namespaces can also imply access rights, content
8220 policy, audience, location, and, occasionally, access methods.
8223 Each server exports its own set (possibly of size one) of 
8224 namespaces.
8225 For a more detailed explanation read about
8226 <A HREF="h_folder_name_namespaces">Namespaces</A>.
8229 To specify the default for INBOX on the server you can usually just enter
8230 &quot;INBOX&quot;, and the server will understand the special meaning of
8231 that word.
8234 &lt;End of help on this topic&gt;
8235 </BODY>
8236 </HTML>
8237 ========== h_incoming_add_folder_host =========
8238 <HTML>
8239 <HEAD>
8240 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
8241 </HEAD>
8242 <BODY>
8243 <H1>Enter Incoming Folder Server</H1>
8245 You are being asked for the name of the server for use with this incoming
8246 folder.
8247 If the folder is on the machine where Alpine is running, then just enter
8248 RETURN without typing a server name.
8251 If the folder is on an IMAP server then type the server's name followed
8252 by RETURN.
8253 You may use the ^X command if the server is the same as the server that
8254 the INBOX is on.
8257 You may have to add optional extra information to the server name.
8258 For example, if the IMAP server is using a non-standard port number you
8259 would specify that by appending a colon (:) followed by the port number
8260 to the server name
8263 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8266 or you may need to specify a different protocol if the server is not an
8267 IMAP server. For example:
8270 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8273 for a POP server or
8276 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8279 for an NNTP news server.
8280 For an explanation of all of the possibilities, see
8281 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8282 for folders.
8285 There is a special command (^W) if you want to set up a folder that gets its
8286 mail from a
8287 <A HREF="h_maildrop">Mail Drop</A>.
8288 If you type that command, you will be prompted for the information for
8289 both the Mail Drop folder and the destination folder.
8292 &lt;End of help on this topic&gt;
8293 </BODY>
8294 </HTML>
8295 ========== h_incoming_add_inbox =========
8296 <HTML>
8297 <HEAD>
8298 <TITLE>ENTER INBOX SERVER</TITLE>
8299 </HEAD>
8300 <BODY>
8301 <H1>Enter INBOX Server</H1>
8303 You are being asked for the name of the server for use with
8304 the INBOX folder.
8305 Type the server's name followed by RETURN.
8308 You may have to add optional extra information to the server name.
8309 For example, if the server is using a non-standard port number you
8310 would specify that by appending a colon (:) followed by the port number
8311 to the server name
8314 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8317 or you may need to specify a different protocol if the server is not an
8318 IMAP server. For example:
8321 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8324 for a POP server.
8327 For an explanation of all of the possibilities, see
8328 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8329 for folders.
8332 If the INBOX folder is on the machine where Alpine is running, then just enter
8333 RETURN without typing a server name.
8336 There is a special command (^W) if you want to set up a folder that gets its
8337 mail from a
8338 <A HREF="h_maildrop">Mail Drop</A>.
8339 If you type that command, you will be prompted for the information for
8340 both the Mail Drop folder and the destination folder, which will be used
8341 as your INBOX folder.
8344 &lt;End of help on this topic&gt;
8345 </BODY>
8346 </HTML>
8347 ========== h_incoming_add_maildrop_destn =========
8348 <HTML>
8349 <HEAD>
8350 <TITLE>ENTER DESTINATION SERVER</TITLE>
8351 </HEAD>
8352 <BODY>
8353 <H1>Enter Destination Server</H1>
8355 You are being asked for the name of the server where the destination
8356 folder is for use with this Mail Drop incoming folder.
8357 That is, you are using a Mail Drop for this incoming folder and
8358 you've already entered
8359 the server and folder name for the Mail Drop.
8360 Now you need to enter the server for the destination folder
8361 where the mail should be copied to.
8362 Mail will come from the Mail Drop and be copied to the destination folder.
8365 Type the server's name followed by RETURN.
8366 If the folder is local to this computer, just type RETURN without entering
8367 a server name.
8370 You may have to add optional extra information to the server name.
8371 For example, if the server is using a non-standard port number you
8372 would specify that by appending a colon (:) followed by the port number
8373 to the server name
8376 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8379 For an explanation of all of the possibilities, see
8380 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8381 for folders.
8384 &lt;End of help on this topic&gt;
8385 </BODY>
8386 </HTML>
8387 ========== h_inbox_add_maildrop_destn =========
8388 <HTML>
8389 <HEAD>
8390 <TITLE>ENTER DESTINATION SERVER</TITLE>
8391 </HEAD>
8392 <BODY>
8393 <H1>Enter Destination Server</H1>
8395 You are being asked for the name of the server where the destination
8396 folder is for use with your Mail Drop INBOX.
8397 That is, you are using a Mail Drop for your INBOX and you've already entered
8398 the server and folder name for the Mail Drop.
8399 Now you need to enter the server for the destination folder
8400 where the mail should be copied to.
8401 Mail will come from the Mail Drop and be copied to the destination folder.
8404 Type the server's name followed by RETURN.
8405 If the folder is local to this computer, just type RETURN without entering
8406 a server name.
8409 You may have to add optional extra information to the server name.
8410 For example, if the server is using a non-standard port number you
8411 would specify that by appending a colon (:) followed by the port number
8412 to the server name
8415 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8418 For an explanation of all of the possibilities, see
8419 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8420 for folders.
8423 &lt;End of help on this topic&gt;
8424 </BODY>
8425 </HTML>
8426 ========== h_inbox_add_maildrop =========
8427 <HTML>
8428 <HEAD>
8429 <TITLE>ENTER MAILDROP SERVER</TITLE>
8430 </HEAD>
8431 <BODY>
8432 <H1>Enter Mail Drop Server</H1>
8434 You are being asked for the name of the Mail Drop server for use with
8435 your INBOX.
8438 Type the server's name followed by RETURN.
8441 You may have to add optional extra information to the server name.
8442 For example, if the server is using a non-standard port number you
8443 would specify that by appending a colon (:) followed by the port number
8444 to the server name
8447 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8450 or you may need to specify a different protocol if the server is not an
8451 IMAP server. For example:
8454 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8457 for a POP server or
8460 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8463 for an NNTP news server.
8464 For an explanation of all of the possibilities, see
8465 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8466 for folders.
8469 &lt;End of help on this topic&gt;
8470 </BODY>
8471 </HTML>
8472 ========== h_incoming_add_maildrop =========
8473 <HTML>
8474 <HEAD>
8475 <TITLE>ENTER MAILDROP SERVER</TITLE>
8476 </HEAD>
8477 <BODY>
8478 <H1>Enter Mail Drop Server</H1>
8480 You are being asked for the name of the Mail Drop server for use with
8481 this incoming folder.
8484 Type the server's name followed by RETURN.
8485 You may use the ^X command if the server is the same as the server that
8486 the INBOX is on.
8489 You may have to add optional extra information to the server name.
8490 For example, if the server is using a non-standard port number you
8491 would specify that by appending a colon (:) followed by the port number
8492 to the server name
8495 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8498 or you may need to specify a different protocol if the server is not an
8499 IMAP server. For example:
8502 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8505 for a POP server or
8508 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8511 for an NNTP news server.
8512 For an explanation of all of the possibilities, see
8513 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8514 for folders.
8517 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8518 RETURN without typing a server name.
8521 &lt;End of help on this topic&gt;
8522 </BODY>
8523 </HTML>
8524 ========== h_maildrop =========
8525 <HTML>
8526 <HEAD>
8527 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8528 </HEAD>
8529 <BODY>
8530 <H1>What is a Mail Drop?</H1>
8532 In some situaions it may make sense to have your mail delivered to one
8533 folder (the Mail Drop) and then when you want to read mail that has been
8534 delivered to the Mail Drop folder Alpine will move it to another
8535 destination folder.
8536 Often the Mail Drop will be a remote folder and messages will be moved from
8537 there to a local destination folder.
8540 One example where this might make sense is if the Mail Drop folder is accessible
8541 only with the POP protocol.
8542 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8543 mail from there to a local (on the same machine Alpine is running on)
8544 destination folder, where you'll read it.
8547 A Mail Drop may only be used as your Inbox or as an
8548 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8551 There is no attempt to synchronize the contents of the destination folder
8552 with the contents of the Mail Drop folder.
8553 All that happens is that all of the messages in the Mail Drop folder are
8554 copied to the destination folder and then they are deleted and expunged (if possible)
8555 from the Mail Drop folder.
8556 The next time a check for new mail is made, any messages in the Mail 
8557 Drop folder are once again copied to the destination folder and deleted
8558 and expunged from the Mail Drop folder.
8559 (If the Mail Drop folder is a news group, then the messages can't be
8560 expunged from the newsgroup. Instead, only Recent messages are copied from
8561 the newsgroup to the destination folder.)
8564 Configuration of a Mail Drop is a little different from configuration of
8565 a folder that does not use a Mail Drop because you have to specify two
8566 folder names instead of one.
8567 The two folders may be any types of folders that Alpine can normally use.
8568 They don't have to be a remote folder and a local folder, that is
8569 simply the most common usage.
8570 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8571 Drop to check for new mail.
8572 The new-mail checks will happen at the frequency set with the
8573 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8574 but with a minimum time
8575 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8576 between checks.
8577 Because of this minimum you may notice that new mail does not
8578 appear promptly when you expect it.
8579 The reason for this is to protect the server from over-zealous opening and
8580 closing of the Mail Drop folder.
8581 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8582 the end of the folder index, then the check will happen, regardless of how
8583 long it has been since the previous check.
8585 If there is new mail, that mail will be copied to the destination folder
8586 and then will be deleted from the Mail Drop.
8587 Note that using a Mail Drop with a local destination folder does not make
8588 sense if you read mail from more than one machine, because the mail is
8589 downloaded to the destination folder (which is accessible from only one
8590 machine) and deleted from the Mail Drop.
8592 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8595 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8598 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8600 The brackets are not literal.
8602 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8604 is a single character that does not appear in the MailDropFolder name.
8605 If the name doesn't contain spaces then it can be a space character.
8606 The two folder names are full technical
8607 <A HREF="h_valid_folder_names">folder names</A>
8608 as used by Alpine.
8609 Here are a couple examples to give you an idea what is being talked about:
8612 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8614 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8617 A #move folder may only be used as an
8618 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8619 an Inbox.
8620 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8621 on the
8622 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8623 option)
8624 the Add command has a subcommand &quot;Use Mail Drop&quot;
8625 which may be helpful for defining the folder in your Alpine configuration.
8626 The same is true when you edit the
8627 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8628 option in Setup/Config.
8629 Each of these configuration methods will also create the DestinationFolder
8630 if it doesn't already exist.
8631 If you are having problems, make sure the DestinationFolder exists.
8634 &lt;End of help on this topic&gt;
8635 </BODY>
8636 </HTML>
8637 ========== h_save =========
8638 <HTML>
8639 <HEAD>
8640 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8641 </HEAD>
8642 <BODY>
8643 <H1>Choose a Folder to Save Into</H1>
8645 After Exiting from this help text,
8646 type the name of the folder you want to save into and press RETURN.
8648 Press ^T to get a list of your folders to choose from.
8649 Press ^C to cancel the Save.
8651 If you have Folder Collections defined you may use
8652 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8653 the collection being saved to.
8655 If Tab Completion is enabled (it is enabled by default)
8656 you may type a Tab character to have Alpine complete the folder name for you.
8658 If Partial Match Lists is enabled (it is enabled by default) you may type
8659 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8661 If the Ctrl-R subcommand is present that means you can decide to Delete or
8662 not Delete the message you are saving after you save it.
8663 The label on that key gives the action to switch to.
8664 If it says Delete and you type Ctrl-R the label displayed will change to
8665 No Delete and the source message will be deleted after the save. If it
8666 says No Delete and you type Ctrl-R the label displayed will change to
8667 Delete and the message will not be deleted.
8668 You can control the default for the Delete parameter with the
8669 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8671 Similarly, if the Ctrl-W subcommand is present that means you can decide
8672 to Preserve the order of the messages being saved or not.
8673 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8674 will be in the same order as you see them in the source folder now.
8675 The opposite action (which is usually the default) is that you don't care
8676 about the order.
8677 The Saved messages may or may not be in the same order in the destination folder.
8678 There may be a performance penalty for choosing to save the messages in order.
8679 You can control the default for the Preserve Order parameter with the
8680 configuration feature
8681 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8684 If you haven't disabled the Save Input History and you've already done a
8685 Save earlier in this session then you may use the Up and Down arrows to retrieve
8686 a folder name used in a previous Save.
8689 &lt;End of help on this topic&gt;
8690 </BODY>
8691 </HTML>
8692 ============= h_simple_index ========================
8693 <HTML>
8694 <HEAD>
8695 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8696 </HEAD>
8697 <BODY>
8698 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8699 <!--chtml if pinemode="function_key"-->
8700 <PRE>
8701 Navigating the List of Messages               General Alpine Commands
8702 -------------------------------               -----------------------
8703  F5   Move to previous message                 F1   Show this help text
8704  F6   Move to next message
8705  F7   Show previous screen of messages
8706  F8   Show next screen of messages
8708 Message Selection Commands
8709 --------------------------
8710  F3   Exit the Message Select menu (canceling Send command)
8711  F4   Select the currently highlighted message
8712  F9   Mark the currently highlighted message as deleted
8713  F10  Undelete (remove deletion mark from) the highlighted message
8714 </PRE>
8715 <!--chtml else-->
8716 <PRE>
8717 Navigating the List of Messages               General Alpine Commands
8718 -------------------------------               -----------------------
8719   P  Move to previous message                  ?  Show this help text
8720   N  Move to next message
8721   -  Show previous screen of messages
8722  Spc (space bar) Show next screen of messages
8724 Message Selection Commands
8725 --------------------------
8726   E  Exit the Message Select menu (canceling Send command)
8727   S  Select the currently highlighted message
8728   D  Mark the currently highlighted message as deleted
8729   U  Undelete (remove deletion mark from) the highlighted message
8730 </PRE>
8731 <!--chtml endif-->
8733 <H2>Description of the Select Postponed Message Screen</H2>
8735 This screen allows you to select one of several previously postponed
8736 messages in order to continue composition.  Your options are very limited
8737 -- the screen is not meant to let you manipulate these messages.  However,
8738 you may now delete messages from this list.  Once you choose a message,
8739 Alpine reads it in and puts you into the regular message composer.
8742 Messages do not stay in this postponed state automatically.  If you select
8743 a message and then want to postpone it again, use the normal postpone
8744 (Ctrl-O) command in the composer.
8747 If you exit this screen without selecting a message, the Compose command
8748 that got you here is canceled.  Other than messages explicitly marked
8749 &quot;Deleted&quot;, no messages will be removed.
8752 &lt;End of help on this topic&gt;
8753 </BODY>
8754 </HTML>
8755 ============= h_collection_screen ========================
8756 <HTML>
8757 <HEAD>
8758 <TITLE>COLLECTION LIST screen</TITLE>
8759 </HEAD>
8760 <BODY>
8761 <H1>COLLECTION LIST screen</H1>
8763 The COLLECTION LIST screen is used to select one of your  
8764 collection definitions to display the folders they contain.  See
8765 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8766 detailed explanation of collections.<P>
8768 To manage your collection definitions (Add, Change, Delete, etc.), use
8769 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8770 MAIN MENU.
8773 &lt;End of help on this topic&gt;
8774 </BODY>
8775 </HTML>
8776 ============= h_collection_maint ========================
8777 <HTML>
8778 <HEAD>
8779 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8780 </HEAD>
8781 <BODY>
8782 <H1>SETUP COLLECTION LIST screen</H1>
8784 The SETUP COLLECTION LIST screen lets you manage your collection
8785 definitions.  See 
8786 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8787 for detailed explanation of collections.<P>
8789 Maintenance commands include:
8790 <DL>
8791 <DT>Change
8792 <!--chtml if pinemode="function_key"-->
8793 (F4)
8794 <!--chtml else-->
8796 <!--chtml endif-->
8797 </DT>
8799 <DD>Modify attributes of the selected collection definition.
8801 <DT>Add Cltn
8802 <!--chtml if pinemode="function_key"-->
8803 (F9)
8804 <!--chtml else-->
8806 <!--chtml endif-->
8807 </DT>
8809 <DD>Create a new collection definition.
8810 </DD>
8812 <DT>Del Cltn
8813 <!--chtml if pinemode="function_key"-->
8814 (F10)
8815 <!--chtml else-->
8817 <!--chtml endif-->
8818 </DT>
8820 <DD>Delete the selected collection definition.<BR>
8821 NOTE: The folders and directories referred to by the
8822 collection definition are <EM>NOT</EM> deleted.  Folders must
8823 be deleted, if that's what you wish to do, from the 
8824 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8825 individual folders in a collection.
8826 </DD>
8828 <DT>Shuffle
8829 <!--chtml if pinemode="function_key"-->
8830 (F11)
8831 <!--chtml else-->
8833 <!--chtml endif-->
8834 </DT>
8836 <DD>Change the order of the displayed collections.  Alpine will offer
8837 to move the currently selected collection one position UP
8838 or DOWN.
8839 </DD>
8840 </DL>
8843 &lt;End of help on this topic&gt;
8844 </BODY>
8845 </HTML>
8846 ============ h_what_are_collections ==========
8847 <HTML>
8848 <HEAD>
8849 <TITLE>Folder Collections Explained</TITLE>
8850 </HEAD>
8851 <BODY>
8852 <H1>Folder Collections Explained</H1>
8855 Those of you with simple mail configurations will just see a list of all the
8856 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8857 The special folders for INBOX, sent mail and saved messages
8858 will appear at the top of the list.  All others are in alphabetical order.
8860 If you
8861 or your system administrator have defined more than one collection or if
8862 you have a collection (for newsgroups or email folders) defined on your 
8863 system, then you will see the COLLECTION LIST screen first when choosing 
8864 FOLDER LIST from Alpine's MAIN MENU.
8866 <H2>Why have multiple folder collections?</H2>
8868 For Alpine users who only maintain email folders (and not too many) on one host, 
8869 a single folder collection is probably sufficient.<P>
8871 However, people who have more than one email account - for example, one 
8872 at their university, and one with their personal Internet Service Provider - 
8873 will have different sets of folders on different hosts, and they may want to
8874 access them all from the same installation of Alpine, rather than use different 
8875 software and/or log into other hosts to manipulate messages in different 
8876 accounts.  (If in doubt whether one of your email accounts can be accessed 
8877 with Alpine, contact the technical support people for that account.)  Even people
8878 who have only one email account on one host, but have dozens or
8879 hundreds of email folders, may want to arrange these folders together in a 
8880 meaningful way.<BR>
8881 That is where multiple collections come in.
8883 <H2>Types of Collections</H2>
8884 <DL>
8885 <DT>INCOMING FOLDERS</DT>
8886 <DD>&quot;Incoming Message Folders&quot; 
8887 is a special collection typically used to supplement your single INBOX.  
8888 All the folders here are meant to be ones that receive incoming messages, 
8889 which you intend to check more or less frequently.  
8890 You may have multiple folders like this because you or your systems 
8891 administrator have set up an external program or you may have set up
8892 Alpine to filter incoming 
8893 messages into different folders, based on certain criteria such as 
8894 sender, recipient, or subject; or because you have multiple accounts and 
8895 wish to check their INBOXes easily.  This collection is established by 
8896 setting the 
8897 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8898 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8899 MAIN MENU.
8900 </DD>
8902 <DT>NEWS</DT>
8903 <DD>You can also define a collection specifically for
8904 newsgroups.  Alpine does this for you implicitly when you 
8905 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8906 in your Alpine configuration.  The news collection appears last in the 
8907 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8908 and Alpine knows not to save messages there.
8909 </DD>
8911 <DT>DEFAULT COLLECTION</DT>
8912 <DD>This is the default collection for your saved and sent messages folders.
8913 </DD>
8914 </DL>
8918 <H2>Defining Collections</H2>
8920 In the absence of any folder-collection definitions, Alpine will assume a
8921 single default folder collection.
8922 <!--chtml if pinemode="os_windows"-->
8923 <!--chtml else-->
8924 If necessary, Alpine will create the directory
8925 &quot;mail&quot; in your Unix home directory 
8926 to hold your folders.
8927 <!--chtml endif-->
8929 You can use the 
8930 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8931 the MAIN MENU, to manage your collection list.  
8933 &lt;End of help on this topic&gt;
8934 </BODY>
8935 </HTML>
8936 ===== h_select_address_screen =====
8937 <HTML>
8938 <HEAD>
8939 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8940 </HEAD>
8941 <BODY>
8942 <H1>SELECT AN ADDRESS SCREEN</H1>
8943 <H2>COMMANDS</H2>
8944 <!--chtml if pinemode="function_key"-->
8945 <PRE>
8946 Available  Commands                        
8947 -------------------------------            
8948 F1  Show Help Text
8949 F3  Exit without selecting anything
8950 F4  Select the highlighted address
8951 F5  Move highlight to previous address
8952 F6  Move highlight to next address
8953 F7  Previous page of addresses
8954 F8  Next page of addresses
8955 F11 Print
8956 F12 WhereIs
8957 </PRE>
8958 <!--chtml else-->
8959 <PRE>
8960 Navigation                     General Alpine Commands
8961 -------------------------      -----------------------
8962  P  Prev Address                ?  Display this help text
8963  N  Next Address                E  Exit without selecting anything
8964  -  Previous page               %  Print
8965 Spc (space bar) Next page
8966  W  WhereIs
8968 Select Command
8969 ------------------------------------------------
8970  S  Select the highlighted address
8971 </PRE>
8972 <!--chtml endif-->
8974 <H2>Description of the Select Address Screen</H2>
8976 This screen gives you an easy way to select an address from all of
8977 the address book entries that match the prefix typed so far.
8979 <P><UL>
8980 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8981 </UL>
8983 &lt;End of help on this topic&gt;
8984 </BODY>
8985 </HTML>
8986 ===== h_select_rule_screen =====
8987 <HTML>
8988 <HEAD>
8989 <TITLE>SELECT A RULE SCREEN</TITLE>
8990 </HEAD>
8991 <BODY>
8992 <H1>SELECT A RULE SCREEN</H1>
8993 <H2>COMMANDS</H2>
8994 <!--chtml if pinemode="function_key"-->
8995 <PRE>
8996 Available  Commands                        
8997 -------------------------------            
8998 F1  Show Help Text
8999 F3  Exit without selecting anything
9000 F4  Select the highlighted rule
9001 F5  Move highlight to previous rule
9002 F6  Move highlight to next rule
9003 F7  Previous page of rules
9004 F8  Next page of rules
9005 F11 Print
9006 F12 WhereIs
9007 </PRE>
9008 <!--chtml else-->
9009 <PRE>
9010 Navigation                     General Alpine Commands
9011 -------------------------      -----------------------
9012  P  Prev Rule                   ?  Display this help text
9013  N  Next Rule                   E  Exit without selecting anything
9014  -  Previous page               %  Print
9015 Spc (space bar) Next page
9016  W  WhereIs
9018 Select Command
9019 ------------------------------------------------
9020  S  Select the highlighted rule
9021 </PRE>
9022 <!--chtml endif-->
9024 <H2>Description of the Select Rule Screen</H2>
9026 This screen just gives you an easy way to select a rule from all of your
9027 defined rules.
9028 The list of rules presented is the list of nicknames of all of the rules
9029 defined using Setup/Rules.
9030 For selecting messages, it is likely that the Indexcolor rules and possibly
9031 the Roles rules will be most useful.
9032 The others are there also, in case you find a use for them.
9034 In order for this to be useful for selecting messages, the nicknames of
9035 the rules have to be different.
9036 Alpine actually just gets the nickname of the rule that you select and then
9037 looks up that rule using the nickname.
9038 So if there are duplicate nicknames, the first rule that has that
9039 nickname will be used.
9041 <P><UL>
9042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9043 </UL>
9045 &lt;End of help on this topic&gt;
9046 </BODY>
9047 </HTML>
9048 ===== h_select_priority_screen =====
9049 <HTML>
9050 <HEAD>
9051 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
9052 </HEAD>
9053 <BODY>
9054 <H1>SELECT A PRIORITY SCREEN</H1>
9055 <H2>COMMANDS</H2>
9056 <!--chtml if pinemode="function_key"-->
9057 <PRE>
9058 Available  Commands                        
9059 -------------------------------            
9060 F1  Show Help Text
9061 F3  Exit without selecting anything
9062 F4  Select the highlighted priority
9063 F5  Move highlight to previous priority
9064 F6  Move highlight to next priority
9065 F7  Previous page of priorities
9066 F8  Next page of priorities
9067 F11 Print
9068 F12 WhereIs
9069 </PRE>
9070 <!--chtml else-->
9071 <PRE>
9072 Navigation                     General Alpine Commands
9073 -------------------------      -----------------------
9074  P  Prev Priority               ?  Display this help text
9075  N  Next Priority               E  Exit without selecting anything
9076  -  Previous page               %  Print
9077 Spc (space bar) Next page
9078  W  WhereIs
9080 Select Command
9081 ------------------------------------------------
9082  S  Select the highlighted priority
9083 </PRE>
9084 <!--chtml endif-->
9086 <H2>Description of the Select Priority Screen</H2>
9088 This screen gives you a way to select a priority for the message you are sending.
9089 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
9090 Some mail programs will display an indication of the priority level to
9091 the recipient of the message, some will ignore it.
9092 Even in cases where the mail programs of both the sender and the recipient
9093 agree on the meaning of this header, keep in mind that it is
9094 something that the sender sets so it is only an indication
9095 of the priority that the sender attaches to the mail.
9096 Alpine can be made to display an indication of this priority in incoming
9097 messages by use of one of the tokens
9098 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
9099 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
9100 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
9102 <P><UL>
9103 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9104 </UL>
9106 &lt;End of help on this topic&gt;
9107 </BODY>
9108 </HTML>
9109 ===== h_select_keyword_screen =====
9110 <HTML>
9111 <HEAD>
9112 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
9113 </HEAD>
9114 <BODY>
9115 <H1>SELECT A KEYWORD SCREEN</H1>
9116 <H2>COMMANDS</H2>
9117 <!--chtml if pinemode="function_key"-->
9118 <PRE>
9119 Available  Commands                        
9120 -------------------------------            
9121 F1  Show Help Text
9122 F3  Exit without selecting anything
9123 F4  Select the highlighted keyword
9124 F5  Move highlight to previous keyword
9125 F6  Move highlight to next keyword
9126 F7  Previous page of keywords
9127 F8  Next page of keywords
9128 F11 Print
9129 F12 WhereIs
9130 </PRE>
9131 <!--chtml else-->
9132 <PRE>
9133 Navigation                     General Alpine Commands
9134 -------------------------      -----------------------
9135  P  Prev Keyword                ?  Display this help text
9136  N  Next Keyword                E  Exit without selecting anything
9137  -  Previous page               %  Print
9138 Spc (space bar) Next page
9139  W  WhereIs
9141 Select Command
9142 ------------------------------------------------
9143  S  Select the highlighted keyword
9144 </PRE>
9145 <!--chtml endif-->
9147 <H2>Description of the Select Keyword Screen</H2>
9149 This screen just gives you an easy way to select a keyword.
9150 The list of keywords presented is the list of all keywords defined in your 
9151 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9152 If you have given a keyword a nickname, that nickname is displayed
9153 instead of the actual keyword.
9155 <P><UL>
9156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9157 </UL>
9159 &lt;End of help on this topic&gt;
9160 </BODY>
9161 </HTML>
9162 ===== h_select_charset_screen =====
9163 <HTML>
9164 <HEAD>
9165 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
9166 </HEAD>
9167 <BODY>
9168 <H1>SELECT A CHARACTER SET SCREEN</H1>
9169 <H2>COMMANDS</H2>
9170 <!--chtml if pinemode="function_key"-->
9171 <PRE>
9172 Available  Commands                        
9173 -------------------------------            
9174 F1  Show Help Text
9175 F3  Exit without selecting anything
9176 F4  Select the highlighted character set
9177 F5  Move highlight to previous character set
9178 F6  Move highlight to next character set
9179 F7  Previous page of character sets
9180 F8  Next page of character sets
9181 F11 Print
9182 F12 WhereIs
9183 </PRE>
9184 <!--chtml else-->
9185 <PRE>
9186 Navigation                     General Alpine Commands
9187 -------------------------      -----------------------
9188  P  Prev Character Set          ?  Display this help text
9189  N  Next Character Set          E  Exit without selecting anything
9190  -  Previous page               %  Print
9191 Spc (space bar) Next page
9192  W  WhereIs
9194 Select Command
9195 ------------------------------------------------
9196  S  Select the highlighted character set
9197 </PRE>
9198 <!--chtml endif-->
9200 <H2>Description of the Select A Character Set Screen</H2>
9202 This screen just gives you an easy way to select a character set from the
9203 set of character sets Alpine knows about.
9204 The list presented will vary slightly depending on what option you are
9205 selecting the character set for.
9207 <P><UL>
9208 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9209 </UL>
9211 &lt;End of help on this topic&gt;
9212 </BODY>
9213 </HTML>
9214 ===== h_select_multcharsets_screen =====
9215 <HTML>
9216 <HEAD>
9217 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
9218 </HEAD>
9219 <BODY>
9220 <H1>SELECT CHARACTER SETS SCREEN</H1>
9221 <H2>COMMANDS</H2>
9222 <!--chtml if pinemode="function_key"-->
9223 <PRE>
9224 Available  Commands
9225 -------------------------------            
9226 F1  Show Help Text
9227 F3  Exit without selecting anything
9228 F4  Select the highlighted charset (or chosen charsets in ListMode)
9229 F5  Move highlight to previous charset
9230 F6  Move highlight to next charset
9231 F7  Previous page of charsets
9232 F8  Next page of charsets
9233 F9  Toggle choices when using ListMode
9234 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
9235 F11 Print
9236 F12 WhereIs
9237 </PRE>
9238 <!--chtml else-->
9239 <PRE>
9240 Navigation                     General Alpine Commands
9241 -------------------------      -----------------------
9242  P  Prev Charset                ?  Display this help text
9243  N  Next Charset                E  Exit without selecting anything
9244  -  Previous page               %  Print
9245 Spc (space bar) Next page
9246  W  WhereIs
9248 Select Command
9249 ------------------------------------------------
9250  S  Select the highlighted charset (or chosen charsets in ListMode)
9251  L  Turn on ListMode (makes it easy to choose multiple charsets)
9252  1  Turn off ListMode
9253  X  Toggle choices when using ListMode
9254 </PRE>
9255 <!--chtml endif-->
9257 <H2>Description of the Select Character Set Screen</H2>
9259 This screen just gives you an easy way to select a character set or a list of
9260 character sets.
9261 The list of character sets presented is the list of all character sets known to
9262 Alpine.
9263 You may select other character sets by typing them in directly.
9265 <P><UL>
9266 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9267 </UL>
9269 &lt;End of help on this topic&gt;
9270 </BODY>
9271 </HTML>
9272 ===== h_select_multkeyword_screen =====
9273 <HTML>
9274 <HEAD>
9275 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
9276 </HEAD>
9277 <BODY>
9278 <H1>SELECT KEYWORDS SCREEN</H1>
9279 <H2>COMMANDS</H2>
9280 <!--chtml if pinemode="function_key"-->
9281 <PRE>
9282 Available  Commands
9283 -------------------------------            
9284 F1  Show Help Text
9285 F3  Exit without selecting anything
9286 F4  Select the highlighted keyword (or chosen keywords in ListMode)
9287 F5  Move highlight to previous keyword
9288 F6  Move highlight to next keyword
9289 F7  Previous page of keywords
9290 F8  Next page of keywords
9291 F9  Toggle choices when using ListMode
9292 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
9293 F11 Print
9294 F12 WhereIs
9295 </PRE>
9296 <!--chtml else-->
9297 <PRE>
9298 Navigation                     General Alpine Commands
9299 -------------------------      -----------------------
9300  P  Prev Keyword                ?  Display this help text
9301  N  Next Keyword                E  Exit without selecting anything
9302  -  Previous page               %  Print
9303 Spc (space bar) Next page
9304  W  WhereIs
9306 Select Command
9307 ------------------------------------------------
9308  S  Select the highlighted keyword (or chosen keywords in ListMode)
9309  L  Turn on ListMode (makes it easy to choose multiple keywords)
9310  1  Turn off ListMode
9311  X  Toggle choices when using ListMode
9312 </PRE>
9313 <!--chtml endif-->
9315 <H2>Description of the Select Keyword Screen</H2>
9317 This screen just gives you an easy way to select a keyword or a list of
9318 keywords.
9319 The list of keywords presented is the list of all keywords defined in your 
9320 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9321 If you have given a keyword a nickname, that nickname is displayed
9322 instead of the actual keyword.
9324 <P><UL>
9325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9326 </UL>
9328 &lt;End of help on this topic&gt;
9329 </BODY>
9330 </HTML>
9331 ===== h_select_incoming_to_monitor =====
9332 <HTML>
9333 <HEAD>
9334 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
9335 </HEAD>
9336 <BODY>
9337 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
9338 <H2>COMMANDS</H2>
9339 <!--chtml if pinemode="function_key"-->
9340 <PRE>
9341 Available  Commands
9342 -------------------------------            
9343 F1  Show Help Text
9344 F3  Exit without selecting anything
9345 F4  Select the marked folders
9346 F5  Move highlight to previous folder
9347 F6  Move highlight to next folder
9348 F7  Previous page of folders
9349 F8  Next page of folders
9350 F9  Toggle choices on or off
9351 F11 Print
9352 F12 WhereIs
9353 </PRE>
9354 <!--chtml else-->
9355 <PRE>
9356 Navigation                     General Alpine Commands
9357 -------------------------      -----------------------
9358  P  Prev Folder                 ?  Display this help text
9359  N  Next Folder                ^C  exit without changing anything
9360  -  Previous page               %  Print
9361 Spc (space bar) Next page
9362  W  WhereIs
9364 Select Command
9365 ------------------------------------------------
9366  S  Select the marked folders
9367  X  Toggle choices on or off
9368 </PRE>
9369 <!--chtml endif-->
9371 <H2>Description of the Select Folders to Check Screen</H2>
9373 This screen is only useful if the feature
9374 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9375 is set.
9376 By default, when you set that feature all of your incoming folders
9377 will be checked periodically for Unseen messages.
9378 By using this screen, you may restrict the set of monitored folders to
9379 a subset of all of the incoming folders.
9381 Mark the folders you want to monitor for Unseen messages with
9382 an &quot;X&quot;.
9383 When you've finished marking all your selections use the Select
9384 command to register your choices.
9385 To return to the default of checking all incoming folders
9386 delete all folders or unmark all folders.
9388 <P><UL>
9389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9390 </UL>
9392 &lt;End of help on this topic&gt;
9393 </BODY>
9394 </HTML>
9395 ===== h_role_select =====
9396 <HTML>
9397 <HEAD>
9398 <TITLE>ROLES SCREEN</TITLE>
9399 </HEAD>
9400 <BODY>
9401 <H1>ROLES SCREEN</H1>
9402 <H2>ROLES COMMANDS</H2>
9403 <!--chtml if pinemode="function_key"-->
9404 <PRE>
9405 Available  Commands                        
9406 -------------------------------            
9407 F1  Show Help Text
9408 F3  Exit without a selection
9409 F4  Select a role to use in composition
9410 F5  Move to previous role
9411 F6  Move to next role
9412 F7  Previous page of roles
9413 F8  Next page of roles
9414 F11 Change Default Role
9415 F12 Whereis (search role nicknames)
9416 </PRE>
9417 <!--chtml else-->
9418 <PRE>
9419 Navigation                     General Alpine Commands
9420 -------------------------      -----------------------
9421  P  Prev Role                     ?  Display this help text
9422  N  Next Role                     E  Exit without a selection
9423  -  Previous page
9424 Spc (space bar) Next page
9425  W  WhereIs (search for word in role nicknames)
9427 Select Role Commands
9428 ------------------------------------------------
9429  [Return]  Select highlighted role
9430  D         Change Default Role
9431 </PRE>
9432 <!--chtml endif-->
9434 <H2>Description of the Roles Screen</H2>
9436 With this screen you select a role to be used in the composition of a
9437 message.
9438 Use the Previous and Next commands to highlight the role you wish to
9439 use.
9440 When you type carriage return you will be placed in the composer using the highlighted role.
9442 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9443 available unless you set them up.
9444 You may do so by using the Setup/Rules command on the MAIN MENU.
9446 By using the D command, you may set a default role that will persist until
9447 you change it or until you exit Alpine.
9448 The D command toggles through three states: set the default role, unset the
9449 default role, and leave the default role as it is.
9450 <P><UL>
9451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9452 </UL>
9454 &lt;End of help on this topic&gt;
9455 </BODY>
9456 </HTML>
9457 ===== h_role_abook_select =====
9458 <HTML>
9459 <HEAD>
9460 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9461 </HEAD>
9462 <BODY>
9463 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9464 <H2>COMMANDS</H2>
9465 <!--chtml if pinemode="function_key"-->
9466 <PRE>
9467 Available  Commands                        
9468 -------------------------------            
9469 F1  Show Help Text
9470 F3  Exit screen without selecting anything
9471 F4  Select highlighted address book
9472 F5  Move to previous address book
9473 F6  Move to next address book
9474 F7  Previous page of address books
9475 F8  Next page of address books
9476 F12 Whereis
9477 </PRE>
9478 <!--chtml else-->
9479 <PRE>
9480 Navigation                     General Alpine Commands
9481 -------------------------      -----------------------
9482  P  Previous addrbook          ?  Display this help text
9483  N  Next addrbook
9484  -  Previous page
9485 Spc (space bar) Next page
9486  W  WhereIs
9488 Select Role Commands
9489 ------------------------------------------------
9490  S  Select highlighted address book
9491  E  Exit screen without selecting anything
9492 </PRE>
9493 <!--chtml endif-->
9495 <H2>Description of the Select Address Book Screen</H2>
9497 This screen helps you select one of your address books.
9498 Use the Previous and Next commands to highlight the address book you wish to
9499 select.
9500 <P><UL>
9501 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9502 </UL>
9504 &lt;End of help on this topic&gt;
9505 </BODY>
9506 </HTML>
9507 ======== h_rule_patterns =============
9508 <HTML>
9509 <HEAD>
9510 <TITLE>PATTERNS</TITLE>
9511 </HEAD>
9512 <BODY>
9513 <H1>PATTERNS</H1>
9514 Patterns are used with Roles, Filtering, Index Coloring,
9515 Scoring, Other Rules, and Search Rules.
9516 Patterns are compared with a message to see if there is a match.
9517 For Filtering, the messages being checked are all the messages in the
9518 folder, one at a time.
9519 For Index Line Coloring, each message that is visible on the screen is
9520 checked for matches with the Index Coloring Patterns.
9521 Roles are used with the Reply, Forward, and Compose commands.
9522 For Reply, the message used to compare the Pattern with is the message
9523 being replied to;
9524 for Forward, the message used to compare the Pattern with is the message
9525 being forwarded;
9526 and for Compose, there is no message, so the parts of the Pattern that depend
9527 on a message (everything other than Current Folder Type and the
9528 Beginning of Month and Year)
9529 are not used.
9530 Only the Current Folder Type matters for Compose (plus the Beginning of
9531 Month or Year, which you wouldn't usually use for a Role).
9532 For Scoring, the message being scored is compared with all of the Score
9533 Patterns, and the Score Values from the ones that match are added together to 
9534 get the message's score.
9535 For Other Rules, there is no message. Only the Current Folder Type is checked
9536 for Other Rules.
9538 Each Pattern has several possible parts, all of which are optional.
9539 In order for there to be a match, <EM>ALL</EM> of the
9540 <EM>defined</EM> parts of the Pattern must match the message.
9541 If a part is not defined it is considered a match, but note that a filtering
9542 Pattern must have at least one defined part or it will be ignored.
9543 For example, if the To pattern is not defined it will be
9544 displayed as
9546 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9548 That is considered a match because it is not defined.
9549 This means that the Pattern with nothing defined is a match if the
9550 Current Folder Type matches, but there is an exception that was mentioned
9551 in the previous paragraph.
9552 Because filtering is a potentially destructive action, filtering Patterns
9553 with nothing other than Current Folder Type defined are ignored.
9554 If you really want a filtering Pattern to match all messages (subject to
9555 Current Folder Type) the best way to do it is to define a Score interval
9556 that includes all possible scores.
9557 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9558 This can be used even if you haven't defined any rules to Set Scores.
9560 There are six predefined header patterns called the To, From, Sender, Cc, News,
9561 and Subject patterns.
9562 Besides those six predefined header patterns, you may add
9563 additional header patterns with header fieldnames of your choosing.
9564 You add an extra header pattern by placing the cursor on one of the
9565 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9566 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9567 and the Partic pattern is a header pattern that stands for
9568 Participant (From OR To OR Cc).
9569 (Defining the Recip pattern does not have the same effect as defining both
9570 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9571 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9572 Instead of comparing this pattern's text against only the contents of
9573 a particular header field, the text for the AllText pattern is compared
9574 with text anywhere in the message's header or body, and the text for the
9575 BodyText pattern is compared with text anywhere in the message's body.
9577 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9578 &quot;!&quot; &quot;toggle NOT&quot; command.
9579 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9580 &quot;!&quot; at the beginning of the pattern line.
9581 When the &quot;!&quot; is present, it reverses the meaning of the match.
9582 That is, if the pattern matches then it is considered to NOT be a match, and
9583 if it does not match it is considered to be a match.
9585 Don't make the mistake of putting the &quot;!&quot; in the data field for
9586 a pattern.
9587 For example, if you type the characters &quot;!urgent&quot; into the Subject
9588 pattern, the pattern will look like:
9590 <PRE>
9591  Subject pattern = !urgent
9592 </PRE>
9594 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9595 In order to match messages that do not have &quot;urgent&quot; in
9596 their Subject field, first type the characters &quot;urgent&quot; followed
9597 by carriage return for the value of the Subject pattern, then negate it
9598 by typing the &quot;!&quot; command.
9599 It should look like
9601 <PRE>
9602  ! Subject pattern = urgent
9603 </PRE>
9605 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9606 be a complete email address, part of an address, or a random set of
9607 characters to match against.
9608 It may also be a list of such patterns, which means you
9609 are looking for a match against the first pattern in the list <EM>OR</EM>
9610 the second pattern <EM>OR</EM> the third and so on.
9611 For example, a Subject pattern equal to
9613 <PRE>
9614  Subject pattern = urgent
9615                    emergency
9616                    alert
9617 </PRE>
9619 would match all messages with a subject that contained at least one
9620 of those words.
9621 It would also match subjects containing the words &quot;alerts&quot; or
9622 &quot;Urgently&quot;.
9624 The same example with &quot;NOT&quot; turned on would be
9626 <PRE>
9627  ! Subject pattern = urgent
9628                      emergency
9629                      alert
9630 </PRE>
9632 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9633 those words.
9634 You can use the &quot;Add Value&quot; command to add new words to the list,
9635 or you can enter them as a comma-separated list.
9637 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9638 present for a match.
9639 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9640 pattern2 must be present,
9641 and that is exactly what using a list does.)
9643 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9644 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9645 when checking for matches for Scoring.
9646 There are five similar settings that relate to the status of the message.
9647 These settings rely on the message being New or not, Deleted or not,
9648 Answered or not, Important or not, and Recent or not.
9649 There are also some other miscellaneous settings.
9650 The first is the Age of the message in days.
9651 Another is the Size of the message, in bytes.
9652 The third is a setting that detects whether or not the Subject of a
9653 message contains raw 8-bit characters (unencoded characters with the most
9654 significant bit set).
9655 There is a setting that detects whether or not this is the first time
9656 Alpine has been run this month (doesn't depend on individual messages),
9657 and another that detects whether or not this is the first time Alpine has
9658 been run this year.
9659 Other parts of the Pattern detect whether or not the From address of a
9660 message appears in your address book, whether or not certain keywords
9661 are set for a message, and whether or not certain character sets are
9662 used in a message.
9664 <H2>Parts of a Pattern</H2>
9666 <H3>Header patterns</H3>
9668 A header pattern is simply text that is searched for in the corresponding
9669 header field.
9670 For example, if a Pattern has a From header pattern with the value
9671 &quot;@company.com&quot;, then only messages that have a From header
9672 that contains the text &quot;@company.com&quot; will be possible
9673 matches.
9674 Matches don't have to be exact.
9675 For example, if the relevant field of a message contains the text
9676 &quot;mailbox@domain&quot; somewhere
9677 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9678 &quot;mailbox@domain&quot; are all matches.
9680 All parts of the Pattern must match so, for example,
9681 if a message matches a defined
9682 From pattern, it still must be checked against the other parts of the
9683 Pattern that have been defined.
9684 The To header pattern is a slightly special case.
9685 If the message being checked has a Resent-To header
9686 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9687 there are used in place of the addresses in the To header.
9688 This is only true for the To header.
9689 Resent-cc and Resent-From headers are never used unless you add them
9690 with the eXtraHdrs command.
9692 The meaning of a header pattern may be negated with the
9693 &quot;!&quot; &quot;toggle NOT&quot; command.
9694 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9695 &quot;!&quot; at the beginning of the pattern line.
9696 It would look something like
9698 <PRE>
9699  ! From pattern = susan@example.com
9700 </PRE>
9702 When the &quot;!&quot; is present, it reverses the meaning of the match.
9704 If you want to check for the presence of a header field but don't care
9705 about its value, then
9706 the empty pattern that you get by entering a pair of
9707 double quotes (&quot;&quot;) should match any message that
9708 has the corresponding header field.
9710 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9712 AllText patterns are just like header patterns except that the text is
9713 searched for anywhere in the message's headers or body, not just in the
9714 contents of a particular header field.
9717 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9719 BodyText patterns are just like header patterns except that the text is
9720 searched for anywhere in the message's body, not just in the
9721 contents of a particular header field.
9724 If there is more than one header pattern or AllText pattern or BodyText pattern
9725 for which you want to take the
9726 same action there is a shorthand notation that may be used.
9727 Any of these patterns may be a list of patterns instead of
9728 just a single pattern.
9729 If any one of the patterns in the list matches the message
9730 then it is considered a match.
9731 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9732 you to use the same role when replying to messages, you might have
9733 a To pattern that looks like
9735 <PRE>
9736  To pattern = company1.com
9737               company2.com
9738 </PRE>
9740 This means that if the mail you are replying to was addressed to
9741 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9742 then this Pattern is a match and the same actions will be taken.
9744 The meaning of an AllText or BodyText pattern may be negated with the
9745 &quot;!&quot; &quot;toggle NOT&quot; command.
9746 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9747 &quot;!&quot; at the beginning of the pattern line.
9748 When the &quot;!&quot; is present, it reverses the meaning of the match.
9750 A technicality: Since comma is the character used to separate multiple values
9751 in any of the fields that may have multiple values (such as header patterns,
9752 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9753 you must escape comma with a
9754 backslash (&#92;) if you want to include a literal comma in one of those fields.
9755 In other words, if you type a backslash followed by a comma it will
9756 be interpreted as a comma by Alpine, instead of as a separator between
9757 pattern values.
9758 All other backslashes (those not followed by a comma) are literal
9759 backslashes and should not be escaped.
9760 It's unlikely you'll ever need to enter a literal comma or backslash in
9761 any of the patterns.
9763 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9765 The &quot;Current Folder Type&quot; may be set to one of four different
9766 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9767 &quot;Specific&quot;.
9768 If the value is set to &quot;News&quot;, then the
9769 Pattern will only match if the currently open folder is a newsgroup.
9770 The value &quot;Email&quot; only matches if the current folder is not news and
9771 the value &quot;Any&quot; causes any folder to match.
9772 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9773 then you must fill in a value for &quot;Folder&quot;, which is on the line
9774 below the &quot;Specific&quot; line.
9775 In this case you will only get a match if the currently open folder is
9776 the specific folder you list.
9777 You may give a list of folders instead of just a single
9778 folder name, in which case the Pattern will match if the open folder is
9779 any one of the folders in the list.
9780 The name of each folder in the list may be either &quot;INBOX&quot;,
9781 the technical specification
9782 of the folder (like what appears in your configuration file) or, if the
9783 folder is one of your incoming folders, it may be the nickname you've given
9784 the folder.
9785 Here are some samples of specific folder names:
9787 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9789 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9791 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9793 The easiest way to fill in the &quot;Folder&quot; field is to use
9794 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9795 highlighted, or to use the &quot;Take&quot; command with the configuration
9796 feature
9797 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9798 turned on.
9800 When reading a newsgroup, there may be a performance penalty
9801 incurred when collecting the information necessary to check whether
9802 or not a Pattern matches a message.
9803 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9804 If you have Patterns with a Current Folder Type of either
9805 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9806 Index Line Coloring or Scoring, you may experience
9807 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9809 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9811 The &quot;Age Interval&quot; may be set to an interval of message
9812 ages that should be considered a match.
9813 Like the other parts of the Pattern, if it is unset it will be ignored.
9814 The Age Interval looks like
9816 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9818 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9819 than or equal to zero.
9820 The special value &quot;INF&quot; may be used for
9821 the max value. It represents infinity.
9823 Actually, this option may be defined as a list of intervals instead
9824 of just a single interval.
9825 The list is separated by commas.
9826 It can look like
9828 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9830 When there is an Age Interval defined, it is a match if the age, in days, of
9831 the message is contained in any of the intervals.
9832 The intervals include both endpoints.
9834 Even though this option is called Age, it isn't actually
9835 the <EM>age</EM> of the message.
9836 Instead, it is how many days ago the message arrived in one of your folders.
9837 If the current time is a little past midnight, then a message that arrived
9838 just before midnight arrived yesterday, even though the message is only
9839 a few minutes old.
9840 By default, the date being used is not the date in the Date
9841 header of the message.
9842 It is the date that the message arrived in one of your folders.
9843 When you Save a message from one folder to another that arrival date
9844 is preserved.
9845 If you would like to use the date in the Date header that is possible.
9846 Turn on the option
9847 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9848 near the bottom of the rule definition.
9849 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9851 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9853 The &quot;Size Interval&quot; may be set to an interval of message
9854 sizes that should be considered a match.
9855 Like the other parts of the Pattern, if it is unset it will be ignored.
9856 The Size Interval looks like
9858 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9860 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9861 than or equal to zero.
9862 The special value &quot;INF&quot; may be used for
9863 the max value. It represents infinity.
9865 Actually, this option may be defined as a list of intervals instead
9866 of just a single interval.
9867 The list is separated by commas.
9868 It can look like
9870 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9872 When there is a Size Interval defined, it is a match if the size, in bytes, of
9873 the message is contained in any of the intervals.
9874 The intervals include both endpoints.
9876 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9878 The &quot;Score Interval&quot; may be set to an interval of message
9879 scores that should be considered a match.
9880 Like the other parts of the Pattern, if it is unset it will be ignored.
9881 The Score Interval looks like
9883 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9885 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9886 negative integers, with min_score less than or equal to max_score.
9887 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9888 the min and max values to represent negative and positive infinity.
9890 Actually, a list of intervals may be used if you wish.
9891 A list would look like
9893 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9895 When there is a Score Interval defined, it is a match if the score for
9896 the message is contained in any of the intervals in the list.
9897 The intervals include the endpoints.
9898 The score for a message is calculated by looking at every Score rule defined and
9899 adding up the Score Values for the ones that match the message.
9900 When deciding whether or not a Pattern matches a message for purposes of
9901 calculating the score, the Score Interval is ignored.
9903 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9905 There are five separate message status settings.
9906 By default, all five are set to the value &quot;Don't care&quot;, which
9907 will match any message.
9908 The value &quot;Yes&quot; means that the particular status must be true
9909 for a match, and the value &quot;No&quot; means that the particular
9910 status must not be true for a match.
9911 For example, one of the five Message Status settings is whether a message
9912 is marked Important or not.
9913 A &quot;Yes&quot; means that the message must be Important to be
9914 considered a match and &quot;No&quot; means that the message must not be
9915 Important to be considered a match.
9916 The same is true of the other four message status settings that depend
9917 on whether or not the message is New; whether the message has 
9918 been Answered or not; whether the message has been Deleted or not, and
9919 whether the message is Recent or not. 
9921 The nomenclature for New and Recent is a bit confusing:
9923 New means that the message is Unseen.
9924 It could have been in your mailbox for a long time but if you haven't looked
9925 at it, it is still considered New.
9926 That matches the default Alpine index display that shows an N for such a
9927 message.
9929 Recent means that the message was added to this folder since the last time
9930 you opened the folder.
9931 Alpine also shows an N by default for these types of messages.
9932 If you were to run two copies of Alpine that opened a folder one right after
9933 the other, a message would only show up as Recent in (at most) the first
9934 Alpine session.
9936 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9938 Keywords are similar to Message Status, but they are chosen by the user.
9939 Provided the mail server allows for it, you may add a set of possible keywords
9940 to a folder and then you may set those keywords or not for each message
9941 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9942 The syntax of this part of the Pattern is similar to the header patterns.
9943 It is a list of keywords.
9944 The Keyword part of the Pattern is a match if the message has any of
9945 the keywords in the list set.
9946 Like other parts of the Pattern, if this is unset it will be ignored.
9948 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9950 A message may use one or more character sets.
9951 This part of the Pattern matches messages that make use of one or more of
9952 the character sets specified in the pattern.
9953 It will be considered a match if a message uses any of the character
9954 sets in the list you give here.
9957 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9958 GB2312) you may also use some shorthand names that Alpine provides.
9959 These names are more understandable shorthand names for sets of 
9960 character set names.
9961 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9962 Selecting one of these shorthand names is equivalent to selecting all of
9963 the character sets that make up the set.
9964 You can see all of these shorthand names and the lists of character sets
9965 they stand for by typing the &quot;T&quot; command with the Character
9966 Set pattern highlighted.
9967 The syntax of this part of the Pattern is similar to the header patterns
9968 and the Message Keywords pattern.
9969 It is a list of character sets (or shorthand names).
9970 The Character Set part of the Pattern is a match if the message uses any
9971 of the character sets in the list.
9972 Like other parts of the Pattern, if this is unset it will be ignored.
9974 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9976 It seems that lots of unwanted email contains unencoded 8-bit characters
9977 in the Subject.
9978 Normally, characters with the 8th bit set are not allowed in the Subject
9979 header unless they are MIME-encoded.
9980 This option gives you a way to match messages that have Subjects that
9981 contain unencoded 8-bit characters.
9982 By default, the value of this option is &quot;Don't care&quot;, which
9983 will match any message.
9984 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9985 the Subject of the message in order for there to be a match,
9986 and the value &quot;No&quot; is the opposite.
9987 Setting this option will affect performance in large folders because the
9988 subject of each message in the folder has to be checked.
9990 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9992 This option gives you a way to take some action once per month.
9993 By default, the value of this option is &quot;Don't care&quot;, which
9994 will always match.
9995 The value &quot;Yes&quot; means that this must be the first time Alpine has
9996 been run this month in order to count as a match,
9997 and the value &quot;No&quot; is the opposite.
9999 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
10001 This option gives you a way to take some action once per year.
10002 By default, the value of this option is &quot;Don't care&quot;, which
10003 will always match.
10004 The value &quot;Yes&quot; means that this must be the first time Alpine has
10005 been run this year in order to count as a match,
10006 and the value &quot;No&quot; is the opposite.
10008 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
10010 This option gives you a way to match messages that have an address
10011 that is in one of your address books.
10012 Only the simple entries in your address books are searched.
10013 Address book distribution lists are ignored!
10014 By default, the value of this option is &quot;Don't care&quot;, which
10015 will match any message.
10016 The value &quot;Yes, in any address book&quot; means the address
10017 from the message must be in at least one of your
10018 address books in order to be a match.
10019 The value &quot;No, not in any address book&quot;
10020 means none of the addresses may
10021 be in any of your address books in order to be a match.
10022 The values &quot;Yes, in specific address books&quot; and
10023 &quot;No, not in any of specific address books&quot; are similar but instead
10024 of depending on all address books you are allowed to give a list of address
10025 books to look in.
10026 The addresses from the message that are checked for are determined by the
10027 setting you have for &quot;Types of addresses to check for in address book&quot;.
10028 If you set this to &quot;From&quot; the From address from the message will
10029 be looked up in the address book.
10030 If you set it to only &quot;To&quot; then the To addresses will be used.
10031 If any of the To addresses are in the address book then it is considered
10032 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
10033 You could set it to both From and To, in which case all of the From and To
10034 addresses are used.
10035 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
10036 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
10037 exists or the From address if there is no Reply-To address.
10038 Same for the Sender address.
10039 Setting this option may affect performance in large folders because the
10040 From and Reply-To of each message in the folder have to be checked.
10042 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
10044 This is a command that is run with its standard input set to the message
10045 being checked and its standard output discarded.
10046 The full directory path should be specified.
10047 The command will be run and then its exit status will be checked against
10048 the Exit Status Interval, which defaults to just the value zero.
10049 If the exit status of the command falls in the interval, it is considered
10050 a match, otherwise it is not a match.
10053 This option may actually be a list of commands.
10054 The first one that exists and is executable is used.
10055 That makes it possible to use the same configuration with Unix Alpine and
10056 PC-Alpine.
10059 If none of the commands in the list exists and is executable then the rule
10060 is <EM>not</EM> a match.
10061 If it is possible that the command may not exist, you should be careful
10062 to structure your rules so that nothing destructive
10063 happens when the command does not exist.
10064 For example, you might have a filter that filters away spam when there is
10065 a match but does nothing when there is not a match.
10066 That would continue to work correctly if the command didn't exist.
10067 However, if you have a filter that filters away spam when there is not
10068 a match and keeps it when there is a match, that would filter everything
10069 if the categorizer command didn't exist.
10071 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
10072 setup for the bogofilter filter.
10075 &lt;End of help on this topic&gt;
10076 </BODY>
10077 </HTML>
10078 ===== h_rules_roles =====
10079 <HTML>
10080 <HEAD>
10081 <TITLE>SETUP ROLES SCREEN</TITLE>
10082 </HEAD>
10083 <BODY>
10084 <H1>SETUP ROLES SCREEN</H1>
10085 <H2>SETUP ROLES COMMANDS</H2>
10086 <!--chtml if pinemode="function_key"-->
10087 <PRE>
10088 Available  Commands -- Group 1         Available Commands -- Group 2   
10089 -------------------------------        ------------------------------  
10090 F1  Show Help Text                      F1  Show Help Text             
10091 F2  See commands in next group          F2  See commands in next group
10092 F3  Back to MAIN Alpine menu
10093 F4  Change configuration for role
10094 F5  Move to previous role               F5  Include file in role config
10095 F6  Move to next role                   F6  Exclude file from config
10096 F7  Previous page of roles
10097 F8  Next page of roles
10098 F9  Add new role                        F9  Replicate existing role
10099 F10 Delete existing role
10100 F11 Shuffle the order of roles
10101 F12 Whereis (search role nicknames)
10102 </PRE>
10103 <!--chtml else-->
10104 <PRE>
10105 Navigation                     General Alpine Commands
10106 -------------------------      -----------------------
10107  P  Prev Role                     ?  Display this help text
10108  N  Next Role                     E  Back to MAIN Alpine menu
10109  -  Previous page
10110 Spc (space bar) Next page
10111  W  WhereIs (search for word in role nicknames)
10113 Setup Roles Commands
10114 ------------------------------------------------
10115  A  Add new role                  $  Shuffle the order of roles
10116  D  Delete existing role          C  Change configuration for highlighted role
10117  R  Replicate existing role
10118  I  Include file in role config   X  Exclude file from role config
10119 </PRE>
10120 <!--chtml endif-->
10122 <H2>Description of the Setup Roles Screen</H2>
10124 This screen lets you add, delete, modify, or change the order of the rules
10125 that determine the role you are playing when composing a message.
10127 You may play different roles depending on who you are replying to.
10128 For example, if you are replying to a message addressed to help-desk you
10129 may be acting as a Help Desk Worker.
10130 That role may require that you use a different return address and/or
10131 a different signature.
10133 Roles are optional.
10134 If you set up roles they work like this:  Each role has a set of
10135 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
10136 considered for a particular use; a &quot;Pattern&quot;,
10137 which is used to decide which of the eligible roles is used; and a set
10138 of &quot;Actions&quot;, which are taken when that role is used.
10139 When you reply to a message, the message you are replying to is compared
10140 with the Patterns of the roles marked as eligible for use when replying.
10141 The comparisons start with the first eligible role and keep going until there
10142 is a match.
10143 If a match is found, the matching role's Actions are taken.
10145 It is also possible to set a default role and to change that role during
10146 your Alpine session.
10147 When you start Alpine no default role will be set.
10148 You may set or change the current default role by using the &quot;D&quot;
10149 command in the role selection screen.
10150 You'll see that screen while composing a message and being asked to select
10151 a role.
10152 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
10153 compose a message.
10154 You may find a default role useful if you normally perform the duties of one
10155 of your roles for a while, then you switch to another role and stay in the
10156 new role for another period of time.
10157 It may be easier than using the Role Command to select the role each time you
10158 compose a message.
10160 <H2>Role Uses</H2>
10162 There are three types of use to be configured;
10163 one for Replying, one for Forwarding, and one for Composing.
10164 These indicate whether or not you want a role to be considered when you
10165 type the Reply, Forward, or Compose commands.
10166 (The Role command is an alternate form of the Compose command, and it is
10167 not affected by these settings.)
10168 Each of these Use types has three possible values.
10169 The value &quot;Never&quot;
10170 means that the role will never be considered as a candidate for use with
10171 the corresponding command.
10172 For example, if you set a role's Reply Use to Never, then when you Reply to
10173 a message, that role won't even be considered.
10174 (That isn't quite true. If the message you are replying to matches some other
10175 role that requires confirmation,
10176 then there will be a ^T command available which allows you to select a role
10177 from all of your roles, not just the reply-eligible roles.)
10180 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
10181 both mean that you do want to consider this role when using the corresponding
10182 command.
10183 For either of these settings the role's Pattern will
10184 be checked to see if it matches the message.
10185 For Reply Use, the message used to compare the Pattern with is the message
10186 being replied to.
10187 For Forward Use, the message used to compare the Pattern with is the message
10188 being forwarded.
10189 For Compose Use, there is no message, so the parts of the Pattern that depend
10190 on a message (everything other than Current Folder Type) are ignored.
10191 In all cases, the Current Folder Type is checked if defined.
10192 If there is a match then this role will either be used without confirmation
10193 or will be the default when confirmation is asked for, depending on
10194 which of the two options is selected.
10195 If confirmation is requested, you will have a chance to
10196 choose No Role instead of the offered role, or to
10197 change the role to any one of your other roles (with the ^T command).
10199 <H2>Role Patterns</H2>
10201 In order to determine whether or not a message matches a role the message is
10202 compared with the Role's Pattern.
10203 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10204 Scoring, Other Rules, and Search Rules, so are described in only one place,
10205 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10207 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
10208 a role that has all header patterns unset, the AllText pattern unset,
10209 the BodyText pattern unset,
10210 the Score Interval unset, and the Current Folder Type set to
10211 &quot;Any&quot; may be used as a default role.
10212 It should be put last in the list of roles since the matching
10213 starts at the beginning and proceeds until one of the roles is a match.
10214 If no roles at all match, then Alpine will
10215 use its regular methods of defining the role.
10216 If you wanted to, you could define a different &quot;default&quot; role
10217 for Replying, Forwarding, and Composing by setting the
10218 &quot;Use&quot; fields appropriately.
10220 <H2>Role Actions</H2>
10222 Once a role match is found, the role's Actions are taken.
10223 For each role there are several possible actions that may be defined.
10224 They are actions to set the From address, the Reply-To address,
10225 the Fcc, the Signature, the Template file, and Other Headers.
10227 <H3>Set From</H3>
10229 The From address is the address used on the From line of the message
10230 you are sending.
10232 <H3>Set Reply-To</H3>
10234 The Reply-To address is the address used on the Reply-To line of the message
10235 you are sending.
10236 You don't need a Reply-To address unless it is different from the From address.
10238 <H3>Set Other Headers</H3>
10240 If you want to set the value of the From or Reply-To headers, use
10241 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
10242 If you want to set the values of other headers, use this field.
10243 This field is similar to the
10244 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
10245 Each header you specify here must include the header tag
10246 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
10247 and may optionally include a value for that header.
10248 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
10249 for a header here will replace any value that already exists.
10250 For example, if you are Replying to a message there will be at least one
10251 address in the To header (the address you are Replying to).
10252 However, if you Reply using a role that sets the To header, that role's
10253 To header value will be used instead.
10255 <H3>Set Fcc</H3>
10257 The Fcc is used as the Fcc for the message you are sending.
10259 <H3>Set Signature or Set LiteralSig</H3>
10261 The Signature is the name of a file to be used as the signature file when
10262 this role is being used.
10263 If the name of the file has a vertical bar following it (|)
10264 then it is assumed that the file is a program that should be run to
10265 produce the signature.
10266 If the LiteralSig is set, then it is used instead of the signature file.
10267 LiteralSig is just a different way to store the signature.
10268 It is stored in the pine configuration file instead of in a separate
10269 signature file.
10270 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
10271 either in the role or as the default signature in the Setup/Config screen,
10272 then the signature file is ignored.
10274 <H3>Set Template</H3>
10276 A Template is the name of a file to be included in the message when this
10277 role is being used.
10278 If the name of the file has a vertical bar following it (|)
10279 then it is assumed that the file is a program that should be run to
10280 produce the template.
10283 Both signature files and template files may be stored remotely on an IMAP
10284 server.
10285 In order to do that you just give the file a remote name.
10286 This works just like the regular
10287 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
10288 option that is configured from the Setup/Configuration screen.
10289 A remote signature file name might look like:
10291 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
10293 Once you have named the remote signature or template file you create its
10294 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
10295 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
10296 line of the role editor.
10299 Both signature files and template files (or the output of signature programs
10300 and template file programs) may contain special tokens
10301 that are replaced with contents
10302 that depend on the message being replied to or forwarded.
10303 See the help for the individual fields inside the role editor for more
10304 information on tokens.
10306 <H3>Use SMTP Server</H3>
10308 If this field has a value, then it will be used as the SMTP server
10309 to send mail when this role is being used (unless the SMTP server variable
10310 is set in the system-wide fixed configuration file).
10311 It has the same semantics as the
10312 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
10313 variable in the Setup/Config screen.
10314 When you postpone the composition this SMTP server list will be saved
10315 with the postponed composition and it cannot be changed later.
10316 Because of that, you may want to make this a list of SMTP servers
10317 with the preferred server at the front of the list and alternate servers
10318 later in the list.
10321 If any of the actions are left unset, then the action depends on what
10322 is present in the &quot;Initialize settings using role&quot; field.
10323 If you've listed the nickname of another one of your roles there, then the
10324 corresponding action from that role will be used here.
10325 If that action is also blank, or if there is no nickname specified,
10326 then Alpine will do whatever it normally does to set these actions.
10327 This depends on other configuration options and features you've set.
10329 <H2>Command Descriptions</H2>
10331 <H3>Add</H3>
10333 The Add command is used to add a new role definition to your set of
10334 roles.
10335 The new role will be added after the highlighted role.
10337 <H3>Delete</H3>
10339 The Delete command deletes the currently highlighted role.
10341 <H3>Change</H3>
10343 The Change command lets you edit the nickname, Uses, Pattern,
10344 and Actions of the currently highlighted role.
10346 <H3>Shuffle</H3>
10348 The Shuffle command allows you to change the order of the roles.
10349 You may move the currently highlighted role up or down in the list.
10350 The order of the roles is important since the roles are tested for a
10351 match starting with the first role and continuing until a match is found.
10352 You should place the roles with more specific Patterns near the beginning
10353 of the list, and those with more general Patterns near the end so that
10354 the more specific matches will happen when appropriate.
10356 <H3>Replicate</H3>
10358 The Replicate command is used to copy an existing role and modify it.
10359 The new role will be added after the highlighted role.
10361 <H3>IncludeFile</H3>
10363 The IncludeFile command allows you to add a roles file to your configuration.
10364 Usually, your roles will be contained in your Alpine configuration file.
10365 If you wish, some or all of your roles may be stored in a separate file.
10366 If a roles file already exists (maybe it was made by somebody else using
10367 Alpine), you may insert it before the currently highlighted role.
10368 You may also insert an empty file or a file that does not yet exist.
10369 Once you have an empty roles file in your configuration, you may use
10370 the Shuffle command to move roles into it.
10371 In fact, that's the only way to get the initial role into the file.
10373 <H3>eXcludeFile</H3>
10375 The eXcludeFile command removes a roles file from your roles configuration.
10376 A limitation of the program is that in order to exclude a roles file
10377 that file must have at least one role
10378 in it, otherwise you won't be able to highlight a line in the file.
10379 So you may have to add a dummy role to the file in order to exclude the file.
10380 <P><UL>
10381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10382 </UL>
10384 &lt;End of help on this topic&gt;
10385 </BODY>
10386 </HTML>
10387 ===== h_rules_other =====
10388 <HTML>
10389 <HEAD>
10390 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10391 </HEAD>
10392 <BODY>
10393 <H1>SETUP OTHER RULES SCREEN</H1>
10394 <H2>SETUP OTHER RULES COMMANDS</H2>
10395 <!--chtml if pinemode="function_key"-->
10396 <PRE>
10397 Available  Commands -- Group 1         Available Commands -- Group 2   
10398 -------------------------------        ------------------------------  
10399 F1  Show Help Text                      F1  Show Help Text             
10400 F2  See commands in next group          F2  See commands in next group
10401 F3  Back to MAIN Alpine menu
10402 F4  Change configuration for rule
10403 F5  Move to previous rule               F5  Include file in rule config
10404 F6  Move to next rule                   F6  Exclude file from config
10405 F7  Previous page of rules
10406 F8  Next page of rules
10407 F9  Add new rule                        F9  Replicate existing rule
10408 F10 Delete existing rule
10409 F11 Shuffle the order of rules
10410 F12 Whereis (search rule nicknames)
10411 </PRE>
10412 <!--chtml else-->
10413 <PRE>
10414 Navigation                     General Alpine Commands
10415 -------------------------      -----------------------
10416  P  Prev rule                     ?  Display this help text
10417  N  Next rule                     E  Back to MAIN Alpine menu
10418  -  Previous page
10419 Spc (space bar) Next page
10420  W  WhereIs (search for word in rule nicknames)
10422 Setup Other Rules Commands
10423 ------------------------------------------------
10424  A  Add new rule                  $  Shuffle the order of rules
10425  D  Delete existing rule          C  Change configuration for highlighted rule
10426  R  Replicate existing rule
10427  I  Include file in rule config   X  Exclude file from rule config
10428 </PRE>
10429 <!--chtml endif-->
10431 <H2>Description of the Setup Other Rules Screen</H2>
10433 This is where you may set various actions that do not fit well into the
10434 other Rules categories.
10436 <H2>Patterns</H2>
10438 Other Rules are a little different from the rest of the Rules because
10439 they depend only on the current folder, and not on a particular message.
10440 In order to determine whether or not a rule's actions should be applied
10441 the current folder is compared with the rule's Pattern, which consists
10442 of only the Current Folder Type.
10443 Current Folder Type works the same for Other Rules as it does for Roles,
10444 Filtering, Index Coloring, and Scoring.
10445 Keep in mind that the only part of the Pattern that applies to Other
10446 Rules is the Current Folder Type when looking at the description of
10447 Patterns given
10448 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10450 <H2>The Actions</H2>
10452 <H3>Set Sort Order</H3>
10454 When you enter a new folder, these rules will be checked to see if you
10455 have set a sort order that is different from your default sort order.
10456 The default is set in the Setup/Config screen with
10457 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10458 If the Sort Order action is set, then the folder will be displayed sorted in
10459 that sort order instead of in the default order.
10461 A possible point of confusion arises when you change the configuration
10462 of the Sort Order for the currently open folder.
10463 The folder will normally be re-sorted when you go back to viewing the
10464 index.
10465 However, if you have manually sorted the folder with the
10466 Sort
10467 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10468 command, then it will not be re-sorted until the next time it is opened.
10470 <H3>Set Index Format</H3>
10472 When you enter a new folder, these rules will be checked to see if you
10473 have set an Index Format that is different from your default Index Format,
10474 which is set with the
10475 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10476 If so, the index will be displayed with this format instead of the default.
10478 <H3>Set Startup Rule</H3>
10480 When you enter a new folder, these rules will be checked to see if you
10481 have set a startup rule that is different from the default startup rule.
10482 The default for incoming folders is set in the Setup/Config screen with
10483 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10484 The default for folders other than INBOX that are not part of your
10485 incoming collection
10486 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10487 is to start with the last message in the folder.
10488 If the Startup Rule is set to something other than &quot;default&quot;,
10489 then the rule will determine which message will be the current message when
10490 the folder is first opened.
10492 The various startup rule possibilities work the same here as they do in
10493 the incoming collection, so check
10494 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10495 for more help.
10497 <H2>Command Descriptions</H2>
10499 <H3>Add</H3>
10501 The Add command is used to add a new rule definition to your set of
10502 rules.
10503 The new rule will be added after the highlighted rule.
10505 <H3>Delete</H3>
10507 The Delete command deletes the currently highlighted rule.
10509 <H3>Change</H3>
10511 The Change command lets you edit the nickname, Pattern,
10512 and Action of the currently highlighted rule.
10514 <H3>Shuffle</H3>
10516 The Shuffle command allows you to change the order of the rules.
10517 You may move the currently highlighted rule up or down in the list.
10518 The order of the rules is important since the rules are tested for a
10519 match starting with the first rule and continuing until a match is found.
10520 You should place the rules with more specific Patterns near the beginning
10521 of the list, and those with more general Patterns near the end so that
10522 the more specific matches will happen when appropriate.
10524 <H3>Replicate</H3>
10526 The Replicate command is used to copy an existing rule definition and modify it.
10527 The new rule will be added after the highlighted rule.
10529 <H3>IncludeFile</H3>
10531 The IncludeFile command allows you to add a rules file to your configuration.
10532 Usually, your rules will be contained in your Alpine configuration file.
10533 If you wish, some or all of your rules may be stored in a separate file.
10534 If a rules file already exists (maybe it was made by somebody else using
10535 Alpine), you may insert it before the currently highlighted rule.
10536 You may also insert an empty file or a file that does not yet exist.
10537 Once you have an empty rules file in your configuration, you may use
10538 the Shuffle command to move rules into it.
10539 In fact, that's the only way to get the initial rule into the file.
10541 <H3>eXcludeFile</H3>
10543 The eXcludeFile command removes a rules file from your rules configuration.
10544 A limitation of the program is that in order to exclude a rules file
10545 that file must have at least one rule
10546 in it, otherwise you won't be able to highlight a line in the file.
10547 So you may have to add a dummy rule to the file in order to exclude the file.
10548 <P><UL>
10549 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10550 </UL>
10552 &lt;End of help on this topic&gt;
10553 </BODY>
10554 </HTML>
10555 ===== h_rules_srch =====
10556 <HTML>
10557 <HEAD>
10558 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10559 </HEAD>
10560 <BODY>
10561 <H1>SETUP SEARCH RULES SCREEN</H1>
10562 <H2>SETUP SEARCH RULES COMMANDS</H2>
10563 <!--chtml if pinemode="function_key"-->
10564 <PRE>
10565 Available  Commands -- Group 1         Available Commands -- Group 2   
10566 -------------------------------        ------------------------------  
10567 F1  Show Help Text                      F1  Show Help Text             
10568 F2  See commands in next group          F2  See commands in next group
10569 F3  Back to MAIN Alpine menu
10570 F4  Change configuration for rule
10571 F5  Move to previous rule               F5  Include file in rule config
10572 F6  Move to next rule                   F6  Exclude file from config
10573 F7  Previous page of rules
10574 F8  Next page of rules
10575 F9  Add new rule                        F9  Replicate existing rule
10576 F10 Delete existing rule
10577 F11 Shuffle the order of rules
10578 F12 Whereis (search rule nicknames)
10579 </PRE>
10580 <!--chtml else-->
10581 <PRE>
10582 Navigation                     General Alpine Commands
10583 -------------------------      -----------------------
10584  P  Prev rule                     ?  Display this help text
10585  N  Next rule                     E  Back to MAIN Alpine menu
10586  -  Previous page
10587 Spc (space bar) Next page
10588  W  WhereIs (search for word in rule nicknames)
10590 Setup Search Rules Commands
10591 ------------------------------------------------
10592  A  Add new rule                  $  Shuffle the order of rules
10593  D  Delete existing rule          C  Change configuration for highlighted rule
10594  R  Replicate existing rule
10595  I  Include file in rule config   X  Exclude file from rule config
10596 </PRE>
10597 <!--chtml endif-->
10599 <H2>Description of the Setup Search Rules Screen</H2>
10601 One of the commands that becomes available when that feature is turned on
10602 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10603 screen to select a set of messages.
10604 One way of selecting messages is to use a Rule.
10605 All of the messages that match (or don't match if you wish)
10606 a Rule's Pattern will be selected.
10608 Any of your Rules may be used for this purpose.
10609 You might already have Rules set up for filtering, index line color, scores, or roles;
10610 and you may use any of those Rules with the Select command.
10611 However, you might find it more convenient to set up a separate set of Rules
10612 just for this purpose without having to worry about what other effects
10613 they may cause.
10614 That is the purpose of these Select Rules.
10617 Each rule has a &quot;Pattern&quot;
10618 that is used to decide which messages are selected when you use it with
10619 the Select command.
10621 <H2>Patterns</H2>
10623 In order to determine whether or not a message should be selected
10624 the message is compared with the rule's Pattern.
10625 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10626 Scoring, Other Rules, and Search Rules, so are described in only one place,
10627 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10629 <H2>Command Descriptions</H2>
10631 <H3>Add</H3>
10633 The Add command is used to add a new rule definition to your set of
10634 rules.
10635 The new rule will be added after the highlighted rule.
10637 <H3>Delete</H3>
10639 The Delete command deletes the currently highlighted rule.
10641 <H3>Change</H3>
10643 The Change command lets you edit the nickname and Pattern
10644 of the currently highlighted rule.
10646 <H3>Shuffle</H3>
10648 The Shuffle command allows you to change the order of the rules.
10649 This affects only the order they are presented in when you use the
10650 ^T subcommand of the Select by Rule command.
10651 You may move the currently highlighted rule up or down in the list.
10653 <H3>Replicate</H3>
10655 The Replicate command is used to copy an existing rule definition and modify it.
10656 The new rule will be added after the highlighted rule.
10658 <H3>IncludeFile</H3>
10660 The IncludeFile command allows you to add a rules file to your configuration.
10661 Usually, your rules will be contained in your Alpine configuration file.
10662 If you wish, some or all of your rules may be stored in a separate file.
10663 If a rules file already exists (maybe it was made by somebody else using
10664 Alpine), you may insert it before the currently highlighted rule.
10665 You may also insert an empty file or a file that does not yet exist.
10666 Once you have an empty rules file in your configuration, you may use
10667 the Shuffle command to move rules into it.
10668 In fact, that's the only way to get the initial rule into the file.
10670 <H3>eXcludeFile</H3>
10672 The eXcludeFile command removes a rules file from your rules configuration.
10673 A limitation of the program is that in order to exclude a rules file
10674 that file must have at least one rule
10675 in it, otherwise you won't be able to highlight a line in the file.
10676 So you may have to add a dummy rule to the file in order to exclude the file.
10677 <P><UL>
10678 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10679 </UL>
10681 &lt;End of help on this topic&gt;
10682 </BODY>
10683 </HTML>
10684 ===== h_rules_incols =====
10685 <HTML>
10686 <HEAD>
10687 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10688 </HEAD>
10689 <BODY>
10690 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10691 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10692 <!--chtml if pinemode="function_key"-->
10693 <PRE>
10694 Available  Commands -- Group 1         Available Commands -- Group 2   
10695 -------------------------------        ------------------------------  
10696 F1  Show Help Text                      F1  Show Help Text             
10697 F2  See commands in next group          F2  See commands in next group
10698 F3  Back to MAIN Alpine menu
10699 F4  Change configuration for rule
10700 F5  Move to previous rule               F5  Include file in rule config
10701 F6  Move to next rule                   F6  Exclude file from config
10702 F7  Previous page of rules
10703 F8  Next page of rules
10704 F9  Add new rule                        F9  Replicate existing rule
10705 F10 Delete existing rule
10706 F11 Shuffle the order of rules
10707 F12 Whereis (search rule nicknames)
10708 </PRE>
10709 <!--chtml else-->
10710 <PRE>
10711 Navigation                     General Alpine Commands
10712 -------------------------      -----------------------
10713  P  Prev rule                     ?  Display this help text
10714  N  Next rule                     E  Back to MAIN Alpine menu
10715  -  Previous page
10716 Spc (space bar) Next page
10717  W  WhereIs (search for word in rule nicknames)
10719 Setup Index Color Commands
10720 ------------------------------------------------
10721  A  Add new rule                  $  Shuffle the order of rules
10722  D  Delete existing rule          C  Change configuration for highlighted rule
10723  R  Replicate existing rule
10724  I  Include file in rule config   X  Exclude file from rule config
10725 </PRE>
10726 <!--chtml endif-->
10728 <H2>Description of the Setup Index Line Colors Screen</H2>
10730 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10731 This action is only available if your terminal is capable of displaying
10732 color and color display has been enabled with the
10733 <A HREF="h_config_color_style">Color Style</A> option within the
10734 Setup Color screen.
10735 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10736 This screen lets you add, delete, modify, or change the order of the rules
10737 that cause the lines in the MESSAGE INDEX to be displayed in different
10738 colors.
10740 Each rule has a &quot;Pattern&quot;,
10741 which is used to decide which of the rules is used; and the color that
10742 is used if the Pattern matches a particular message.
10744 <H2>Index Color Patterns</H2>
10746 In order to determine whether or not a message matches an Index Color Rule
10747 the message is compared with the rule's Pattern.
10748 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10749 Scoring, Other Rules, and Search Rules, so are described in only one place,
10750 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10753 If none of the Index Color rules is a match for a particular index line,
10754 then the color used is set using
10755 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10757 <H2>Index Line Color</H2>
10759 This is the color that index lines are colored when there is a matching
10760 Pattern.
10761 This colors the whole index line, except possibly the status letters,
10762 which may be colored separately using
10763 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10765 <H2>Command Descriptions</H2>
10767 <H3>Add</H3>
10769 The Add command is used to add a new rule definition to your set of
10770 rules.
10771 The new rule will be added after the highlighted rule.
10773 <H3>Delete</H3>
10775 The Delete command deletes the currently highlighted rule.
10777 <H3>Change</H3>
10779 The Change command lets you edit the nickname, Pattern,
10780 and Index Line Color of the currently highlighted rule.
10782 <H3>Shuffle</H3>
10784 The Shuffle command allows you to change the order of the rules.
10785 You may move the currently highlighted rule up or down in the list.
10786 The order of the rules is important since the rules are tested for a
10787 match starting with the first rule and continuing until a match is found.
10788 You should place the rules with more specific Patterns near the beginning
10789 of the list, and those with more general Patterns near the end so that
10790 the more specific matches will happen when appropriate.
10792 <H3>Replicate</H3>
10794 The Replicate command is used to copy an existing rule definition and modify it.
10795 The new rule will be added after the highlighted rule.
10797 <H3>IncludeFile</H3>
10799 The IncludeFile command allows you to add a rules file to your configuration.
10800 Usually, your rules will be contained in your Alpine configuration file.
10801 If you wish, some or all of your rules may be stored in a separate file.
10802 If a rules file already exists (maybe it was made by somebody else using
10803 Alpine), you may insert it before the currently highlighted rule.
10804 You may also insert an empty file or a file that does not yet exist.
10805 Once you have an empty rules file in your configuration, you may use
10806 the Shuffle command to move rules into it.
10807 In fact, that's the only way to get the initial rule into the file.
10809 <H3>eXcludeFile</H3>
10811 The eXcludeFile command removes a rules file from your rules configuration.
10812 A limitation of the program is that in order to exclude a rules file
10813 that file must have at least one rule
10814 in it, otherwise you won't be able to highlight a line in the file.
10815 So you may have to add a dummy rule to the file in order to exclude the file.
10816 <P><UL>
10817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10818 </UL>
10820 &lt;End of help on this topic&gt;
10821 </BODY>
10822 </HTML>
10823 ===== h_rules_filter =====
10824 <HTML>
10825 <HEAD>
10826 <TITLE>SETUP FILTERING SCREEN</TITLE>
10827 </HEAD>
10828 <BODY>
10829 <H1>SETUP FILTERING SCREEN</H1>
10830 <H2>SETUP FILTERING COMMANDS</H2>
10831 <!--chtml if pinemode="function_key"-->
10832 <PRE>
10833 Available  Commands -- Group 1         Available Commands -- Group 2   
10834 -------------------------------        ------------------------------  
10835 F1  Show Help Text                      F1  Show Help Text             
10836 F2  See commands in next group          F2  See commands in next group
10837 F3  Back to MAIN Alpine menu
10838 F4  Change configuration for filter
10839 F5  Move to previous filter             F5  Include file in filter config
10840 F6  Move to next filter                 F6  Exclude file from config
10841 F7  Previous page of filters
10842 F8  Next page of filters
10843 F9  Add new filter                      F9  Replicate existing filter
10844 F10 Delete existing filter
10845 F11 Shuffle the order of filters
10846 F12 Whereis (search filter nicknames)
10847 </PRE>
10848 <!--chtml else-->
10849 <PRE>
10850 Navigation                     General Alpine Commands
10851 -------------------------      -----------------------
10852  P  Prev Filter                   ?  Display this help text
10853  N  Next Filter                   E  Back to MAIN Alpine menu
10854  -  Previous page
10855 Spc (space bar) Next page
10856  W  WhereIs (search for word in filter nicknames)
10858 Setup Filters Commands
10859 ------------------------------------------------
10860  A  Add new filter                $  Shuffle the order of filters
10861  D  Delete existing filter        C  Change configuration for highlighted filter
10862  R  Replicate existing filter
10863  I  Include file in filter config X  Exclude file from filter config
10864 </PRE>
10865 <!--chtml endif-->
10867 <H2>Description of the Setup Filtering Screen</H2>
10869 This screen lets you add, delete, modify, or change the order of the rules
10870 that determine the filtering Alpine does on folders you view.
10872 The software that actually delivers mail (the stuff that happens
10873 before Alpine is involved) for you is in a better position to do mail filtering
10874 than Alpine itself.
10875 If possible, you may want to look into using that sort of mail filtering to
10876 deliver mail to different folders, delete it, or forward it.
10877 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10879 Filtering is a way to automatically move certain messages from one folder
10880 to another or to delete messages.
10881 It can also be used to set message status (Important, Deleted, New,
10882 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10883 Alpine doesn't have the ability to forward mail to another address or
10884 to deliver vacation messages.
10886 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10887 When a folder is opened, when new mail arrives in an open folder, or
10888 when mail is Expunged from a folder; each
10889 message is compared with the Patterns of your filtering rules.
10890 The comparisons start with the first rule and keep going until there
10891 is a match.
10892 If a match is found, the message may be deleted or moved, depending on
10893 the setting of the Filter Action.
10894 If the message is not deleted, it may have its status altered.
10897 <EM>NOTE:</EM>
10898 When setting up a Pattern used to delete messages,
10899 it is recommended that you test the Pattern first with a &quot;Move&quot;
10900 folder specified in
10901 case unintended matches occur.  Messages that are deleted will be removed 
10902 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10903 next Expunge command or once the folder being filtered has been closed.
10905 <H2>Filter Patterns</H2>
10907 In order to determine whether or not a message matches a filter the message is
10908 compared with the Filter's Pattern.
10909 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10910 Scoring, Other Rules, and Search Rules, so are described in only one place,
10911 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10913 Since filtering is a potentially destructive action, if you have a filtering
10914 Pattern with nothing other than Current Folder Type set, that filtering
10915 rule is ignored.
10917 <H2>Filter Actions</H2>
10919 Once a filter match is found for a particular message, there are some actions
10920 that may be taken.
10921 First, the message may have its status changed.
10922 This is the same message status that you can manipulate manually using the
10923 <a href="h_common_flag">Flag Command</a>.
10924 There are always four elements of message status that you can control.
10925 You can set or clear the Important status, the New status, the Deleted
10926 status, and the Answered status.
10927 Of course, if the filter is going to delete the message,
10928 then there is no point in setting message status.
10929 You may also be able to set user-defined keywords for a message.
10930 Read a little about keywords in the help text for the
10931 <A HREF="h_common_flag">Flag</A> command.
10933 Second, the filter may delete or move the message.
10934 Deleting the message marks it Deleted and removes it from view.
10935 It is effectively gone forever (though it technically is still there until
10936 the next expunge command, which may happen implicitly).
10937 Moving the message moves it from the open folder into the folder
10938 listed on the &quot;Folder List&quot; line of the filter configuration.
10939 If you list more than one folder name (separated by commas) then the message
10940 will be copied to each of those folders.
10941 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10942 message is removed from the current folder.
10943 If you just want to set the messages status without deleting it from
10944 the folder, then set the filter action to
10945 &quot;Just Set Message Status&quot;.
10947 (There is no way to do a Copy instead of a Move, due to the difficulties
10948 involved in keeping track of whether or not a message has
10949 already been copied.)
10951 <H2>Command Descriptions</H2>
10953 <H3>Add</H3>
10955 The Add command is used to add a new filter definition to your set of
10956 filters.
10957 The new filter will be added after the highlighted filter.
10959 <H3>Delete</H3>
10961 The Delete command deletes the currently highlighted filter.
10963 <H3>Change</H3>
10965 The Change command lets you edit the nickname, Pattern,
10966 and Folder of the currently highlighted filter.
10968 <H3>Shuffle</H3>
10970 The Shuffle command allows you to change the order of the filters.
10971 You may move the currently highlighted filter up or down in the list.
10972 The order of the filters is important since the filters are tested for a
10973 match starting with the first filter and continuing until a match is found.
10974 You should place the filters with more specific Patterns near the beginning
10975 of the list, and those with more general Patterns near the end so that
10976 the more specific matches will happen when appropriate.
10978 <H3>Replicate</H3>
10980 The Replicate command is used to copy an existing filter and modify it.
10981 The new filter will be added after the highlighted filter.
10983 <H3>IncludeFile</H3>
10985 The IncludeFile command allows you to add a filters file to your configuration.
10986 Usually, your filters will be contained in your Alpine configuration file.
10987 If you wish, some or all of your filters may be stored in a separate file.
10988 If a filters file already exists (maybe it was made by somebody else using
10989 Alpine), you may insert it before the currently highlighted filter.
10990 You may also insert an empty file or a file that does not yet exist.
10991 Once you have an empty filters file in your configuration, you may use
10992 the Shuffle command to move filters into it.
10993 In fact, that's the only way to get the initial filter into the file.
10995 <H3>eXcludeFile</H3>
10997 The eXcludeFile command removes a filters file from your filters configuration.
10998 A limitation of the program is that in order to exclude a filters file
10999 that file must have at least one filter
11000 in it, otherwise you won't be able to highlight a line in the file.
11001 So you may have to add a dummy filter to the file in order to exclude the file.
11002 <P><UL>
11003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11004 </UL>
11006 <H3>Performance Considerations</H3>
11007 The number and type of patterns being tested can 
11008 adversely effect performance.  Issues to be aware
11009 of include:
11011 <UL>
11012   <LI> The more filters you have defined the longer it will take to run down
11013 the list.  Deleting unused filters is a good idea.
11014   <LI> Filtering in newsgroups served by an NNTP server will be slow
11015 if your patterns include tests other than &quot;From:&quot;
11016 or &quot;Subject:&quot;.
11017 </UL>
11019 &lt;End of help on this topic&gt;
11020 </BODY>
11021 </HTML>
11022 ===== h_rules_score =====
11023 <HTML>
11024 <HEAD>
11025 <TITLE>SETUP SCORING SCREEN</TITLE>
11026 </HEAD>
11027 <BODY>
11028 <H1>SETUP SCORING SCREEN</H1>
11029 <H2>SETUP SCORING COMMANDS</H2>
11030 <!--chtml if pinemode="function_key"-->
11031 <PRE>
11032 Available  Commands -- Group 1         Available Commands -- Group 2   
11033 -------------------------------        ------------------------------  
11034 F1  Show Help Text                      F1  Show Help Text             
11035 F2  See commands in next group          F2  See commands in next group
11036 F3  Back to MAIN Alpine menu
11037 F4  Change configuration for rule
11038 F5  Move to previous rule               F5  Include file in rule config
11039 F6  Move to next rule                   F6  Exclude file from config
11040 F7  Previous page of rules
11041 F8  Next page of rules
11042 F9  Add new rule                        F9  Replicate existing rule
11043 F10 Delete existing rule
11044 F11 Shuffle the order of rules
11045 F12 Whereis (search rule nicknames)
11046 </PRE>
11047 <!--chtml else-->
11048 <PRE>
11049 Navigation                     General Alpine Commands
11050 -------------------------      -----------------------
11051  P  Prev rule                     ?  Display this help text
11052  N  Next rule                     E  Back to MAIN Alpine menu
11053  -  Previous page
11054 Spc (space bar) Next page
11055  W  WhereIs (search for word in rule nicknames)
11057 Setup Scoring Commands
11058 ------------------------------------------------
11059  A  Add new rule                  $  Shuffle the order of rules
11060  D  Delete existing rule          C  Change configuration for highlighted rule
11061  R  Replicate existing rule
11062  I  Include file in rule config   X  Exclude file from rule config
11063 </PRE>
11064 <!--chtml endif-->
11066 <H2>Description of the Setup Scoring Screen</H2>
11068 Most people will not use scores at all, but if you do use them, here's how
11069 they work in Alpine.
11070 Using this screen, you may define Scoring rules.
11071 The score for a message is calculated by looking at every Score rule defined
11072 and adding up the Score Values for the ones that match the message.
11073 If there are no matches for a message, it has a score of zero.
11074 Message scores may be used a couple of ways in Alpine.
11076 <H3>Sorting by Score</H3>
11078 One of the methods you may use to sort message indexes is to sort by
11079 score.
11080 The scores of all the messages in a folder will be calculated and then
11081 the index will be ordered by placing the messages in order of ascending or
11082 descending score.
11084 <H3>Scores for use in Patterns</H3>
11086 The Patterns used for Roles, Index Line Coloring, and Filtering have a
11087 category labeled &quot;Score Interval&quot;.
11088 When a message is being compared with a Pattern to check for a match, if
11089 the Score Interval is set only messages that have a score somewhere in
11090 the interval are a match.
11092 <H2>Scoring Rule Patterns</H2>
11094 In order to determine whether or not a message matches a scoring rule
11095 the message is compared with the rule's Pattern.
11096 These Patterns are the same for use with Roles, Filtering, Index Coloring,
11097 Scoring, Other Rules, and Search Rules, so are described in only one place,
11098 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
11101 Actually, Scoring rule Patterns are slightly different from the other types of
11102 Patterns because Scoring rule Patterns don't contain a Score Interval.
11103 In other words, when calculating the score for a message, which is done
11104 by looking at the Scoring rule Patterns, scores aren't used.
11106 <H2>Score Value</H2>
11108 This is the value that will be added to the score for a message if the
11109 rule's Pattern is a match.
11110 Each individual Score Value is an integer between -100 and 100, and the
11111 values from matching rules are added together to get a message's score.
11112 There is also a way to extract the value from a particular header of each
11113 message. See the help text for Score Value for further information.
11115 <H2>Command Descriptions</H2>
11117 <H3>Add</H3>
11119 The Add command is used to add a new scoring rule definition.
11120 The new rule will be added after the highlighted rule.
11122 <H3>Delete</H3>
11124 The Delete command deletes the currently highlighted scoring rule.
11126 <H3>Change</H3>
11128 The Change command lets you edit the nickname, Pattern,
11129 and Score Value of the currently highlighted scoring rule.
11131 <H3>Shuffle</H3>
11133 The Shuffle command allows you to change the order of the scoring rules.
11134 You may move the currently highlighted rule up or down in the list.
11135 The order of the rules is important since the rules are tested for a
11136 match starting with the first rule and continuing until a match is found.
11137 You should place the rules with more specific Patterns near the beginning
11138 of the list, and those with more general Patterns near the end so that
11139 the more specific matches will happen when appropriate.
11141 <H3>Replicate</H3>
11143 The Replicate command is used to copy an existing rule and modify it.
11144 The new rule will be added after the highlighted rule.
11146 <H3>IncludeFile</H3>
11148 The IncludeFile command allows you to add a rules file to your configuration.
11149 Usually, your rules will be contained in your Alpine configuration file.
11150 If you wish, some or all of your rules may be stored in a separate file.
11151 If a rules file already exists (maybe it was made by somebody else using
11152 Alpine), you may insert it before the currently highlighted rule.
11153 You may also insert an empty file or a file that does not yet exist.
11154 Once you have an empty rules file in your configuration, you may use
11155 the Shuffle command to move rules into it.
11156 In fact, that's the only way to get the initial rule into the file.
11158 <H3>eXcludeFile</H3>
11160 The eXcludeFile command removes a rules file from your rules configuration.
11161 A limitation of the program is that in order to exclude a rules file
11162 that file must have at least one rule
11163 in it, otherwise you won't be able to highlight a line in the file.
11164 So you may have to add a dummy rule to the file in order to exclude the file.
11165 <P><UL>
11166 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11167 </UL>
11169 &lt;End of help on this topic&gt;
11170 </BODY>
11171 </HTML>
11172 ===== h_direct_config =====
11173 <HTML>
11174 <HEAD>
11175 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
11176 </HEAD>
11177 <BODY>
11178 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
11179 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
11180 <!--chtml if pinemode="function_key"-->
11181 <PRE>
11182 Available  Commands                        
11183 -------------------------------            
11184 F1  Show Help Text                         
11185 F3  Back to MAIN Alpine menu                 
11186 F4  Change configuration for directory server  
11187 F5  Move to previous directory server          
11188 F6  Move to next directory server              
11189 F7  Previous page of directory servers         
11190 F8  Next page of directory servers
11191 F9  Add new directory server
11192 F10 Delete existing directory server
11193 F11 Shuffle the order of directory servers
11194 F12 Whereis (search directory server titles)   
11195 </PRE>
11196 <!--chtml else-->
11197 <PRE>
11198 Navigation                     General Alpine Commands
11199 -------------------------      -----------------------
11200  P  Prev Directory Server         ?  Display this help text
11201  N  Next Directory Server         E  Back to MAIN Alpine menu
11202  -  Previous page
11203 Spc (space bar) Next page
11204  W  WhereIs (search for word in directory server titles)
11206 Setup LDAP Directory Server Commands
11207 ------------------------------------------------
11208  A  Add new directory server      $  Shuffle the order of directory servers
11209  D  Delete existing dir server    C  Change configuration for highlighted server
11210 </PRE>
11211 <!--chtml endif-->
11213 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
11215 This screen lets you add, delete, modify, or change the order of your
11216 directory servers. You may also set some optional behavior for each server.
11217 The &quot;Add Dir&quot; command brings up a blank form to 
11218 fill in. You will have to supply at least the name of the LDAP server.
11219 You will often have to supply a search base to be used with that server,
11220 as well. Once the form has been brought up on your screen, there is help
11221 available for each of the options you may set.
11223 The &quot;Del Dir&quot; command allows you to remove a directory server
11224 from your configuration.
11226 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
11227 The difference is that instead of bringing up a form for a new server
11228 configuration, you are changing the configuration of an existing entry.
11229 For example, you might want to correct a typing error, change a
11230 nickname, or change one of the options set for that server.
11232 The &quot;Shuffle&quot; command is used to change the order of directory
11233 servers.
11234 <P><UL>
11235 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11236 </UL>
11238 &lt;End of help on this topic&gt;
11239 </BODY>
11240 </HTML>
11241 ============= h_address_display ========================
11242 <HTML>
11243 <HEAD>
11244 <TITLE>SEARCH RESULTS INDEX</TITLE>
11245 </HEAD>
11246 <BODY>
11247 <H1>SEARCH RESULTS INDEX</H1>
11248 This screen shows the results, if any, of your Directory Server search.  
11249 Commands (besides those for screen navigation) are:
11250 <DL>
11251 <DT>View
11252 <!--chtml if pinemode="function_key"-->
11253 (F4)
11254 <!--chtml else-->
11256 <!--chtml endif-->
11257 </DT>
11258 <DD>See the full information for the selected entry.
11260 <DT>Compose
11261 <!--chtml if pinemode="function_key"-->
11262 (F9)
11263 <!--chtml else-->
11265 <!--chtml endif--></DT>
11266 <DD>Compose a message with the selected entry as the recipient.
11268 <DT>Role
11269 <!--chtml if pinemode="function_key"-->
11270 (F2)
11271 <!--chtml else-->
11273 <!--chtml endif--></DT>
11274 <DD>Compose a message with the selected entry as the recipient. This differs
11275 from Compose in that you may select a role before beginning your composition.
11277 <DT>Forward
11278 <!--chtml if pinemode="function_key"-->
11279 (F10)
11280 <!--chtml else-->
11282 <!--chtml endif--></DT>
11283 <DD>Send the full information for the selected entry as an 
11284 email message to someone else.
11286 <DT>Save
11287 <!--chtml if pinemode="function_key"-->
11288 (F11)
11289 <!--chtml else-->
11291 <!--chtml endif-->
11292 </DT>
11293 <DD>Save to your address book:
11294 <UL>
11295 <LI>the result of the search (as just found through your query) for the 
11296 selected entry; or 
11297 <LI>the selected entry for repeated Directory Server searching when used 
11298 in the future.
11299 </UL>
11300 or<BR>
11301 Export to a file (external to Alpine):
11302 <UL>
11303 <LI>the full information for the selected entry; or
11304 <LI>the email address from the selected entry; or
11305 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
11306 </UL>
11307 <DT>WhereIs
11308 <!--chtml if pinemode="function_key"-->
11309 (F12)
11310 <!--chtml else-->
11312 <!--chtml endif-->
11313 </DT>
11314 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11315 displayed text, not the full records for each entry.)  
11316 </DL>
11317 &lt;End of help on this topic&gt;
11318 </BODY>
11319 </HTML>
11320 ============= h_address_select ========================
11321 <HTML>
11322 <HEAD>
11323 <TITLE>SEARCH RESULTS INDEX</TITLE>
11324 </HEAD>
11325 <BODY>
11326 <H1>SEARCH RESULTS INDEX</H1>
11327 This screen shows the results, if any, of your Directory Server search.  
11328 Commands (besides those for screen navigation) are:
11329 <DL>
11330 <DT>Select
11331 </DT>
11332 <DD>Select this entry for use.
11334 <DT>ExitSelect
11335 <DD>Exit without selecting any of the entries.
11337 <DT>WhereIs
11338 </DT>
11339 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11340 displayed text, not the full records for each entry.)  
11341 </DL>
11342 &lt;End of help on this topic&gt;
11343 </BODY>
11344 </HTML>
11345 ===== h_folder_maint =====
11346 <HTML>
11347 <HEAD>
11348 <TITLE>Help for Folder List</TITLE>
11349 </HEAD>
11350 <BODY>
11351 <H1>FOLDER LIST COMMANDS</H1>
11352 <!--chtml if pinemode="function_key"-->
11353 <PRE>
11354 Available Commands -- Group 1        Available Commands -- Group 2
11355 -------------------------------      ------------------------------
11356 F1  Show Help Text                    F1  Show Help Text               
11357 F2  See commands in next group        F2  See commands in next group  
11358 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11359 F4  Select folder and view it         F4  MAIN MENU Screen
11360 F5  Move to previous folder
11361 F6  Move to next folder               F6  Specify a folder to go to
11362 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11363 F8  Show next screen of listing       F8  Compose a message
11364 F9  Add a new folder                  F9  Print folder listing
11365 F10 Delete selected folder
11366 F11 Rename selected folder
11367 F12 Whereis (search folder names)
11369 Available Commands -- Group 3
11370 F1  Show Help Text
11371 F2  See commands in next group
11372 F5  Go to next new message
11373     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11374 F8  Compose a message using roles
11375 F9  Export folder to a file
11376 F10 Import the file back to a folder
11377 </PRE>
11378 <!--chtml else-->
11379 <PRE>
11380 Navigating the Folder Screen            Operations on the Selected Folder
11381 ----------------------------            ---------------------------------
11382  P   Move to previous folder              V  View Index of selected folder
11383  N   Move to next folder                  D  Delete
11384  -   Show previous page of listing        R  Rename
11385 Spc  (space bar) Show next page           E  Export to file
11386                                           U  Import from file to folder
11388 FOLDER LIST Screen Commands              General Alpine Command
11389 ---------------------------              -----------------------
11390  A  Add a folder                          O  Show all other available commands
11391  G  Specify a folder to go to             ?  Show Help text
11392  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11393  W  Whereis (search folder names)         Q  Quit Alpine
11394  %  Print folder listing                  C  Compose a message
11395                                           #  Compose a message using roles
11396 </PRE>
11397 <!--chtml endif-->
11399 These commands are only available in the FOLDER LIST screen when the 
11400 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11401 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11402 <DT>Select:</DT>
11403 <DD>Select folders by certain criteria:<UL>
11404 <LI>All: of limited use, since there is no Apply command.
11405 <LI>by Property: <UL>
11406         <LI>folder contains messages not yet seen 
11407         <LI>folder contains new messages
11408         <LI>folder contains exactly as many, more, or fewer messages 
11409 than a given number
11410         </UL>
11411 <LI>by Text: <UL>
11412         <LI>contained in name of folder (Name Select)
11413         <LI>contained in messages in folder (Content Select)
11414         </UL>
11415 </UL></DD>
11417 <DT>Select current:</DT>
11418 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11419 add one or more folders to a set created with the Select command described 
11420 above.)</DD>
11421 <DT>Zoom mode:</DT>
11422 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11423 </DL>
11425 If the feature
11426 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11427 is set then the TAB key will display the number of recent messages and
11428 the total number of messages in the highlighted folder.
11430 The &quot;Export&quot; command causes the lowest common denominator style
11431 mailbox to be written to a file.
11432 If the file already exists, you are asked if you want to delete it.
11433 If you say No, then the operation is aborted.
11434 Export might be a reasonable way to store a backup or an archival copy of
11435 a folder.
11436 The exported-to file is a local file on the system where you are running Alpine.
11437 The &quot;Import&quot; command is the opposite of the Export command.
11438 It reads a file created by Export and asks where it should save it in your
11439 folders.
11440 This could be a new folder or an existing folder.
11441 If the folder already exists, the messages from the exported file will be
11442 appended to the folder.
11444 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11446 The purpose of the FOLDER LIST screen is to help you browse and manage
11447 the folders and directories (also known as &quot;hierarchy&quot;)
11448 contained within a collection.
11451 Folders and directories are arranged alphabetically across lines of
11452 the screen.  Directories, if present, are denoted by a special
11453 character at the end of the name known as the hierarchy delimiter
11454 (typically, &quot;/&quot;).  By default, folders and directories are
11455 mixed together.  The
11456 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11457 configuration option can be used to group directories toward the 
11458 beginning or end of the list.
11461 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11462 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11463 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11464 selected item.  Folder and directory management is provided via the
11465 Rename, Delete and Add commands.
11467 <P><CENTER>About Folders</CENTER>
11468 What are Folders?<P>
11470 Folders are simply files where messages are kept.  Every message has to be
11471 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11472 folder for sent mail and a folder for saved messages.<P>
11474 You may create as many other folders as you wish.  They must be given
11475 names that can be filenames on the filesystem.  
11478 You can move messages from one folder to another by opening the original
11479 folder and saving messages into the other folder just as you can save
11480 message from your INBOX to any other folder.<P>
11482 Folders are typically just files in the filesystem.  However, the files
11483 that are
11484 folders have some special formatting in them (so that Alpine knows where one
11485 message ends and another begins) and should <EM>not</EM> be edited outside of
11486 Alpine.  If you want copies of your messages in text files that you can edit
11487 or otherwise manipulate, use the Export command to copy them from Alpine into
11488 your regular file area.
11491 FOR MORE INFORMATION: See the section on
11492 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11494 <CENTER>About Directories</CENTER>
11496 A directory is simply a container used to group folders within a
11497 folder list.  You can create as many directories as you like.  And 
11498 directories can even contain directories themselves.
11501 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11502 to note that not all IMAP servers support directories.  If you find that
11503 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11504 then it's likely that directories are not supported by the server serving
11505 in that collection.
11508 Similarly, servers that do provide for directories may not do so in
11509 the same way.  On some servers, for example, each folder name you
11510 create is at the same time capable of being a directory.  When this
11511 happens, Alpine will display both the folder name and the name of the
11512 directory (with trailing hierarchy delimiter) in the folder list.
11515 Another issue with IMAP access, though with a much smaller set of servers,
11516 is that not all servers accept the request to list out the available
11517 folders and directories in the same way.  If you find yourself having
11518 trouble viewing folders on your server, you might investigate the
11519 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11520 feature.
11522 <UL>
11523 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11524 </UL>
11526 &lt;End of help on this topic&gt;
11527 </BODY>
11528 </HTML>
11529 ========= h_valid_folder_names ========
11530 <HTML>
11531 <HEAD>
11532 <TITLE>Explanation of Valid Folder Names</TITLE>
11533 </HEAD>
11534 <BODY>
11535 <H1>Folder Name Syntax Explained</H1>
11537 Once your folder collections are defined, you can usually refer to
11538 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11539 display.  However, understanding the complete syntax for folder names,
11540 both local and remote, is handy when using the Goto command and when
11541 you are adding new folder collections via the Setups/collectionList screen.
11543 An Alpine folder name looks like
11546 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11549 The square brackets ([]) mean that the part is optional.
11552 If there is no remote-specification, then the folder name is interpreted
11553 locally on the computer running Alpine.
11554 Local folder names depend on the operating system used by the computer 
11555 running Alpine, as well as the configuration of that system.  For example,
11556 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11557 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11558 system running Unix.
11561 Alpine users have the option of using folders that are stored on some other
11562 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11563 Access Protocol), or in the case of news, via NNTP (the Network News
11564 Transport Protocol).  To be able to access remote folders in Alpine, the
11565 remote host must be running the appropriate server software (imapd or
11566 nntpd) and you must correctly specify the name of the folder to Alpine,
11567 including the domain name of the remote machine. For example,
11569 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11571 could be a remote folder specification, and so could
11573 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11576 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11578 Note that in the case of remote folders, the directory/file path in the specification is 
11579 determined by the operating system of the remote computer, <B>not</B> by
11580 the operating system of the computer on which you are running Alpine.
11582 As you can tell, the name of the computer is in &#123;} brackets
11583 followed immediately by the name of the folder.  (In each of these cases the
11584 optional namespace is missing.)  If, as in these
11585 examples, there is no remote access protocol specified, then IMAP is
11586 assumed.  Check
11587 <A HREF="h_folder_server_syntax">here</A>
11588 for a more detailed look at what options can be placed between the brackets.
11589 If there are no brackets at all, then the folder name is interpreted locally
11590 on the computer on which you are running Alpine.
11593 To the right of the brackets when a server name is present, or at the
11594 start of the foldername if no server is present, the sharp sign,
11595 &quot;#&quot;, holds special meaning.  It indicates a folder name
11596 outside the area reserved for your personal folders.  In fact, it's
11597 used to indicate both the name of the folder, and a special phrase
11598 telling Alpine how to interpret the name that follows.
11601 So, for example, Alpine can be used to access a newsgroup that might be 
11602 available on your computer using:
11604 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11606 The sharp sign indicates the folder name is outside your personal
11607 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11608 interpret the remainder of the name as a newsgroup.
11611 Similarly, to access a newsgroup on your IMAP server, you might
11612 use something like:
11614 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11617 There are a number of such special phrases (or &quot;namespaces&quot;)
11618 available.  For a more detailed explanation read about
11619 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11622 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11623 names.  The name INBOX refers to your &quot;principal incoming
11624 message folder&quot; and will be mapped to the actual file name used for your
11625 INBOX on any given host.  Therefore, a name like
11626 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11627 store incoming mail for you on that particular host.
11630 &lt;End of help on this topic&gt;
11631 </BODY>
11632 </HTML>
11633 ======= h_folder_name_namespaces =======
11634 <HTML>
11635 <HEAD>
11636 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11637 </HEAD>
11638 <BODY>
11639 <H1>Folder Name Namespaces Explained</H1>
11641 An Alpine folder name looks like
11644 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11647 The local part of a folder name has an optional &quot;Namespace&quot; which
11648 tells Alpine how to interpret the rest of the name.
11650 <P> 
11651 By default the folder name is interpreted as defining a section of your personal
11652 folder area.  This area and how you specify it are defined by the
11653 server, if one is specified, or, typically, the home
11654 directory, if no server is defined.
11657 If a namespace is specified, it begins with the
11658 sharp, &quot;#&quot;, character followed by the name of the namespace
11659 and then the namespace's path-element-delimiter.  Aside from the
11660 path's format, namespaces can also imply access rights, content
11661 policy, audience, location, and, occasionally, access methods.
11664 Each server exports its own set (possibly of size one) of 
11665 namespaces.  Hence, it's likely communication with your server's
11666 administrator will be required for specific configurations.  Some of
11667 the more common namespaces, however, include:
11669 <DL>
11670 <DT>#news.</DT>
11671 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11672 names are hierarchically defined with each level delimited by a period.
11674 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11676 </DD>
11677 <DT>#public/</DT>
11678 <DD>This specifies a folder area that the server may export to the general
11679 public.
11680 </DD>
11681 <DT>#shared/</DT>
11682 <DD>This specifies a folder area that the server may export to groups
11683 of users.
11684 </DD>
11685 <DT>#ftp/</DT>
11686 <DD>This specifies a folder area that is the same as that it may have 
11687 exported via the &quot;File Transfer Protocol&quot;.
11688 </DD>
11689 <DT>#mh/</DT>
11690 <DD>This specifies the personal folder area associated with folders
11691 and directories that were created using the MH message handling system.
11692 </DD>
11693 <DT>#move/</DT>
11694 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11696 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11698 The #move namespace is followed by two folder names separated by a delimiter
11699 character.
11700 The delimiter character may be any character that does not appear in
11701 the MailDropFolder name.
11702 The meaning of #move is that mail will be copied from the MailDropFolder to
11703 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11704 Periodic checks at frequency
11705 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11706 time between checks set by
11707 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11708 are made for new mail arriving in the MailDropFolder.
11709 An example that copies mail from a POP inbox to a local folder follows
11711 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11713 To you it appears that mail is being delivered to the local folder when it
11714 is copied from the MailDropFolder, and you read mail from the local folder.
11716 Note that if the DestinationFolder does not exist then the messages are not
11717 copied from the MailDropFolder.
11718 A #move folder may only be used as an
11719 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11720 an Inbox.
11721 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11722 on the
11723 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11724 option)
11725 the Add command has a subcommand &quot;Use Mail Drop&quot;
11726 which may be helpful for defining the folder in your Alpine configuration.
11727 The same is true when you edit the
11728 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11729 option in Setup/Config.
11730 Each of these configuration methods will also create the DestinationFolder
11731 if it doesn't already exist.
11732 If you are having problems, make sure the DestinationFolder exists.
11733 You may find some more useful information about Mail Drops at
11734 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11735 </DD>
11736 </DL>
11739 In addition, the server may support access to other user's folders,
11740 provided you have suitable permissions.  Common methods use a prefix
11741 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11742 indicate the root of the other user's folder area.
11745 No, nothing's simple.
11748 &lt;End of help on this topic&gt;
11749 </BODY>
11750 </HTML>
11751 ============= h_whatis_vcard ========================
11752 <HTML>
11753 <HEAD>
11754 <TITLE>VCARD EXPLAINED</TITLE>
11755 </HEAD>
11756 <BODY>
11757 <H1>What is the vCard format?</H1>
11758 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11759 information about and among people and organizations electronically.  
11760 More information about vCard can be found (as of May 1998) on the WWW site 
11761 of the Internet Mail Consortium at the URL:
11763 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11765 &lt;End of help on this topic&gt;
11766 </BODY>
11767 </HTML>
11768 ===== h_folder_open =====
11769 <HTML>
11770 <HEAD>
11771 <TITLE>Explanation of Folder Selection</TITLE>
11772 </HEAD>
11773 <BODY>
11774 <BR>
11775 <BR>
11776 This screen is designed to allow you to quickly and easily survey your
11777 folders and select one to open.
11778 <!--chtml if pinemode="function_key"-->
11779 <PRE>
11780 Navigating the List of Folders             General Alpine Commands
11781 ------------------------------             -----------------------
11782  P   Move to previous folder               ?   Show this help text
11783  N   Move to next folder
11784  -   Show previous screen of folders
11785 Spc  (space bar) Show next screen
11786  W   WhereIs (search folder names)
11788 Folder Selection Commands
11789 -------------------------
11790  E   Exit the Folder Select menu (without selecting a folder)
11791  S   Select the currently highlighted folder
11792 </PRE>
11793 <!--chtml else-->
11794 <PRE>
11795 Navigating the List of Folders             General Alpine Commands
11796 ------------------------------             -----------------------
11797 F5   Move to previous folder               F1  Show this help text
11798 F6   Move to next folder
11799 F7   Show previous screen of folders
11800 F8   Show next screen of folders
11801 F12  WhereIs (search folder names)
11803 Folder Selection Commands
11804 -------------------------
11805 F3   Exit the Folder Select menu (without selecting a folder)
11806 F4   Select the currently highlighted folder
11807 </PRE>
11808 <!--chtml endif-->
11810 FOR MORE INFORMATION: See the section on
11811 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11813 &lt;End of help on this topic&gt;
11814 </BODY>
11815 </HTML>
11816 ===== h_folder_subscribe =====
11817 <HTML>
11818 <HEAD>
11819 <TITLE>Newsgroup Subscribe Screen explained</TITLE>
11820 </HEAD>
11821 <BODY>
11822 <H1>FOLDER SUBSCRIBE HELP</H1>
11824 This screen is designed to help you subscribe to newsgroups you are
11825 not currently subscribed to.  The screen display is a list of all
11826 available newsgroups (or possibly a partial list if you specified a
11827 partial name when entering the screen).  Groups you have already
11828 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11829 select a single new group to subscribe to by moving the cursor to that
11830 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11831 you may change into ListMode with the &quot;ListMode&quot; command.
11832 The display will change slightly so that each group has a checkbox in
11833 front of it.  Use the cursor and the Set/Unset command to place an
11834 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11837 When you are finished marking groups, the &quot;Subscribe&quot;
11838 command will subscribe you to those groups you have marked.  Note, you
11839 may not unsubscribe to groups with this command.  Instead of the
11840 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11841 UnSbscrbe command.
11844 <!--chtml if pinemode="function_key"-->
11845 <PRE>
11846 Navigating the List of Newsgroups          General Alpine Commands
11847 ---------------------------------          -----------------------
11848 F5   Move to previous group                F1   Show this help text
11849 F6   Move to next group
11850 F7   Show previous screen of groups
11851 F8   Show next screen of groups
11852 F12  WhereIs (search group names)
11853 F9   Use ListMode
11855 Group Selection Commands
11856 -------------------------
11857 F3  Exit the News Subscribe menu (without selecting any groups)
11858 F4  Subscribe to the currently highlighted newsgroup
11859 </PRE>
11860 <!--chtml else-->
11861 <PRE>
11862 Navigating the List of Newsgroups          General Alpine Commands
11863 ---------------------------------          -----------------------
11864  P   Move to previous group                ?   Show this help text
11865  N   Move to next group
11866  -   Show previous screen of groups
11867 Spc  (space bar) Show next screen
11868  W   WhereIs (search group names)
11869  L   Use ListMode
11871 Group Selection Commands
11872 -------------------------
11873  E   Exit the News Subscribe menu (without selecting any groups)
11874  S   Subscribe to the currently highlighted newsgroup
11875 </PRE>
11876 <!--chtml endif-->
11878 When in ListMode, there is an additional command for marking groups to
11879 subscribe to:
11881 <!--chtml if pinemode="function_key"-->
11882 <PRE>
11883 ListMode Commands
11884 -------------------------
11885 F9  Set or unset the highlighted group
11886 </PRE>
11887 <!--chtml else-->
11888 <PRE>
11889 ListMode Commands
11890 -------------------------
11891 X   Set or unset the highlighted group
11892 </PRE>
11893 <!--chtml endif-->
11895 &lt;End of help on this topic&gt;
11896 </BODY>
11897 </HTML>
11898 ===== h_folder_postnews =====
11899 <HTML>
11900 <HEAD>
11901 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11902 </HEAD>
11903 <BODY>
11904 This screen is designed to allow you to quickly and easily survey
11905 the available newsgroups and select one to post news to.
11907 <!--chtml if pinemode="function_key"-->
11908 <PRE>
11909 Navigating the List of Newsgroups          General Alpine Commands
11910 ---------------------------------          -----------------------
11911 F5   Move to previous group                F1  Show this help text
11912 F6   Move to next group
11913 F7   Show previous screen of groups
11914 F8   Show next screen of groups
11915 F12  WhereIs (search group names)
11917 Group Selection Commands
11918 -------------------------
11919 F3   Exit the Selection menu (without selecting a group)
11920 F4   Select the currently highlighted newsgroup
11921 </PRE>
11922 <!--chtml else-->
11923 <PRE>
11924 Navigating the List of Newsgroups          General Alpine Commands
11925 ---------------------------------          -----------------------
11926  P   Move to previous group                ?  Show this help text
11927  N   Move to next group
11928  -   Show previous screen of groups
11929 Spc  (space bar) Show next screen of groups
11930  W   WhereIs (search group names)
11932 Group Selection Commands
11933 -------------------------
11934  E   Exit the Selection menu (without selecting a group)
11935  S   Select the currently highlighted newsgroup
11936 </PRE>
11937 <!--chtml endif-->
11939 &lt;End of help on this topic&gt;
11940 </BODY>
11941 </HTML>
11942 ===== h_folder_save =====
11943 <HTML>
11944 <HEAD>
11945 <TITLE>Folder Select for Save Explained</TITLE>
11946 </HEAD>
11947 <BODY>
11948 This screen is designed to allow you to quickly and easily survey your
11949 folders and select one to use for saving the current message.
11952 <!--chtml if pinemode="function_key"-->
11953 <PRE>
11954 Navigating the List of Folders             General Alpine Commands
11955 ------------------------------             -----------------------
11956 F5   Move to previous folder               F1  Show this help text
11957 F6   Move to next folder
11958 F7   Show previous screen of folders
11959 F8   Show next screen of folders
11960 F12  WhereIs (search folder names)
11962 Folder Selection Commands
11963 -------------------------
11964 F3   Exit the Folder Select menu (without selecting a folder)
11965 F4   Select the currently highlighted folder
11966 F11  AddNew folder (just like Select, but you type in a new folder name)
11967 </PRE>
11968 <!--chtml else-->
11969 <PRE>
11970 Navigating the List of Folders             General Alpine Commands
11971 ------------------------------             -----------------------
11972  P   Move to previous folder               ?  Show this help text
11973  N   Move to next folder
11974  -   Show previous screen of folders
11975 Spc  (space bar) Show next screen of folders
11976  W   WhereIs (search folder names)
11978 Folder Selection Commands
11979 -------------------------
11980  E   Exit the Folder Select menu (without selecting a folder)
11981  S   Select the currently highlighted folder
11982  A   AddNew folder (just like Select, but you type in a new folder name)
11983 </PRE>
11984 <!--chtml endif-->
11986 FOR MORE INFORMATION: See the section on
11987 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11989 &lt;End of help on this topic&gt;
11990 </BODY>
11991 </HTML>
11992 ===== h_folder_fcc =====
11993 <HTML>
11994 <HEAD>
11995 <TITLE>Folder Select for Fcc Explained</TITLE>
11996 </HEAD>
11997 <BODY>
11998 This screen is designed to allow you to quickly and easily survey your
11999 folders and select one to use as the file carbon copy (fcc) for the
12000 current message.
12003 <!--chtml if pinemode="function_key"-->
12004 <PRE>
12005 Navigating the List of Folders             General Alpine Commands
12006 ------------------------------             -----------------------
12007 F5   Move to previous folder               F1  Show this help text
12008 F6   Move to next folder
12009 F7   Show previous screen of folders
12010 F8   Show next screen of folders
12011 F12  WhereIs (search folder names)
12013 Folder Selection Commands
12014 -------------------------
12015 F3   Exit the Folder Select menu (without selecting a folder)
12016 F4   Select the currently highlighted folder
12017 F11  AddNew folder (just like Select, but you type in a new folder name)
12018 </PRE>
12019 <!--chtml else-->
12020 <PRE>
12021 Navigating the List of Folders             General Alpine Commands
12022 ------------------------------             -----------------------
12023  P   Move to previous folder               ?  Show this help text
12024  N   Move to next folder
12025  -   Show previous screen of folders
12026 Spc  (space bar) Show next screen of folders
12027  W   WhereIs (search folder names)
12029 Folder Selection Commands
12030 -------------------------
12031  E   Exit the Folder Select menu (without selecting a folder)
12032  S   Select the currently highlighted folder
12033  A   AddNew folder (just like Select, but you type in a new folder name)
12034 </PRE>
12035 <!--chtml endif-->
12037 FOR MORE INFORMATION: See the section on
12038 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12040 &lt;End of help on this topic&gt;
12041 </BODY>
12042 </HTML>
12043 ===== h_folder_pattern_roles =====
12044 <HTML>
12045 <HEAD>
12046 <TITLE>Folder Select for Current Folder Explained</TITLE>
12047 </HEAD>
12048 <BODY>
12049 This screen is designed to allow you to quickly and easily survey your
12050 folders and select one to use as the specific Current Folder
12051 in a Pattern.
12054 <!--chtml if pinemode="function_key"-->
12055 <PRE>
12056 Navigating the List of Folders             General Alpine Commands
12057 ------------------------------             -----------------------
12058 F5   Move to previous folder               F1  Show this help text
12059 F6   Move to next folder
12060 F7   Show previous screen of folders
12061 F8   Show next screen of folders
12062 F12  WhereIs (search folder names)
12064 Folder Selection Commands
12065 -------------------------
12066 F3   Exit the Folder Select menu (without selecting a folder)
12067 F4   Select the currently highlighted folder
12068 F11  AddNew folder (just like Select, but you type in a new folder name)
12069 </PRE>
12070 <!--chtml else-->
12071 <PRE>
12072 Navigating the List of Folders             General Alpine Commands
12073 ------------------------------             -----------------------
12074  P   Move to previous folder               ?  Show this help text
12075  N   Move to next folder
12076  -   Show previous screen of folders
12077 Spc  (space bar) Show next screen of folders
12078  W   WhereIs (search folder names)
12080 Folder Selection Commands
12081 -------------------------
12082  E   Exit the Folder Select menu (without selecting a folder)
12083  S   Select the currently highlighted folder
12084  A   AddNew folder (just like Select, but you type in a new folder name)
12085 </PRE>
12086 <!--chtml endif-->
12088 FOR MORE INFORMATION: See the section on
12089 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12091 &lt;End of help on this topic&gt;
12092 </BODY>
12093 </HTML>
12094 ===== h_folder_stayopen_folders =====
12095 <HTML>
12096 <HEAD>
12097 <TITLE>Folder Select Explained</TITLE>
12098 </HEAD>
12099 <BODY>
12100 This screen is designed to allow you to quickly and easily survey your
12101 folders and select one to use as a Stay-Open folder.
12104 <!--chtml if pinemode="function_key"-->
12105 <PRE>
12106 Navigating the List of Folders             General Alpine Commands
12107 ------------------------------             -----------------------
12108 F5   Move to previous folder               F1  Show this help text
12109 F6   Move to next folder
12110 F7   Show previous screen of folders
12111 F8   Show next screen of folders
12112 F12  WhereIs (search folder names)
12114 Folder Selection Commands
12115 -------------------------
12116 F3   Exit the Folder Select menu (without selecting a folder)
12117 F4   Select the currently highlighted folder
12118 F11  AddNew folder (just like Select, but you type in a new folder name)
12119 </PRE>
12120 <!--chtml else-->
12121 <PRE>
12122 Navigating the List of Folders             General Alpine Commands
12123 ------------------------------             -----------------------
12124  P   Move to previous folder               ?  Show this help text
12125  N   Move to next folder
12126  -   Show previous screen of folders
12127 Spc  (space bar) Show next screen of folders
12128  W   WhereIs (search folder names)
12130 Folder Selection Commands
12131 -------------------------
12132  E   Exit the Folder Select menu (without selecting a folder)
12133  S   Select the currently highlighted folder
12134  A   AddNew folder (just like Select, but you type in a new folder name)
12135 </PRE>
12136 <!--chtml endif-->
12138 FOR MORE INFORMATION: See the section on
12139 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12141 &lt;End of help on this topic&gt;
12142 </BODY>
12143 </HTML>
12144 ===== h_folder_action_roles =====
12145 <HTML>
12146 <HEAD>
12147 <TITLE>Folder Select Explained</TITLE>
12148 </HEAD>
12149 <BODY>
12150 This screen is designed to allow you to quickly and easily survey your
12151 folders and select one to use as the folder into which messages
12152 matching this filter will be moved.
12155 <!--chtml if pinemode="function_key"-->
12156 <PRE>
12157 Navigating the List of Folders             General Alpine Commands
12158 ------------------------------             -----------------------
12159 F5   Move to previous folder               F1  Show this help text
12160 F6   Move to next folder
12161 F7   Show previous screen of folders
12162 F8   Show next screen of folders
12163 F12  WhereIs (search folder names)
12165 Folder Selection Commands
12166 -------------------------
12167 F3   Exit the Folder Select menu (without selecting a folder)
12168 F4   Select the currently highlighted folder
12169 F11  AddNew folder (just like Select, but you type in a new folder name)
12170 </PRE>
12171 <!--chtml else-->
12172 <PRE>
12173 Navigating the List of Folders             General Alpine Commands
12174 ------------------------------             -----------------------
12175  P   Move to previous folder               ?  Show this help text
12176  N   Move to next folder
12177  -   Show previous screen of folders
12178 Spc  (space bar) Show next screen of folders
12179  W   WhereIs (search folder names)
12181 Folder Selection Commands
12182 -------------------------
12183  E   Exit the Folder Select menu (without selecting a folder)
12184  S   Select the currently highlighted folder
12185  A   AddNew folder (just like Select, but you type in a new folder name)
12186 </PRE>
12187 <!--chtml endif-->
12189 FOR MORE INFORMATION: See the section on
12190 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12192 &lt;End of help on this topic&gt;
12193 </BODY>
12194 </HTML>
12195 ===== h_abook_config =====
12196 <HTML>
12197 <HEAD>
12198 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
12199 </HEAD>
12200 <BODY>
12201 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
12202 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
12203 <!--chtml if pinemode="function_key"-->
12204 <PRE>
12205 Available  Commands                        
12206 -------------------------------            
12207 F1  Show Help Text                         
12208 F3  Back to MAIN Alpine menu                 
12209 F4  Change configuration for address book  
12210 F5  Move to previous address book          
12211 F6  Move to next address book              
12212 F7  Previous page of address books         
12213 F8  Next page of address books             
12214 F9  Add new address book                   
12215 F10 Delete existing address book           
12216 F11 Shuffle the order of address books     
12217 F12 Whereis (search address book titles)   
12218 </PRE>
12219 <!--chtml else-->
12220 <PRE>
12221 Navigation                     General Alpine Commands
12222 -----------------------        -----------------------
12223  P  Prev Address Book           ?  Display this help text
12224  N  Next Address Book           E  Back to MAIN Alpine menu
12225  -  Previous page
12226 Spc (space bar) Next page
12227  W  WhereIs (search for word in address book titles)
12229 Setup Address Books Commands
12230 ------------------------------------------------
12231  A  Add new address book          $  Shuffle the order of address books
12232  D  Delete existing address book  C  Change configuration for address book
12233 </PRE>
12234 <!--chtml endif-->
12236 <H2>Description of the Setup Address Books Screen</H2>
12238 This screen lets you add, delete, modify, or change the order of your
12239 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
12240 fill in.  If you are adding a remote address book on an IMAP server
12241 you should fill in the name of the IMAP server.  Otherwise, leave
12242 that field blank.  (Note that remote IMAP address books are an Alpine
12243 concept and are unlikely to interoperate with other mail clients.)
12244 For a remote address book, fill in the name of the remote folder
12245 in the Folder field.  This should be a folder that is used only for
12246 this one purpose, not a general purpose folder you expect to store
12247 messages in.
12248 <P>If you are adding a local address book, fill in the
12249 Folder Name field with a local file name (e.g., .addressbook).
12251 <B>Please note:</B> Remote address books stored on an IMAP server are 
12252 of an entirely different format (namely, a special-purpose 
12253 &quot;mail folder&quot;) than that of the local addressbook familiar 
12254 to Alpine users.  Therefore, 
12255 you cannot use &quot;add a remote address book&quot; to make an existing 
12256 Alpine .addressbook file you may have on a remote IMAP server accessible to 
12257 Alpine running on a different host.  
12260 The &quot;Del Abook&quot; command allows you to remove an address book
12261 from your configuration.  It will also ask you if you wish to remove
12262 the data for that address book, which would erase all traces of the
12263 address book if you answer Yes.
12266 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
12267 The difference is that instead of adding a new address book to your
12268 configuration, you are changing the configuration of an existing entry.
12269 For example, you might want to correct a typing error or change a
12270 nickname.  The &quot;Change&quot; command is not a move command.  If you
12271 change the folder name or server name the data will not be moved for you.
12274 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
12275 an address book toward another address book in the same group then
12276 the order of those two address books will be swapped.  If you shuffle
12277 the last Personal address book down towards the Global address book
12278 section, it will become a Global address book.  If you shuffle
12279 the first Global address book up it will become a Personal address
12280 book.  The main difference between Personal and Global address
12281 books is that Global address books are forced read-only.
12282 <P><UL>
12283 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12284 </UL>
12286 &lt;End of help on this topic&gt;
12287 </BODY>
12288 </HTML>
12289 ===== h_abook_top =====
12290 <HTML>
12291 <HEAD>
12292 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
12293 </HEAD>
12294 <BODY>
12295 <H1>ADDRESS BOOK LIST COMMANDS</H1>
12296 <!--chtml if pinemode="function_key"-->
12297 <PRE>
12298 Available  Commands -- Group 1         Available Commands -- Group 2
12299 -------------------------------        ------------------------------
12300 F1  Show Help Text                      F1  Show Help Text
12301 F2  See commands in next group          F2  See commands in next group
12302 F3  Exit to MAIN MENU                   F3  Quit Alpine
12303 F4  View/Edit selected address book
12304 F5  Move to previous address book       F5  FOLDER LIST screen
12305 F6  Move to next address book           F6  Specify a folder to go to
12306 F7  Previous page                       F7  MESSAGE INDEX screen
12307 F8  Next page                           F9  Print list of address books
12308 F12 Whereis (search for word)
12309 </PRE>
12310 <!--chtml else-->
12311 <PRE>
12312 Navigation                       General Alpine Commands
12313 -----------------------          -----------------------
12314  P  Previous Entry                ?  Display this help text
12315  N  Next Entry                    O  Show all other available commands
12316  -  Previous page                 &lt;  Back to MAIN Alpine menu
12317 Spc (space bar) Next page         Q  Quit Alpine
12318  W  WhereIs (search for word)     L  FOLDER LIST screen
12319                                   G  Specify a folder to go to
12320 Address Book Commands             I  MESSAGE INDEX screen
12321 ------------------------------------------------
12322  &gt;  View/Edit selected address book
12323               or
12324  &gt;  Search on selected directory server
12326  %  Print list of address books and directory servers
12327 </PRE>
12328 <!--chtml endif-->
12330 <H2>Description of the Address Book List Screen</H2>
12332 From this screen you may choose which address book you wish to view
12333 or edit. For more information on address books, view one of your
12334 address books (with
12335 <!--chtml if pinemode="function_key"-->
12337 <!--chtml else-->
12338 &quot;&gt;&quot;
12339 <!--chtml endif-->)
12340 and see the Help Text there.<P>
12342 You may also choose a directory server on which to search for entries.
12343 You do that by highlighting the directory server line and using
12344 <!--chtml if pinemode="function_key"-->
12346 <!--chtml else-->
12347 &quot;&gt;&quot;
12348 <!--chtml endif-->.<P>
12350 If you wish to define new address books or directory servers go to the Main
12351 menu and choose Setup. You may then either choose to setup AddressBooks or
12352 Directory (among other things). It's possible that the Directory option
12353 will not be there if the Alpine you are using does not contain LDAP directory
12354 lookup functionality.
12356 <P><UL>
12357 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12358 </UL><P>
12359 &lt;End of help on this topic&gt;
12360 </BODY>
12361 </HTML>
12362 ===== h_abook_opened =====
12363 <HTML>
12364 <HEAD>
12365 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12366 </HEAD>
12367 <BODY>
12368 <H1>THE ALPINE ADDRESS BOOK</H1>
12369 <H2>ADDRESS BOOK COMMANDS</H2>
12370 <PRE>
12371 <!--chtml if pinemode="function_key"-->
12372 Available  Commands -- Group 1         Available Commands -- Group 2   
12373 -------------------------------        ------------------------------  
12374 F1  Show Help Text                      F1  Show Help Text             
12375 F2  See commands in next group          F2  See commands in next group
12376 F3  Exit this screen                    F3  Quit Alpine                  
12377 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12378 F5  Move to previous entry              F5  FOLDER LIST screen         
12379 F6  Move to next entry                  F6  Specify a folder to go to  
12380 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12381 F8  Next page of address book           F8  Compose to entry using roles
12382 F9  Add new entry to address book       F9  Print address book         
12383 F10 Delete selected entry               F10 TakeAddr to another addrbook
12384 F11 Compose to selected entry           F11 Save or Export addrbook selections
12385 F12 Whereis (search address book)       F12 Forward entry by mail       
12387 Available Commands -- Group 3                                           
12388 ------------------------------                                          
12389 F3  Select                              F6  Zoom (or unZoom)            
12390 F5  Select Current                      F7  Apply Command to Selection  
12391 <!--chtml else-->
12392 Address Book Navigation        General Alpine Commands
12393 -----------------------        -----------------------
12394  P  Prev Address                  ?  Display this help text
12395  N  Next Address                  O  Show all other available commands
12396  -  Previous page of address book M  Back to MAIN MENU
12397 Spc (space bar) Next page         Q  Quit Alpine
12398  W  WhereIs (search for word      C  Compose message to selected addr
12399      or name in address book)     #  Compose to addr using roles
12400  &lt;  To List of Address Books if   L  FOLDER LIST screen
12401      more than one, else to MAIN  G  Specify a folder to go to
12402                                   I  MESSAGE INDEX screen
12404 Address Book Commands
12405 ----------------------------------------------------
12406  &gt;  View/Update selected entry    D  Delete selected entries
12407  %  Print address book            S  Save or Export address book selections
12408  F  Forward entries by mail       @  Add new entry to address book
12410  ;  Select command                Z  Toggle Zoom Mode
12411  :  Select highlighted entry      A  Apply command to selected entries
12413 <!--chtml endif-->
12414 </PRE>
12415 Note:  The presence or absence of the final four commands above is
12416 controlled by the option 
12417 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12420 <H2>Description of the Address Book Screen</H2>
12422 This screen lets you edit and manage entries in your address book.  It
12423 also acts as a short-cut for composing messages to people in the address
12424 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12425 message starts &quot;pre-addressed&quot; to whatever address book entry is
12426 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
12427 role to use in your composition.
12429 Alpine's address book helps you keep a list of addresses you send email to so
12430 you do not have to remember addresses that are often complex.  Each entry
12431 in the address book has five fields, all of them optional.  The three
12432 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12434         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12435         This is what you type in as you are addressing the message in the
12436         composer.  If there is a matching entry in your address book(s),
12437         Alpine will extract the corresponding FullName and Address fields to
12438         generate the actual address for your message.
12440         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12441 of the
12442         person or organization.  Usually the full names are put in last
12443         name first so they sort nicely in alphabetical order.  Whatever
12444         you put as the name here will appear on the message when it is
12445         finally delivered.  Examples:<PRE>
12446            Garcia Marquez, Gabriel
12447            Henscheid, Eckhard
12448            Alpine-Info mailing list
12449            Library materials renewal requests
12450            Kim An-guk
12451            &quot;George III, King of Great Britain, 1738-1820&quot;
12452 </PRE>
12453 (In the second-to-last example, no comma is used in the name so that 
12454 the family name appears first in the address book and when the entry is 
12455 used in the composer.
12456 In the last example, retaining the commas is intended; 
12457 double-quotation marks surround the name to 
12458 prevent the transposition of its parts when the entry is used in 
12459 the composer.)
12461         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12462         a valid Internet address that conforms to the Internet message
12463         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12465 The two fields that aren't usually visible are:<DL>
12467   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12468         message to this address to be saved in.  If this field is set, and
12469         this address is the first one in the message's To: header, then
12470         Alpine will use this folder name for the FCC in lieu of the normal
12471         FCC folder name.
12473   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12474         </DL>
12476 Due to screen width limitations, these last two fields do not show up in
12477 the normal ADDRESS BOOK display.  You may select the 
12478 &quot;View/Update&quot; command to
12479 view or modify them.  You may use the configuration variable
12480 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12481 to add these fields to your ADDRESS BOOK 
12482 display, or to modify the format of the display.
12484 <H2>Sorting the Address book</H2>
12486 By default, address book entries are sorted alphabetically on the full
12487 name with distribution lists sorted to the end.  Sorting can be changed by
12488 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12489 --assuming you have &quot;write&quot; permission for the address book file.
12491 Unlike the sorting of folders (which only changes presentation), sorting an
12492 address book actually changes the file as it is kept on the computer.  For
12493 this reason you won't be able to sort a shared or system-wide address
12494 book.
12496 <H2>Adding New Entries</H2>
12498 The easiest way to add new entries to your address book is to use the
12499 &quot;TakeAddr&quot; command when viewing a message.
12500 This command allows you to take addresses from the header and body of the
12501 message and put them into your address book, without having to type
12502 them in.
12505 To manually add a new entry from within the address book screen, use the AddNew
12506 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12507 Use this command both for adding a simple alias and for adding a
12508 distribution list.
12510 <H2>Distribution Lists</H2>
12512 Address book entries can be simple cases of aliases (a single nickname is linked
12513 to a single email address) or distribution lists (a single nickname
12514 pointing at more than one email address).  Each distribution list has a
12515 nickname, a full name and a list of addresses.  The addresses may be
12516 actual addresses or they may be other nicknames in your address book.
12517 They may even refer to other distribution lists.
12518 There's really no difference between a simple alias and a distribution list,
12519 other than the number of addresses.
12520 Therefore, you can turn a simple alias with one address into a distribution
12521 list simply by adding more addresses.
12522 To add entries to an existing list or alias
12523 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
12524 a single address from the list if the cursor is placed on the address;
12525 it will delete the entire distribution list if the cursor is on the
12526 nickname/fullname line.  View/Update may also be used to delete addresses
12527 from a list.
12529 Address field entries in distribution lists may take any one of three
12530 forms: a nickname existing in any of the defined address books, a normal
12531 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12532 fullname/address combination, e.g. &quot;John Smith
12533 &lt;jsmith@art.example.com&gt;&quot;.
12535 Distribution lists in Alpine address books can only be used by the person or
12536 people who have access to that address book.  They are not usually used to
12537 implement discussion groups, but can be used to facilitate small
12538 discussion groups if all the participants have access to the same shared
12539 address book.
12541 <H2>FCC and Comments</H2>
12543 As mentioned above, each entry in the address book also has two other optional
12544 fields, Fcc and Comments.  The command to look at or change either of these
12545 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
12546 Comments field is just for your own use.  The Fcc field overrides the
12547 default Fcc if this address is the first one on the To line.  The WhereIs
12548 command may be used to search for particular strings in the address book,
12549 including fields that are not visible (like Comment and Fcc by default).
12551 <H2>Aggregate Operations</H2>
12553 If the feature
12554 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12555 is turned on (the default), then the four commands &quot;Select&quot;,
12556 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12557 are available.  The two selection commands allow you to mark a set of
12558 address book entries as being selected.  If you have more than one address
12559 book, the selections may be in more than one of those address books.
12560 The &quot;Zoom&quot; command will toggle between displaying only the selected
12561 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12562 apply one of the regular address book commands to all of the selected
12563 entries.  Usually the address book commands apply to only the entry
12564 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12565 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12566 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12568 <H2>Exporting and Forwarding Address book entries</H2>
12570 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
12571 address book entry is placed in a plain text file in your home directory
12572 <!--chtml if pinemode="running"-->
12573 (which, in the present configuration of your system, is
12574  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12575 <!--chtml endif-->
12576 or current working directory
12577 <!--chtml if pinemode="running"-->
12578 (which, at least for your current Alpine &quot;session,&quot; 
12579 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12580 <!--chtml endif-->, depending on the 
12581 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12582 configuration setting.  If you have some entries selected and use the
12583 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12584 placed in the text file.
12586 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12587 address book entry is placed in a special attachment and you are put into
12588 the composer.  You can fill in some comments in the body of the message,
12589 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12590 may use the TakeAddr command on that message to insert the address book
12591 entry you sent in their own address book.  If you have some entries
12592 selected and use the Apply Forward command all of the selected entries
12593 will be forwarded in a single message.  You may
12594 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.
12595 The recipient must be using Alpine in order to receive this correctly.
12596 One way for the recipient to handle this might be to create an empty
12597 address book and then &quot;Take&quot; your forwarded address book entries into
12598 that empty address book.
12600 <H2>Multiple and/or Site-Wide Address books</H2>
12602 You may have more than one personal address book.  In addition, there may
12603 be one or more global address books.  This capability allows you to have
12604 multiple personal address books (some of which may be shared) and it also
12605 allows system administrators to implement site-wide address books that
12606 contain entries for users on multiple machines within the organization.
12607 <P><DL>
12608 <DT>Searching
12609   <DD> If you enter a nickname when composing a message, your
12610   personal address books will be searched through in order, and then the
12611   global address book(s) searched. If more than one address book has an entry
12612   for the nickname, Alpine uses the first one that it finds, so an entry in
12613   your personal address book would override a global address book entry. If
12614   after searching all the address books there is still no match, (Unix) Alpine
12615   then searches the local host password file on the assumption that you have
12616   entered a local user name rather than an address book nickname.
12617   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12618   command, but global address books are always searched after personal
12619   address books.
12621   <P><DT>Tab completion
12622   <DD> If the
12623   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12624   feature is turned on (the default) then the Tab key may be used
12625   in the composer to complete partially typed nicknames in the To
12626   or Cc lines. You type the first few letters of a nickname and then
12627   press the Tab key. It there is only one nickname that matches it will
12628   be filled in by Alpine. If there is more than one the unambiguous part
12629   of the nicknames will be filled in. For example, if your address book or
12630   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12631   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12632   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12633   If you then type a second Tab character you will be presented with a list
12634   of matching nicknames to select from. Alternatively, you could type another
12635   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12636   in the entire &quot;barbecue&quot; entry.
12638   <P><DT>Defining
12639   <DD> You define multiple personal address books in the 
12640   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12641   from the MAIN MENU.  
12642   You may add as many as you like.  Global address books are usually
12643   site-wide address books defined by the System administrator, but
12644   you may define global address books of your own just like you define
12645   personal address books.
12647   <P><DT>Creating and updating
12648   <DD> Personal address books are normally created empty
12649   and populated by explicit additions from within Alpine, e.g. via the
12650   TakeAddr command.  Unlike personal address books, global address books may
12651   not be modified/updated from within Alpine; that is, they are Read-Only.
12652   Thus, global address books are created, populated and updated outside of
12653   Alpine. They might be hand-edited, generated by a program from another
12654   database, or by copying an existing address book.  They might also be
12655   some other user's personal address book, and so be modified normally by
12656   that user but accessed Read-Only by you.  See the Alpine Technical
12657   Notes document (included in the Alpine distribution) for more information on
12658   this.
12660   <P><DT>Accessing
12661   <DD>There are two different types of address books in Alpine.
12662   A local address book is stored in a regular file and the normal file
12663   access permissions apply.  A remote address book is stored on an IMAP
12664   server in a special folder that contains only messages pertaining to
12665   that address book.  The last message in the remote folder contains a
12666   copy of the address book data, and that data is copied to a local cache
12667   file in your home directory.  From there it is accessed just like a local
12668   address book.  The name of the cache file is kept track of in a special
12669   file called the
12670   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12671   the name of which is stored in
12672   your Alpine configuration file the first time you use a remote address book.
12673   Just as local Alpine address books use a format that only Alpine understands,
12674   remote Alpine address books do the same and other mail reading programs
12675   are unlikely to be able to understand them.<P>
12676   While global address books are explicitly intended to be shared, there is
12677   nothing to prevent you from sharing a personal address book with other
12678   Alpine users. This might be useful in the case of a small workgroup.
12679   However, it is recommended that updates to shared personal address books
12680   be done when other Alpine users are not accessing the address book. Alpine
12681   does not do any file-locking to manage concurrent updates to the
12682   addressbook, but it does check to see if the file has been modified before
12683   making any changes.  Consequently, inadvertent concurrent updates will
12684   only cause other Alpine users to have to restart their address book
12685   operation, which will cause Alpine to reopen the updated file.
12687   <P><DT>Converting to Remote
12688   <DD>The easiest way to convert an existing local
12689   address book into a remote address book is to create an empty new remote
12690   personal address book by typing &quot;A&quot; to execute the
12691   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12692   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12693   address book.
12694   After you have added the empty
12695   remote address book, go into the screen for the address book you wish
12696   to copy and &quot;Select&quot; &quot;All&quot;.
12697   This selects every entry in that
12698   address book.  Then type the command &quot;Apply Save&quot;.
12699   You will be asked for the address book to save to.  You may use ^P and ^N
12700   to get to the new empty address book, then hit RETURN and the addresses
12701   will be copied.
12702   At this point you'll probably want to unselect all the entries in the local
12703   address book before proceeding. You do that with
12704   &quot;Select&quot; &quot;unselect All&quot;.
12706 </DL>
12707 <UL>
12708 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12709 </UL>
12710 <P><UL>
12711 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12712 </UL>
12714 &lt;End of help on this topic&gt;
12715 </BODY>
12716 </HTML>
12717 ===== h_abook_select_addr =====
12718 <HTML>
12719 <HEAD>
12720 <TITLE>Addressbook Selection Explained</TITLE>
12721 </HEAD>
12722 <BODY>
12723 <H1>SELECT ADDRESS</H1>
12724 <!--chtml if pinemode="function_key"-->
12725 <PRE>
12726 Navigating the List of Messages               General Alpine Commands
12727 -------------------------------               -----------------------
12728 F5   Move to previous entry                   F1  Show this help text
12729 F6   Move to next entry
12730 F7   Show previous screen of address book
12731 F8   Show next screen of address book
12732 F12  WhereIs (search through address book)
12734 Address Selection Commands
12735 --------------------------
12736 F3   Exit the Address Select screen (without selecting an address)
12737 F4   Select the currently highlighted entry
12738 </PRE>
12739 <!--chtml else-->
12740 <PRE>
12741 Navigating the List of Messages               General Alpine Commands
12742 -------------------------------               -----------------------
12743  P   Move to previous entry                    ?  Show this help text
12744  N   Move to next entry
12745  -   Show previous screen of address book
12746 Spc  (space bar) Show next screen of address book
12747  W   WhereIs (search through address book)
12749 Address Selection Commands
12750 --------------------------
12751  E   Exit the Address Select screen (without selecting an address)
12752  S   Select the currently highlighted entry
12753 </PRE>
12754 <!--chtml endif-->
12757 This screen is designed to let you easily scan your address book(s) in
12758 order to select an entry for the message you are composing.  You cannot
12759 edit your address book in any way at this time, for address book
12760 maintenance, select the address book command when not composing a message.
12763 If you are composing a message and know the nickname of the person/list you
12764 want, you can bypass this screen by simply typing in the nickname on the
12765 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12766 selecting an entry does not cancel your message.
12769 FOR MORE INFORMATION on addressing see
12770 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12771 <A HREF="h_abook_opened">Address Book Screen's</A>
12772 help text.
12774 &lt;End of help on this topic&gt;
12775 </BODY>
12776 </HTML>
12777 ===== h_abook_select_top =====
12778 <HTML>
12779 <HEAD>
12780 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12781 </HEAD>
12782 <BODY>
12783 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12784 <!--chtml if pinemode="function_key"-->
12785 <PRE>
12786 Navigating the List of Address Books       General Alpine Commands
12787 ------------------------------------       -----------------------
12788 F4   View the highlighted address book
12789 F5   Move to previous address book         F1  Show this help text
12790 F6   Move to next address book
12791 F7   Show previous screen of address books
12792 F8   Show next screen of address books
12793 F12  WhereIs (search through address books)
12795 Address Selection Commands
12796 --------------------------
12797 F3   Exit the Address Select screen (without selecting an address)
12798 F4   Select the currently selected entries (if using ListMode)
12799 F9   Change to ListMode
12800 </PRE>
12801 <!--chtml else-->
12802 <PRE>
12803 Navigating the List of Address Books       General Alpine Commands
12804 ------------------------------------       -----------------------
12805  &gt;   View the highlighted address book
12806  P   Move to previous address book         ?  Show this help text
12807  N   Move to next address book
12808  -   Show previous screen of address books
12809 Spc  (space bar) Show next screen of address books
12810  W   WhereIs (search through address books)
12812 Address Selection Commands
12813 --------------------------
12814  E   Exit the Address Select screen (without selecting an address)
12815  S   Select the currently selected entries (if using ListMode)
12816  L   Change to ListMode
12817 </PRE>
12818 <!--chtml endif-->
12821 This screen is designed to let you easily scan your address book(s) in
12822 order to select entries for the message you are composing.  You cannot
12823 edit your address book in any way at this time.  For address book
12824 maintenance, select the address book command when not composing a message.
12827 If you are composing a message and know the nickname of the person/list you
12828 want, you can bypass this screen by simply typing in the nickname on the
12829 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12830 selecting an entry does not cancel your message.
12833 The ListMode command will add a column at the left edge of the screen.
12834 You mark the entries that you wish to select with the &quot;X&quot; command.
12835 This allows you to choose more than one entry at a time.
12838 An alternative method of composing a message to entries in your
12839 address book(s) is to first use the &quot;Select&quot; command from
12840 the address book maintenance screen and then the &quot;Apply&quot;
12841 &quot;ComposeTo&quot; command to start the composer composing to the
12842 selected entries.
12845 FOR MORE INFORMATION on addressing see
12846 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12847 <A HREF="h_abook_opened">Address Book Screen's</A>
12848 help text.
12850 &lt;End of help on this topic&gt;
12851 </BODY>
12852 </HTML>
12853 ===== h_abook_select_listmode =====
12854 <HTML>
12855 <HEAD>
12856 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12857 </HEAD>
12858 <BODY>
12859 <H1>COMPOSER: SELECT ADDRESSES</H1>
12860 <!--chtml if pinemode="function_key"-->
12861 <PRE>
12862 Navigating the List of Messages                 General Alpine Commands
12863 -------------------------------                 -----------------------
12864 F5   Move to previous entry                     F1  Show this help text
12865 F6   Move to next entry
12866 F7   Show previous screen of address book
12867 F8   Show next screen of address book
12868 F12  WhereIs (search through address book)
12870 Address Selection Commands
12871 --------------------------
12872 F3   Exit the Address Select screen (without selecting an address)
12873 F4   Select the currently highlighted entry
12874 F9   Change to ListMode
12875 </PRE>
12876 <!--chtml else-->
12877 <PRE>
12878 Navigating the List of Messages                 General Alpine Commands
12879 -------------------------------                 -----------------------
12880  P   Move to previous entry                     ?  Show this help text
12881  N   Move to next entry
12882  -   Show previous screen of address book
12883 Spc  (space bar) Show next screen of address book
12884  W   WhereIs (search through address book)
12886 Address Selection Commands
12887 --------------------------
12888  E   Exit the Address Select screen (without selecting an address)
12889  S   Select the currently highlighted entry
12890  L   Change to ListMode
12891 </PRE>
12892 <!--chtml endif-->
12895 This screen is designed to let you easily scan your address book(s) in
12896 order to select entries for the message you are composing.  You cannot
12897 edit your address book in any way at this time, for address book
12898 maintenance, select the address book command when not composing a message.
12901 If you are composing a message and know the nickname of the person/list you
12902 want, you can bypass this screen by simply typing in the nickname on the
12903 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12904 selecting an entry does not cancel your message.
12907 The ListMode command will add a column at the left edge of the screen.
12908 You mark the entries that you wish to select with the &quot;X&quot; command.
12909 This allows you to choose more than one entry at a time.
12912 An alternative method of composing a message to entries in your
12913 address book(s) is to first use the &quot;Select&quot; command from
12914 the address book maintenance screen and then the &quot;Apply&quot;
12915 &quot;ComposeTo&quot; command to start the composer composing to the
12916 selected entries.
12919 FOR MORE INFORMATION on addressing see
12920 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12921 <A HREF="h_abook_opened">Address Book Screen's</A>
12922 help text.
12924 &lt;End of help on this topic&gt;
12925 </BODY>
12926 </HTML>
12927 ===== h_abook_select_checks =====
12928 <HTML>
12929 <HEAD>
12930 <TITLE>Address Selection from Composer Explained</TITLE>
12931 </HEAD>
12932 <BODY>
12933 <H1>COMPOSER: SELECT ADDRESSES</H1>
12934 <!--chtml if pinemode="function_key"-->
12935 <PRE>
12936 Navigating the List of Messages                 General Alpine Commands
12937 -------------------------------                 -----------------------
12938 F5   Move to previous entry                     F1  Show this help text
12939 F6   Move to next entry
12940 F7   Show previous screen of address book
12941 F8   Show next screen of address book
12942 F12  WhereIs (search through address book)
12944 Address Selection Commands
12945 --------------------------
12946 F3   Exit the Address Select screen (without selecting an address)
12947 F4   Select the currently highlighted entry
12948 F8   Either Sets or Unsets all entries in this address book
12949 F9   Set or Unset the highlighted entry
12950 </PRE>
12951 <!--chtml else-->
12952 <PRE>
12953 Navigating the List of Messages                 General Alpine Commands
12954 -------------------------------                 -----------------------
12955  P   Move to previous entry                     ?  Show this help text
12956  N   Move to next entry
12957  -   Show previous screen of address book
12958 Spc  (space bar) Show next screen of address book
12959  W   WhereIs (search through address book)
12961 Address Selection Commands
12962 --------------------------
12963  E   Exit the Address Select screen (without selecting an address)
12964  S   Select the currently highlighted entry
12965  X   Set or Unset the highlighted entry
12966  A   Either Sets or Unsets all entries in this address book
12967 </PRE>
12968 <!--chtml endif-->
12971 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12972 command.  Type &quot;S Select&quot; to select all of the entries you
12973 have marked, just as if you had typed them in by hand.
12976 An alternative method of composing a message to entries in your
12977 address book(s) is to first use the &quot;Select&quot; command from
12978 the address book maintenance screen and then the &quot;Apply&quot;
12979 &quot;ComposeTo&quot; command to start the composer composing to the
12980 selected entries.
12983 FOR MORE INFORMATION on addressing see
12984 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12985 <A HREF="h_abook_opened">Address Book Screen's</A>
12986 help text.
12988 &lt;End of help on this topic&gt;
12989 </BODY>
12990 </HTML>
12991 ===== h_abook_select_nicks_take =====
12992 <HTML>
12993 <HEAD>
12994 <TITLE>Take Address Nickname Selection Explained</TITLE>
12995 </HEAD>
12996 <BODY>
12997 <H1>TAKEADDR: SELECT NICKNAME</H1>
12998 <!--chtml if pinemode="function_key"-->
12999 <PRE>
13000 Navigating the List of Messages                 General Alpine Commands
13001 -------------------------------                 -----------------------
13002 F5   Move to previous entry                     F1  Show this help text
13003 F6   Move to next entry
13004 F7   Show previous screen of address book
13005 F8   Show next screen of address book
13006 F12  WhereIs (search through address book)
13008 Message Selection Commands
13009 --------------------------
13010 F3   Exit the Nickname Select screen (without selecting an address)
13011 F4   Select the currently highlighted entry
13012 </PRE>
13013 <!--chtml else-->
13014 <PRE>
13015 Navigating the List of Messages                 General Alpine Commands
13016 -------------------------------                 -----------------------
13017  P   Move to previous entry                     ?  Show this help text
13018  N   Move to next entry
13019  -   Show previous screen of address book
13020 Spc  (space bar) Show next screen of address book
13021  W   WhereIs (search through address book)
13023 Message Selection Commands
13024 --------------------------
13025  E   Exit the Nickname Select screen (without selecting an address)
13026  S   Select the currently highlighted entry
13027 </PRE>
13028 <!--chtml endif-->
13031 This screen is designed to let you modify or add to an existing
13032 address book entry.  You have already selected the name(s) and
13033 address(es) through &quot;Take Address&quot;.  This screen simply lets
13034 you scan your address books and select the nickname to be
13035 changed/augmented.  If you want to add a new entry, then you are in
13036 the wrong place-- Select &quot;Exit&quot; command.
13039 FOR MORE INFORMATION on addressing see
13040 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13041 <A HREF="h_abook_opened">Address Book Screen's</A>
13042 help text.
13044 &lt;End of help on this topic&gt;
13045 </BODY>
13046 </HTML>
13047 ===== h_abook_select_nick =====
13048 <HTML>
13049 <HEAD>
13050 <TITLE>Nickname Selection Explained</TITLE>
13051 </HEAD>
13052 <BODY>
13053 <H1>SELECT NICKNAME</H1>
13054 <!--chtml if pinemode="function_key"-->
13055 <PRE>
13056 Navigating the List of Messages                 General Alpine Commands
13057 -------------------------------                 -----------------------
13058 F5   Move to previous entry                     F1  Show this help text
13059 F6   Move to next entry
13060 F7   Show previous screen of address book
13061 F8   Show next screen of address book
13062 F12  WhereIs (search through address book)
13064 Message Selection Commands
13065 --------------------------
13066 F3   Exit the Nickname Select screen (without selecting an address)
13067 F4   Select the currently highlighted entry
13068 </PRE>
13069 <!--chtml else-->
13070 <PRE>
13071 Navigating the List of Messages                 General Alpine Commands
13072 -------------------------------                 -----------------------
13073  P   Move to previous entry                     ?  Show this help text
13074  N   Move to next entry
13075  -   Show previous screen of address book
13076 Spc  (space bar) Show next screen of address book
13077  W   WhereIs (search through address book)
13079 Message Selection Commands
13080 --------------------------
13081  E   Exit the Nickname Select screen (without selecting an address)
13082  S   Select the currently highlighted entry
13083 </PRE>
13084 <!--chtml endif-->
13087 This screen is designed to let you look at the nicknames in your address
13088 books before choosing a new one.
13091 FOR MORE INFORMATION on addressing see
13092 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13093 <A HREF="h_abook_opened">Address Book Screen's</A>
13094 help text.
13096 &lt;End of help on this topic&gt;
13097 </BODY>
13098 </HTML>
13099 ===== h_takeaddr_screen =====
13100 <HTML>
13101 <HEAD>
13102 <TITLE>Take Address Screen Explained</TITLE>
13103 </HEAD>
13104 <BODY>
13105 <H1>TAKE ADDRESS COMMANDS</H1>
13106 <!--chtml if pinemode="function_key"-->
13107 <PRE>
13108 Navigating the List of Addresses       Address Selection Commands        
13109 --------------------------------       --------------------------        
13110  F5  Move to previous entry            F3  Exit without taking address
13111  F6  Move to next entry                F4  Take current address(es)
13112  F7  Show previous page of address list
13113  F8  Show next page of address list
13114  F2  WhereIs (search list)
13115                                --------------
13116 Mode Toggle            F9  Set/Unset current address
13117 -----------            F10 Set all
13118  F12 Toggle between List and single mode       F11 Unset all
13119 </PRE>
13120 <!--chtml else-->
13121 <PRE>
13122 Navigating the List of Addresses       Address Selection Commands
13123 --------------------------------       --------------------------
13124  P  Move to previous entry              &lt;  Exit without taking address
13125  N  Move to next entry                  T  Take address
13126  -  Show previous page of address list
13127 Spc (space bar) Show next page of address list
13128  W  WhereIs (search list)              List Mode
13129                                        ---------
13130 Single Mode                             X  Set/Unset current address
13131 -----------                             A  Set all addresses
13132  L  Switch to list mode                 U  Unset all addresses
13133                                         S  Switch to single mode
13134 </PRE>
13135 <!--chtml endif-->
13137 <H2>Description of the Take Address Screen</H2>
13139 This screen is designed to let you select one or more address/name
13140 combinations from the current message and put them into your address book.
13141 The cursor is initially placed on the line with the message author.
13142 Other lines include the names of people and/or mailing lists who also
13143 received the message.  Other people &quot;involved&quot; in the
13144 message (e.g. the person named as Reply-To:) are also listed here.
13147 The simple case is adding a new, single entry into your address book. To
13148 do this, simply highlight the correct line and press 
13149 <!--chtml if pinemode="function_key"-->
13151 <!--chtml else-->
13152 &quot;T&quot;.
13153 <!--chtml endif-->
13154 To create a new list or add to an existing list, switch the screen display
13155 into List Mode by pressing
13156 <!--chtml if pinemode="function_key"-->
13157 F12.
13158 <!--chtml else-->
13159 &quot;L&quot;.
13160 <!--chtml endif-->
13161 In List Mode, you select the
13162 group of addresses you wish to manipulate by marking them with an
13163 &quot;X&quot;.
13164 The Set/Unset
13165 <!--chtml if pinemode="function_key"-->
13166 (F9)
13167 <!--chtml else-->
13168 (&quot;X&quot;)
13169 <!--chtml endif-->
13170 command will turn the &quot;X&quot; on for the
13171 highlighted address if it was off or turn it off if it was previously on.
13172 The SetAll command will select all of the addresses, and the UnSetAll
13173 command will turn off all the selections.  Once you've gotten the
13174 selection the way you want it, you may create a new list by pressing
13175 <!--chtml if pinemode="function_key"-->
13177 <!--chtml else-->
13178 &quot;T&quot;.
13179 <!--chtml endif-->
13182 In both the simple and list cases, after choosing to take the address,
13183 you will be asked for the nickname of the entry.  Typing in a new name
13184 creates the new entry/list.  Entering an existing nickname will replace
13185 the entry (simple case) or add to the list (list case).  Alternatively,
13186 you can press Ctrl-T at the nickname prompt and select an existing
13187 nickname from your address book.
13190 You will normally start in Single Mode, unless you used the Apply command
13191 to startup the TakeAddr screen, in which case you will start in List Mode.
13192 You may switch between the two modes at any time.  If you've already
13193 selected several addresses in List Mode, those will be remembered when you
13194 switch to Single Mode and then back to List Mode.  The set of addresses
13195 that are pre-selected when you start in List Mode are the From addresses
13196 of all of the messages you are operating on.  You may, of course, easily
13197 erase those selections with the UnSetAll command.
13200 If you have more than one writable address book, you will be prompted for
13201 the name of the address book you wish to add the new entry to before
13202 anything else. You can use ^N and ^P to choose among the defined address
13203 books, or type in the address book name.
13206 FOR MORE INFORMATION on addressing see
13207 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13208 <A HREF="h_abook_opened">Address Book Screen's</A>
13209 help text.
13211 &lt;End of help on this topic&gt;
13212 </BODY>
13213 </HTML>
13214 ===== h_takeexport_screen =====
13215 <HTML>
13216 <HEAD>
13217 <TITLE>Take Export Screen Explained</TITLE>
13218 </HEAD>
13219 <BODY>
13220 <H1>TAKE EXPORT COMMANDS</H1>
13221 <!--chtml if pinemode="function_key"-->
13222 <PRE>
13223 Navigating the List of Addresses       Address Selection Commands        
13224 --------------------------------       --------------------------        
13225  F5  Move to previous entry            F3  Exit without taking address
13226  F6  Move to next entry                F4  Take current address(es)
13227  F7  Show previous page of address list
13228  F8  Show next page of address list
13229  F2  WhereIs (search list)
13230                                --------------
13231 Mode Toggle            F9  Set/Unset current address
13232 -----------            F10 Set all
13233  F12 Toggle between List and single mode       F11 Unset all
13234 </PRE>
13235 <!--chtml else-->
13236 <PRE>
13237 Navigating the List of Addresses       Address Selection Commands
13238 --------------------------------       --------------------------
13239  P  Move to previous entry              &lt;  Exit without taking address
13240  N  Move to next entry                  T  Take address
13241  -  Show previous page of address list
13242 Spc (space bar) Show next page of address list
13243  W  WhereIs (search list)              List Mode
13244                                        ---------
13245 Single Mode                             X  Set/Unset current address
13246 -----------                             A  Set all addresses
13247  L  Switch to list mode                 U  Unset all addresses
13248                                         S  Switch to single mode
13249 </PRE>
13250 <!--chtml endif-->
13252 <H2>Description of the Take Export Screen</H2>
13254 This screen is designed to let you select one or more addresses
13255 from the current message and put them into a file.
13256 Only the user@domain_name part of each address is put into the file.
13259 To put a single entry into a file simply highlight the correct line and press 
13260 <!--chtml if pinemode="function_key"-->
13262 <!--chtml else-->
13263 &quot;T&quot;.
13264 <!--chtml endif-->
13265 To put more than one entry into a file
13266 switch the screen display
13267 into List Mode by pressing
13268 <!--chtml if pinemode="function_key"-->
13269 F12.
13270 <!--chtml else-->
13271 &quot;L&quot;.
13272 <!--chtml endif-->
13273 In List Mode, you select the
13274 group of addresses you wish to manipulate by marking them with an
13275 &quot;X&quot;.
13276 The Set/Unset
13277 <!--chtml if pinemode="function_key"-->
13278 (F9)
13279 <!--chtml else-->
13280 (&quot;X&quot;)
13281 <!--chtml endif-->
13282 command will turn the &quot;X&quot; on for the
13283 highlighted address if it was off or turn it off if it was previously on.
13284 The SetAll command will select all of the addresses, and the UnSetAll
13285 command will turn off all the selections.  Once you've gotten the
13286 selection the way you want it, you may put the addresses in a file by typing
13287 <!--chtml if pinemode="function_key"-->
13289 <!--chtml else-->
13290 &quot;T&quot;.
13291 <!--chtml endif-->
13294 You will be asked for the name of a file to put the addresses in.
13295 If the file already exists, you will be asked whether you want to Overwrite
13296 (replace) the contents of the file or Append to the contents of the file.
13299 &lt;End of help on this topic&gt;
13300 </BODY>
13301 </HTML>
13302 ============= h_abook_view ========================
13303 <HTML>
13304 <HEAD>
13305 <TITLE>Address Book View Explained</TITLE>
13306 </HEAD>
13307 <BODY>
13308 This function allows you to view the contents of an address book entry. You
13309 can only view one entry at a time.
13311 <DL>
13312 <DT>Help
13313 <!--chtml if pinemode="function_key"-->
13314 (F1)
13315 <!--chtml else-->
13317 <!--chtml endif-->
13318 </DT>
13319 <DD>
13320 Display this help text.
13322 <DT>Abook
13323 <!--chtml if pinemode="function_key"-->
13324 (F3)
13325 <!--chtml else-->
13326 (&lt;)
13327 <!--chtml endif-->
13328 </DT>
13329 <DD>
13330 Go back to index of address book entries.
13332 <DT>Update
13333 <!--chtml if pinemode="function_key"-->
13334 (F4)
13335 <!--chtml else-->
13337 <!--chtml endif-->
13338 </DT>
13339 <DD>
13340 Update (modify) this entry.
13342 <DT>ComposeTo
13343 <!--chtml if pinemode="function_key"-->
13344 (F5)
13345 <!--chtml else-->
13347 <!--chtml endif-->
13348 </DT>
13349 <DD>Compose a message to the address(es) in this entry.
13351 <DT>Role
13352 <!--chtml if pinemode="function_key"-->
13353 (F6)
13354 <!--chtml else-->
13356 <!--chtml endif-->
13357 </DT>
13358 <DD>Compose a message to the address(es) in this entry using roles.
13360 <DT>Prev Page
13361 <!--chtml if pinemode="function_key"-->
13362 (F7)
13363 <!--chtml else-->
13365 <!--chtml endif-->
13366 </DT>
13367 <DD>
13368 Show the previous page of the current entry.
13370 <DT>Next Page
13371 <!--chtml if pinemode="function_key"-->
13372 (F8)
13373 <!--chtml else-->
13374 (Space)
13375 <!--chtml endif-->
13376 </DT>
13377 <DD>
13378 Show the next page of the current entry.
13380 <DT>Print
13381 <!--chtml if pinemode="function_key"-->
13382 (F9)
13383 <!--chtml else-->
13385 <!--chtml endif-->
13386 </DT>
13387 <DD>Print the current entry.  You can select the
13388 printer or the print command via the &quot;Setup&quot; command
13389 on the MAIN MENU.
13391 <DT>WhereIs
13392 <!--chtml if pinemode="function_key"-->
13393 (F10)
13394 <!--chtml else-->
13396 <!--chtml endif-->
13397 </DT>
13398 <DD>Search the entry for a string of letters.  If it is
13399 found, move to it.  The string can be one word or a phrase.
13400 If there are multiple occurrences, the cursor moves to the
13401 first occurrence beyond the current cursor position.
13403 <DT>Fwd Email
13404 <!--chtml if pinemode="function_key"-->
13405 (F11)
13406 <!--chtml else-->
13408 <!--chtml endif-->
13409 </DT>
13410 <DD>Begin composition of a new mail message with the displayed
13411 text already inserted in the message body.
13413 </DL>
13415 &lt;End of help on this topic&gt;
13416 </BODY>
13417 </HTML>
13418 ============= h_ldap_view ========================
13419 <HTML>
13420 <HEAD>
13421 <TITLE>LDAP Response View Explained</TITLE>
13422 </HEAD>
13423 <BODY>
13424 This function allows you to view the contents of a directory entry. You
13425 can only view one entry at a time.
13427 <DL>
13428 <DT>Help
13429 <!--chtml if pinemode="function_key"-->
13430 (F1)
13431 <!--chtml else-->
13433 <!--chtml endif-->
13434 </DT>
13435 <DD>
13436 Display this help text.
13438 <DT>Results Index
13439 <!--chtml if pinemode="function_key"-->
13440 (F3)
13441 <!--chtml else-->
13442 (&lt;)
13443 <!--chtml endif-->
13444 </DT>
13445 <DD>Go back to index of search results.
13447 <DT>ComposeTo
13448 <!--chtml if pinemode="function_key"-->
13449 (F5)
13450 <!--chtml else-->
13452 <!--chtml endif-->
13453 </DT>
13454 <DD>Compose a message to the address(es) in this entry.
13456 <DT>Role
13457 <!--chtml if pinemode="function_key"-->
13458 (F6)
13459 <!--chtml else-->
13461 <!--chtml endif-->
13462 </DT>
13463 <DD>Compose a message to the address(es) in this entry using roles.
13465 <DT>Prev Page
13466 <!--chtml if pinemode="function_key"-->
13467 (F7)
13468 <!--chtml else-->
13470 <!--chtml endif-->
13471 </DT>
13472 <DD>
13473 Show the previous page of the current entry.
13475 <DT>Next Page
13476 <!--chtml if pinemode="function_key"-->
13477 (F8)
13478 <!--chtml else-->
13479 (Space)
13480 <!--chtml endif-->
13481 </DT>
13482 <DD>
13483 Show the next page of the current entry.
13485 <DT>Print
13486 <!--chtml if pinemode="function_key"-->
13487 (F9)
13488 <!--chtml else-->
13490 <!--chtml endif-->
13491 </DT>
13492 <DD>Print the current entry on paper.  You can select the
13493 printer or the print command via the &quot;Setup&quot; command
13494 on the MAIN MENU.
13496 <DT>WhereIs
13497 <!--chtml if pinemode="function_key"-->
13498 (F10)
13499 <!--chtml else-->
13501 <!--chtml endif-->
13502 </DT>
13503 <DD>Search the entry for a string of letters.  If it is
13504 found, move to it.  The string can be one word or a phrase.
13505 If there are multiple occurrences, the cursor moves to the
13506 first occurrence beyond the current cursor position.
13508 <DT>Fwd Email
13509 <!--chtml if pinemode="function_key"-->
13510 (F11)
13511 <!--chtml else-->
13513 <!--chtml endif-->
13514 </DT>
13515 <DD>Begin composition of a new mail message with the displayed
13516 text already inserted in the message body.
13518 <DT>Save
13519 <!--chtml if pinemode="function_key"-->
13520 (F12)
13521 <!--chtml else-->
13523 <!--chtml endif-->
13524 </DT>
13525 <DD>Save the displayed entry to one of your address books or export
13526 it to a file.
13527 </DL>
13529 &lt;End of help on this topic&gt;
13530 </BODY>
13531 </HTML>
13532 ===== h_attachment_screen =====
13533 <HTML>
13534 <HEAD>
13535 <TITLE>Attachment Index Screen Explained</TITLE>
13536 </HEAD>
13537 <BODY>
13538 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13539 message's attachments, and allows various operations on them.  The
13540 first attachment is usually the message text, but does not include the
13541 header portion of the message.
13543 Available commands include:
13545 <DL>
13547 <DT>Help</DT>
13548 <DD>Show this help text.
13550 <DT>Msg #<I>num</I></DT>
13551 <DD>Leave this screen without displaying or saving any attachments.
13553 <DT>View</DT>
13554 <DD>View the currently selected attachment.
13556 <DT>External</DT>
13557 <DD>Passes a TEXT/HTML message to an external browser for its display.
13559 <DT>Prev Attach</DT>
13560 <DD>Move to previous attachment.
13562 <DT>Next Attach</DT>
13563 <DD>Move to next attachment.
13565 <DT>Prev Page</DT>
13566 <DD>Previous page of the listed attachments.
13568 <DT>Next Page</DT>
13569 <DD>Next page of the listed attachments.
13571 <DT>Delete</DT>
13572 <DD>Mark the currently selected attachment for Deletion.
13573 This does not modify the current message by deleting the attachment from
13574 it, but instead the delete flag <EM>only</EM> has an effect when saving
13575 the message to a folder.
13576 Attachments marked for deletion are not copied to the destination folder
13577 along with the rest of the message when it is saved.
13578 It is ok for the destination folder to be the same as the current folder.
13579 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13581 <DT>Undelete</DT>
13582 <DD>Turn off the Delete flag for the selected attachment.
13584 <DT>Save</DT>
13585 <DD>Save the selected attachment to a file.  If the attachment is of
13586 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13587 the specified mail folder.
13589 <DT>Export</DT>
13590 <DD>If the attachment is of
13591 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13592 copy the message to a file in the same way this command works on 
13593 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13595 <DT>Pipe</DT>
13596 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13597 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13599 <DT>WhereIs</DT>
13600 <DD>Find a matching string in the attachment list.
13602 <DT>AboutAttch</DT>
13603 <DD>Examine various aspects of the selected attachment.
13605 <DT>Print</DT>
13606 <DD>Print the selected attachment.
13608 <DT>Forward</DT>
13609 <DD>Forward the selected attachment as an attachment.
13610 </DL>
13614 All attachments can be saved or piped into a UNIX command, but some may
13615 not be readily displayed by either Alpine or an external tool.  In such
13616 cases, the reason why the message cannot be displayed is displayed on
13617 Alpine's message line.
13619 &lt;End of help on this topic&gt;
13620 </BODY>
13621 </HTML>
13622 ============= h_mail_text_att_view ========================
13623 <HTML>
13624 <HEAD>
13625 <TITLE>Attachment View Screen Explained</TITLE>
13626 </HEAD>
13627 <BODY>
13628 This function allows you to view the contents of a text attachment. You
13629 can only view one attachment at a time.
13631 Available commands include:
13633 <DL>
13635 <DT>Help</DT>
13636 <DD>Display this help text
13638 <DT>AttchIndex</DT>
13639 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13641 <DT>Prev Page</DT>
13642 <DD>Show the previous page of the current attachment.
13644 <DT>Next Page</DT>
13645 <DD>Show the next page of the current attachment by pressing the space bar.
13647 <DT>Delete</DT>
13648 <DD>Mark the viewed attachment for Deletion.  The delete
13649 flag <EM>only</EM> has affect when saving the message to a folder.
13650 Attachments marked for deletion are excluded from the message when
13651 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13652 this Alpine session.
13654 <DT>Undelete</DT>
13655 <DD>Turn off the Delete flag for the selected attachment.
13657 <DT>Save</DT>
13658 <DD>Copy the current attachment to a file.  If you just enter
13659 a filename, the attachment will be saved with that name in
13660 your home directory 
13661 <!--chtml if pinemode="running"-->
13662 (which, in the present configuration of your system, is
13663  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13664 <!--chtml endif-->
13665 or current working directory
13666 <!--chtml if pinemode="running"-->
13667 (which, at least for your current Alpine &quot;session,&quot; 
13668 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13669 <!--chtml endif-->, depending on the
13670 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13671 configuration setting.  You may enter the full
13672 path and filename to save it in another directory instead.
13674 <DT>Export</DT>
13675 <DD>If the attachment is of
13676 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13677 copy the message to a file in the same way this command works on 
13678 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13679 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13680 defined, they may affect the contents of the exported file.)
13682 <DT>Pipe</DT>
13683 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13685 <DT>WhereIs</DT>
13686 <DD>Search the attachment for a string of letters.  If it is
13687 found, move to it.  The string can be one word or a phrase.
13688 If there are multiple occurrences, the cursor moves to the
13689 first occurrence beyond the current cursor position.
13691 <DT>Print</DT>
13692 <DD>Print the current attachment on paper.  You can select the
13693 printer or the print command via the &quot;Setup&quot; command
13694 on the MAIN MENU.
13696 <DT>Forward</DT>
13697 <DD>Forward the selected attachment as an attachment.
13698 </DL>
13700 &lt;End of help on this topic&gt;
13701 </BODY>
13702 </HTML>
13703 ============= h_journal ==============
13704 <HTML>
13705 <HEAD>
13706 <TITLE>Recent Message Journal Explained</TITLE>
13707 </HEAD>
13708 <BODY>
13710 The following commands are available on this screen:
13712 <DL>
13713 <DT>Help</DT>
13714 <DD>Show this help text
13716 <DT>Exit</DT>
13717 <DD>Exit Viewer, and go back to mail processing
13719 <DT>Prev Page</DT>
13720 <DD>Show the previous page text
13722 <DT>Next Page</DT>
13723 <DD>Show the next page of text by pressing the space bar
13725 <DT>Print</DT>
13726 <DD>Print the displayed text on paper.  You can select the
13727 printer or the print command via the &quot;Setup&quot; command
13728 on the MAIN MENU.
13730 <DT>Fwd Email</DT>
13731 <DD>Begin composition of a new mail message with the displayed
13732 text already inserted in the message body.
13734 <DT>Save</DT>
13735 <DD>Copy the displayed text to a file.  If you just enter
13736 a filename, the text will be saved with that name in
13737 your 
13738 home directory 
13739 <!--chtml if pinemode="running"-->
13740 (which, in the present configuration of your system, is
13741  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13742 <!--chtml endif-->
13743 or current working directory
13744 <!--chtml if pinemode="running"-->
13745 (which, at least for your current Alpine &quot;session,&quot; 
13746 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13747 <!--chtml endif-->, depending on the
13748 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13749 configuration setting.   You may enter the full
13750 path and filename to save it in another directory instead.
13752 <DT>WhereIs</DT>
13753 <DD>Search the text for a string of letters.  If it is
13754 found, move to it.  The string can be one word or a phrase.
13755 If there are multiple occurrences, the cursor moves to the
13756 first occurrence beyond the current cursor position.
13757 </DL>
13759 &lt;End of help on this topic&gt;
13760 </BODY>
13761 </HTML>
13762 ============= h_debugjournal ==============
13763 <HTML>
13764 <HEAD>
13765 <TITLE>Debug Journal Explained</TITLE>
13766 </HEAD>
13767 <BODY>
13769 The following commands are available on this screen:
13771 <DL>
13772 <DT>Help</DT>
13773 <DD>Show this help text
13775 <DT>Exit</DT>
13776 <DD>Exit Viewer, and go back to mail processing
13778 <DT>Timestamps</DT>
13779 <DD>Turn on or off timestamps.
13781 <DT>DebugView</DT>
13782 <DD>Set the level of debugging you want to see. The level may be any number
13783 in the range 0-9. Higher numbers show more debugging detail. Note that the
13784 debugging information has already been captured. This setting just causes the
13785 debugging information that you see to be filtered. If you set this to
13786 the number &quot;5&quot; then you will be shown all of the debugging information
13787 at levels 5 and below.
13788 It's actually a bit more complicated than that. A fixed amount of memory
13789 is used to store the debug information.
13790 Since the amount of memory used is limited the debugging information
13791 has to be trimmed back when it gets too large.
13793 <DT>Prev Page</DT>
13794 <DD>Show the previous page text
13796 <DT>Next Page</DT>
13797 <DD>Show the next page of text by pressing the space bar
13799 <DT>Print</DT>
13800 <DD>Print the displayed text on paper.  You can select the
13801 printer or the print command via the &quot;Setup&quot; command
13802 on the MAIN MENU.
13804 <DT>Fwd Email</DT>
13805 <DD>Begin composition of a new mail message with the displayed
13806 text already inserted in the message body.
13808 <DT>Save</DT>
13809 <DD>Copy the displayed text to a file.  If you just enter
13810 a filename, the text will be saved with that name in
13811 your 
13812 home directory 
13813 <!--chtml if pinemode="running"-->
13814 (which, in the present configuration of your system, is
13815  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13816 <!--chtml endif-->
13817 or current working directory
13818 <!--chtml if pinemode="running"-->
13819 (which, at least for your current Alpine &quot;session,&quot; 
13820 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13821 <!--chtml endif-->, depending on the
13822 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13823 configuration setting.   You may enter the full
13824 path and filename to save it in another directory instead.
13826 <DT>WhereIs</DT>
13827 <DD>Search the text for a string of letters.  If it is
13828 found, move to it.  The string can be one word or a phrase.
13829 If there are multiple occurrences, the cursor moves to the
13830 first occurrence beyond the current cursor position.
13831 </DL>
13833 &lt;End of help on this topic&gt;
13834 </BODY>
13835 </HTML>
13836 ============= h_simple_text_view ==============
13837 <HTML>
13838 <HEAD>
13839 <TITLE>Simple Text View Screen Explained</TITLE>
13840 </HEAD>
13841 <BODY>
13843 The following commands are available on this screen:
13845 <DL>
13846 <DT>Help</DT>
13847 <DD>Show this help text
13849 <DT>Exit</DT>
13850 <DD>Exit Viewer, and go back to mail processing
13852 <DT>Prev Page</DT>
13853 <DD>Show the previous page text
13855 <DT>Next Page</DT>
13856 <DD>Show the next page of text by pressing the space bar
13858 <DT>Print</DT>
13859 <DD>Print the displayed text on paper.  You can select the
13860 printer or the print command via the &quot;Setup&quot; command
13861 on the MAIN MENU.
13863 <DT>Fwd Email</DT>
13864 <DD>Begin composition of a new mail message with the displayed
13865 text already inserted in the message body.
13867 <DT>Save</DT>
13868 <DD>Copy the displayed text to a file.  If you just enter
13869 a filename, the attachment will be saved with that name in
13870 your 
13871 home directory 
13872 <!--chtml if pinemode="running"-->
13873 (which, in the present configuration of your system, is
13874  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13875 <!--chtml endif-->
13876 or current working directory
13877 <!--chtml if pinemode="running"-->
13878 (which, at least for your current Alpine &quot;session,&quot; 
13879 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13880 <!--chtml endif-->, depending on the
13881 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13882 configuration setting.   You may enter the full
13883 path and filename to save it in another directory instead.
13885 <DT>WhereIs</DT>
13886 <DD>Search the attachment for a string of letters.  If it is
13887 found, move to it.  The string can be one word or a phrase.
13888 If there are multiple occurrences, the cursor moves to the
13889 first occurrence beyond the current cursor position.
13890 </DL>
13892 &lt;End of help on this topic&gt;
13893 </BODY>
13894 </HTML>
13895 ======= h_pine_for_windows ========
13896 <HTML>
13897 <HEAD>
13898 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13899 </HEAD>
13900 <BODY>
13901 <H1>Getting Help In PC-Alpine</H1>
13904 PC-Alpine offers general and specific help text. From the <A
13905 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13906 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13907 specific help for that screen is available from the toolbar Help menu or
13908 with the 
13909 <!--chtml if pinemode="function_key"-->
13910 &quot;F1&quot; key.
13911 <!--chtml else-->
13912 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13913 typing &quot;?&quot; would be mistaken as entering text.
13914 <!--chtml endif-->
13917 Although this version of Alpine is for Microsoft Windows, it is not
13918 considered a full &quot;Graphical User Interface&quot; application. 
13919 Yet, many of the controls that Windows users are accustomed to seeing, 
13920 such as scrollbars and toolbars, are available.
13923 PC-Alpine offers considerable mouse support.  You can view what is
13924 &quot;click-able&quot; by dragging your mouse over any screen; when the
13925 arrow cursor changes into a hand, you found something. Mouse-click
13926 possibilities include navigating between screens and folders and
13927 double-clicking on hyperlinks to open your Web browser.
13928 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13929 screen.  Examples of right-click options include &quot;copy&quot; after
13930 selecting text to copy and &quot;View in New Window&quot; when you click
13931 on a particular message in the Message Index. The menu choices available
13932 to you will vary based upon what screen is open, where on the screen your
13933 cursor is located, and even what action you have already taken.
13936 &lt;End of help on this topic&gt;
13937 </BODY>
13938 </HTML>
13939 ===== h_composer =====
13940 <HTML>
13941 <HEAD>
13942 <TITLE>COMPOSER COMMANDS</TITLE>
13943 </HEAD>
13944 <BODY>
13945 <H1>COMPOSER COMMANDS</H1>
13947 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>
13948 &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>
13949 &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>
13950 &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>
13951 &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>
13952 &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>
13953 &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>
13954 &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>
13955 &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>
13956 &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>
13957 ---------------------------------------|&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>
13958 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>
13959 &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>
13960 &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>
13961 &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>
13964 NOTE:
13965 <OL>
13966  <LI>For help on a particular command, highlight the bold text associated
13967 with it above and hit Return.
13968  <LI> The availability of certain commands
13969 is determined by Alpine configuration files and system capabilities.
13970 At some sites, certain commands may not be available due to security or
13971 support concerns.
13972  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13973 Ctrl-&#92;, ESC.
13974  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13975 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13976 </OL>
13979 HINT: To move rapidly to the bottom of a message you are composing,
13980 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13981 with the Mark and Cut commands to eliminate large amounts of unwanted
13982 text in a Reply.
13984 <H2>Description of Composer</H2>
13986 Alpine has a built-in editing program that allows you to compose messages
13987 without having to leave Alpine.  The editor is designed to be very simple to
13988 use so that you can get started writing email right away.
13991 Messages are usually just text, about 80 columns wide.  Using upper and
13992 lower case is encouraged.  On some systems the size limit of the message
13993 is about 100,000 characters, which is about 2,000 lines.  You can include
13994 punctuation and special characters found on most keyboards, but you can't
13995 include characters with diacritical marks and certain special symbols.
13998 Text automatically wraps as you type past the end of a line so you do not
13999 have to hit return.  Using the
14000 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
14001 you can also reformat text explicitly, perhaps after you have
14002 deleted some text.
14005 You can include other text files with the 
14006 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
14007 which will prompt you for the name of the file to insert at the
14008 current cursor position.
14011 <UL>
14012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14013 </UL>
14015 &lt;End of help on this topic&gt;
14016 </BODY>
14017 </HTML>
14018 ====== h_composer_browse =====
14019 <HTML>
14020 <HEAD>
14021 <TITLE>BROWSER</TITLE>
14022 </HEAD>
14023 <BODY>
14024 <H1>BROWSER</H1>
14025 This screen lets you browse your files and directories.  To go to another 
14026 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
14027 choose &quot;Select&quot; (the default choice on the menu); 
14028 or choose &quot;Goto&quot; and enter the name of the directory.
14029 <!--chtml if pinemode="os_windows"-->
14030 <!--chtml else--> 
14031 In Unix Alpine, you may use 
14032 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
14033 to another's home directory.  
14034 <!--chtml endif--><P>
14035 To select a file, move the cursor to it and 
14036 choose &quot;Select&quot; (the default choice on the menu).  
14038 <UL>
14039 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
14040 inclusion in the 
14041 message body (that is, you chose &quot;Read File&quot; with the cursor under 
14042 the 
14043 &quot;----- Message Text -----&quot; line
14044 while composing, then &quot;To Files&quot;):  Since the file 
14045 selected will become part of the message text, it must be in a format 
14046 suitable for that (Alpine does not check!), such as a plain text file.
14047 Files of other formats (for example, graphics, databases, software 
14048 programs) should be 
14049 <B>attached</B> to the message instead --
14050 by moving the cursor in the COMPOSE MESSAGE screen into the 
14051 message header area and pressing 
14052 <!--chtml if pinemode="function_key"-->
14054 <!--chtml else-->
14055 Ctrl-J.
14056 <!--chtml endif--> 
14058 <P><LI>
14059 Note <B>if</B> you are currently using the BROWSER for saving a message 
14060 attachment, or exporting a message, to a file: You can use the Add command to 
14061 provide the name for a new file to save/export to, and then select that name 
14062 to use it for the save/export operation.  Back at the prompt 
14063 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
14064 either Overwrite or Append (it doesn't make a difference, since the file is 
14065 so far empty).  Note: If you cancel the 
14066 operation at that point, the file created with the Add command will remain 
14067 0 bytes in size.
14069 </UL>
14070 <P><UL>
14071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14072 </UL>
14074 &lt;End of help on this topic&gt;
14075 </BODY>
14076 </HTML>
14077 ====== h_composer_ins =====
14078 <HTML>
14079 <HEAD>
14080 <TITLE>INSERT TEXT FILE</TITLE>
14081 </HEAD>
14082 <BODY>
14083 <H1>INSERT TEXT FILE</H1>
14085 Use this function to insert a text file. The file name
14086 given can be an absolute file path name for your system
14087 <!--chtml if pinemode="os_windows"-->
14088 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14089 with a relative pathname, or simply a file name without
14090 drive or directory specification.  
14091 <!--chtml else-->
14092 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14093 a file in your home directory, or a file path relative to your 
14094 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14095 your home directory or &quot;~user&quot; to refer to another
14096 account's home directory.
14097 <!--chtml endif-->
14099 No wild card characters may be used.  
14100 The file must reside on the system running Alpine.
14102 If the 
14103 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14104 feature is set, names are relative to your current working directory 
14105 <!--chtml if pinemode="running"-->
14106 (which, at least for your current Alpine &quot;session,&quot; 
14107 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14108 <!--chtml endif-->
14109 rather than your home directory
14110 <!--chtml if pinemode="running"-->
14111 (which, in the present configuration of your system, is
14112  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14113 <!--chtml endif-->
14115 <P><UL>
14116 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14117 </UL>
14119 &lt;End of help on this topic&gt;
14120 </BODY>
14121 </HTML>
14122 ====== h_composer_ins_m =====
14123 <HTML>
14124 <HEAD>
14125 <TITLE>INSERT MESSAGE</TITLE>
14126 </HEAD>
14127 <BODY>
14128 <H1>INSERT MESSAGE</H1>
14130 Type in the number of a message in the currently open folder to insert it
14131 into your message.
14132 <P><UL>
14133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14134 </UL>
14136 &lt;End of help on this topic&gt;
14137 </BODY>
14138 </HTML>
14139 ====== h_composer_search =====
14140 <HTML>
14141 <HEAD>
14142 <TITLE>Explanation of Composer Whereis Command </TITLE>
14143 </HEAD>
14144 <BODY>
14145 <H1>Help For Whereis Command</H1>
14147 Whereis is used to search the message for a word or part of a word.
14148 When searching in the composer, only the message part of your mail is
14149 searched, and the cursor is put on the first occurrence appearing
14150 after the location of the cursor.  The search will wrap to the
14151 beginning of the message when it no longer finds matches in the
14152 remainder of the message.
14154 To search for the same string a second time, press 
14155 <!--chtml if pinemode="function_key"-->
14156 &quot;F6&quot;
14157 <!--chtml else-->
14158 &quot;^W&quot;
14159 <!--chtml endif-->
14160 to begin search and then just press RETURN to accept the previous
14161 search string shown in square brackets rather than entering a new
14162 search string.<P>
14164 The &quot;Search&quot; prompt has several sub-command available:
14166 <DL>
14167 <DT>Get Help</DT>
14168 <DD> Takes you to this help page.
14170 <DT>Cancel</DT>
14171 <DD> Cancels the prompt.  No search takes place.
14173 <DT>First Line</DT>
14174 <DD> Takes you back to the composer with the cursor on the first character
14175 of the first line of text.
14177 <DT>Last Line</DT>
14178 <DD> Takes you back to the composer with the cursor on the last character
14179 of the last line of text.
14181 <DT>Replace (Optional)</DT>
14182 <DD> This sub-command is enabled by the 
14183 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14184 feature (which is on by default); see its help screen for details on how replacing works.
14186 </DL>
14188 &lt;End of help on this topic&gt;
14189 </BODY>
14190 </HTML>
14191 ====== h_sigedit_search =====
14192 <HTML>
14193 <HEAD>
14194 <TITLE>Explanation of Whereis Command </TITLE>
14195 </HEAD>
14196 <BODY>
14197 <H1>Help For Whereis Command</H1>
14199 Whereis is used to search for a word or part of a word.
14200 When searching the cursor is put on the first occurrence appearing
14201 after the location of the cursor.  The search will wrap to the
14202 beginning of the signature when it no longer finds matches in the
14203 remainder of the signature.
14205 To search for the same string a second time, press 
14206 <!--chtml if pinemode="function_key"-->
14207 &quot;F6&quot;
14208 <!--chtml else-->
14209 &quot;^W&quot;
14210 <!--chtml endif-->
14211 to begin search and then just press RETURN to accept the previous
14212 search string shown in square brackets rather than entering a new
14213 search string.<P>
14215 The &quot;Search&quot; prompt has several sub-command available:
14217 <DL>
14218 <DT>Get Help</DT>
14219 <DD> Takes you to this help page.
14221 <DT>Cancel</DT>
14222 <DD> Cancels the prompt.  No search takes place.
14224 <DT>First Line</DT>
14225 <DD> Takes you back to the composer with the cursor on the first character
14226 of the first line of text.
14228 <DT>Last Line</DT>
14229 <DD> Takes you back to the composer with the cursor on the last character
14230 of the last line of text.
14232 <DT>Replace (Optional)</DT>
14233 <DD> This sub-command is enabled by the 
14234 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14235 feature (which is on by default); see its help screen for details on how replacing works.
14237 </DL>
14239 &lt;End of help on this topic&gt;
14240 </BODY>
14241 </HTML>
14242 ======= h_composer_to ====
14243 <HTML>
14244 <HEAD>
14245 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
14246 </HEAD>
14247 <BODY>
14248 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
14250 <H2>The &quot;To:&quot; field</H2>
14251 The address you enter here must be a valid email address that is reachable
14252 from your site. 
14254 <H2>Email Address Format</H2>
14255 You may enter a full name and email address, 
14256 <!--chtml if pinemode="os_windows"-->
14257 <!--chtml else-->
14258 a local (meaning, on the same 
14259 host as the one you are running Alpine on) username that Alpine will
14260 complete for you, 
14261 <!--chtml endif-->
14262 the nickname of someone in a 
14263 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
14264 mail alias defined by your system administrator.  When you move the cursor
14265 out of this field, the nicknames will be expanded to the addresses in your
14266 address book, and the local usernames will be expanded to include the 
14267 persons' actual names.  You may enter as many addresses as you wish, but they 
14268 must be separated by commas.  You can move around this and other header fields
14269 with the arrow keys and use many of the usual composer editing keys.
14271 <UL>
14272 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14273 </UL>
14276 <H2>MESSAGE HEADER COMMANDS</H2>
14277 <!--chtml if pinemode="function_key"-->
14278 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14279 ^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>
14280 ^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>
14281 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
14282 ^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>
14283 ^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>
14284 ^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>
14285 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>
14286 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>
14287 ^@&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>
14288 ----------------------------------------|<BR>
14289 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
14290 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>
14291 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>
14292 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>
14293 <!--chtml else-->
14294 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14295 ^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>
14296 ^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>
14297 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
14298 ^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>
14299 ^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>
14300 ^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>
14301 ^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>
14302 ^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>
14303 ^@&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>
14304 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
14305 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>
14306 ^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>
14307 ^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>
14308 ^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>
14309 <!--chtml endif-->
14312 NOTE:
14313 <OL>
14314  <LI>For help on a particular command, highlight the bold text associated
14315 with it above and hit Return.
14316  <LI> The availability of certain commands 
14317 is determined by Alpine configuration files and system capabilities.
14318 At some sites, certain commands may not be available due to security or
14319 support concerns.
14320 </OL>
14323 <UL>   
14324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14325 </UL><P>
14326 &lt;End of help on this topic&gt;
14327 </BODY>
14328 </HTML>
14329 ======= h_composer_cc ====
14330 <HTML>
14331 <HEAD>
14332 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
14333 </HEAD>
14334 <BODY>
14335 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
14336 The Cc: field is just like the To: field, except it is used for addressees
14337 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
14338 not directly meant directly &quot;for&quot; these recipients, but you wanted 
14339 them to see the message.  The only difference the recipients see is that their 
14340 name is in the Cc: field, rather than the To: field.
14342 For help with Cc: field editing
14343 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14345 <UL>
14346 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14347 </UL>
14349 <UL>   
14350 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14351 </UL><P>
14352 &lt;End of help on this topic&gt;
14353 </BODY>
14354 </HTML>
14355 ======= h_composer_bcc ====
14356 <HTML>
14357 <HEAD>
14358 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14359 </HEAD>
14360 <BODY>
14361 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14362 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14363 a copy of the message to one or more people whose addresses you do not
14364 wish disclosed, either to reduce clutter or for confidentiality.
14366 The format of the Bcc: field is just the same as the To: and Cc: fields in
14367 the way the addresses are entered.  The recipients listed here will
14368 receive a copy of the message, but --assuming your site's mail transport
14369 software is properly configured-- their addresses will not show up in the
14370 headers of the message, as delivered to all of the recipients.  The To:
14371 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14373 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14374 will automatically generate and place in the To: field a pseudo-address of 
14375   &quot;undisclosed-recipients: ;&quot;
14376 or whatever string has been specified in the 
14377 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14378 variable.
14380 The reason for this is to avoid embarrassment caused by some Internet
14381 mail transfer software that interprets a &quot;missing&quot; To: header as 
14382 an error and replaces it with an Apparently-to: header that may contain
14383 the addresses you entered on the Bcc: line.  In addition, it may be
14384 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14386 You can manipulate what text ends up on the (originally) empty To:
14387 field.  Just remember to put a colon and semicolon at the end of the
14388 field, which is a special notation denoting that it is not a real address.
14390 For information on message header editing
14391 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14393 <UL>
14394 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14395 </UL>
14397 <UL>   
14398 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14399 </UL><P>
14400 &lt;End of help on this topic&gt;
14401 </BODY>
14402 </HTML>
14403 ======= h_composer_lcc ====
14404 <HTML>
14405 <HEAD>
14406 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14407 </HEAD>
14408 <BODY>
14409 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14410 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14411 you wish to send a message to a list of people but avoid having all
14412 of their addresses visible, in order to reduce clutter when the
14413 message is received.
14415 It is similar to the 
14416 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14417 in that individual
14418 addressees are hidden, but Lcc is designed to work specifically with
14419 distribution lists you have created in your 
14420 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14421 the nickname of the list on the Lcc line will result in the full name of
14422 your Alpine Address Book list being placed on the To: line of the message,
14423 using a special notation that distinguishes it from a real address. You
14424 must leave the To: line blank for your list name to appear there.
14426 For example, if you have this list entered in your Address Book:<PRE>
14428         largo         Key Largo List       DISTRIBUTION LIST:
14429                                            bogie@mgm.com
14430                                            lauren@mgm.com
14431                                            walter@mgm.com</PRE>
14434 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14435 the result is:<PRE>
14437         To      : Key Largo List: ;
14438         Cc      :
14439         Bcc     :
14440         Fcc     : sent-mail
14441         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14442                   lauren@mgm.com,
14443                   walter@mgm.com
14444         Subject :</PRE>
14446 Each recipient listed on the Lcc: line receives a copy of the message
14447 without their address being visible (as though they were listed on the
14448 Bcc: line). The colon-semicolon notation used to put the full-name of the
14449 list on the To: line is a special address format that doesn't specify any
14450 actual addressees, but does give some information to the recipients of the
14451 message.
14453 Note: if after entering an LCC, you delete the list name that is placed
14454 on the To: line, then recipients will see <PRE>
14455        To: undisclosed-recipients: ;</PRE>
14457 (or whatever string is defined in the 
14458 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14459 variable) just as in the BCC case. 
14461 For help with Lcc: field editing
14462 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14464 <UL>
14465 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14466 </UL>
14468 <UL>   
14469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14470 </UL><P>
14471 &lt;End of help on this topic&gt;
14472 </BODY>
14473 </HTML>
14474 ======= h_composer_from =======
14475 <HTML>
14476 <HEAD>
14477 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14478 </HEAD>
14479 <BODY>
14480 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14482 This header carries your return address.  It is the address toward which
14483 replies (and often, future unrelated correspondence) will be directed,
14484 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14485 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14486 sure this address is correct.
14488 For help with message header editing
14489 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14491 <UL>
14492 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14493 </UL>
14495 <UL>   
14496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14497 </UL><P>
14498 &lt;End of help on this topic&gt;
14499 </BODY>
14500 </HTML>
14501 ======= h_composer_reply_to =======
14502 <HTML>
14503 <HEAD>
14504 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14505 </HEAD>
14506 <BODY>
14507 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14509 Most people should not need this header. The Reply-To: header is used in
14510 cases where you would like replies to your messages to be directed to an
14511 address other than your normal &quot;From:&quot; address.  This is atypical, 
14512 but can happen when you use multiple machines and do not have the same account
14513 name on each one, or when you wish to direct certain replies to accounts
14514 or folders designated for specific classes of correspondence.
14516 For help with message header editing
14517 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14519 <UL>
14520 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14521 </UL>
14524 <UL>   
14525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14526 </UL><P>
14527 &lt;End of help on this topic&gt;
14528 </BODY>
14529 </HTML>
14530 ======= h_composer_custom_addr ====
14531 <HTML>
14532 <HEAD>
14533 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14534 </HEAD>
14535 <BODY>
14536 <H1>CUSTOMIZED HEADER FIELD</H1>
14537 This is a customized header, i.e. not one that is part of Alpine's normal
14538 set of Compose headers.
14540 For help with message header editing
14541 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14543 <UL>
14544 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14545 </UL>
14547 <UL>   
14548 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14549 </UL><P>
14550 &lt;End of help on this topic&gt;
14551 </BODY>
14552 </HTML>
14553 ======= h_composer_custom_free ====
14554 <HTML>
14555 <HEAD>
14556 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14557 </HEAD>
14558 <BODY>
14559 <H1>CUSTOMIZED HEADER FIELD</H1>
14560 This is a customized header, i.e. not one that is part of Alpine's normal
14561 set of Compose headers.
14563 This field consists of arbitrary text.
14565 For help with message header editing
14566 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14568 <UL>   
14569 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14570 </UL><P>
14571 &lt;End of help on this topic&gt;
14572 </BODY>
14573 </HTML>
14574 ====== h_composer_news =====
14575 <HTML>
14576 <HEAD>
14577 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14578 </HEAD>
14579 <BODY>
14580 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14581 Use the newsgroups line to specify any and all USENET newsgroups to which
14582 your message should be posted.  When composing a message from scratch, this
14583 line may be hidden.  If so, just press the rich headers command
14584 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14585 to make it visible.
14587 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14588 people will be reading your message.  Also, you or your system manager
14589 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14590 in order for you to be able to post.
14592 For help with message header editing
14593 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14594 <P><UL>
14595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14596 </UL>
14598 &lt;End of help on this topic&gt;
14599 </BODY>
14600 </HTML>
14601 ======= h_composer_fcc ====
14602 <HTML>
14603 <HEADER>
14604 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14605 </HEADER>
14606 <BODY>
14607 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14608 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14609 each outgoing message.  The default value can be configured with the
14610 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14611 the file carbon copy on any message you send by editing the FCC header.<p>
14613 You may type ^T to get a list of all your folders and select one to use as
14614 the FCC for this message.<P>
14616 For help with message header editing
14617 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14619 <UL>   
14620 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14621 </UL><P>
14622 &lt;End of help on this topic&gt;
14623 </BODY>
14624 </HTML>
14625 ======= h_composer_subject ====
14626 <HTML>
14627 <HEADER>
14628 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14629 </HEADER>
14630 <BODY>
14631 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14633 The subject header provides a place to enter a few words that summarize
14634 the topic of the message you are sending.  You may leave this line blank,
14635 but it is considered a courtesy to use a meaningful subject.<p>
14637 For help with message header editing
14638 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14640 <UL>   
14641 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14642 </UL><P>
14643 &lt;End of help on this topic&gt;
14644 </BODY>
14645 </HTML>
14646 ======= h_composer_attachment ====
14647 <HTML>
14648 <HEAD>
14649 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14650 </HEAD>
14651 <BODY>
14652 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14654 The &quot;Attchmnt:&quot; field is where you specify what file or
14655 files you'd like attached to
14656 the message you are composing.  Those files must reside on the machine
14657 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14658 account on a Unix machine, you'll have to transfer it before attaching it.
14659 Contact local computer support people for assistance with transferring.
14662 The file name
14663 given can be an absolute file path name for your system
14664 <!--chtml if pinemode="os_windows"-->
14665 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14666 with a relative pathname, or simply a file name without
14667 drive or directory specification.  
14668 <!--chtml else-->
14669 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14670 a file in your home directory, or a file path relative to your 
14671 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14672 your home directory or &quot;~user&quot; to refer to another
14673 account's home directory.
14674 <!--chtml endif--><P>
14675 No wild card characters may be used.
14676 <P>If the 
14677 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14678 feature is set, names are relative to your current working directory 
14679 <!--chtml if pinemode="running"-->
14680 (which, at least for your current Alpine &quot;session,&quot; 
14681 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14682 <!--chtml endif-->
14683 rather than your home directory
14684 <!--chtml if pinemode="running"-->
14685 (which, in the present configuration of your system, is
14686  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14687 <!--chtml endif-->
14690 Alpine uses MIME encoding for attachments, so binaries and files of any
14691 length can safely be delivered to any MIME-capable mail reading program.
14692 If you send an attachment to someone who does not have a MIME-capable mail
14693 reading program yet, then the main message text will be readable, but
14694 attachments (even attachments that are just plain text) are not.
14697 Typing the filename on the Attchmnt: line achieves the same
14698 result as using the 
14699 <!--chtml if pinemode="function_key"-->
14701 <!--chtml else-->
14702 Ctrl-J
14703 <!--chtml endif--> command.
14706 If you Forward a message with attachments, you may delete them from your
14707 Forwarded message by editing the Attchmnt header line.
14710 For help with message header editing
14711 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14713 <UL>   
14714 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14715 </UL><P>
14716 &lt;End of help on this topic&gt;
14717 </BODY>
14718 </HTML>
14719 ======= h_composer_ctrl_j ====
14720 <HTML>
14721 <HEAD>
14722 <TITLE>COMPOSER ATTACH</TITLE>
14723 </HEAD>
14724 <BODY>
14725 After the
14726 <!--chtml if pinemode="function_key"-->
14728 <!--chtml else-->
14729 Ctrl-J
14730 <!--chtml endif--> command:
14731 At the &quot;File to attach:&quot; prompt, enter the name of the 
14732 existing file to attach to your message.  
14733 When the feature
14734 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14735 is set
14736 you need only enter the beginning of the filename (enough of it to uniquely 
14737 identify the file) and press TAB to complete it.
14739 Or, press ^T to use the BROWSER screen for 
14740 selecting the file.  <P>
14741 For more information on attaching files, see the help screen for the 
14742 composer's 
14743 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14744 but can be revealed using the 
14745 <!--chtml if pinemode="function_key"-->
14747 <!--chtml else-->
14748 Ctrl-R
14749 <!--chtml endif--> 
14750 command with the cursor positioned above the
14751 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14753 &lt;End of help on this topic&gt;
14754 </BODY>
14755 </HTML>
14756 ======= h_edit_nav_cmds =========
14757 <HTML>
14758 <HEAD>
14759 <TITLE>Composer Editing Commands Explained</TITLE>
14760 </HEAD>
14761 <BODY>
14762 <H1>EDITING and NAVIGATION COMMANDS</H1>
14763 <!--chtml if pinemode="function_key"-->
14764 <PRE>
14765 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14766 ^B (Left Arrow)    Back character       | ^D       Delete current character
14767 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14768 ^P (Up Arrow)      Previous line        |
14769 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14770 ^A                 Beginning of line    |            delete current line
14771 ^E                 End of line          | F10      Undelete line(s)
14772 F7                 Previous page        |
14773 F8                 Next page            |-------------------------------------
14774 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14775 ----------------------------------------|
14776 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14777 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14778 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14779 </PRE>
14780 <!--chtml else-->
14781 <PRE>
14782 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14783 ^B (Left Arrow)    Back character       | ^D       Delete current character
14784 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14785 ^P (Up Arrow)      Previous line        |
14786 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14787 ^A                 Beginning of line    |            delete current line
14788 ^E                 End of line          | ^U       Undelete line(s)
14789 ^Y                 Previous page        |
14790 ^V                 Next page            |-------------------------------------
14791 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14792 ----------------------------------------|
14793 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14794 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14795 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14796 </PRE>
14797 <!--chtml endif-->
14798 &lt;End of help on this topic&gt;
14799 </BODY>
14800 </HTML>
14801 ===== h_composer_sigedit =====
14802 <HTML>
14803 <HEAD>
14804 <TITLE>Signature Editor Commands Explained</TITLE>
14805 </HEAD>
14806 <BODY>
14807 <H1>SIGNATURE EDITOR COMMANDS</H1>
14808 <!--chtml if pinemode="function_key"-->
14809 <PRE>
14810 CURSOR MOTION KEYS                     |EDITING KEYS
14811   ^B (Left Arrow)   Back character     | ^D       Delete current character
14812   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14813   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14814   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14815   ^A                Beginning of line  |           delete current line
14816   ^E                End of line        | F10       Paste text, undelete lines
14817   F7                Previous page      |           cut with ^K, or unjustify
14818   F8                Next page          |-------------------------------------
14819   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14820 ---------------------------------------| F6       Whereis (search for string)
14821 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14822  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14823                  |  ^Z    Suspend      | ^L       Redraw Screen
14824  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14825 </PRE>
14826 <!--chtml else-->
14827 <PRE>
14828 CURSOR MOTION KEYS                     |EDITING KEYS
14829   ^B (Left Arrow)   Back character     | ^D       Delete current character
14830   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14831   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14832   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14833   ^A                Beginning of line  |           delete current line
14834   ^E                End of line        | ^U        Paste text, undelete lines
14835   ^Y                Previous page      |           cut with ^K, or unjustify
14836   ^V                Next page          |-------------------------------------
14837   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14838 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14839 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14840  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14841                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14842  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14843 </PRE>
14844 <!--chtml endif-->
14846 NOTE: The presence or absence of the following commands is determined
14847 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14848 some of these commands may be administratively disabled by your system
14849 manager; if they don't work, please check with your local help desk
14850 before reporting a bug.
14852 <UL>
14853  <LI>Suspend (suspends Alpine and gives a system prompt)
14854  <LI>Alternate editor (allows you to compose with your own editor)
14855 </UL>
14858 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14859 Ctrl-&#92;, ESC
14862 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14863 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14865 &lt;End of help on this topic&gt;
14866 </BODY>
14867 </HTML>
14868 ===== h_composer_commentedit =====
14869 <HTML>
14870 <HEAD>
14871 <TITLE>Comment Editor Commands Explained</TITLE>
14872 </HEAD>
14873 <BODY>
14874 <H1>COMMENT EDITOR COMMANDS</H1>
14875 <!--chtml if pinemode="function_key"-->
14876 <PRE>
14877 CURSOR MOTION KEYS                     |EDITING KEYS
14878   ^B (Left Arrow)   Back character     | ^D       Delete current character
14879   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14880   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14881   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14882   ^A                Beginning of line  |           delete current line
14883   ^E                End of line        | F10       Paste text, undelete lines
14884   F7                Previous page      |           cut with ^K, or unjustify
14885   F8                Next page          |-------------------------------------
14886   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14887 ---------------------------------------| F6       Whereis (search for string)
14888 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14889  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14890                  |  ^Z    Suspend      | ^L       Redraw Screen
14891  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14892 </PRE>
14893 <!--chtml else-->
14894 <PRE>
14895 CURSOR MOTION KEYS                     |EDITING KEYS
14896   ^B (Left Arrow)   Back character     | ^D       Delete current character
14897   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14898   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14899   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14900   ^A                Beginning of line  |           delete current line
14901   ^E                End of line        | ^U        Paste text, undelete lines
14902   ^Y                Previous page      |           cut with ^K, or unjustify
14903   ^V                Next page          |-------------------------------------
14904   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14905 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14906 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14907  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14908                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14909  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14910 </PRE>
14911 <!--chtml endif-->
14913 NOTE: The presence or absence of the following commands is determined
14914 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14915 some of these commands may be administratively disabled by your system
14916 manager; if they don't work, please check with your local help desk
14917 before reporting a bug.
14919 <UL>
14920  <LI>Suspend (suspends Alpine and gives a system prompt)
14921  <LI>Alternate editor (allows you to compose with your own editor)
14922 </UL>
14925 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14926 Ctrl-&#92;, ESC
14929 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14930 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14932 &lt;End of help on this topic&gt;
14933 </BODY>
14934 </HTML>
14935 ======= h_composer_abook_nick =======
14936 <HTML>
14937 <HEAD>
14938 <TITLE>Addressbook Nickname Explained</TITLE>
14939 </HEAD>
14940 <BODY>
14941 This is a short nickname for this address book entry.  If it is used in
14942 place of an address from the composer, the composer will fill in the
14943 address(es) for the entry that matches the nickname. 
14946 Look <A HREF="h_edit_nav_cmds">here</A>
14947 to see the available Editing and Navigation commands.
14949 &lt;End of help on this topic&gt;
14950 </BODY>
14951 </HTML>
14952 ======= h_composer_abook_full =======
14953 <HTML>
14954 <HEAD>
14955 <TITLE>Addressbook Fullname Explained</TITLE>
14956 </HEAD>
14957 <BODY>
14958 This is the full name field for this entry.  If this is going to be a
14959 distribution list (more than one address), it should be a descriptive
14960 phrase describing the list.  It will be included in the mail header if you
14961 put the list in the To: or CC: field, or in the To: line if you put the
14962 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14963 leave any of the other fields blank, too). If this address book entry is
14964 going to be a simple entry with just one address, then this field is the
14965 person's name. When you send mail to this entry, this is the field to the
14966 left of the brackets. That is, it is the most readable part of the 
14967 address. For example, in the sample address:
14968 <PRE>
14969        John Doe &lt;jdoe@some.domain&gt;
14970 </PRE>
14971 "John Doe" is the full name field. If you are sorting your address book
14972 with one of the options that uses full names, then it might be useful to
14973 enter the full name as "Last, First", for example:
14974 <PRE>
14975        Doe, John
14976 </PRE>
14977 so that it will be sorted using Doe instead of John. This will be changed
14978 back into John Doe when you use it.
14980 Look <A HREF="h_edit_nav_cmds">here</A>
14981 to see the available Editing and Navigation commands.
14983 &lt;End of help on this topic&gt;
14984 </BODY>
14985 </HTML>
14986 ======= h_composer_abook_fcc =======
14987 <HTML>
14988 <HEAD>
14989 <TITLE>Addressbook Fcc Explained</TITLE>
14990 </HEAD>
14991 <BODY>
14992 If this entry is the first one in the To: line of an outgoing message,
14993 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14994 you would normally get (which depends on which
14995 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14996 you've chosen). 
14998 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14999 that you don't want any Fcc associated with this entry.
15001 Look <A HREF="h_edit_nav_cmds">here</A>
15002 to see the available Editing and Navigation commands.
15004 &lt;End of help on this topic&gt;
15005 </BODY>
15006 </HTML>
15007 ====== h_config_combined_abook_display =====
15008 <HTML>
15009 <HEAD>
15010 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
15011 </HEAD>
15012 <BODY>
15013 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
15015 This feature affects the address book display screens.
15016 Normally, expanding an address book from the ADDRESS BOOK LIST screen
15017 will cause the remaining address books and directory servers to disappear
15018 from the screen, leaving only the entries of the expanded address book.
15019 If this feature is set, then the other address books will remain on the screen,
15020 so that all of the address books can be present at once.
15023 The way that commands work won't be changed.
15024 For example, the Select All command will select all of the entries in the
15025 current address book, not all of the entries in all of the address books.
15026 The WhereIs command will change a little.
15027 It will search through all of the text on the screen plus all of the entries
15028 from expanded address books.
15031 When this feature is set, the setting of the feature
15032 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
15033 has an effect.
15035 &lt;End of help on this topic&gt;
15036 </BODY>
15037 </HTML>
15038 ====== h_config_titlebar_color_style =====
15039 <HTML>
15040 <HEAD>
15041 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
15042 </HEAD>
15043 <BODY>
15044 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
15046 This option affects the colors used to display the titlebar (the top
15047 line on the screen) when viewing a message.
15050 The available options include:
15053 <DL>
15054 <DT>default</DT>
15055 <DD>The color of the titlebar will be the color you set for the
15056 <A HREF="h_config_title_color">Title Color</A>.
15057 The Title Color may be set by using the
15058 <A HREF="h_color_setup">Setup Kolor</A> screen.
15059 </DD>
15061 <DT>indexline</DT>
15062 <DD>The color of the titlebar will be the same as the color of the
15063 index line corresponding to the message being viewed.
15064 The rules that determine what color the index line will be may be set
15065 up by going to the Setup/Rules/Indexcolor screen.
15066 If the index line for a message is not colored explicitly by the
15067 Indexcolor rules, then the titlebar will be colored the same as for
15068 the &quot;default&quot; option above (which is not the same color that
15069 the index line itself will have).
15070 </DD>
15072 <DT>reverse-indexline</DT>
15073 <DD>This is similar to the &quot;indexline&quot; option except the
15074 foreground and background colors from the corresponding index line will
15075 be reversed.
15076 For example, if the index line color is red letters on a white background,
15077 then the titlebar will be white letters on a red background.
15078 If the index line for a message is not colored explicitly by the
15079 Indexcolor rules, then the titlebar will be colored the same as for
15080 the &quot;default&quot; option above (which is not the same color that
15081 the index line itself will have).
15082 </DD>
15083 </DL>
15087 <UL>   
15088 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15089 </UL><P>
15090 &lt;End of help on this topic&gt;
15091 </BODY>
15092 </HTML>
15093 ====== h_config_index_color_style =====
15094 <HTML>
15095 <HEAD>
15096 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
15097 </HEAD>
15098 <BODY>
15099 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
15101 This option affects the colors used to display the current line in the
15102 MESSAGE INDEX screen.
15103 If you do not have Index Color Rules defined, then this option will
15104 have no effect in the index.
15105 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
15107 If the option
15108 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
15109 is turned on and the
15110 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
15111 is set to something other than the default, then
15112 this option also affects the color used to display the current folder
15113 in the Incoming FOLDER LIST screen.
15116 The available options include:
15119 <DL>
15120 <DT>flip-colors</DT>
15121 <DD>This is the default.
15122 If an index line is colored because it matches one of your
15123 Index Color Rules, then its colors will be reversed when it is the currently
15124 highlighted line.
15125 For example, if the line is normally red text on a blue background, then
15126 when it is the current line it will be drawn as blue text on a red background.
15128 The rest of the option values all revert to this flip-colors behavior if
15129 there is no Reverse Color defined.
15130 </DD>
15132 <DT>reverse</DT>
15133 <DD>With this option the Reverse color is always used to highlight the
15134 current line.
15135 </DD>
15137 <DT>reverse-fg</DT>
15138 <DD>The foreground part of the Reverse Color is used to highlight
15139 the current line.
15140 If this would cause the text to be unreadable (because the foreground and
15141 background colors are the same) or if it would cause no change in the
15142 color of the index line, then the colors are flipped instead.
15144 Some people think this works particularly well if you use different
15145 background colors to emphasize &quot;interesting&quot; lines,
15146 but always with the same Normal foreground color,
15147 and you use a different foreground color for the Reverse Color.
15148 </DD>
15150 <DT>reverse-fg-no-ambiguity</DT>
15151 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
15152 the resulting color will be exactly the same as the regular Reverse
15153 Color.
15154 That can lead to some possible confusion because an
15155 &quot;interesting&quot;
15156 line that is the current line will be displayed exactly the same as a
15157 non-interesting line that is current.
15158 You can't tell whether the line is just a regular current line or if it is
15159 an &quot;interesting&quot; current line by looking at the color.
15160 Setting the option to this value removes that ambiguity.
15161 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
15162 interesting current line would look just like a non-interesting current line.
15163 In that case, the interesting line's colors are simply flipped (like in the
15164 default behavior).
15166 As an alternative way to preserve the line's interestingness in this case,
15167 you may find that using both a different foreground and a different
15168 background color for the interesting line will help.
15169 </DD>
15171 <DT>reverse-bg</DT>
15172 <DD>The background part of the Reverse Color is used to highlight
15173 the current line.
15174 If this would cause the text to be unreadable (because the foreground and
15175 background colors are the same) or if it would cause no change in the
15176 color of the index line, then the colors are flipped instead.
15178 Some people think this works particularly well if you use different
15179 foreground colors to emphasize &quot;interesting&quot; lines,
15180 but always with the same Normal background color,
15181 and you use a different background color for the Reverse Color.
15182 </DD>
15184 <DT>reverse-bg-no-ambiguity</DT>
15185 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
15186 rule may also result in a color that is exactly the same as the regular
15187 Reverse Color.
15188 Setting the option to this value removes that ambiguity.
15189 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
15190 current line has the same color as the Reverse Color.
15191 In that case, the interesting line's colors are simply flipped (like in the
15192 default behavior).
15193 </DD>
15194 </DL>
15198 <UL>   
15199 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15200 </UL><P>
15201 &lt;End of help on this topic&gt;
15202 </BODY>
15203 </HTML>
15204 ====== h_config_expanded_addrbooks =====
15205 <HTML>
15206 <HEAD>
15207 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
15208 </HEAD>
15209 <BODY>
15210 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
15212 If multiple address books (either personal or global) are defined, and you
15213 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
15214 screen, then set this feature. This feature will have no effect unless the
15215 feature
15216 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
15217 is also set.
15219 &lt;End of help on this topic&gt;
15220 </BODY>
15221 </HTML>
15222 ====== h_config_combined_folder_display =====
15223 <HTML>
15224 <HEAD>
15225 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
15226 </HEAD>
15227 <BODY>
15228 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
15230 This feature affects the folder list display screens.
15231 Normally, each folder list is viewed within its collection only.  This
15232 command allows folder lists to be viewed within a single screen that
15233 combines the contents of all collections.
15236 The way that commands work won't be changed.
15237 For example, the Select All command will select all of the folders in the
15238 current collection, not all of the entries in all of the collections.
15239 The WhereIs command will change a little.
15240 It will search through all of the folders in the current collection as well
15241 as all the folder in any other expanded collection.
15244 When this feature is set, the setting of the feature
15245 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
15246 has an effect.
15248 &lt;End of help on this topic&gt;
15249 </BODY>
15250 </HTML>
15251 ====== h_config_combined_subdir_display =====
15252 <HTML>
15253 <HEAD>
15254 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
15255 </HEAD>
15256 <BODY>
15257 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
15259 This feature affects the Folder List screen when
15261 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15262 feature is enabled.  Normally, selecting a directory from the Folder
15263 List takes you into a new screen displaying only the contents of
15264 that directory.
15267 Enabling this feature will cause the contents of the selected
15268 directory to be
15269 displayed within the boundaries of the &quot;Collection&quot; it
15270 is a part of.  All previously displayed collections will remain
15271 in the screen.
15274 The way that commands work won't be changed.
15275 For example, the Select All command will select all of the folders in the
15276 directory, as opposed to all of the entries in all of the collections.
15277 The WhereIs command will change a little.
15278 It will search through all of the folders in the current collection as well
15279 as all the folder in any other expanded collection.
15282 &lt;End of help on this topic&gt;
15283 </BODY>
15284 </HTML>
15285 ====== h_config_separate_fold_dir_view =====
15286 <HTML>
15287 <HEAD>
15288 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
15289 </HEAD>
15290 <BODY>
15291 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
15293 This feature affects folder collections wherein a folder
15294 and directory can have the same name.  By default, Alpine displays them
15295 only once, denoting that it is both a folder and directory by appending
15296 the folder name with the hierarchy character enclosed
15297 in square brackets.
15301 Enabling this feature will cause Alpine to display such names
15302 separately marking the name representing a directory with a trailing
15303 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
15306 The feature also alters the command set slightly.  By default, the
15307 right-arrow descends into the directory, while hitting the Return key will
15308 cause the folder by that name to be opened.
15311 With this feature set, the Return key will open the highlighted folder, or
15312 enter the highlighted directory.
15315 &lt;End of help on this topic&gt;
15316 </BODY>
15317 </HTML>
15318 ====== h_config_expanded_folders =====
15319 <HTML>
15320 <HEAD>
15321 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
15322 </HEAD>
15323 <BODY>
15324 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
15326 If multiple folder collections are defined, and you
15327 wish to have them all expanded implicitly upon entering the FOLDER LIST
15328 screen, then set this feature. This feature will have no effect unless the
15329 feature
15330 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15331 is also set.
15333 &lt;End of help on this topic&gt;
15334 </BODY>
15335 </HTML>
15336 ======= h_config_ldap_server =======
15337 <HTML>
15338 <HEAD>
15339 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
15340 </HEAD>
15341 <BODY>
15342 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
15343 This is the name of the host where an LDAP server is running.
15344 For redundancy, this may be a space-delimited set of server names, in which
15345 case the first server that answers is used.
15346 Each of the server names may be optionally followed by
15347 a colon and a port number.
15348 If this form is used then the port number configured below in the
15349 <EM>port</EM> field is not used.
15351 To find out whether your organization has its own LDAP server, 
15352 contact its computing support staff.
15353 <P><UL>
15354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15355 </UL>
15357 &lt;End of help on this topic&gt;
15358 </BODY>
15359 </HTML>
15360 ======= h_config_ldap_base =======
15361 <HTML>
15362 <HEAD>
15363 <TITLE>LDAP OPTION: Search-Base</TITLE>
15364 </HEAD>
15365 <BODY>
15366 <H1>LDAP OPTION: Search-Base</H1>
15368 This is the search base to be used on this server.  It functions as a filter 
15369 by restricting your searches in the LDAP server database
15370 to the specified contents of the specified fields.  Without it, searches 
15371 submitted to this directory server may fail.  It might be something
15372 like:
15374 <PRE>
15375       O = &lt;Your Organization Name&gt;, C = US
15376 </PRE>
15377 or it might be blank.  
15378 (Some LDAP servers actually ignore anything specified here.)
15380 If in doubt what parameters you should specify here, 
15381 contact the maintainers of the LDAP server.
15382 <P><UL>
15383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15384 </UL>
15386 &lt;End of help on this topic&gt;
15387 </BODY>
15388 </HTML>
15389 ======= h_config_ldap_port =======
15390 <HTML>
15391 <HEAD>
15392 <TITLE>LDAP OPTION: Port</TITLE>
15393 </HEAD>
15394 <BODY>
15395 <H1>LDAP OPTION: Port</H1>
15397 This is the TCP port number to be used with this LDAP server. If you leave
15398 this blank port 389 will be used.
15400 &lt;End of help on this topic&gt;
15401 </BODY>
15402 </HTML>
15403 ======= h_config_ldap_nick =======
15404 <HTML>
15405 <HEAD>
15406 <TITLE>LDAP OPTION: Nickname</TITLE>
15407 </HEAD>
15408 <BODY>
15409 <H1>LDAP OPTION: Nickname</H1>
15411 This is a nickname to be used in displays. If you don't supply a
15412 nickname the server name
15413 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15414 will be used instead.  This option is strictly for your convenience.
15416 &lt;End of help on this topic&gt;
15417 </BODY>
15418 </HTML>
15419 ======= h_config_ldap_binddn =======
15420 <HTML>
15421 <HEAD>
15422 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15423 </HEAD>
15424 <BODY>
15425 <H1>LDAP OPTION: Bind-DN</H1>
15427 You may need to authenticate to the LDAP server before you are able to use it.
15428 This is the Distinguished Name to bind to when authenticating to this server.
15429 Try leaving this blank until you know you need it.
15431 Alpine only knows about LDAP Simple authentication.
15432 It does not attempt LDAP SASL authentication.
15433 The DN and password will be sent in the clear unless TLS encryption is
15434 being used on this connection.
15435 Because of this, you may want to set the LDAP feature
15436 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15437 or the feature
15438 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15439 if you are going to be providing a password.
15440 <P><UL>
15441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15442 </UL>
15444 &lt;End of help on this topic&gt;
15445 </BODY>
15446 </HTML>
15447 ======= h_config_ldap_opts_impl =======
15448 <HTML>
15449 <HEAD>
15450 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15451 </HEAD>
15452 <BODY>
15453 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15455 Set this to have lookups done to this server implicitly from the composer.
15456 If an address doesn't look like a fully-qualified address, it will be looked
15457 up in your address books, and if it doesn't match a nickname there, then it
15458 will be looked up on the LDAP servers that have this feature set.
15459 The lookups will also be done when using the address completion feature
15460 (TAB command) in the composer if any of the serves have this feature set.
15461 Also see the LDAP feature
15462 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15463 and the Setup/Config feature
15464 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15466 &lt;End of help on this topic&gt;
15467 </BODY>
15468 </HTML>
15469 ======= h_config_ldap_opts_tls =======
15470 <HTML>
15471 <HEAD>
15472 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15473 </HEAD>
15474 <BODY>
15475 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15477 When connecting to this server Alpine will attempt to use TLS encryption
15478 on the connection.
15479 Also see the closely related feature
15480 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15482 Note that if this option is set, then 
15483 <A HREF="h_config_ldap_opts_ldaps">
15484 &quot;Require-LDAPS-On-Connection&quot;</A>
15485 can not be enabled for this server. You must disable this feature in
15486 order to use 
15487 <A HREF="h_config_ldap_opts_ldaps">
15488 &quot;Require-LDAPS-On-Connection&quot;</A>
15490 &lt;End of help on this topic&gt;
15491 </BODY>
15492 </HTML>
15493 ======= h_config_ldap_opts_tlsmust =======
15494 <HTML>
15495 <HEAD>
15496 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15497 </HEAD>
15498 <BODY>
15499 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15501 When connecting to this server Alpine will attempt to use TLS encryption
15502 on the connection.
15503 If the StartTLS operation fails then the connection will not be used.
15505 Note that if this option is set, then 
15506 <A HREF="h_config_ldap_opts_ldaps">
15507 &quot;Require-LDAPS-On-Connection&quot;</A>
15508 can not be enabled for this server. You must disable this feature in
15509 order to use 
15510 <A HREF="h_config_ldap_opts_ldaps">
15511 &quot;Require-LDAPS-On-Connection&quot;</A>
15513 &lt;End of help on this topic&gt;
15514 </BODY>
15515 </HTML>
15516 ======= h_config_ldap_opts_ldaps =======
15517 <HTML>
15518 <HEAD>
15519 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15520 </HEAD>
15521 <BODY>
15522 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15524 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15525 on the connection.
15527 This feature can not be used along with 
15528 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15529  or
15530 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15531 If you want to connect using StartTLS to this server, you must disable
15532 this feature first.
15534 &lt;End of help on this topic&gt;
15535 </BODY>
15536 </HTML>
15537 ====== h_config_ldap_opts_rhs =====
15538 <HTML>
15539 <HEAD>
15540 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15541 </HEAD>
15542 <BODY>
15543 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15545 Normally implicit LDAP lookups from the composer are done only for the
15546 strings you type in from the composer screen. In other words, you type in
15547 something in the To or CC field and press return, then the string is looked up.
15548 First that string is looked up in your address books. If a match is found
15549 there, then the results of that match are looked up again. If you place
15550 a string in your address book that you want to have looked up on the LDAP
15551 directory server, you need to turn on this feature. If you set this feature
15552 for a server, you almost always will also want to set the
15553 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15554 feature. An example might serve to best illustrate this feature.
15556 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15557 entry with an
15558 address of pres@whitehouse.gov, then you might put an entry in your address
15559 book that looks like:
15561 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15562 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15564 Now, when you type &quot;bill&quot; into an
15565 address field in the composer Alpine will
15566 find the &quot;bill&quot; entry in your address book.
15567 It will replace &quot;bill&quot; with
15568 &quot;William Clinton&quot;.
15569 It will then search for an entry with that nickname
15570 in your address book and not find one. If this feature
15571 is set, Alpine will then attempt to lookup
15572 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15573 pres@whitehouse.gov.
15575 A better way to accomplish the same thing is probably to use the feature
15576 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15578 &lt;End of help on this topic&gt;
15579 </BODY>
15580 </HTML>
15581 ====== h_config_ldap_opts_ref =====
15582 <HTML>
15583 <HEAD>
15584 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15585 </HEAD>
15586 <BODY>
15587 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15589 Normally when you save the results of an LDAP directory lookup to your
15590 address book the results of the lookup are saved. If this feature is set
15591 and the entry being saved was found on this directory server, then the
15592 search criteria is saved instead of the results of the search. When this
15593 address book entry is used in the future, instead of copying the results
15594 from the address book the directory lookup will be done again. This could
15595 be useful if the copied result might become stale because the data on
15596 the directory server changes (for example, the entry's email address changes).
15597 You probably don't want to set this feature if the server is at all slow or
15598 unreliable.
15600 The way this actually works is that instead of saving the email address
15601 in your address book, Alpine saves enough information to look up the same
15602 directory entry again. In particular, it saves the server name and the
15603 distinguished name of the entry. It's possible that the server administrators
15604 might change the format of distinguished names on the server, or that the
15605 entry might be removed from the server. If Alpine notices this, you will be warned
15606 and a backup copy of the email address will be used. You may want to create
15607 a new entry in this case, since you will get the annoying warning every
15608 time you use the old entry. You may do that by Saving the entry to a new
15609 nickname in the same address book. You will be asked whether or not you
15610 want to use the backup email address.
15612 A related feature in the Setup/Config screen is
15613 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15615 &lt;End of help on this topic&gt;
15616 </BODY>
15617 </HTML>
15618 ======= h_config_ldap_opts_nosub =======
15619 <HTML>
15620 <HEAD>
15621 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15622 </HEAD>
15623 <BODY>
15624 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15626 Spaces in your input are normally handled specially.
15627 Each space character is replaced
15630 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15632 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15633 The reason this is done is so the input string
15635 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15637 (which is converted to &quot;Greg* Donald&quot;) will match
15638 the names &quot;Greg Donald&quot;,
15639 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15640 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15641 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15642 then it would also match the name &quot;Greg Donaldson&quot;.
15644 Turning on this feature will disable this substitution.
15646 &lt;End of help on this topic&gt;
15647 </BODY>
15648 </HTML>
15649 ====== h_config_ldap_searchtypes =======
15650 <HTML>
15651 <HEAD>
15652 <TITLE>LDAP OPTION: Search-Type</TITLE>
15653 </HEAD>
15654 <BODY>
15655 <H1>LDAP OPTION: Search-Type</H1>
15657 This affects the way that LDAP searches are done.
15658 In particular, this tells the server where to look for the string to be matched.
15659 If set to &quot;name&quot; then the string that is being searched for will
15660 be compared with the string in the
15661 &quot;Name&quot; field on the server
15662 (technically, it is the &quot;commonname&quot; field on the server).
15663 &quot;Surname&quot; means we're looking for a
15664 match in the &quot;Surname&quot; field on the
15665 server (actually the &quot;sn&quot; field).
15666 &quot;Givenname&quot; really is &quot;givenname&quot;
15667 and &quot;email&quot; is the electronic mail address (this is actually the field
15668 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15669 The other three types are combinations of
15670 the types listed so far. &quot;Name-or-email&quot;
15671 means the string should appear
15672 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15673 Likewise, &quot;surname-or-givenname&quot;
15674 means &quot;surname&quot; OR &quot;givenname&quot;
15675 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15677 This search TYPE is combined with the
15678 search <A HREF="h_config_ldap_searchrules">RULE</A>
15679 to form the actual search query.
15681 The usual default value for this
15682 option is &quot;sur-or-given-or-name-or-email&quot;.
15683 This type of search may be slow on some servers.
15684 Try &quot;name-or-email&quot;, which is often
15685 faster, or just &quot;name&quot; if the performance seems to be a problem.
15687 Some servers have been configured with different attribute names for
15688 these four fields.
15689 In other words, instead of using the attribute name &quot;mail&quot;
15690 for the email address field, the server might be configured to use something
15691 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15692 Alpine can be configured to use these different attribute names by using
15693 the four configuration options:
15694 <P><UL>
15695 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15696 </UL>
15697 <P><UL>
15698 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15699 </UL>
15700 <P><UL>
15701 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15702 </UL>
15703 <P><UL>
15704 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15705 </UL>
15707 &lt;End of help on this topic&gt;
15708 </BODY>
15709 </HTML>
15710 ====== h_config_ldap_searchrules =======
15711 <HTML>
15712 <HEAD>
15713 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15714 </HEAD>
15715 <BODY>
15716 <H1>LDAP OPTION: Search-Rule</H1>
15718 This affects the way that LDAP searches are done.
15719 If set to &quot;equals&quot; then
15720 only exact matches count.
15721 &quot;Contains&quot; means that the string you type in
15722 is a substring of what you are matching against.
15723 &quot;Begins-with&quot; and &quot;ends-with&quot;
15724 mean that the string starts or ends with the string you type in.
15726 Spaces in your input are normally handled specially, but you can turn that
15727 special handling off with the
15728 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15729 feature.
15731 The usual default value for this option is &quot;begins-with&quot;.
15733 &lt;End of help on this topic&gt;
15734 </BODY>
15735 </HTML>
15736 ======= h_config_ldap_email_attr =======
15737 <HTML>
15738 <HEAD>
15739 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15740 </HEAD>
15741 <BODY>
15742 <H1>LDAP OPTION: EmailAttribute</H1>
15744 This is the name of the attribute that is searched for when looking for
15745 an email address. The default value for this option is &quot;mail&quot; or
15746 &quot;electronicmail&quot;.
15747 If the server you are using uses a different attribute name for the email
15748 address, put that attribute name here.
15750 This will affect the search filter used if your Search-Type is one that
15751 contains a search for &quot;email&quot;.
15752 It will also cause the attribute value matching this attribute name to be used
15753 as the email address when you look up an entry from the composer.
15755 &lt;End of help on this topic&gt;
15756 </BODY>
15757 </HTML>
15758 ======= h_config_ldap_sn_attr =======
15759 <HTML>
15760 <HEAD>
15761 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15762 </HEAD>
15763 <BODY>
15764 <H1>LDAP OPTION: SurnameAttribute</H1>
15766 This is the name of the attribute that is searched for when looking for
15767 the surname of the entry. The default value for this option is &quot;sn&quot;.
15768 If the server you are using uses a different attribute name for the surname,
15769 put that attribute name here.
15770 This will affect the search filter used if your Search-Type is one that
15771 contains a search for &quot;surname&quot;.
15773 &lt;End of help on this topic&gt;
15774 </BODY>
15775 </HTML>
15776 ======= h_config_ldap_gn_attr =======
15777 <HTML>
15778 <HEAD>
15779 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15780 </HEAD>
15781 <BODY>
15782 <H1>LDAP OPTION: GivennameAttribute</H1>
15784 This is the name of the attribute that is searched for when looking for
15785 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15786 If the server you are using uses a different attribute name for the given name,
15787 put that attribute name here.
15788 This will affect the search filter used if your Search-Type is one that
15789 contains a search for &quot;givenname&quot;.
15791 &lt;End of help on this topic&gt;
15792 </BODY>
15793 </HTML>
15794 ======= h_config_ldap_cn_attr =======
15795 <HTML>
15796 <HEAD>
15797 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15798 </HEAD>
15799 <BODY>
15800 <H1>LDAP OPTION: NameAttribute</H1>
15802 This is the name of the attribute that is searched for when looking for
15803 the name of the entry. The default value for this option is &quot;cn&quot;, which
15804 stands for common name.
15805 If the server you are using uses a different attribute name for the name,
15806 put that attribute name here.
15807 This will affect the search filter used if your Search-Type is one that
15808 contains a search for &quot;name&quot;.
15810 &lt;End of help on this topic&gt;
15811 </BODY>
15812 </HTML>
15813 ======= h_config_ldap_time =======
15814 <HTML>
15815 <HEAD>
15816 <TITLE>LDAP OPTION: Timelimit</TITLE>
15817 </HEAD>
15818 <BODY>
15819 <H1>LDAP OPTION: Timelimit</H1>
15821 This places a limit on the number of seconds the LDAP search will continue.
15822 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15823 may place limits of their own on searches.
15825 &lt;End of help on this topic&gt;
15826 </BODY>
15827 </HTML>
15828 ======= h_config_ldap_size =======
15829 <HTML>
15830 <HEAD>
15831 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15832 </HEAD>
15833 <BODY>
15834 <H1>LDAP OPTION: Sizelimit</H1>
15836 This places a limit on the number of entries returned by the LDAP server.
15837 A value of 0 means no limit. The default is 0. Note that some servers
15838 may place limits of their own on searches.
15840 &lt;End of help on this topic&gt;
15841 </BODY>
15842 </HTML>
15843 ======= h_config_ldap_cust =======
15844 <HTML>
15845 <HEAD>
15846 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15847 </HEAD>
15848 <BODY>
15849 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15851 This one is for advanced users only! If you define this, then the
15852 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15853 However, the feature
15854 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15855 is still in effect.
15856 That is, the space substitution will take place even in a custom filter unless
15857 you disable it.
15859 If your LDAP service stops working and you suspect it might be because
15860 of your custom filter, just delete this filter and try using the
15861 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15862 Another option that sometimes causes trouble is the
15863 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15865 This variable may be set to the string representation of an LDAP search
15866 filter (see RFC1960). In the places where you want the address string to be
15867 substituted in, put a '%s' in this filter string. Here are some examples:
15869 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15870 is equivalent to the &quot;Custom-Search-Filter&quot;
15871 <PRE>
15872      (cn=%s*)
15873 </PRE>
15874 When you try to match against the string &quot;string&quot; the program replaces
15875 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15876 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15878 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15879 of &quot;contains&quot; is equivalent to
15880 <PRE>
15881      (|(cn=*%s*)(mail=*%s*))
15882 </PRE>
15884 If your server uses a different attribute <EM>name</EM> than
15885 Alpine uses by default,
15886 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15887 then you may be able to use one or more of the four attribute configuration
15888 options instead of defining a custom filter:
15889 <P><UL>
15890 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15891 </UL>
15892 <P><UL>
15893 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15894 </UL>
15895 <P><UL>
15896 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15897 </UL>
15898 <P><UL>
15899 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15900 </UL>
15902 &lt;End of help on this topic&gt;
15903 </BODY>
15904 </HTML>
15905 ======= h_composer_abook_comment =======
15906 <HTML>
15907 <HEAD>
15908 <TITLE>Addressbook Comment Explained</TITLE>
15909 </HEAD>
15910 <BODY>
15911 This is a comment to help you remember what this entry is. The WhereIs
15912 command searches comments so that it is easier to find an entry with a comment
15913 you know about attached to it. This field is not used in the outgoing message.
15915 Look <A HREF="h_edit_nav_cmds">here</A>
15916 to see the available Editing and Navigation commands.
15918 &lt;End of help on this topic&gt;
15919 </BODY>
15920 </HTML>
15921 ======= h_composer_abook_addrs =======
15922 <HTML>
15923 <HEAD>
15924 <TITLE>Addressbook Lists</TITLE>
15925 </HEAD>
15926 <BODY>
15927 <H1>Addressbook Lists</H1>
15929 This is a list of addresses to send to when sending to this address book
15930 entry.  Each member of the list may be an address or another nickname from
15931 any of your address books.  If it is an address, it is OK to include the
15932 full name field as well as the electronic address portion of that address.
15933 For example, the following are all legitimate entries in this field:
15935 <DL><DT>&nbsp;</DT>
15936 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15937 <DD>jdoe@some.domain
15938 <DD>John Doe &lt;jdoe@some.domain&gt;
15939 </DL>
15941 The addresses should be listed separated by commas, just like you would
15942 enter them from the composer.
15946 The only difference between a distribution list and a simple entry with a
15947 single address, is that a distribution list has more than one address   
15948 listed in the Addresses: field, whereas a simple personal entry has just  
15949 one address.
15953 For individual address book entries, if there is a full name in the
15954 Fullname: field (filling in the Fullname: field is not required), it is
15955 used.  If the full name is specified in the Address: field and not in the
15956 Fullname: field, then the full name from the Address: field is used.
15960 If you type the nickname of a distribution list from one of your address 
15961 books in the Lcc: field, then the full name of that list is used in the  
15962 To: field.  If you put a list in the To: or Cc: fields, that list will be
15963 expanded into all of its addresses.  If the list has a full name, then
15964 that will appear at the beginning of the addresses.
15966 <DL><DT>&nbsp;</DT>
15967 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15968 &lt;sal@here.there&gt;
15969 </DL>
15971 If the first address in the distribution list also has a full name, then
15972 the list full name and that full name are combined into something like the
15973 following:
15975 <DL><DT>&nbsp;</DT>
15976 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15977 </DL>
15980 If you specify a list via Lcc, the full name is used in the To: line.  If
15981 you specify a list in the To: or Cc: fields, then it uses the same method
15982 as for individual entries for filling in the full name.
15986 For help with editing and navigation commands, check the Help for the
15987 Nickname: field.
15990 &lt;End of help on this topic&gt;
15991 </BODY>
15992 </HTML>
15993 ======= h_config_xoauth2_client_id =======
15994 <HTML>
15995 <HEAD>
15996 <TITLE>Client-Id Explained</TITLE>
15997 </HEAD>
15998 <BODY>
15999 <H1>Client-Id Explained</H1>
16001 If you have registered Alpine with your service provider to use the
16002 XOAUTH2 authenticator, or someone has shared a client-id with you, use this
16003 field to input this value. Remember that in order to use the XOAUTH2 authentication
16004 method, you must have a pair of client-id and client-secret. You must have
16005 both in order for this authenticator to work.
16008 The Client-Id field is a string that your provider generates for the program
16009 being registered. However, some providers allow different users to register
16010 the same program. Users of the Mutt email program already do this to use
16011 XOAUTH2 authentication in Gmail.
16014 Some providers generate an extremely long client-id string. If this is your 
16015 case, you might have to divide that string into pieces and paste each of those
16016 pieces  into this field.
16018 &lt;End of help on this topic&gt;
16019 </BODY>
16020 </HTML>
16021 ======= h_config_xoauth2_client_secret =======
16022 <HTML>
16023 <HEAD>
16024 <TITLE>Client-Secret Explained</TITLE>
16025 </HEAD>
16026 <BODY>
16027 <H1>Client-Secret Explained</H1>
16029 If you have registered Alpine with your service provider to use the
16030 XOAUTH2 authenticator, or someone has shared a client-secret with you, use this
16031 field to input this value. Remember that in order to use the XOAUTH2 authentication
16032 method, you must have a pair of client-id and client-secret. You must have
16033 both in order for this authenticator to work.
16035 <P> The client-secret field is supposed to be kept secret, that is not 
16036 shared with any of the users, but due to the open source nature of Alpine, 
16037 it is not possible to keep it secret in any meaningful way. The intention 
16038 of this field is so that only the coders of an app can use the codes given 
16039 to them and authenticate their users to the services they are requesting. 
16040 This means that other coders would not be able to impresonate that app, 
16041 and use it to steal data from those users. In the case of Alpine this is 
16042 not possible, as Alpine does not steal data from its users, so users are safe
16043 sharing client-secrets. Just make sure you obtain your copy of Alpine from
16044 a reputable provider or compile the source code by yourself. The official
16045 source code of this project is located at
16047 <P><CENTER><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A>.</CENTER>
16050 &lt;End of help on this topic&gt;
16051 </BODY>
16052 </HTML>
16053 ======= h_config_role_nick =======
16054 <HTML>
16055 <HEAD>
16056 <TITLE>Nickname Explained</TITLE>
16057 </HEAD>
16058 <BODY>
16059 <H1>Nickname Explained</H1>
16061 This is a nickname to help you.
16062 You should have a different nickname for each role you define.
16063 The nickname will be used in the SETUP ROLE RULES screen to allow you to
16064 pick a role to edit.
16065 It will also be used when you send a message to let you know you are
16066 sending with a different role than you use by default, and
16067 it will be useful for choosing a role when composing with the Role command
16068 or when composing with one of the Role Uses set to With Confirmation.
16069 This field is not used in the outgoing message.
16071 Look <A HREF="h_edit_nav_cmds">here</A>
16072 to see the available Editing and Navigation commands.
16074 &lt;End of help on this topic&gt;
16075 </BODY>
16076 </HTML>
16077 ======= h_config_role_comment =======
16078 <HTML>
16079 <HEAD>
16080 <TITLE>Comment Explained</TITLE>
16081 </HEAD>
16082 <BODY>
16083 <H1>Comment Explained</H1>
16085 This is a comment to help you.
16086 This comment does not play any functional role, it is simply an optional
16087 comment to help you remember what the rule is for.
16089 Look <A HREF="h_edit_nav_cmds">here</A>
16090 to see the available Editing and Navigation commands.
16092 &lt;End of help on this topic&gt;
16093 </BODY>
16094 </HTML>
16095 ======= h_config_other_nick =======
16096 <HTML>
16097 <HEAD>
16098 <TITLE>Nickname Explained</TITLE>
16099 </HEAD>
16100 <BODY>
16101 <H1>Nickname Explained</H1>
16103 This is a nickname to help you.
16104 You should have a different nickname for each rule you define.
16105 The nickname will be used in the SETUP OTHER RULES screen to allow you to
16106 pick a rule to edit.
16108 Look <A HREF="h_edit_nav_cmds">here</A>
16109 to see the available Editing and Navigation commands.
16111 &lt;End of help on this topic&gt;
16112 </BODY>
16113 </HTML>
16114 ======= h_config_score_nick =======
16115 <HTML>
16116 <HEAD>
16117 <TITLE>Nickname Explained</TITLE>
16118 </HEAD>
16119 <BODY>
16120 <H1>Nickname Explained</H1>
16122 This is a nickname to help you.
16123 You should have a different nickname for each scoring rule you define.
16124 The nickname will be used in the SETUP SCORING RULES screen to allow you to
16125 pick a rule to edit.
16127 Look <A HREF="h_edit_nav_cmds">here</A>
16128 to see the available Editing and Navigation commands.
16130 &lt;End of help on this topic&gt;
16131 </BODY>
16132 </HTML>
16133 ======= h_config_incol_nick =======
16134 <HTML>
16135 <HEAD>
16136 <TITLE>Nickname Explained</TITLE>
16137 </HEAD>
16138 <BODY>
16139 <H1>Nickname Explained</H1>
16141 This is a nickname to help you.
16142 You should have a different nickname for each color rule you define.
16143 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
16144 pick a rule to edit.
16146 Look <A HREF="h_edit_nav_cmds">here</A>
16147 to see the available Editing and Navigation commands.
16149 &lt;End of help on this topic&gt;
16150 </BODY>
16151 </HTML>
16152 ======= h_config_filt_nick =======
16153 <HTML>
16154 <HEAD>
16155 <TITLE>Nickname Explained</TITLE>
16156 </HEAD>
16157 <BODY>
16158 <H1>Nickname Explained</H1>
16160 This is a nickname to help you.
16161 You should have a different nickname for each filtering rule you define.
16162 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
16163 pick a rule to edit.
16165 Look <A HREF="h_edit_nav_cmds">here</A>
16166 to see the available Editing and Navigation commands.
16168 &lt;End of help on this topic&gt;
16169 </BODY>
16170 </HTML>
16171 ======= h_config_score_topat =======
16172 <HTML>
16173 <HEAD>
16174 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16175 </HEAD>
16176 <BODY>
16177 <H1>&quot;To:&quot; Pattern Explained</H1>
16179 Any text you enter as the &quot;To pattern&quot;
16180 will be compared to the recipients from the To: line of
16181 the message being scored.
16182 When the text you entered matches
16183 all or part of the To: line of a message, then the Score Value
16184 you have specified will be added to the score for the message.
16185 (Any other non-blank parts of the Pattern must match, too.)
16188 You may enter a complete email address, part of an address, or a
16189 list of addresses or partial addresses.
16190 For example:
16193 <PRE>
16194  To pattern = friend@public.com
16196  To pattern = rated.net
16198  To pattern = xxx@adults.com
16199               admin@msn.com
16200               fool@motleyfool.com
16201 </PRE>
16204 Each of those are valid To patterns.
16207 Messages match those patterns if any of the
16208 addresses in the To: line of the message contains the pattern.
16209 If the pattern is a list of patterns
16210 (like the last example above) then it is a match if any of the patterns in
16211 the list match any of the addresses in the To: line.
16212 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16213 present for a match.
16214 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16215 address2 must be present.
16216 That is exactly what using a list does.)
16219 Some messages may be &quot;bounced&quot; to you, and will
16220 have a &quot;Resent-To:&quot; header line.
16221 If the message contains a Resent-To: line
16222 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16223 Alpine will look for
16224 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16225 the original To: line.
16228 When entering a pattern, you may choose an address from your address book
16229 with the &quot;T&quot; command.
16232 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16233 &quot;!&quot; &quot;toggle NOT&quot; command.
16234 This changes the meaning of the To pattern so that it has the opposite meaning.
16235 It will be considered a match if there are no matches between the
16236 addresses in the To: line and the list of To patterns.
16238 Don't make the mistake of putting the &quot;!&quot; in the data field for
16239 the pattern.
16240 For example, if you type the characters &quot;!frizzle&quot; into the To
16241 pattern, the pattern will look like:
16243 <PRE>
16244  To pattern = !frizzle
16245 </PRE>
16247 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16248 In order to match messages that do not have &quot;frizzle&quot; in
16249 their To field, first type the characters &quot;frizzle&quot; followed
16250 by carriage return for the value of the To pattern, then negate it
16251 by typing the &quot;!&quot; command.
16252 It should end up looking like
16254 <PRE>
16255  ! To pattern = frizzle
16256 </PRE>
16258 You are not limited to using the six standard header patterns that are
16259 normally shown (To, From, Sender, Cc, News, and Subject).
16260 You may add any other header to a Pattern by
16261 using the &quot;eXtraHdr&quot; command to specify a different
16262 message header line; and then the Add or Change command to fill in
16263 a pattern for the new header line, just like you would for a standard header.
16265 A technicality: Since comma is the character used to separate multiple
16266 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16267 you want to include a literal comma in the field.
16268 In other words, if you type a backslash followed by a comma it will
16269 be interpreted as a comma by Alpine, instead of as a separator between
16270 pattern values.
16271 All other backslashes are literal backslashes and should not be escaped.
16273 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16274 for more information on Patterns.
16276 Look <A HREF="h_edit_nav_cmds">here</A>
16277 to see the available Editing and Navigation commands.
16279 &lt;End of help on this topic&gt;
16280 </BODY>
16281 </HTML>
16282 ======= h_config_incol_topat =======
16283 <HTML>
16284 <HEAD>
16285 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16286 </HEAD>
16287 <BODY>
16288 <H1>&quot;To:&quot; Pattern Explained</H1>
16290 Any text you enter as the &quot;To pattern&quot;
16291 will be compared to the recipients from the To: lines of
16292 the messages in the index.
16293 When the text you entered matches
16294 all or part of the To: line of a message, then the Index Line Color you have
16295 specified will be used for that line in the index.
16296 (Any other non-blank parts of the Pattern must match, too.)
16299 You may enter a complete email address, part of an address, or a
16300 list of addresses or partial addresses.
16301 For example:
16304 <PRE>
16305  To pattern = friend@public.com
16306  To pattern = rated.net
16307  To pattern = xxx@adults.com
16308               admin@msn.com
16309               fool@motleyfool.com
16310 </PRE>
16313 Each of those are valid To patterns.
16316 Messages match those patterns if any of the
16317 addresses in the To: line of the message contains the pattern.
16318 If the pattern is a list of patterns
16319 (like the last example above) then it is a match if any of the patterns in
16320 the list match any of the addresses in the To: line.
16321 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16322 present for a match.
16323 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16324 address2 must be present.
16325 That is exactly what using a list does.)
16328 Some messages may be &quot;bounced&quot; to you, and will
16329 have a &quot;Resent-To:&quot; header line.
16330 If the message contains a Resent-To: line
16331 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16332 Alpine will look for
16333 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16334 the original To: line.
16337 When entering a pattern, you may choose an address from your address book
16338 with the &quot;T&quot; command.
16341 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16342 &quot;!&quot; &quot;toggle NOT&quot; command.
16343 This changes the meaning of the To pattern so that it has the opposite meaning.
16344 It will be considered a match if there are no matches between the
16345 addresses in the To: line and the list of To patterns.
16347 Don't make the mistake of putting the &quot;!&quot; in the data field for
16348 the pattern.
16349 For example, if you type the characters &quot;!frizzle&quot; into the To
16350 pattern, the pattern will look like:
16352 <PRE>
16353  To pattern = !frizzle
16354 </PRE>
16356 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16357 In order to match messages that do not have &quot;frizzle&quot; in
16358 their To field, first type the characters &quot;frizzle&quot; followed
16359 by carriage return for the value of the To pattern, then negate it
16360 by typing the &quot;!&quot; command.
16361 It should end up looking like
16363 <PRE>
16364  ! To pattern = frizzle
16365 </PRE>
16368 You are not limited to using the six standard header patterns that are
16369 normally shown (To, From, Sender, Cc, News, and Subject).
16370 You may add any other header to a Pattern by
16371 using the &quot;eXtraHdr&quot; command to specify a different
16372 message header line; and then the Add or Change command to fill in
16373 a pattern for the new header line, just like you would for a standard header.
16375 A technicality: Since comma is the character used to separate multiple
16376 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16377 you want to include a literal comma in the field.
16378 In other words, if you type a backslash followed by a comma it will
16379 be interpreted as a comma by Alpine, instead of as a separator between
16380 pattern values.
16381 All other backslashes are literal backslashes and should not be escaped.
16383 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16384 for more information on Patterns.
16386 Look <A HREF="h_edit_nav_cmds">here</A>
16387 to see the available Editing and Navigation commands.
16389 &lt;End of help on this topic&gt;
16390 </BODY>
16391 </HTML>
16392 ======= h_config_other_topat =======
16393 <HTML>
16394 <HEAD>
16395 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16396 </HEAD>
16397 <BODY>
16398 <H1>&quot;To:&quot; Pattern Explained</H1>
16400 For some of the OTHER RULES actions, there is no message that is being
16401 compared against.
16402 If that is the case, then only the Current Folder Type is checked.
16403 In particular, this To pattern is ignored.
16404 Actions that fall into this category include both
16405 Sort Order and Index Format.
16407 A technicality: Since comma is the character used to separate multiple
16408 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16409 you want to include a literal comma in the field.
16410 In other words, if you type a backslash followed by a comma it will
16411 be interpreted as a comma by Alpine, instead of as a separator between
16412 pattern values.
16413 All other backslashes are literal backslashes and should not be escaped.
16415 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16416 for more information on Patterns.
16418 Look <A HREF="h_edit_nav_cmds">here</A>
16419 to see the available Editing and Navigation commands.
16421 &lt;End of help on this topic&gt;
16422 </BODY>
16423 </HTML>
16424 ======= h_config_filt_topat =======
16425 <HTML>
16426 <HEAD>
16427 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16428 </HEAD>
16429 <BODY>
16430 <H1>&quot;To:&quot; Pattern Explained</H1>
16432 Any text you enter as the &quot;To pattern&quot;
16433 will be compared to the recipients from the To: line of
16434 messages when Alpine opens folders.
16435 When the text you entered matches
16436 all or part of the To: line of a message, then the Filter Action you have
16437 specified will be carried out.
16438 (Any other non-blank parts of the Pattern must match, too.)
16441 You may enter a complete email address, part of an address, or a
16442 list of addresses or partial addresses.
16443 For example:
16446 <PRE>
16447  To pattern = friend@public.com
16448  To pattern = rated.net
16449  To pattern = xxx@adults.com
16450               admin@msn.com
16451               fool@motleyfool.com
16452 </PRE>
16455 Each of those are valid To patterns.
16458 Messages match those patterns if any of the
16459 addresses in the To: line of the message contains the pattern.
16460 If the pattern is a list of patterns
16461 (like the last example above) then it is a match if any of the patterns in
16462 the list match any of the addresses in the To: line.
16463 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16464 present for a match.
16465 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16466 address2 must be present.
16467 That is exactly what using a list does.)
16470 Some messages may be &quot;bounced&quot; to you, and will
16471 have a &quot;Resent-To:&quot; header line.
16472 If the message contains a Resent-To: line
16473 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16474 Alpine will look for
16475 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16476 the original To: line.
16479 When entering a pattern, you may choose an address from your address book
16480 with the &quot;T&quot; command.
16483 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16484 &quot;!&quot; &quot;toggle NOT&quot; command.
16485 This changes the meaning of the To pattern so that it has the opposite meaning.
16486 It will be considered a match if there are no matches between the
16487 addresses in the To: line and the list of To patterns.
16489 Don't make the mistake of putting the &quot;!&quot; in the data field for
16490 the pattern.
16491 For example, if you type the characters &quot;!frizzle&quot; into the To
16492 pattern, the pattern will look like:
16494 <PRE>
16495  To pattern = !frizzle
16496 </PRE>
16498 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16499 In order to match messages that do not have &quot;frizzle&quot; in
16500 their To field, first type the characters &quot;frizzle&quot; followed
16501 by carriage return for the value of the To pattern, then negate it
16502 by typing the &quot;!&quot; command.
16503 It should end up looking like
16505 <PRE>
16506  ! To pattern = frizzle
16507 </PRE>
16510 You are not limited to using the six standard header patterns that are
16511 normally shown (To, From, Sender, Cc, News, and Subject).
16512 You may add any other header to a Pattern by
16513 using the &quot;eXtraHdr&quot; command to specify a different
16514 message header line; and then the Add or Change command to fill in
16515 a pattern for the new header line, just like you would for a standard header.
16517 A technicality: Since comma is the character used to separate multiple
16518 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16519 you want to include a literal comma in the field.
16520 In other words, if you type a backslash followed by a comma it will
16521 be interpreted as a comma by Alpine, instead of as a separator between
16522 pattern values.
16523 All other backslashes are literal backslashes and should not be escaped.
16525 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16526 for more information on Patterns.
16528 Look <A HREF="h_edit_nav_cmds">here</A>
16529 to see the available Editing and Navigation commands.
16531 &lt;End of help on this topic&gt;
16532 </BODY>
16533 </HTML>
16534 ======= h_config_role_topat =======
16535 <HTML>
16536 <HEAD>
16537 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16538 </HEAD>
16539 <BODY>
16540 <H1>&quot;To:&quot; Pattern Explained</H1>
16542 Any text you enter as the &quot;To pattern&quot;
16543 will be compared to the recipients from the To: line of
16544 the message being replied to or forwarded.
16545 (Any other non-blank parts of the Pattern must match, too.)
16546 In the case of the Compose command, this pattern and the other header
16547 patterns are ignored.
16550 You may enter a complete email address, part of an address, or a
16551 list of addresses or partial addresses.
16552 For example:
16555 <PRE>
16556  To pattern = friend@public.com
16557  To pattern = rated.net
16558  To pattern = xxx@adults.com
16559               admin@msn.com
16560               fool@motleyfool.com
16561 </PRE>
16564 Each of those are valid To patterns.
16567 Messages match those patterns if any of the
16568 addresses in the To: line of the message contains the pattern.
16569 If the pattern is a list of patterns
16570 (like the last example above) then it is a match if any of the patterns in
16571 the list match any of the addresses in the To: line.
16572 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16573 present for a match.
16574 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16575 address2 must be present.
16576 That is exactly what using a list does.)
16579 Some messages may be &quot;bounced&quot; to you, and will
16580 have a &quot;Resent-To:&quot; header line.
16581 If the message contains a Resent-To: line
16582 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16583 Alpine will look for
16584 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16585 the original To: line.
16588 When entering a pattern, you may choose an address from your address book
16589 with the &quot;T&quot; command.
16592 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16593 &quot;!&quot; &quot;toggle NOT&quot; command.
16594 This changes the meaning of the To pattern so that it has the opposite meaning.
16595 It will be considered a match if there are no matches between the
16596 addresses in the To: line and the list of To patterns.
16598 Don't make the mistake of putting the &quot;!&quot; in the data field for
16599 the pattern.
16600 For example, if you type the characters &quot;!frizzle&quot; into the To
16601 pattern, the pattern will look like:
16603 <PRE>
16604  To pattern = !frizzle
16605 </PRE>
16607 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16608 In order to match messages that do not have &quot;frizzle&quot; in
16609 their To field, first type the characters &quot;frizzle&quot; followed
16610 by carriage return for the value of the To pattern, then negate it
16611 by typing the &quot;!&quot; command.
16612 It should end up looking like
16614 <PRE>
16615  ! To pattern = frizzle
16616 </PRE>
16619 You are not limited to using the six standard header patterns that are
16620 normally shown (To, From, Sender, Cc, News, and Subject).
16621 You may add any other header to a Pattern by
16622 using the &quot;eXtraHdr&quot; command to specify a different
16623 message header line; and then the Add or Change command to fill in
16624 a pattern for the new header line, just like you would for a standard header.
16626 A technicality: Since comma is the character used to separate multiple
16627 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16628 you want to include a literal comma in the field.
16629 In other words, if you type a backslash followed by a comma it will
16630 be interpreted as a comma by Alpine, instead of as a separator between
16631 pattern values.
16632 All other backslashes are literal backslashes and should not be escaped.
16634 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16635 for more information on Patterns.
16637 Look <A HREF="h_edit_nav_cmds">here</A>
16638 to see the available Editing and Navigation commands.
16640 &lt;End of help on this topic&gt;
16641 </BODY>
16642 </HTML>
16643 ======= h_config_role_frompat =======
16644 <HTML>
16645 <HEAD>
16646 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16647 </HEAD>
16648 <BODY>
16649 <H1>&quot;From:&quot; Pattern Explained</H1>
16651 This is just like the &quot;To pattern&quot; except that it is compared with
16652 the address in the From: line of the message
16653 instead of the addresses from the To: line.
16654 See the help for the To pattern for more information on header patterns.
16656 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16657 for more information on Patterns.
16659 Look <A HREF="h_edit_nav_cmds">here</A>
16660 to see the available Editing and Navigation commands.
16662 &lt;End of help on this topic&gt;
16663 </BODY>
16664 </HTML>
16665 ======= h_config_role_senderpat =======
16666 <HTML>
16667 <HEAD>
16668 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16669 </HEAD>
16670 <BODY>
16671 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16673 This is just like the &quot;To pattern&quot; except that it is compared with
16674 the address from the Sender: line of the message
16675 instead of the addresses from the To: line.
16676 See the help for the To pattern for more information on header patterns.
16678 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16679 for more information on Patterns.
16681 Look <A HREF="h_edit_nav_cmds">here</A>
16682 to see the available Editing and Navigation commands.
16684 &lt;End of help on this topic&gt;
16685 </BODY>
16686 </HTML>
16687 ======= h_config_role_ccpat =======
16688 <HTML>
16689 <HEAD>
16690 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16691 </HEAD>
16692 <BODY>
16693 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16695 This is just like the &quot;To pattern&quot; except that it is compared with
16696 the addresses from the Cc: line of the message
16697 instead of the addresses from the To: line.
16698 See the help for the To pattern for more information on header patterns.
16700 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16701 for more information on Patterns.
16703 Look <A HREF="h_edit_nav_cmds">here</A>
16704 to see the available Editing and Navigation commands.
16706 &lt;End of help on this topic&gt;
16707 </BODY>
16708 </HTML>
16709 ======= h_config_role_recippat =======
16710 <HTML>
16711 <HEAD>
16712 <TITLE>Recipient Pattern Explained</TITLE>
16713 </HEAD>
16714 <BODY>
16715 <H1>Recipient Pattern Explained</H1>
16717 This is just like the &quot;To pattern&quot; except that it is compared with
16718 the addresses from both the To: line and the Cc: line of the
16719 message instead of just the addresses from the To: line.
16720 In other words, it is considered a match if the pattern matches
16721 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16722 in the Cc: line.
16723 (Notice that defining the Recipient pattern does not have the same
16724 effect as defining both the To and Cc patterns.
16725 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16726 It is equivalent to having two different rules;
16727 one with a To pattern and the other with the same Cc pattern.)
16729 A technicality: Since comma is the character used to separate multiple
16730 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16731 you want to include a literal comma in the field.
16732 In other words, if you type a backslash followed by a comma it will
16733 be interpreted as a comma by Alpine, instead of as a separator between
16734 pattern values.
16735 All other backslashes are literal backslashes and should not be escaped.
16737 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16738 for more information on Patterns.
16740 Look <A HREF="h_edit_nav_cmds">here</A>
16741 to see the available Editing and Navigation commands.
16743 &lt;End of help on this topic&gt;
16744 </BODY>
16745 </HTML>
16746 ======= h_config_role_particpat =======
16747 <HTML>
16748 <HEAD>
16749 <TITLE>Participant Pattern Explained</TITLE>
16750 </HEAD>
16751 <BODY>
16752 <H1>Participant Pattern Explained</H1>
16754 This is just like the &quot;To pattern&quot; except that it is compared with
16755 the addresses from the From: line, the To: line, and the Cc: line of the
16756 message instead of just the addresses from the To: line.
16757 In other words, it is considered a match if the pattern matches
16758 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16759 in the To: line, <EM>OR</EM> an address in the Cc: line.
16760 (Notice that defining the Participant pattern does not have the same
16761 effect as defining all of the From, To, and Cc patterns.
16762 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16763 From <EM>AND</EM> To <EM>AND</EM> Cc.
16764 It is equivalent to having three different rules;
16765 one with a From pattern, another with the same To pattern, and a third with
16766 the same Cc pattern.)
16768 A technicality: Since comma is the character used to separate multiple
16769 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16770 you want to include a literal comma in the field.
16771 In other words, if you type a backslash followed by a comma it will
16772 be interpreted as a comma by Alpine, instead of as a separator between
16773 pattern values.
16774 All other backslashes are literal backslashes and should not be escaped.
16776 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16777 for more information on Patterns.
16779 Look <A HREF="h_edit_nav_cmds">here</A>
16780 to see the available Editing and Navigation commands.
16782 &lt;End of help on this topic&gt;
16783 </BODY>
16784 </HTML>
16785 ======= h_config_role_newspat =======
16786 <HTML>
16787 <HEAD>
16788 <TITLE>News Pattern Explained</TITLE>
16789 </HEAD>
16790 <BODY>
16791 <H1>News Pattern Explained</H1>
16793 If this pattern is non-blank, then for this rule to be considered a
16794 match, at least one of the newsgroups from
16795 the Newsgroups line of the message must match this pattern.
16796 If this pattern is a list of patterns, then at least one of the
16797 newsgroups must match at least one of the patterns.
16798 (Any other non-blank parts of the Pattern must match, too.)
16800 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16801 &quot;!&quot; &quot;toggle NOT&quot; command.
16802 This changes the meaning of the News pattern so that it has the opposite meaning.
16803 It will be considered a match if there are no matches between the
16804 addresses in the Newsgroups: line and the list of News patterns.
16806 Don't make the mistake of putting the &quot;!&quot; in the data field for
16807 the pattern.
16808 For example, if you type the characters &quot;!frizzle&quot; into the News
16809 pattern, the pattern will look like:
16811 <PRE>
16812  News pattern = !frizzle
16813 </PRE>
16815 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16816 In order to match messages that do not have &quot;frizzle&quot; in
16817 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16818 by carriage return for the value of the News pattern, then negate it
16819 by typing the &quot;!&quot; command.
16820 It should end up looking like
16822 <PRE>
16823  ! News pattern = frizzle
16824 </PRE>
16826 A technicality: Since comma is the character used to separate multiple
16827 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16828 you want to include a literal comma in the field.
16829 In other words, if you type a backslash followed by a comma it will
16830 be interpreted as a comma by Alpine, instead of as a separator between
16831 pattern values.
16832 All other backslashes are literal backslashes and should not be escaped.
16835 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16836 for more information on Patterns.
16838 Look <A HREF="h_edit_nav_cmds">here</A>
16839 to see the available Editing and Navigation commands.
16841 &lt;End of help on this topic&gt;
16842 </BODY>
16843 </HTML>
16844 ======= h_config_role_subjpat =======
16845 <HTML>
16846 <HEAD>
16847 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16848 </HEAD>
16849 <BODY>
16850 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16852 This is similar to the other parts of the Pattern.
16853 It is compared with
16854 the contents from the Subject of the message.
16856 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16857 for more information on Patterns.
16859 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16860 &quot;!&quot; &quot;toggle NOT&quot; command.
16861 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16862 It will be considered a match if there are no matches between the
16863 text in the Subject: line and the list of Subject patterns.
16866 If you wish to have a header pattern that is not one of the six standard
16867 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16869 A technicality: Since comma is the character used to separate multiple
16870 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16871 you want to include a literal comma in the field.
16872 In other words, if you type a backslash followed by a comma it will
16873 be interpreted as a comma by Alpine, instead of as a separator between
16874 pattern values.
16875 All other backslashes are literal backslashes and should not be escaped.
16877 Look <A HREF="h_edit_nav_cmds">here</A>
16878 to see the available Editing and Navigation commands.
16880 &lt;End of help on this topic&gt;
16881 </BODY>
16882 </HTML>
16883 ======= h_config_role_alltextpat =======
16884 <HTML>
16885 <HEAD>
16886 <TITLE>AllText Pattern Explained</TITLE>
16887 </HEAD>
16888 <BODY>
16889 <H1>AllText Pattern Explained</H1>
16891 This is similar to the header patterns.
16892 Instead of comparing with text in a particular header field it 
16893 is compared with all of the text in the message header and body.
16895 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16896 &quot;!&quot; &quot;toggle NOT&quot; command.
16897 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16898 It will be considered a match if there are no matches between the
16899 text of the message and the list of AllText patterns.
16901 Don't make the mistake of putting the &quot;!&quot; in the data field for
16902 the pattern.
16903 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16904 pattern, the pattern will look like:
16906 <PRE>
16907  AllText pattern = !frizzle
16908 </PRE>
16910 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16911 In order to match messages that do not have &quot;frizzle&quot; in
16912 the text of the message, first type the characters &quot;frizzle&quot; followed
16913 by carriage return for the value of the AllText pattern, then negate it
16914 by typing the &quot;!&quot; command.
16915 It should end up looking like
16917 <PRE>
16918  ! AllText pattern = frizzle
16919 </PRE>
16921 It is possible that you may notice degraded performance when using
16922 AllText Patterns.
16924 A technicality: Since comma is the character used to separate multiple
16925 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16926 you want to include a literal comma in the field.
16927 In other words, if you type a backslash followed by a comma it will
16928 be interpreted as a comma by Alpine, instead of as a separator between
16929 pattern values.
16930 All other backslashes are literal backslashes and should not be escaped.
16932 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16933 for more information on Patterns.
16935 Look <A HREF="h_edit_nav_cmds">here</A>
16936 to see the available Editing and Navigation commands.
16938 &lt;End of help on this topic&gt;
16939 </BODY>
16940 </HTML>
16941 ======= h_config_role_bodytextpat =======
16942 <HTML>
16943 <HEAD>
16944 <TITLE>BodyText Pattern Explained</TITLE>
16945 </HEAD>
16946 <BODY>
16947 <H1>BodyText Pattern Explained</H1>
16949 This is similar to the header patterns.
16950 Instead of comparing with text in a particular header field it 
16951 is compared with all of the text in the message body.
16953 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16954 &quot;!&quot; &quot;toggle NOT&quot; command.
16955 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16956 It will be considered a match if there are no matches between the
16957 text of the body of the message and the list of BodyText patterns.
16959 Don't make the mistake of putting the &quot;!&quot; in the data field for
16960 the pattern.
16961 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16962 pattern, the pattern will look like:
16964 <PRE>
16965  BdyText pattern = !frizzle
16966 </PRE>
16968 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16969 In order to match messages that do not have &quot;frizzle&quot; in
16970 their BodyText, first type the characters &quot;frizzle&quot; followed
16971 by carriage return for the value of the BodyText pattern, then negate it
16972 by typing the &quot;!&quot; command.
16973 It should end up looking like
16975 <PRE>
16976  ! BodyText pattern = frizzle
16977 </PRE>
16979 It is possible that you may notice degraded performance when using
16980 BodyText Patterns.
16982 A technicality: Since comma is the character used to separate multiple
16983 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16984 you want to include a literal comma in the field.
16985 In other words, if you type a backslash followed by a comma it will
16986 be interpreted as a comma by Alpine, instead of as a separator between
16987 pattern values.
16988 All other backslashes are literal backslashes and should not be escaped.
16990 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16991 for more information on Patterns.
16993 Look <A HREF="h_edit_nav_cmds">here</A>
16994 to see the available Editing and Navigation commands.
16996 &lt;End of help on this topic&gt;
16997 </BODY>
16998 </HTML>
16999 ======= h_config_role_charsetpat =======
17000 <HTML>
17001 <HEAD>
17002 <TITLE>Character Set Pattern Explained</TITLE>
17003 </HEAD>
17004 <BODY>
17005 <H1>Character Set Pattern Explained</H1>
17007 A message may use one or more character sets.
17008 This part of the Pattern matches messages that make use of
17009 certain specified character sets.
17010 It will be considered a match if a message uses any of the character
17011 sets in the list you give here.
17014 When filling in a value for this field, you may use
17015 the &quot;T&quot; command, which presents you with a large list of
17016 possible character sets to choose from.
17017 You may also just type in the name of a character set, and it need not
17018 be one that Alpine knows about.
17021 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
17022 GB2312) you may also use some shorthand names that Alpine provides.
17023 These names are more understandable shorthand names for sets of 
17024 character set names.
17025 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
17026 Selecting one of these shorthand names is equivalent to selecting all of
17027 the character sets that make up the set.
17028 You can see all of these shorthand names and the lists of character sets
17029 they stand for by typing the &quot;T&quot; command.
17032 For the purposes of this Pattern,
17033 Alpine will search through a message for all of the text parts and
17034 collect the character sets declared for each part.
17035 It will also look in the Subject line for a character set used there.
17036 Alpine does not actually look at the text of the message or the text
17037 of the Subject to determine if a declared character set is actually
17038 used, it looks only at the declarations themselves in the MIME part headers
17039 and in the Subject.
17042 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
17043 &quot;!&quot; &quot;toggle NOT&quot; command.
17044 This changes the meaning of the Character Set pattern so that
17045 it has the opposite meaning.
17046 It will be considered a match if none of the character sets in the
17047 list are used in a message.
17049 Don't make the mistake of putting the &quot;!&quot; in the data field for
17050 the pattern.
17051 For example, if you type the characters &quot;!GB2312&quot; into the
17052 Character Set pattern, the pattern will look like:
17054 <PRE>
17055  Charset pattern = !GB2312
17056 </PRE>
17058 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
17059 In order to match messages that do not have the
17060 character set &quot;GB2312&quot;
17061 set, first type the characters &quot;GB2312&quot; followed
17062 by carriage return for the value of the Character Set pattern, then negate it
17063 by typing the &quot;!&quot; command.
17064 It should end up looking like
17066 <PRE>
17067  ! Charset pattern = GB2312
17068 </PRE>
17070 A technicality: Since comma is the character used to separate multiple
17071 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17072 you want to include a literal comma in the field.
17073 In other words, if you type a backslash followed by a comma it will
17074 be interpreted as a comma by Alpine, instead of as a separator between
17075 pattern values.
17076 All other backslashes are literal backslashes and should not be escaped.
17078 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17079 for more information on Patterns.
17081 Look <A HREF="h_edit_nav_cmds">here</A>
17082 to see the available Editing and Navigation commands.
17084 &lt;End of help on this topic&gt;
17085 </BODY>
17086 </HTML>
17087 ======= h_config_role_keywordpat =======
17088 <HTML>
17089 <HEAD>
17090 <TITLE>Keyword Pattern Explained</TITLE>
17091 </HEAD>
17092 <BODY>
17093 <H1>Keyword Pattern Explained</H1>
17095 A folder may have user-defined keywords.
17096 These are similar to the Important flag, which the user may set using the
17097 Flag command.
17098 The difference is that the Important flag is always present for each folder.
17099 User-defined keywords are picked by the user.
17100 You may add new keywords by defining them in the
17101 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
17102 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
17103 the Flag command may be used to set or clear the keyword on individual messages.
17104 If you have given a keyword a nickname when configuring it,
17105 that nickname may be used instead of the actual keyword.
17108 When filling in a value for this field, it may be easiest to use
17109 the &quot;T&quot; command, which presents you with a list of the keywords
17110 you have defined to choose from.
17113 This part of the Pattern matches messages with certain keywords set.
17114 It will be considered a match if a message has any of the keywords in the
17115 list set.
17116 A keyword that you have not defined using the
17117 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
17118 will not be a match.
17121 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
17122 &quot;!&quot; &quot;toggle NOT&quot; command.
17123 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
17124 It will be considered a match if none of the keywords in the list are set
17125 for a message.
17126 A keyword that you have not defined using the
17127 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
17128 will not be a match, so a <EM>NOT</EM> of that keyword does match.
17130 Don't make the mistake of putting the &quot;!&quot; in the data field for
17131 the pattern.
17132 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
17133 pattern, the pattern will look like:
17135 <PRE>
17136  Keyword pattern = !frizzle
17137 </PRE>
17139 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17140 In order to match messages that do not have the keyword &quot;frizzle&quot;
17141 set, first type the characters &quot;frizzle&quot; followed
17142 by carriage return for the value of the Keyword pattern, then negate it
17143 by typing the &quot;!&quot; command.
17144 It should end up looking like
17146 <PRE>
17147  ! Keyword pattern = frizzle
17148 </PRE>
17150 A technicality: Since comma is the character used to separate multiple
17151 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17152 you want to include a literal comma in the field.
17153 In other words, if you type a backslash followed by a comma it will
17154 be interpreted as a comma by Alpine, instead of as a separator between
17155 pattern values.
17156 All other backslashes are literal backslashes and should not be escaped.
17158 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17159 for more information on Patterns.
17161 Look <A HREF="h_edit_nav_cmds">here</A>
17162 to see the available Editing and Navigation commands.
17164 &lt;End of help on this topic&gt;
17165 </BODY>
17166 </HTML>
17167 ======= h_config_role_arbpat =======
17168 <HTML>
17169 <HEAD>
17170 <TITLE>Extra Header Patterns Explained</TITLE>
17171 </HEAD>
17172 <BODY>
17173 <H1>Extra Header Patterns Explained</H1>
17175 The header patterns that come after the Participant pattern but before the 
17176 AllText pattern are extra header patterns that you have added to a rule's
17177 Pattern. These are just like the other header patterns except that
17178 the contents of the particular header listed on the left hand side will
17179 be used for comparisons.
17181 The &quot;eXtraHdr&quot; command may be used to add more of these
17182 header patterns to the rule you are editing.
17184 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
17185 extra header pattern from the rule you are editing.
17187 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
17188 &quot;!&quot; &quot;toggle NOT&quot; command.
17189 This changes the meaning of the pattern so that it has the opposite meaning.
17190 It will be considered a match if there are no matches between the
17191 text in the header line and the list of patterns.
17193 Don't make the mistake of putting the &quot;!&quot; in the data field for
17194 the pattern.
17195 For example, if you type the characters &quot;!frizzle&quot; into the
17196 pattern, the pattern will look like:
17198 <PRE>
17199  Xyz pattern = !frizzle
17200 </PRE>
17202 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17203 In order to match messages that do not have &quot;frizzle&quot; in
17204 their Xyz field, first type the characters &quot;frizzle&quot; followed
17205 by carriage return for the value of the pattern, then negate it
17206 by typing the &quot;!&quot; command.
17207 It should end up looking like
17209 <PRE>
17210  ! Xyz pattern = frizzle
17211 </PRE>
17214 A technicality: Since comma is the character used to separate multiple
17215 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17216 you want to include a literal comma in the field.
17217 In other words, if you type a backslash followed by a comma it will
17218 be interpreted as a comma by Alpine, instead of as a separator between
17219 pattern values.
17220 All other backslashes are literal backslashes and should not be escaped.
17222 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17223 for more information on Patterns.
17225 Look <A HREF="h_edit_nav_cmds">here</A>
17226 to see the available Editing and Navigation commands.
17228 &lt;End of help on this topic&gt;
17229 </BODY>
17230 </HTML>
17231 ======= h_config_role_cat_cmd =======
17232 <HTML>
17233 <HEAD>
17234 <TITLE>Categorizer Command Explained</TITLE>
17235 </HEAD>
17236 <BODY>
17237 <H1>Categorizer Command Explained</H1>
17239 This is a command that is run with its standard input set to the message
17240 being checked and its standard output discarded.
17241 The full directory path should be specified.
17242 The command will be run and then its exit status will be checked against
17243 the Exit Status Interval, which defaults to just the value zero.
17244 If the exit status of the command falls in the interval, it is considered
17245 a match, otherwise it is not a match.
17248 This option may actually be a list of commands.
17249 The first one that exists and is executable is used.
17250 That makes it possible to use the same configuration with Unix Alpine and
17251 PC-Alpine.
17254 If none of the commands in the list exists and is executable then the rule
17255 is <EM>not</EM> a match.
17256 If it is possible that the command may not exist, you should be careful
17257 to structure your rules so that nothing destructive
17258 happens when the command does not exist.
17259 For example, you might have a filter that filters away spam when there is
17260 a match but does nothing when there is not a match.
17261 That would cause no harm if the command didn't exist.
17262 However, if you have a filter that filters away spam when there is not
17263 a match and keeps it when there is a match, that would filter everything
17264 if the categorizer command didn't exist.
17266 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
17267 setup for the bogofilter filter.
17270 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17271 for more information on Patterns.
17273 Look <A HREF="h_edit_nav_cmds">here</A>
17274 to see the available Editing and Navigation commands.
17276 &lt;End of help on this topic&gt;
17277 </BODY>
17278 </HTML>
17279 ======= h_config_role_cat_cmd_example =======
17280 <HTML>
17281 <HEAD>
17282 <TITLE>Categorizer Command Example</TITLE>
17283 </HEAD>
17284 <BODY>
17285 <H1>Categorizer Command Example</H1>
17287 Bogofilter
17288 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
17289 is a mail filter that attempts to classify mail as spam or
17290 non-spam using statistical analysis of the message content.
17291 When run with no arguments and a message as standard input, it exits with
17292 exit status 0 if it thinks a message is spam and 1 if it thinks
17293 it is not spam.
17294 To use bogofilter as your Categorizer Command you would simply set Command to
17295 the pathname of the bogofilter program.
17296 For example,
17298 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
17300 Exit status of zero is what you are interested in, so you'd set the
17301 Exit Status Interval to
17303 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
17306 In order to prevent downloading an entire huge message to check for spam, you
17307 might want to set the Character Limit to a few thousand characters (the
17308 assumption being that the spam will reveal itself in those characters)
17310 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
17313 You would probably use bogofilter in an Alpine Filter Rule, and have the action
17314 be to move the message to a spam folder.
17315 It would usually be wise to also check the &quot;Message is Recent&quot;
17316 part of the rule so that messages are only checked when they first arrive,
17317 and to restrict the Current Folder Type to just your INBOX.
17318 The reason for checking only Recent messages is to save the time it takes
17319 to run bogofilter on each message.
17320 As an experiment, you might start out by using this in an Indexcolor Rule
17321 instead of a Filter Rule.
17322 In that case, you probably wouldn't check the Recent checkbox.
17324 The use described above assumes that you are somehow maintaining bogofilter's
17325 database of words associated with spam and non-spam messages.
17326 One way to start your database would be to select a bunch of spam messages
17327 in Alpine (you might Save spam messages to a special folder or use Alpine's
17328 Select command to select several) and then Apply
17329 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
17330 a pipe command to the spam messages.
17331 For example, you could have a shell script or an alias
17332 called <EM>this_is_spam</EM>, which would simply be the command
17334 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
17337 It is probably best to use the pipe command's Raw Text, With Delimiter,
17338 and Free Output options,
17339 which are at the bottom of the screen when you type the pipe command.
17340 That's because bogofilter expects the raw message as input, and uses
17341 the Delimiters to tell when a new message starts.
17342 You would not need to use a separate pipe for each message, because
17343 bogofilter can handle multiple messages at once.
17345 Similarly, you would select a group of non-spam messages
17346 and run them through a <EM>this_is_nonspam</EM> script
17347 that was something like
17349 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
17352 For the more adventurous, the next step might be to automate the upkeep of
17353 the bogofilter database.
17354 It might make more sense to have bogofilter be part of the delivery process,
17355 but it is also possible to do it entirely from within Alpine.
17356 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
17357 the &quot;-u&quot; argument will cause bogofilter to update the database.
17359 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17361 You'd want a couple more aliases or shell scripts called something like
17362 <EM>change_to_spam</EM>
17364 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
17367 <EM>change_to_nonspam</EM>
17369 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
17371 When you run across a message in your INBOX that should have been
17372 classified as spam you would pipe it to the change_to_spam script, and
17373 when you run across a message in your spam folder that should have been
17374 left in your INBOX you would pipe it through change_to_nonspam.
17377 There is a technical problem with this approach.
17378 Alpine may check your filters more than once.
17379 In particular, every time you start Alpine the filters will be checked for
17380 each message.
17381 Also, if you have any filters that depend on message state (New, Deleted, etc.)
17382 then Alpine will recheck for matches in messages that have changed state
17383 at the time you close the folder and before expunging.
17384 This is usually ok.
17385 However, in this case it is a problem because the command
17387 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17389 has the side effect of updating the database.
17390 So you run the risk of updating the database multiple times for a single
17391 message instead of updating it just once per message.
17392 There are some ways to work around this problem.
17393 What you need is a way to mark the message after you have run the filter.
17394 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
17395 Besides having the filter move the message to a spam folder, also have it
17396 set the Bogo keyword.
17397 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
17398 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
17399 This rule can only set the Bogo keyword for the messages that it matches.
17400 You will also need to add a second rule right after this one that
17401 matches all the messages that don't have the Bogo keyword set
17402 (put the keyword in the Keyword pattern and toggle
17403 the Not with the ! command)
17404 and takes the action of setting it.
17405 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
17406 (and so it won't re-run the bogofilter command) if the keyword is already
17407 set.
17409 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
17410 on all messages that don't have the Bogo keyword set.
17411 This will have the side effect of inserting that message in the bogofilter
17412 database, match or not.
17413 If this rule matches (it is spam), the Bogo keyword will be set and
17414 the message will be moved to a spam folder.
17415 If it does not match, the
17416 following rule will mark the message by turning on the keyword.
17417 This second rule should be a non-terminating
17418 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17419 rule so that it doesn't stop the filtering process before the rest of
17420 your rules are consulted.
17423 In summary, the first rule is something like
17424 <PRE>
17425   Nickname          = bogofilter -u rule
17426   Current Folder Type =
17427                (*) Specific
17428                    Folder = INBOX
17430   ! Keyword pattern = Bogo
17432   External Categorizer Commands =
17433        Command              = /usr/local/bin/bogofilter -u
17434        Exit Status Interval = (0,0)
17435        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17437   Filter Action =
17438        (*) Move
17439            Folder = spam
17440   
17441   Set These Keywords   = Bogo
17442 </PRE>
17444 and the following rule is
17445 <PRE>
17446   Nickname          = Set Bogo Keyword
17447   Current Folder Type =
17448                (*) Specific
17449                    Folder = INBOX
17451   ! Keyword pattern = Bogo
17453   Filter Action =
17454        (*) Just Set Message Status
17456   Set These Keywords   = Bogo
17458   Features =
17459       [X]  dont-stop-even-if-rule-matches
17460 </PRE>
17462 If it is possible for you to insert bogofilter in the delivery process instead
17463 of having it called from Alpine you could prevent having to wait
17464 for the bogofilter processing while you read your mail.
17465 You would have bogofilter add a header to the message at the time of delivery
17466 that identified it as spam or nonspam.
17467 With this method, you could avoid using a Categorizer Command while running Alpine,
17468 and just match on the header instead.
17469 You might still want to use the scripts mentioned above to initialize the
17470 database or to re-classify wrongly classified messages.
17473 Finally, it isn't for the faint-hearted,
17474 but it is also possible to run bogofilter from PC-Alpine.
17475 You can install Cygwin from
17476 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17477 then compile bogofilter in the cygwin environment, and run it from
17478 within PC-Alpine.
17479 You would end up with a Categorizer command that looked something like
17481 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17483 Note that the &quot;.exe&quot; extension is explicit,
17484 and that the bogofilter.exe executable should be in the same directory
17485 as cygwin1.dll.
17488 &lt;End of help on this topic&gt;
17489 </BODY>
17490 </HTML>
17491 ======= h_config_role_cat_status =======
17492 <HTML>
17493 <HEAD>
17494 <TITLE>Exit Status Interval Explained</TITLE>
17495 </HEAD>
17496 <BODY>
17497 <H1>Exit Status Interval Explained</H1>
17499 The categorizer command is run and the result is the exit status of
17500 that command.
17501 If that exit status falls in the Exit Status Interval
17502 then it is considered a match, otherwise it is not a match.
17503 Of course for the entire rule to match, it must also be checked against
17504 the other defined parts of the Pattern.
17506 The Exit Status Interval defaults to the single value 0 (zero).
17507 If you define it, it should be set to something like:
17509 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17511 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17512 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17513 positive and negative integers.
17515 Actually, a list of intervals may be used if you wish.
17516 A list would look like
17518 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17520 When there is an Exit Status Interval defined, it is a match if the exit status
17521 of the categorizer command is contained in any of the intervals.
17522 The intervals include both endpoints.
17524 The default interval is
17526 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17528 and it matches only if the command exits with exit status equal to zero.
17531 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17532 for more information on Patterns.
17534 Look <A HREF="h_edit_nav_cmds">here</A>
17535 to see the available Editing and Navigation commands.
17537 &lt;End of help on this topic&gt;
17538 </BODY>
17539 </HTML>
17540 ======= h_config_role_cat_limit =======
17541 <HTML>
17542 <HEAD>
17543 <TITLE>Character Limit Explained</TITLE>
17544 </HEAD>
17545 <BODY>
17546 <H1>Character Limit Explained</H1>
17548 Setting this option makes it possible to limit how much of the message
17549 is made available to the categorizer command as input.
17550 The default value (-1) means that the entire message is fed to the
17551 command.
17552 A value of 0 (zero) means that only the headers of the message are
17553 made available.
17554 A positive integer means that the headers plus that many characters from
17555 the body of the message are passed to the categorizer.
17558 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17559 for more information on Patterns.
17561 Look <A HREF="h_edit_nav_cmds">here</A>
17562 to see the available Editing and Navigation commands.
17564 &lt;End of help on this topic&gt;
17565 </BODY>
17566 </HTML>
17567 ======= h_config_role_age =======
17568 <HTML>
17569 <HEAD>
17570 <TITLE>Age Interval Explained</TITLE>
17571 </HEAD>
17572 <BODY>
17573 <H1>Age Interval Explained</H1>
17575 The Age Interval, if defined, is part of the Pattern.
17576 If you use this, it should be set to something like:
17578 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17580 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17581 The special value &quot;INF&quot; may be used for the max value.
17582 It represents infinity.
17584 In rare cases it may be useful to use the more general form of the value,
17585 which is a comma-separated list of intervals.
17586 It would look something like:
17588 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17590 When there is an Age Interval defined, it is a match if the age, in days, of
17591 the message is contained in the interval.
17592 The interval includes both endpoints.
17593 If the option is set to a list of intervals then it is a match if the
17594 age of the message is contained in any of the intervals.
17596 Even though this option is called Age, it isn't actually
17597 the <EM>age</EM> of the message.
17598 Instead, it is how many days ago the message arrived in one of your folders.
17599 If the current time is a little past midnight, then a message that arrived
17600 just before midnight arrived yesterday, even though the message is only
17601 a few minutes old.
17602 By default, the date being used is not the date in the Date
17603 header of the message.
17604 It is the date that the message arrived in one of your folders.
17605 When you Save a message from one folder to another that arrival date
17606 is preserved.
17607 If you would like to use the date in the Date header that is possible.
17608 Turn on the option
17609 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17610 near the bottom of the rule definition.
17612 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17613 The age interval
17615 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17617 matches all messages that arrived on the day before yesterday.
17618 The interval
17620 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17622 matches all messages that arrived at least 180 days before today.
17623 The interval
17625 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17627 matches all messages that arrived today or yesterday.
17630 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17631 for more information on Patterns.
17633 Look <A HREF="h_edit_nav_cmds">here</A>
17634 to see the available Editing and Navigation commands.
17636 &lt;End of help on this topic&gt;
17637 </BODY>
17638 </HTML>
17639 ======= h_config_role_size =======
17640 <HTML>
17641 <HEAD>
17642 <TITLE>Size Interval Explained</TITLE>
17643 </HEAD>
17644 <BODY>
17645 <H1>Size Interval Explained</H1>
17647 The Size Interval, if defined, is part of the Pattern.
17648 If you use this, it should be set to something like:
17650 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17652 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17653 The special value &quot;INF&quot; may be used for the max value.
17654 It represents infinity.
17656 In rare cases it may be useful to use the more general form of the value,
17657 which is a comma-separated list of intervals.
17658 It would look something like:
17660 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17662 When there is a Size Interval defined, it is a match if the size of
17663 the message is contained in the interval.
17664 The interval includes both endpoints.
17665 If the option is set to a list of intervals then it is a match if the
17666 size of the message is contained in any of the intervals.
17668 The size interval
17670 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17672 matches all messages with sizes greater than or equal to 10000, and less
17673 than or equal to 50000.
17674 The interval
17676 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17678 matches all messages with sizes greater than or equal to 100000.
17681 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17682 for more information on Patterns.
17684 Look <A HREF="h_edit_nav_cmds">here</A>
17685 to see the available Editing and Navigation commands.
17687 &lt;End of help on this topic&gt;
17688 </BODY>
17689 </HTML>
17690 ======= h_config_role_scorei =======
17691 <HTML>
17692 <HEAD>
17693 <TITLE>Score Interval Explained</TITLE>
17694 </HEAD>
17695 <BODY>
17696 <H1>Score Interval Explained</H1>
17698 The Score Interval, if defined, is part of the Pattern.
17699 If you use this, it should be set to something like:
17701 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17703 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17704 -32000 and 32000.
17705 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17706 the min and max values.
17707 These represent negative and positive infinity.
17709 Actually, the value may be a list of intervals rather than just a
17710 single interval if that is useful.
17711 The elements of the list are separated by commas like:
17713 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17715 When there is a Score Interval defined, it is a match if the score for
17716 the message is contained in any of the intervals.
17717 The intervals include both endpoints.
17718 The score for a message is calculated by looking at every scoring rule
17719 defined and adding up the Score Values for the rules that match the message.
17720 Scoring rules are created using the
17721 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17724 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17725 for more information on Patterns.
17727 Look <A HREF="h_edit_nav_cmds">here</A>
17728 to see the available Editing and Navigation commands.
17730 &lt;End of help on this topic&gt;
17731 </BODY>
17732 </HTML>
17733 ======= h_config_role_fldr_type =======
17734 <HTML>
17735 <HEAD>
17736 <TITLE>Current Folder Type Explained</TITLE>
17737 </HEAD>
17738 <BODY>
17739 <H1>Current Folder Type Explained</H1>
17741 The Current Folder Type is part of the role's Pattern.
17742 It refers to the type of the currently open folder, which is the folder
17743 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17744 In order for a role to be considered a match, the current folder must
17745 be of the type you set here.
17746 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17747 all what you might think.
17749 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17750 example, then
17751 that role will only be a match if the current folder is a newsgroup and
17752 the rest of the Pattern matches.
17753 The value &quot;Specific&quot; may be used when you want to limit the match
17754 to a specific folder (not just a specific type of folder), or to a list of
17755 specific folders.
17757 In order to match a specific folder you Select the &quot;Specific&quot;
17758 button <EM>AND</EM> fill in
17759 the name (or list of names) of
17760 the folder in the &quot;Folder List&quot; field.
17761 If the current folder is any of the folders in the list, that is considered
17762 a match.
17763 The name of each folder in the list may be either &quot;INBOX&quot;,
17764 the technical specification
17765 of the folder (like what appears in your configuration file) or, if the
17766 folder is one of your incoming folders, it may be the nickname you've given
17767 the folder.
17768 Here are a couple samples of specific folder names:
17770 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
17772 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
17774 Observe that in order for an external folder (IMAP, POP, News) to be a match,
17775 you must also add the /user= option in the definition of the incoming folder.
17777 The easiest way to fill in the &quot;Folder List&quot; field is to use
17778 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17779 highlighted, or to use the &quot;Take&quot; command with the configuration
17780 feature
17781 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17782 turned on.
17783 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17784 Current Folder Type is set to &quot;Specific&quot;, and any value that
17785 &quot;Folder List&quot; has is ignored unless the type
17786 is set to &quot;Specific&quot;.
17788 When reading a newsgroup, there may be a performance penalty
17789 incurred when collecting the information necessary to check a Pattern.
17790 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17792 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17793 for more information on Patterns.
17795 Look <A HREF="h_edit_nav_cmds">here</A>
17796 to see the available Editing and Navigation commands.
17798 &lt;End of help on this topic&gt;
17799 </BODY>
17800 </HTML>
17801 ======= h_config_filt_rule_type =======
17802 <HTML>
17803 <HEAD>
17804 <TITLE>Filter Action Explained</TITLE>
17805 </HEAD>
17806 <BODY>
17807 <H1>Filter Action Explained</H1>
17809 The Filter Action specifies the action to be taken when the Pattern is a
17810 match.
17811 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17812 &quot;Just Set Message Status&quot;.
17814 If it is set to &quot;Delete&quot;, then the message that matches the
17815 Pattern will be deleted from the open folder.
17817 If it is set to &quot;Move&quot;, then the name of the folder to which
17818 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17819 next line of the screen.
17820 A list of folders separated by commas may be given, in which case the
17821 message will be copied to all of the folders in the list before it is
17822 deleted.
17824 If it is set to neither of those two values (it is set to the value
17825 labeled &quot;Just Set Message Status&quot;) then the message status
17826 setting will happen
17827 but the message will not be deleted or moved.
17829 If you are Moving a message you may also set Message Status if you wish.
17831 The easiest way to fill in the &quot;Folder List&quot; field is to use
17832 the T command that is available when the &quot;Folder List&quot; line is
17833 highlighted.
17834 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17835 Filter Action is set to &quot;Move&quot;, and any value that
17836 &quot;Folder List&quot; has is ignored unless the type
17837 is set to &quot;Move&quot;.
17839 There are a few tokens that may be used in the names in the Folder List.
17840 They are all related to the date on which the filtering is taking place.
17841 The tokens are words surrounded by underscores.
17842 For example, if you want your filter to move messages to a folder named
17843 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17844 you could specify the folder as
17845 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17846 which would result in a file named something like
17847 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17849 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17850 which would result in a file named something like
17851 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17852 The available tokens are listed
17853 <A HREF="h_index_tokens">here</A>.
17855 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17856 for more information on Patterns.
17858 Look <A HREF="h_edit_nav_cmds">here</A>
17859 to see the available Editing and Navigation commands.
17861 &lt;End of help on this topic&gt;
17862 </BODY>
17863 </HTML>
17864 ======= h_config_score_fldr_type =======
17865 <HTML>
17866 <HEAD>
17867 <TITLE>Current Folder Type Explained</TITLE>
17868 </HEAD>
17869 <BODY>
17870 <H1>Current Folder Type Explained</H1>
17872 The Current Folder Type is part of the scoring rule's Pattern.
17873 It refers to the type of the folder that
17874 the message being scored is in.
17875 In order for a rule to be considered a match, the current folder must
17876 be of the type you set here.
17877 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17878 all what you might think.
17880 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17881 example, then
17882 that Pattern will only match if the current folder is a newsgroup and
17883 the rest of the Pattern matches.
17884 The value &quot;Specific&quot; may be used when you want to limit the match
17885 to a specific folder (not just a specific type of folder), or to a list of
17886 specific folders.
17888 In order to match a specific folder you Select the &quot;Specific&quot;
17889 button <EM>AND</EM> fill in
17890 the name (or list of names) of
17891 the folder in the &quot;Folder List&quot; field.
17892 If the current folder is any of the folders in the list, that is considered
17893 a match.
17894 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17895 of the folder (like what appears in your configuration file) or, if the
17896 folder is one of your incoming folders, it may be the nickname you've given
17897 the folder.
17898 Here are a couple samples of specific folder names:
17900 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17902 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17904 The easiest way to fill in the &quot;Folder List&quot; field is to use
17905 the T command that is available when the &quot;Folder List&quot; line is
17906 highlighted.
17907 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17908 Current Folder Type is set to &quot;Specific&quot;, and any value that
17909 &quot;Folder List&quot; has is ignored unless the type
17910 is set to &quot;Specific&quot;.
17912 When reading a newsgroup, there may be a performance penalty
17913 incurred when collecting the information necessary to check a Pattern.
17914 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17915 For example, if you have Index Line Coloring rules that have Score Intervals
17916 defined then the scores for all the visible messages will need to be calculated.
17917 If some of your Scoring rules have 
17918 a Current Folder Type of
17919 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17920 screen to draw more slowly when in a newsgroup.
17922 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17923 for more information on Patterns.
17925 Look <A HREF="h_edit_nav_cmds">here</A>
17926 to see the available Editing and Navigation commands.
17928 &lt;End of help on this topic&gt;
17929 </BODY>
17930 </HTML>
17931 ======= h_config_other_fldr_type =======
17932 <HTML>
17933 <HEAD>
17934 <TITLE>Current Folder Type Explained</TITLE>
17935 </HEAD>
17936 <BODY>
17937 <H1>Current Folder Type Explained</H1>
17939 The Current Folder Type is part of the rule's Pattern.
17940 It refers to the type of the folder being viewed.
17941 In order for a rule to be considered a match, the current folder must
17942 be of the type you set here.
17943 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17944 all what you might think.
17946 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17947 example, then
17948 that Pattern will only match if the current folder is a newsgroup.
17949 The value &quot;Specific&quot; may be used when you want to limit the match
17950 to a specific folder (not just a specific type of folder), or to a list of
17951 specific folders.
17953 In order to match a specific folder you Select the &quot;Specific&quot;
17954 button <EM>AND</EM> fill in
17955 the name (or list of names) of
17956 the folder in the &quot;Folder List&quot; field.
17957 If the current folder is any of the folders in the list, that is considered
17958 a match.
17959 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17960 of the folder (like what appears in your configuration file) or, if the
17961 folder is one of your incoming folders, it may be the nickname you've given
17962 the folder.
17963 Here are a couple samples of specific folder names:
17965 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17967 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17969 The easiest way to fill in the &quot;Folder List&quot; field is to use
17970 the T command that is available when the &quot;Folder List&quot; line is
17971 highlighted.
17972 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17973 Current Folder Type is set to &quot;Specific&quot;, and any value that
17974 &quot;Folder List&quot; has is ignored unless the type
17975 is set to &quot;Specific&quot;.
17977 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17978 for more information on Patterns.
17980 Look <A HREF="h_edit_nav_cmds">here</A>
17981 to see the available Editing and Navigation commands.
17983 &lt;End of help on this topic&gt;
17984 </BODY>
17985 </HTML>
17986 ======= h_config_incol_fldr_type =======
17987 <HTML>
17988 <HEAD>
17989 <TITLE>Current Folder Type Explained</TITLE>
17990 </HEAD>
17991 <BODY>
17992 <H1>Current Folder Type Explained</H1>
17994 The Current Folder Type is part of the Line Coloring rule's Pattern.
17995 It refers to the type of the folder for which the MESSAGE INDEX is
17996 being viewed.
17997 In order for a rule to be considered a match, the current folder must
17998 be of the type you set here.
17999 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18000 all what you might think.
18002 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18003 example, then
18004 that Pattern will only match if the current folder is a newsgroup and
18005 the rest of the Pattern matches.
18006 The value &quot;Specific&quot; may be used when you want to limit the match
18007 to a specific folder (not just a specific type of folder), or to a list of
18008 specific folders.
18010 In order to match a specific folder you Select the &quot;Specific&quot;
18011 button <EM>AND</EM> fill in
18012 the name (or list of names) of
18013 the folder in the &quot;Folder List&quot; field.
18014 If the current folder is any of the folders in the list, that is considered
18015 a match.
18016 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18017 of the folder (like what appears in your configuration file) or, if the
18018 folder is one of your incoming folders, it may be the nickname you've given
18019 the folder.
18020 Here are a couple samples of specific folder names:
18022 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18024 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18026 The easiest way to fill in the &quot;Folder List&quot; field is to use
18027 the T command that is available when the &quot;Folder List&quot; line is
18028 highlighted.
18029 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18030 Current Folder Type is set to &quot;Specific&quot;, and any value that
18031 &quot;Folder List&quot; has is ignored unless the type
18032 is set to &quot;Specific&quot;.
18034 When reading a newsgroup, there may be a performance penalty
18035 incurred when collecting the information necessary to check a Pattern.
18036 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18037 For example, a rule with a non-Normal Index Line Color
18038 and a Current Folder Type of
18039 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
18040 screen to draw more slowly when in a newsgroup.
18042 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18043 for more information on Patterns.
18045 Look <A HREF="h_edit_nav_cmds">here</A>
18046 to see the available Editing and Navigation commands.
18048 &lt;End of help on this topic&gt;
18049 </BODY>
18050 </HTML>
18051 ======= h_config_filt_fldr_type =======
18052 <HTML>
18053 <HEAD>
18054 <TITLE>Current Folder Type Explained</TITLE>
18055 </HEAD>
18056 <BODY>
18057 <H1>Current Folder Type Explained</H1>
18059 The Current Folder Type is part of the Filtering rule's Pattern.
18060 It refers to the type of the folder for which the filtering is being done.
18061 In order for a rule to be considered a match, the current folder must
18062 be of the type you set here.
18063 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18064 all what you might think.
18066 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18067 example, then
18068 that Pattern will only match if the current folder is a newsgroup and
18069 the rest of the Pattern matches.
18070 The value &quot;Specific&quot; may be used when you want to limit the match
18071 to a specific folder (not just a specific type of folder), or to a list of
18072 specific folders.
18074 In order to match a specific folder you Select the &quot;Specific&quot;
18075 button <EM>AND</EM> fill in
18076 the name (or list of names) of
18077 the folder in the &quot;Folder List&quot; field.
18078 If the current folder is any of the folders in the list, that is considered
18079 a match.
18080 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18081 of the folder (like what appears in your configuration file) or, if the
18082 folder is one of your incoming folders, it may be the nickname you've given
18083 the folder.
18084 Here are a couple samples of specific folder names:
18086 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18088 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18090 The easiest way to fill in the &quot;Folder List&quot; field is to use
18091 the T command that is available when the &quot;Folder List&quot; line is
18092 highlighted.
18093 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18094 Current Folder Type is set to &quot;Specific&quot;, and any value that
18095 &quot;Folder List&quot; has is ignored unless the type
18096 is set to &quot;Specific&quot;.
18098 When reading a newsgroup, there may be a performance penalty
18099 incurred when collecting the information necessary to check a Pattern.
18100 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18101 For example, a rule with a Current Folder Type of either
18102 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
18103 more slowly when opening a newsgroup.
18105 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18106 for more information on Patterns.
18108 Look <A HREF="h_edit_nav_cmds">here</A>
18109 to see the available Editing and Navigation commands.
18111 &lt;End of help on this topic&gt;
18112 </BODY>
18113 </HTML>
18114 ======= h_config_role_stat_imp =======
18115 <HTML>
18116 <HEAD>
18117 <TITLE>Message Important Status Explained</TITLE>
18118 </HEAD>
18119 <BODY>
18120 <H1>Message Important Status Explained</H1>
18122 This part of the Pattern may have one of three possible values.
18123 The default value is &quot;Don't care&quot;, which matches any message.
18124 The other two values are &quot;Yes&quot;, which means the message must be
18125 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
18126 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
18127 to be a match.
18129 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18130 for more information on Patterns.
18132 Look <A HREF="h_edit_nav_cmds">here</A>
18133 to see the available Editing and Navigation commands.
18135 &lt;End of help on this topic&gt;
18136 </BODY>
18137 </HTML>
18138 ======= h_config_role_stat_new =======
18139 <HTML>
18140 <HEAD>
18141 <TITLE>Message New Status Explained</TITLE>
18142 </HEAD>
18143 <BODY>
18144 <H1>Message New Status Explained</H1>
18146 This part of the Pattern may have one of three possible values.
18147 The default value is &quot;Don't care&quot;, which matches any message.
18148 The other two values are &quot;Yes&quot;, which means the message must be
18149 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
18150 means the message must <EM>not</EM> be &quot;New&quot; in order
18151 to be a match.
18152 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
18153 same as <EM>Seen</EM>.
18155 The nomenclature for New and Recent is a bit confusing:
18157 New means that the message is Unseen.
18158 It could have been in your mailbox for a long time but if you haven't looked
18159 at it, it is still considered New.
18160 That matches the default Alpine index display that shows an N for such a
18161 message.
18163 Recent means that the message was added to this folder since the last time
18164 you opened the folder.
18165 Alpine also shows an N by default for these types of messages.
18166 If you were to run two copies of Alpine that opened a folder one right after
18167 the other, a message would only show up as Recent in (at most) the first
18168 Alpine session.
18170 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18171 for more information on Patterns.
18173 Look <A HREF="h_edit_nav_cmds">here</A>
18174 to see the available Editing and Navigation commands.
18176 &lt;End of help on this topic&gt;
18177 </BODY>
18178 </HTML>
18179 ======= h_config_role_stat_recent =======
18180 <HTML>
18181 <HEAD>
18182 <TITLE>Message Recent Status Explained</TITLE>
18183 </HEAD>
18184 <BODY>
18185 <H1>Message Recent Status Explained</H1>
18187 This part of the Pattern may have one of three possible values.
18188 The default value is &quot;Don't care&quot;, which matches any message.
18189 The other two values are &quot;Yes&quot;, which means the message must be
18190 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
18191 means the message must <EM>not</EM> be &quot;Recent&quot; in order
18192 to be a match.
18193 &quot;Recent&quot; means that the message was added to the folder since
18194 the last time the folder was opened.
18195 If more than one mail client has the folder opened, the message will
18196 appear to be &quot;Recent&quot; to only one of the clients.
18198 The nomenclature for New and Recent is a bit confusing:
18200 New means that the message is Unseen.
18201 It could have been in your mailbox for a long time but if you haven't looked
18202 at it, it is still considered New.
18203 That matches the default Alpine index display that shows an N for such a
18204 message.
18206 Recent means that the message was added to this folder since the last time
18207 you opened the folder.
18208 Alpine also shows an N by default for these types of messages.
18209 If you were to run two copies of Alpine that opened a folder one right after
18210 the other, a message would only show up as Recent in (at most) the first
18211 Alpine session.
18213 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18214 for more information on Patterns.
18216 Look <A HREF="h_edit_nav_cmds">here</A>
18217 to see the available Editing and Navigation commands.
18219 &lt;End of help on this topic&gt;
18220 </BODY>
18221 </HTML>
18222 ======= h_config_role_stat_del =======
18223 <HTML>
18224 <HEAD>
18225 <TITLE>Message Deleted Status Explained</TITLE>
18226 </HEAD>
18227 <BODY>
18228 <H1>Message Deleted Status Explained</H1>
18230 This part of the Pattern may have one of three possible values.
18231 The default value is &quot;Don't care&quot;, which matches any message.
18232 The other two values are &quot;Yes&quot;, which means the message must be
18233 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
18234 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
18235 to be a match.
18237 If you are thinking of using this part of the Pattern as a way to prevent
18238 messages from being filtered more than once in a Filter Pattern,
18239 take a look at the Filter Option
18240 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
18241 instead.
18242 It should work better than using this field since it will hide the filtered
18243 messages even if they are already Deleted.
18244 That option is at the bottom of the Filter configuration screen.
18246 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18247 for more information on Patterns.
18249 Look <A HREF="h_edit_nav_cmds">here</A>
18250 to see the available Editing and Navigation commands.
18252 &lt;End of help on this topic&gt;
18253 </BODY>
18254 </HTML>
18255 ======= h_config_role_stat_ans =======
18256 <HTML>
18257 <HEAD>
18258 <TITLE>Message Answered Status Explained</TITLE>
18259 </HEAD>
18260 <BODY>
18261 <H1>Message Answered Status Explained</H1>
18263 This part of the Pattern may have one of three possible values.
18264 The default value is &quot;Don't care&quot;, which matches any message.
18265 The other two values are &quot;Yes&quot;, which means the message must be
18266 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
18267 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
18268 to be a match.
18270 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18271 for more information on Patterns.
18273 Look <A HREF="h_edit_nav_cmds">here</A>
18274 to see the available Editing and Navigation commands.
18276 &lt;End of help on this topic&gt;
18277 </BODY>
18278 </HTML>
18279 ======= h_config_role_abookfrom =======
18280 <HTML>
18281 <HEAD>
18282 <TITLE>Address in Address Book Explained</TITLE>
18283 </HEAD>
18284 <BODY>
18285 <H1>Address in Address Book Explained</H1>
18287 This option gives you a way to match messages that contain an address
18288 that is in one of your address books.
18289 Only the simple entries in your address books are searched.
18290 Address book distribution lists are ignored!
18292 This part of the Pattern may have one of five possible values.
18293 The default value is &quot;Don't care&quot;, which matches any message.
18294 The value &quot;Yes, in any address book&quot; means at least one of the addresses
18295 from the message must be in at least one of your
18296 address books in order to be a match.
18297 The value &quot;No, not in any address book&quot;
18298 means none of the addresses may
18299 be in any of your address books in order to be a match.
18301 The values &quot;Yes, in specific address books&quot; and
18302 &quot;No, not in any of specific address books&quot; are similar but instead
18303 of depending on all address books you are allowed to give a list of address
18304 books to look in.
18305 Usually this would be a single address book but it may be a
18306 list of address books as well.
18307 For each of these &quot;specific&quot; address book options you Select which
18308 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
18309 name (or list of names) of the address book in the
18310 &quot;Abook List&quot; field.
18311 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
18312 The easiest way to fill in the Abook List field it to use
18313 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
18314 line is highlighted.
18315 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
18316 option is set to one of the two &quot;Specific&quot;, values.
18318 The addresses from the message that are checked for are determined by the
18319 setting you have for &quot;Types of addresses to check for in address book&quot;.
18320 If you set this to &quot;From&quot; the From address from the message will
18321 be looked up in the address book.
18322 If you set it to &quot;To&quot; instead then the To addresses will be used.
18323 If any of the To addresses are in the address book then it is considered
18324 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
18325 You could set it to both From and To, in which case all of the From and To
18326 addresses are used.
18327 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
18328 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
18329 exists or the From address if there is no Reply-To address.
18330 Same for the Sender address.
18332 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18333 for more information on Patterns.
18335 Look <A HREF="h_edit_nav_cmds">here</A>
18336 to see the available Editing and Navigation commands.
18338 &lt;End of help on this topic&gt;
18339 </BODY>
18340 </HTML>
18341 ======= h_config_inabook_from =======
18342 <HTML>
18343 <HEAD>
18344 <TITLE>From</TITLE>
18345 </HEAD>
18346 <BODY>
18347 <H1>From</H1>
18349 Setting the From line will cause the address from the From header line
18350 of the message to be checked for in the address book.
18352 &lt;End of help on this topic&gt;
18353 </BODY>
18354 </HTML>
18355 ======= h_config_inabook_replyto =======
18356 <HTML>
18357 <HEAD>
18358 <TITLE>Reply-To</TITLE>
18359 </HEAD>
18360 <BODY>
18361 <H1>Reply-To</H1>
18363 Setting the Reply-To line will cause the address from the Reply-To header line
18364 of the message to be checked for in the address book.
18365 However, if there is no Reply-To header line in the message the From header
18366 line will be used instead.
18367 We understand this is dumb but we don't have an easy way around it.
18369 &lt;End of help on this topic&gt;
18370 </BODY>
18371 </HTML>
18372 ======= h_config_inabook_sender =======
18373 <HTML>
18374 <HEAD>
18375 <TITLE>Sender</TITLE>
18376 </HEAD>
18377 <BODY>
18378 <H1>Sender</H1>
18380 Setting the Sender line will cause the address from the Sender header line
18381 of the message to be checked for in the address book.
18382 However, if there is no Sender header line in the message the From header
18383 line will be used instead.
18384 We understand this is dumb but we don't have an easy way around it.
18386 &lt;End of help on this topic&gt;
18387 </BODY>
18388 </HTML>
18389 ======= h_config_inabook_to =======
18390 <HTML>
18391 <HEAD>
18392 <TITLE>To</TITLE>
18393 </HEAD>
18394 <BODY>
18395 <H1>To</H1>
18397 Setting the To line will cause the address from the To header line
18398 of the message to be checked for in the address book.
18400 &lt;End of help on this topic&gt;
18401 </BODY>
18402 </HTML>
18403 ======= h_config_inabook_cc =======
18404 <HTML>
18405 <HEAD>
18406 <TITLE>CC</TITLE>
18407 </HEAD>
18408 <BODY>
18409 <H1>CC</H1>
18411 Setting the CC line will cause the address from the CC header line
18412 of the message to be checked for in the address book.
18414 &lt;End of help on this topic&gt;
18415 </BODY>
18416 </HTML>
18417 ======= h_config_role_stat_8bitsubj =======
18418 <HTML>
18419 <HEAD>
18420 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18421 </HEAD>
18422 <BODY>
18423 <H1>Raw 8-bit in Subject Explained</H1>
18425 It seems that lots of unwanted email contains unencoded 8-bit characters
18426 in the Subject.
18427 Normally, characters with the 8th bit set are not allowed in the Subject
18428 header unless they are MIME-encoded.
18429 This option gives you a way to match messages that have Subjects that
18430 contain unencoded 8-bit characters.
18432 This part of the Pattern may have one of three possible values.
18433 The default value is &quot;Don't care&quot;, which matches any message.
18434 The other two values are &quot;Yes&quot;, which means the Subject of
18435 the message must contain unencoded 8-bit characters (characters with the
18436 most significant bit set)
18437 in order to be a match; or &quot;No&quot;, which
18438 means the Subject must <EM>not</EM>
18439 contain unencoded 8-bit characters in order to be a match.
18441 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18442 for more information on Patterns.
18444 Look <A HREF="h_edit_nav_cmds">here</A>
18445 to see the available Editing and Navigation commands.
18447 &lt;End of help on this topic&gt;
18448 </BODY>
18449 </HTML>
18450 ======= h_config_role_bom =======
18451 <HTML>
18452 <HEAD>
18453 <TITLE>Beginning of Month</TITLE>
18454 </HEAD>
18455 <BODY>
18456 <H1>Beginning of Month</H1>
18458 This option gives you a limited ability to take different actions depending on whether
18459 this is the first time Alpine has been run this month or not.
18460 Though it would be nice to have such an option available, this is not the
18461 same as whether or not this is the first time a paricular folder has been
18462 opened this month.
18463 If you want some action (probably Filtering) to take place in a folder each
18464 month, then you will need to be sure that the folder is opened during the
18465 first Alpine session of the month in order for this option to be helpful.
18467 This part of the Pattern may have one of three possible values.
18468 The default value is &quot;Don't care&quot;, which matches any message.
18469 The other two values are &quot;Yes&quot;, which means this is the first
18470 time Alpine has been run this month;
18471 or &quot;No&quot;, which
18472 means this is not the first time Alpine has been run this month.
18474 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18475 for more information on Patterns.
18477 Here are some technical details.
18478 The way that Alpine decides if it is the beginning of the month or not is
18479 to compare today's date with the date stored in the
18480 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18481 variable in the config file.
18482 If the month of today's date is later than the month stored in the variable,
18483 then this is considered to be the first time you have run Alpine this month, and
18484 that turns the Beginning of the Month option on.
18486 Look <A HREF="h_edit_nav_cmds">here</A>
18487 to see the available Editing and Navigation commands.
18489 &lt;End of help on this topic&gt;
18490 </BODY>
18491 </HTML>
18492 ======= h_config_role_boy =======
18493 <HTML>
18494 <HEAD>
18495 <TITLE>Beginning of Year</TITLE>
18496 </HEAD>
18497 <BODY>
18498 <H1>Beginning of Year</H1>
18500 This option gives you a limited ability to take different actions depending on whether
18501 this is the first time Alpine has been run this year or not.
18502 Though it would be nice to have such an option available, this is not the
18503 same as whether or not this is the first time a paricular folder has been
18504 opened this year.
18505 If you want some action (probably Filtering) to take place in a folder each
18506 year, then you will need to be sure that the folder is opened during the
18507 first Alpine session of the year in order for this option to be helpful.
18509 This part of the Pattern may have one of three possible values.
18510 The default value is &quot;Don't care&quot;, which matches any message.
18511 The other two values are &quot;Yes&quot;, which means this is the first
18512 time Alpine has been run this year;
18513 or &quot;No&quot;, which
18514 means this is not the first time Alpine has been run this year.
18516 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18517 for more information on Patterns.
18519 Here are some technical details.
18520 The way that Alpine decides if it is the beginning of the year or not is
18521 to compare today's date with the date stored in the
18522 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18523 variable in the config file.
18524 If the year of today's date is later than the year stored in the variable,
18525 then this is considered to be the first time you have run Alpine this year, and
18526 that turns the Beginning of the Year option on.
18528 Look <A HREF="h_edit_nav_cmds">here</A>
18529 to see the available Editing and Navigation commands.
18531 &lt;End of help on this topic&gt;
18532 </BODY>
18533 </HTML>
18534 ======= h_config_role_inick =======
18535 <HTML>
18536 <HEAD>
18537 <TITLE>Initialize Values From Role Explained</TITLE>
18538 </HEAD>
18539 <BODY>
18540 <H1>Initialize Values From Role Explained</H1>
18542 This is a power user feature.
18543 You will usually want to leave this field empty.
18544 The value of this field is the nickname of another one of your roles.
18545 The Action values from that other role
18546 are used as the initial values of the Action items for this role.
18547 If you put something in any of the action fields for this role, that will
18548 override whatever was in the corresponding field of the initializer role.
18550 You might use this field if the &quot;Action&quot; part of one of your roles
18551 is something you want to use in more than one role.
18552 Instead of filling in those action values again for each role, you
18553 may give the nickname of the role where the values are filled in.
18554 It's just a shortcut way to define Role Actions.
18556 Here's an example to help explain how this works.
18557 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18558 (among other things)
18560 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18562 set.
18563 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18564 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18565 from role1 by default (and any of the other inheritable action values
18566 that are set).
18567 So if role2 had
18569 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18571 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18572 However, if role2 had
18574 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18576 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18578 If you wish,
18579 you may choose a nickname from your list of roles by using the
18580 &quot;T&quot; command.
18581 If the role you are using to initialize also has a role it initializes from,
18582 then that initialization happens first.
18583 That is, inheritance works as expected with the grandparent and
18584 great-grandparent (and so on) roles having the expected effect.
18586 Look <A HREF="h_edit_nav_cmds">here</A>
18587 to see the available Editing and Navigation commands.
18589 &lt;End of help on this topic&gt;
18590 </BODY>
18591 </HTML>
18592 ======= h_config_role_setfrom =======
18593 <HTML>
18594 <HEAD>
18595 <TITLE>Set From Explained</TITLE>
18596 </HEAD>
18597 <BODY>
18598 <H1>Set From Explained</H1>
18600 This describes part of the action to be taken if the Pattern for this
18601 role is a match.
18602 This field consists of a single address that will be used as the From
18603 address on the message you are sending.
18604 This should be a fully-qualified address like
18606 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18608 or just
18610 <CENTER><SAMP>user@domain</SAMP></CENTER>
18612 If you wish,
18613 you may choose an address from your address book with the
18614 &quot;T&quot; command.
18616 If this is left blank, then your normal From address will be used.
18618 You may also find it useful to add the changed From address to the
18619 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18620 configuration option.
18622 Look <A HREF="h_edit_nav_cmds">here</A>
18623 to see the available Editing and Navigation commands.
18625 &lt;End of help on this topic&gt;
18626 </BODY>
18627 </HTML>
18628 ======= h_config_role_setreplyto =======
18629 <HTML>
18630 <HEAD>
18631 <TITLE>Set Reply-To Explained</TITLE>
18632 </HEAD>
18633 <BODY>
18634 <H1>Set Reply-To Explained</H1>
18636 This describes part of the action to be taken if the Pattern for this
18637 role is a match.
18638 This field consists of a single address that will be used as the Reply-To
18639 address on the message you are sending.
18640 This may be a fully-qualified address like
18642 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18644 or just
18646 <CENTER><SAMP>user@domain</SAMP></CENTER>
18648 If you wish,
18649 you may choose an address from your address book with the
18650 &quot;T&quot; command.
18652 If this is left blank, then there won't be a Reply-To address unless
18653 you have configured one specially with the
18654 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18655 configuration option.
18657 Look <A HREF="h_edit_nav_cmds">here</A>
18658 to see the available Editing and Navigation commands.
18660 &lt;End of help on this topic&gt;
18661 </BODY>
18662 </HTML>
18663 ======= h_config_role_setfcc =======
18664 <HTML>
18665 <HEAD>
18666 <TITLE>Set Fcc Explained</TITLE>
18667 </HEAD>
18668 <BODY>
18669 <H1>Set Fcc Explained</H1>
18671 This describes part of the action to be taken if the Pattern for this
18672 role is a match.
18673 This field consists of a single folder name that will be used in
18674 the Fcc field of the message you are sending.
18675 You may put anything here that you would normally type into the Fcc
18676 field from the composer.
18678 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18679 no Fcc.
18681 A blank field here means that Alpine will use its normal rules for deciding
18682 the default value of the Fcc field.
18683 For many roles, perhaps most, it may make more sense for you to use the
18684 other Alpine facilities for setting the Fcc.
18685 In particular, if you want the Fcc to depend on who you are sending the
18686 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18687 is probably more useful.
18688 In that case, you would want to leave the Fcc field here blank.
18689 However, if you have a role that depends on who the message you are replying
18690 to was From, or what address that message was sent to;
18691 then it might make sense to set the Fcc for that role here.
18693 If you wish,
18694 you may choose a folder from your folder collections by using the
18695 &quot;T&quot; command.
18697 Look <A HREF="h_edit_nav_cmds">here</A>
18698 to see the available Editing and Navigation commands.
18700 &lt;End of help on this topic&gt;
18701 </BODY>
18702 </HTML>
18703 ======= h_config_role_usesmtp =======
18704 <HTML>
18705 <HEAD>
18706 <TITLE>Use SMTP Server Explained</TITLE>
18707 </HEAD>
18708 <BODY>
18709 <H1>Use SMTP Server Explained</H1>
18711 This describes part of the action to be taken if the Pattern for this
18712 role is a match.
18713 If this field has a value, then it will be used as the SMTP server
18714 to send mail when this role is being used (unless the SMTP server variable
18715 is set in the system-wide fixed configuration file).
18716 It has the same semantics as the
18717 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18718 variable in the Setup/Config screen.
18720 If you are using this to post from home when you are at home and from
18721 work when you are at work you need to be careful about postponing messages.
18722 When you postpone a composition that was using a role with this variable
18723 set, the SMTP server list will be saved
18724 with the postponed composition.
18725 It cannot be changed later.
18726 Because of this, you may want to make this a list of SMTP servers
18727 with the preferred server at the front of the list and alternate servers
18728 later in the list.
18729 In your &quot;Home&quot; role you would put the home SMTP server first and
18730 the work SMTP server last.
18731 In your &quot;Work&quot; role you would put the work SMTP server first and
18732 the home SMTP server last.
18733 Then if you start a composition as &quot;Work&quot;, postpone
18734 it, and then later resume it from home the work SMTP server will fail but
18735 the home SMTP server later in the list will succeed.
18737 You may be able to simplify things by making the regular
18738 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18739 variable in the Setup/Config screen a list instead of using roles
18740 to set the SMTP server.
18743 Look <A HREF="h_edit_nav_cmds">here</A>
18744 to see the available Editing and Navigation commands.
18746 &lt;End of help on this topic&gt;
18747 </BODY>
18748 </HTML>
18749 ======= h_config_role_usenntp =======
18750 <HTML>
18751 <HEAD>
18752 <TITLE>Use NNTP Server Explained</TITLE>
18753 </HEAD>
18754 <BODY>
18755 <H1>Use NNTP Server Explained</H1>
18757 This describes part of the action to be taken if the Pattern for this
18758 role is a match.
18759 If this field has a value, then it will be used as the NNTP server
18760 to post to newsgroups when this role is being used (unless the NNTP server
18761 variable
18762 is set in the system-wide fixed configuration file).
18763 It has the same semantics as the
18764 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18765 variable in the Setup/Config screen.
18767 This role setting can facilitate posting to the right nntp server for someone
18768 who reads news from various news sources.  The feature
18769 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18770 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18771 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18772 nntp servers for roles may be more desirable for some people.
18774 If you are using this to post from home when you are at home and from
18775 work when you are at work you need to be careful about postponing messages.
18776 When you postpone a composition that was using a role with this variable
18777 set, the NNTP server list will be saved
18778 with the postponed composition.
18779 It cannot be changed later.
18780 Because of this, you may want to make this a list of NNTP servers
18781 with the preferred server at the front of the list and alternate servers
18782 later in the list.
18783 In your &quot;Home&quot; role you would put the home NNTP server first and
18784 the work NNTP server last.
18785 In your &quot;Work&quot; role you would put the work NNTP server first and
18786 the home NNTP server last.
18787 Then if you start a composition as &quot;Work&quot;, postpone
18788 it, and then later resume it from home the work NNTP server will fail but
18789 the home NNTP server later in the list will succeed.
18791 You may be able to simplify things by making the regular
18792 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18793 variable in the Setup/Config screen a list instead of using roles
18794 to set the NNTP server.
18797 Look <A HREF="h_edit_nav_cmds">here</A>
18798 to see the available Editing and Navigation commands.
18800 &lt;End of help on this topic&gt;
18801 </BODY>
18802 </HTML>
18803 ======= h_config_role_setotherhdr =======
18804 <HTML>
18805 <HEAD>
18806 <TITLE>Set Other Headers Explained</TITLE>
18807 </HEAD>
18808 <BODY>
18809 <H1>Set Other Headers Explained</H1>
18811 This describes part of the action to be taken if the Pattern for this
18812 role is a match.
18813 This field gives you a way to set values for headers besides
18814 &quot;From&quot; and &quot;Reply-To&quot;.
18815 If you want to set either of those, use the specific
18816 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18818 This field is similar to the
18819 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18820 Each header you specify here must include the header tag 
18821 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18822 and may optionally include a value for that header.
18823 In order to see these headers when you compose using this role you 
18824 must use the rich header
18825 <!--chtml if pinemode="function_key"-->(F5)
18826 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18827 Here's an example that shows how you might set the To address.
18829 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18831 Headers set in this way are different from headers set with the
18832 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18833 will replace any value that already exists.
18834 For example, if you are Replying to a message there will already be at
18835 least one address in the To header (the address you are Replying to).
18836 However, if you Reply using a role that sets the To header, that role's
18837 To header value will be used instead.
18839 Limitation: Because commas are used to separate the list of
18840 Other Headers, it is not possible to have the value of a
18841 header contain a comma;
18842 nor is there currently an &quot;escape&quot; mechanism provided
18843 to make this work.
18845 Look <A HREF="h_edit_nav_cmds">here</A>
18846 to see the available Editing and Navigation commands.
18848 &lt;End of help on this topic&gt;
18849 </BODY>
18850 </HTML>
18851 ======= h_config_role_setlitsig =======
18852 <HTML>
18853 <HEAD>
18854 <TITLE>Set Literal Signature Explained</TITLE>
18855 </HEAD>
18856 <BODY>
18857 <H1>Set Literal Signature Explained</H1>
18859 This describes part of the action to be taken if the Pattern for this
18860 role is a match.
18861 This field contains the actual text for your signature, as opposed to
18862 the name of a file containing your signature.
18863 If this is defined it takes precedence over any value set in the
18864 &quot;Set Signature&quot; field.
18866 This is simply a different way to store the signature.
18867 The signature is stored inside your Alpine configuration file instead of in
18868 a separate file.
18869 Tokens work the same way they do with
18870 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18871 help text there for more information.
18874 The two character sequence &#92;n (backslash followed by
18875 the character n) will be used to signify a line-break in your signature.
18876 You don't have to enter the &#92;n, but it will be visible in the
18877 CHANGE THIS ROLE RULE window after you are done editing the signature.
18879 Look <A HREF="h_edit_nav_cmds">here</A>
18880 to see the available Editing and Navigation commands.
18882 &lt;End of help on this topic&gt;
18883 </BODY>
18884 </HTML>
18885 ======= h_config_role_setsig =======
18886 <HTML>
18887 <HEAD>
18888 <TITLE>Set Signature Explained</TITLE>
18889 </HEAD>
18890 <BODY>
18891 <H1>Set Signature Explained</H1>
18893 This describes part of the action to be taken if the Pattern for this
18894 role is a match.
18896 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18897 option from Setup/Config
18898 or the &quot;Set LiteralSig&quot; option for this role are defined,
18899 then this option will be ignored.
18900 You can tell that that is the case because the value of this
18901 option will show up as
18903 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18905 You may either use all Literal Signatures (signatures stored in your
18906 configuration file) throughout Alpine, or all signature files.
18907 You can't mix the two.
18909 This field consists of a filename that will be used as the signature
18910 file when using this role.
18912 If the filename is followed by a vertical bar (|) then instead
18913 of reading the contents of the file the file is assumed to be a
18914 program that will produce the text to be used on its standard output.
18915 The program can't have any arguments and doesn't receive any input from Alpine,
18916 but the rest of the processing works as if the contents came from a file.
18918 Instead of storing the data in a local file, the
18919 signature data may be stored remotely in an IMAP folder.
18920 In order to do this, 
18921 you must use a remote name for the signature.
18922 A remote signature name might look like:
18924 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18927 The syntax used here is the same as the syntax used for a remote
18928 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18929 Note that you may not access an existing signature file remotely,
18930 you have to create a new <EM>folder</EM> that contains the signature data.
18931 If the name you use here for the signature data is a remote name, then when
18932 you edit the file using the &quot;F&quot; command the data will
18933 be saved remotely in the folder.
18934 You aren't required to do anything special to create the folder, it
18935 gets created if you use a remote name.
18938 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18939 the name of the file) you have specified.
18940 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18942 Besides containing regular text, a signature file may also
18943 contain (or a signature program may produce) tokens that are replaced with text
18944 that depends on the message you are replying to or forwarding.
18945 The tokens all look like _word_ (a word surrounded by underscores).
18946 For example, if the token
18948 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18950 is included in the text of the signature file, then when you reply to
18951 or forward a message, the token will be replaced with the actual date
18952 the message you are replying to or forwarding was sent.
18954 If you use a role that has a signature file for a plain composition
18955 (that is, not a reply or forward) then there is no original message, so
18956 any tokens that depend on the message will be replaced with nothing.
18957 So if you want a signature file to be useful for new compositions it
18958 shouldn't include any of the tokens that depend on the message being
18959 replied to or forwarded.
18961 The list of available tokens is
18962 <A HREF="h_index_tokens">here</A>.
18964 Actually, for the adventurous, there is a way to conditionally include text based
18965 on whether or not a token would result in specific replacement text.
18966 For example, you could include some text based on whether or not
18967 the _NEWS_ token would result in any newsgroups if it was used.
18968 It's explained in detail
18969 <A HREF="h_reply_token_conditionals">here</A>.
18971 In the very unlikely event that you want to include a literal token in
18972 a signature file, you must precede it with a backslash character.
18973 For example, to include the literal text _DATE_ you must actually use
18974 &#92;_DATE_.
18975 It is not possible to have a literal backslash followed by an expanded token.
18977 A blank field here means that Alpine will use its normal rules for deciding
18978 which file (if any) to use for the signature file.
18980 An alternate method for storing the signature is available in
18981 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18983 Look <A HREF="h_edit_nav_cmds">here</A>
18984 to see the available Editing and Navigation commands.
18986 &lt;End of help on this topic&gt;
18987 </BODY>
18988 </HTML>
18989 ======= h_config_role_settempl =======
18990 <HTML>
18991 <HEAD>
18992 <TITLE>Set Template Explained</TITLE>
18993 </HEAD>
18994 <BODY>
18995 <H1>Set Template Explained</H1>
18997 This describes part of the action to be taken if the Pattern for this
18998 role is a match.
18999 This field consists of a filename that will be used as the template
19000 file when using this role.
19001 The template file is a file that is included at the top of the message you
19002 are composing.
19004 If the filename is followed by a vertical bar (|) then instead
19005 of reading the contents of the file the file is assumed to be a
19006 program that will produce the text to be used on its standard output.
19007 The program can't have any arguments and doesn't receive any input from Alpine,
19008 but the rest of the processing works as if the contents came from a file.
19010 Instead of storing the data in a local file, the
19011 template may be stored remotely in an IMAP folder.
19012 In order to do this, 
19013 you must use a remote name for the template.
19014 A remote template name might look like:
19016 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
19019 The syntax used here is the same as the syntax used for a remote
19020 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
19021 Note that you may not access an existing template file remotely,
19022 you have to create a new <EM>folder</EM> that contains the template data.
19023 If the name you use here for the template is a remote name, then when
19024 you edit the file using the &quot;F&quot; command the data will
19025 be saved remotely in the folder.
19026 You aren't required to do anything special to create the folder, it
19027 gets created if you use a remote name.
19029 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
19030 the name of the file) you have specified.
19031 If you type &quot;T&quot; you may use a browser to choose an existing filename.
19033 Besides containing regular text, the template file may also
19034 contain (or a template file program may produce) tokens that are replaced with text
19035 that depends on the message you are replying to or forwarding.
19036 The tokens all look like _word_ (a word surrounded by underscores).
19037 For example, if the token
19039 <CENTER><SAMP>_DATE_</SAMP></CENTER>
19041 is included in the text of the template file, then when you reply to
19042 or forward a message, the token will be replaced with the actual date
19043 the message you are replying to or forwarding was sent.
19045 If you use a role that has a template file for a plain composition
19046 (that is, not a reply or forward) then there is no original message, so
19047 any tokens that depend on the message will be replaced with nothing.
19048 So if you want a template file to be useful for new compositions it
19049 shouldn't include any of the tokens that depend on the message being
19050 replied to or forwarded.
19052 The list of available tokens is
19053 <A HREF="h_index_tokens">here</A>.
19055 Actually, for the adventurous, there is a way to conditionally include text based
19056 on whether or not a token would result in specific replacement text.
19057 For example, you could include some text based on whether or not
19058 the _NEWS_ token would result in any newsgroups if it was used.
19059 It's explained in detail
19060 <A HREF="h_reply_token_conditionals">here</A>.
19062 In the very unlikely event that you want to include a literal token in
19063 a template file, you must precede it with a backslash character.
19064 For example, to include the literal text _DATE_ you must actually use
19065 &#92;_DATE_.
19066 It is not possible to have a literal backslash followed by an expanded token.
19068 A blank template field means that Alpine will not use a template file when
19069 this role is being used.
19071 Look <A HREF="h_edit_nav_cmds">here</A>
19072 to see the available Editing and Navigation commands.
19074 &lt;End of help on this topic&gt;
19075 </BODY>
19076 </HTML>
19077 ======= h_config_filt_stat_imp =======
19078 <HTML>
19079 <HEAD>
19080 <TITLE>Set Important Status Explained</TITLE>
19081 </HEAD>
19082 <BODY>
19083 <H1>Set Important Status Explained</H1>
19085 This describes part of the action to be taken if the Pattern for this
19086 filter is a match.
19087 If set to &quot;Don't change it&quot; then this does nothing.
19088 If set to &quot;Set this state&quot; then the Important flag is set
19089 for the matching message.
19090 If set to &quot;Clear this state&quot; then the Important flag is cleared
19091 for the matching message.
19092 The important flag usually causes an asterisk to show up in the MESSAGE
19093 INDEX.
19094 It may also be useful when selecting a set of messages
19095 with the Select command.
19097 Look <A HREF="h_edit_nav_cmds">here</A>
19098 to see the available Editing and Navigation commands.
19100 &lt;End of help on this topic&gt;
19101 </BODY>
19102 </HTML>
19103 ======= h_config_filt_stat_new =======
19104 <HTML>
19105 <HEAD>
19106 <TITLE>Set New Status Explained</TITLE>
19107 </HEAD>
19108 <BODY>
19109 <H1>Set New Status Explained</H1>
19111 This describes part of the action to be taken if the Pattern for this
19112 filter is a match.
19113 If set to &quot;Don't change it&quot; then this does nothing.
19114 If set to &quot;Set this state&quot; then the
19115 matching message is marked New.
19116 If set to &quot;Clear this state&quot; then the
19117 matching message is marked Seen.
19119 Look <A HREF="h_edit_nav_cmds">here</A>
19120 to see the available Editing and Navigation commands.
19122 &lt;End of help on this topic&gt;
19123 </BODY>
19124 </HTML>
19125 ======= h_config_filt_stat_ans =======
19126 <HTML>
19127 <HEAD>
19128 <TITLE>Set Answered Status Explained</TITLE>
19129 </HEAD>
19130 <BODY>
19131 <H1>Set Answered Status Explained</H1>
19133 This describes part of the action to be taken if the Pattern for this
19134 filter is a match.
19135 If set to &quot;Don't change it&quot; then this does nothing.
19136 If set to &quot;Set this state&quot; then the Answered flag is set
19137 for the matching message.
19138 If set to &quot;Clear this state&quot; then the Answered flag is cleared
19139 for the matching message.
19141 Look <A HREF="h_edit_nav_cmds">here</A>
19142 to see the available Editing and Navigation commands.
19144 &lt;End of help on this topic&gt;
19145 </BODY>
19146 </HTML>
19147 ======= h_config_filt_stat_del =======
19148 <HTML>
19149 <HEAD>
19150 <TITLE>Set Deleted Status Explained</TITLE>
19151 </HEAD>
19152 <BODY>
19153 <H1>Set Deleted Status Explained</H1>
19155 This describes part of the action to be taken if the Pattern for this
19156 filter is a match.
19157 If set to &quot;Don't change it&quot; then this does nothing.
19158 If set to &quot;Set this state&quot; then the
19159 matching message is marked Deleted.
19160 If set to &quot;Clear this state&quot; then the
19161 matching message is marked UnDeleted.
19163 You should not use this option unless you are prepared to have matching
19164 messages expunged from the folder permanently.
19165 For example, if you type the Expunge command, this filter is applied
19166 before the expunge, so matching messages will be marked Deleted and then
19167 will be permanently expunged from the folder.
19168 However, since the index isn't redrawn in between the time that the message
19169 is marked Deleted and the time that you are asked to expunge, the only
19170 indication that you are expunging the message comes in the number of messages
19171 being expunged.
19172 The same thing may happen when you close a folder.
19173 It is also possible that an expunge not initiated by you will
19174 delete matching messages.
19176 Look <A HREF="h_edit_nav_cmds">here</A>
19177 to see the available Editing and Navigation commands.
19179 &lt;End of help on this topic&gt;
19180 </BODY>
19181 </HTML>
19182 ======= h_config_role_scoreval =======
19183 <HTML>
19184 <HEAD>
19185 <TITLE>Score Value Explained</TITLE>
19186 </HEAD>
19187 <BODY>
19188 <H1>Score Value Explained</H1>
19190 A message's score is the sum of the Score Values from all of the Scoring rules
19191 with Patterns that match the message.
19192 The value you give here is the Score Value associated with this rule.
19193 A Score Value is an integer between -100 and 100, with the default
19194 value of zero.
19196 Alternatively, if the
19197 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
19198 field is defined
19199 (on the line right below the &quot;Score Value&quot; field)
19200 then the &quot;Score Value&quot; is ignored and
19201 the &quot;Score From Header&quot; field is used instead.
19203 Look <A HREF="h_edit_nav_cmds">here</A>
19204 to see the available Editing and Navigation commands.
19206 &lt;End of help on this topic&gt;
19207 </BODY>
19208 </HTML>
19209 ======= h_config_role_scorehdrtok =======
19210 <HTML>
19211 <HEAD>
19212 <TITLE>Score Value From Header Explained</TITLE>
19213 </HEAD>
19214 <BODY>
19215 <H1>Score Value From Header Explained</H1>
19217 This option provides a way to use a number that appears in the headers of your
19218 messages as the message's score, or as a component of that score.
19219 If this field is defined then it is used instead of the &quot;Score Value&quot;.
19220 The idea behind this option is that there may be a score embedded in the
19221 headers of messages that has already been calculated outside of Alpine.
19222 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
19223 somewhere in that header there is a score.
19225 The value for this option is the name of the header followed by parentheses
19226 with two arguments inside:
19228 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
19230 No space is allowed between the comma and the start of the field_separators.
19231 It would be interpreted as the first separator if it was there.
19232 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
19233 starts after that and goes to the second separator, and so on.
19234 It's easier to explain with examples.
19236 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
19238 In the above example the header that is used is the &quot;X-Spam&quot; header.
19239 The value of that header (the part after the colon and the space) is split
19240 into fields separated by spaces.
19242 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
19244 The second field is selected and converted to an integer. It only makes sense
19245 if Field2 really is an integer.
19247 Here's an example of a SpamAssassin header.
19248 The exact look of the header will vary, but if your incoming mail
19249 contains headers that look like the following
19251 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19253 you might want to use the hits value as a score.
19254 Since the score is an integer value you can't make use of the decimal part of
19255 the number, but
19256 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
19257 and &quot;.&quot; as your separators.
19259 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
19261 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
19262 hits.
19263 The second field is &quot;10&quot; so the score value would be 10.
19265 Another example we've seen has headers that look like
19267 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19269 Because there are two equals before the 7% the value
19271 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
19273 should capture the probability as the score.
19275 The Score From Header scoring value actually works just like the
19276 regular Score Value in that the rest of the pattern has to match before
19277 it is used and the scores from all the different scoring rules that
19278 match for a particular message are added together.
19279 When using the Score From Header method it may (or may not) make sense to
19280 use only a single scoring rule with a pattern that matches every message.
19282 Look <A HREF="h_edit_nav_cmds">here</A>
19283 to see the available Editing and Navigation commands.
19285 &lt;End of help on this topic&gt;
19286 </BODY>
19287 </HTML>
19288 ======= h_config_role_replyuse =======
19289 <HTML>
19290 <HEAD>
19291 <TITLE>Reply Use Explained</TITLE>
19292 </HEAD>
19293 <BODY>
19294 <H1>Reply Use Explained</H1>
19296 This option determines how this particular role will be used when Replying
19297 to a message.
19298 There are three possible values for this option.
19299 The value &quot;Never&quot;
19300 means that this role will not be a candidate for use when Replying.
19301 The role's Pattern will not be checked for a match, however the role will
19302 be available to be manually switched to if there is a confirmation prompt.
19305 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19306 mean that you do want to consider this role when Replying.
19307 For either of these settings, the role's Pattern will be compared with
19308 the message being replied to.
19309 If there is a match then this role will either be used without confirmation
19310 or will be the default when confirmation is asked for, depending on
19311 which of the two options is selected.
19312 If confirmation is requested, you will also have a chance to
19313 manually change the role to any one of your other roles.
19316 You won't be prompted for confirmation if none of your role Patterns
19317 match the message being replied to.
19318 This is independent of the value of the current option.
19319 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19320 feature may be used to change this behavior.
19322 &lt;End of help on this topic&gt;
19323 </BODY>
19324 </HTML>
19325 ======= h_config_role_forwarduse =======
19326 <HTML>
19327 <HEAD>
19328 <TITLE>Forward Use Explained</TITLE>
19329 </HEAD>
19330 <BODY>
19331 <H1>Forward Use Explained</H1>
19333 This option determines how this particular role will be used when Forwarding
19334 a message.
19335 There are three possible values for this option.
19336 The value &quot;Never&quot;
19337 means that this role will not be a candidate for use when Forwarding.
19338 The role's Pattern will not be checked for a match, however the role will
19339 be available to be manually switched to if there is a confirmation prompt.
19342 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19343 mean that you do want to consider this role when Forwarding.
19344 For either of these settings, the role's Pattern will be compared with
19345 the message being forwarded.
19346 If there is a match then this role will either be used without confirmation
19347 or will be the default when confirmation is asked for, depending on
19348 which of the two options is selected.
19349 If confirmation is requested, you will also have a chance to
19350 manually change the role to any one of your other roles.
19353 You won't be prompted for confirmation if none of your role Patterns
19354 match the message being forwarded.
19355 This is independent of the value of the current option.
19356 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19357 feature may be used to change this behavior.
19359 &lt;End of help on this topic&gt;
19360 </BODY>
19361 </HTML>
19362 ======= h_config_role_composeuse =======
19363 <HTML>
19364 <HEAD>
19365 <TITLE>Compose Use Explained</TITLE>
19366 </HEAD>
19367 <BODY>
19368 <H1>Compose Use Explained</H1>
19370 This option determines how this particular role will be used when Composing
19371 a new message using the &quot;Compose&quot; command.
19372 This does not affect what happens when using the &quot;Role&quot; command
19373 to compose a new message.
19374 The &quot;Role&quot; command allows you to select a role from all of the
19375 roles you have defined, regardless of what Uses you've assigned to those
19376 roles.
19379 There are three possible values for this option.
19380 The value &quot;Never&quot;
19381 means that this role will not be a candidate for use when Composing.
19382 The role's Current Folder Type will not be checked for a match, however the role
19383 will be available to be manually switched to if there is a confirmation prompt.
19386 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19387 mean that you do want to consider this role when Composing.
19388 For either of these settings,
19389 the role's Current Folder Type will be checked (since there is no message
19390 to compare with, the rest of the Pattern is considered a match).
19391 If there is a match then this role will either be used without confirmation
19392 or will be the default when confirmation is asked for, depending on
19393 which of the two options is selected.
19394 If confirmation is requested, you will also have a chance to
19395 manually change the role to any one of your other roles.
19398 When using the Compose command the role checking is a little different
19399 because there is no message being replied to or forwarded.
19400 Because of this the Current Folder Type is checked but the header pattern
19401 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
19402 A role is considered to be a match if it is a candidate for Compose Use and
19403 its Current Folder Type matches the currently open folder.
19404 This could be useful if you want to set a role based on the folder you
19405 are reading, or the type of folder you are reading.
19408 You won't be prompted for confirmation if none of your role Patterns
19409 are a match.
19410 This is independent of the value of the current option.
19411 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19412 feature may be used to change this behavior.
19414 &lt;End of help on this topic&gt;
19415 </BODY>
19416 </HTML>
19417 ======= h_config_filter_folder =======
19418 <HTML>
19419 <HEAD>
19420 <TITLE>Filter Folder Explained</TITLE>
19421 </HEAD>
19422 <BODY>
19423 <H1>Filter Folder Explained</H1>
19425 When the Filter Action is set to &quot;Move&quot;,
19426 the folder or folders specified here will be used to store messages matching
19427 the provided pattern.
19430 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19431 here.
19434 If you wish,
19435 you may choose a folder from your folder collections by using the
19436 &quot;T&quot; command.
19438 Besides regular text, the folder name may also contain
19439 tokens that are replaced with text representing the current date
19440 when you run Alpine.
19441 For example, if the folder name you use is
19443 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19445 that is replaced with something like
19447 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19451 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19453 becomes
19455 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19457 The token names must be surrounded by underscores in order to be recognized
19458 as tokens.
19459 The tokens that may be used are those that are derived from the current date.
19460 They're listed near the bottom of the list of tokens give
19461 <A HREF="h_index_tokens">here</A>.
19463 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19464 for more information on Patterns.
19466 Look <A HREF="h_edit_nav_cmds">here</A>
19467 to see the available Editing and Navigation commands.
19469 &lt;End of help on this topic&gt;
19470 </BODY>
19471 </HTML>
19472 ======= h_config_filter_kw_set =======
19473 <HTML>
19474 <HEAD>
19475 <TITLE>Set These Keywords Explained</TITLE>
19476 </HEAD>
19477 <BODY>
19478 <H1>Set These Keywords Explained</H1>
19480 This describes part of the action to be taken if the Pattern for this
19481 filter is a match.
19482 Read a little about keywords in the help text for the
19483 <A HREF="h_common_flag">Flag</A> command.
19484 This option is a list of keywords that will be Set when there is a match.
19485 If you wish, you may choose keywords from the list of keywords you have
19486 defined with the &quot;T&quot; command.
19487 You may add new keywords by defining them in the
19488 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19489 If you have given a keyword a nickname when configuring it,
19490 that nickname may be used instead of the actual keyword.
19493 Look <A HREF="h_edit_nav_cmds">here</A>
19494 to see the available Editing and Navigation commands.
19496 &lt;End of help on this topic&gt;
19497 </BODY>
19498 </HTML>
19499 ======= h_config_filter_kw_clr =======
19500 <HTML>
19501 <HEAD>
19502 <TITLE>Clear These Keywords Explained</TITLE>
19503 </HEAD>
19504 <BODY>
19505 <H1>Clear These Keywords Explained</H1>
19507 This describes part of the action to be taken if the Pattern for this
19508 filter is a match.
19509 Read a little about keywords in the help text for the
19510 <A HREF="h_common_flag">Flag</A> command.
19511 This option is a list of keywords that will be Cleared when there is a match.
19512 If you wish, you may choose keywords from the list of keywords you have
19513 defined with the &quot;T&quot; command.
19514 You may add new keywords by defining them in the
19515 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19516 If you have given a keyword a nickname when configuring it,
19517 that nickname may be used instead of the actual keyword.
19520 Look <A HREF="h_edit_nav_cmds">here</A>
19521 to see the available Editing and Navigation commands.
19523 &lt;End of help on this topic&gt;
19524 </BODY>
19525 </HTML>
19526 ======= h_index_tokens =======
19527 <HTML>
19528 <HEAD>
19529 <TITLE>Tokens for Index and Replying</TITLE>
19530 </HEAD>
19531 <BODY>
19533 This set of special tokens may be used in the
19534 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19535 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19536 in signature files,
19537 in template files used in
19538 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19539 that is the target of a Filter Rule.
19540 Some of them aren't available in all situations.
19542 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19543 option, but they must be surrounded by underscores for the
19544 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19545 and in the target of Filter Rules.
19549 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19551 <DL>
19552 <DT>SUBJECT</DT>
19553 <DD>
19554 This token represents the Subject the sender gave the message.
19555 Alternatives for use in the index screen are SHORTSUBJECT,
19556 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19557 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19558 You may color the subject text in the MESSAGE INDEX screen differently by using the
19559 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19560 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19561 options available from
19562 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19563 </DD>
19565 <DT>FROM</DT>
19566 <DD>
19567 This token represents the personal name (or email address if the name
19568 is unavailable) of the person specified in the message's &quot;From:&quot;
19569 header field.
19570 You may color the from text in the MESSAGE INDEX screen differently by using the
19571 <A HREF="h_config_index_from_color">Index From Color</A>
19572 option available from
19573 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19574 </DD>
19576 <DT>ADDRESS</DT>
19577 <DD>
19578 This is similar to the &quot;FROM&quot; token, only it is always the
19579 email address, never the personal name.
19580 For example, &quot;mailbox@domain&quot;.
19581 </DD>
19583 <DT>MAILBOX</DT>
19584 <DD>
19585 This is the same as the &quot;ADDRESS&quot; except that the 
19586 domain part of the address is left off.
19587 For example, &quot;mailbox&quot;.
19588 </DD>
19590 <DT>SENDER</DT>
19591 <DD>
19592 This token represents the personal name (or email address) of the person
19593 listed in the message's &quot;Sender:&quot; header field.
19594 </DD>
19596 <DT>TO</DT>
19597 <DD>
19598 This token represents the personal names (or email addresses if the names
19599 are unavailable) of the persons specified in the
19600 message's &quot;To:&quot; header field.
19601 </DD>
19603 <DT>NEWSANDTO</DT>
19604 <DD>
19605 This token represents the newsgroups from the
19606 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19607 the personal names (or email addresses if the names
19608 are unavailable) of the persons specified in the
19609 message's &quot;To:&quot; header field.
19610 </DD>
19612 <DT>TOANDNEWS</DT>
19613 <DD>
19614 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19615 </DD>
19617 <DT>NEWS</DT>
19618 <DD>
19619 This token represents the newsgroups from the
19620 message's &quot;Newsgroups:&quot; header field.
19621 </DD>
19623 <DT>CC</DT>
19624 <DD>
19625 This token represents the personal names (or email addresses if the names
19626 are unavailable) of the persons specified in the
19627 message's &quot;Cc:&quot; header field.
19628 </DD>
19630 <DT>RECIPS</DT>
19631 <DD>
19632 This token represents the personal names (or email addresses if the names
19633 are unavailable) of the persons specified in both the
19634 message's &quot;To:&quot; header field and
19635 the message's &quot;Cc:&quot; header field.
19636 </DD>
19638 <DT>NEWSANDRECIPS</DT>
19639 <DD>
19640 This token represents the newsgroups from the
19641 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19642 the personal names (or email addresses if the names
19643 are unavailable) of the persons specified in the
19644 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19645 </DD>
19647 <DT>RECIPSANDNEWS</DT>
19648 <DD>
19649 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19650 </DD>
19652 <DT>INIT</DT>
19653 <DD>
19654 This token represents the initials from the personal name
19655 of the person specified in the message's &quot;From:&quot;
19656 header field.
19657 If there is no personal name, it is blank.
19658 </DD>
19660 <DT>DATE</DT>
19661 <DD>
19662 This token represents the date on which the message was sent, according
19663 to the &quot;Date&quot; header field.
19664 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19665 The feature
19666 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19667 which adjusts for the timezone the message was sent from,
19668 may have an effect on the value of this token as well as the values of
19669 all of the other DATE or TIME tokens.
19670 Some of the DATE and TIME tokens are displayed in a locale-specific
19671 way unless the option
19672 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19673 </DD>
19675 <DT>SMARTDATE</DT>
19676 <DD>
19677 This token represents the date on which the message was sent, according
19678 to the &quot;Date&quot; header field.
19679 It is &quot;Today&quot; if the message was sent today,
19680 &quot;Yesterday&quot; for yesterday,
19681 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19682 message is from last year and is more than six months old it includes the year, as well.
19683 See the SMARTDATE alternatives below, as well.
19684 </DD>
19686 <DT>SMARTTIME</DT>
19687 <DD>
19688 This token represents the most relevant elements of the date on which
19689 the message was sent (according to the &quot;Date&quot; header field),
19690 in a compact form. If the message was sent today, only the time is used
19691 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19692 the past week, the day of the week and the hour are used
19693 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19694 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19695 &quot;9Apr98&quot;).
19696 </DD>
19698 <DT>SMARTTIME24</DT>
19699 <DD>
19700 This token has the structure &quot;day hour:minute&quot;
19701 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19702 from the current date, or &quot;month day&quot; (e.g.
19703 &quot;Nov 23&quot;) for messages dated less than 6 months
19704 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19705 for messages dated more than 6 months ago. It uses 9 characters
19706 of the width of the screen, and it left aligned.
19707 </DD>
19709 <DT>SMARTDATETIME</DT>
19710 <DD>
19711 This is a combination of SMARTDATE and SMARTTIME.
19712 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19713 case it is SMARTTIME.
19714 See the SMARTDATETIME alternatives below, as well.
19715 </DD>
19717 <DT>DATEISO</DT>
19718 <DD>
19719 This token represents the date on which the message was sent, according
19720 to the &quot;Date&quot; header field.
19721 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19722 </DD>
19724 <DT>SHORTDATEISO</DT>
19725 <DD>
19726 This token represents the date on which the message was sent, according
19727 to the &quot;Date&quot; header field.
19728 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19729 </DD>
19731 <DT>SHORTDATE1</DT>
19732 <DD>
19733 This token represents the date on which the message was sent, according
19734 to the &quot;Date&quot; header field.
19735 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19736 </DD>
19738 <DT>SHORTDATE2</DT>
19739 <DD>
19740 This token represents the date on which the message was sent, according
19741 to the &quot;Date&quot; header field.
19742 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19743 </DD>
19745 <DT>SHORTDATE3</DT>
19746 <DD>
19747 This token represents the date on which the message was sent, according
19748 to the &quot;Date&quot; header field.
19749 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19750 </DD>
19752 <DT>SHORTDATE4</DT>
19753 <DD>
19754 This token represents the date on which the message was sent, according
19755 to the &quot;Date&quot; header field.
19756 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19757 </DD>
19759 <DT>LONGDATE</DT>
19760 <DD>
19761 This token represents the date on which the message was sent, according
19762 to the &quot;Date&quot; header field.
19763 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19764 </DD>
19766 <DT>SMARTDATE alternatives</DT>
19767 <DD>
19768 There are several versions of SMARTDATE that are all the same except
19769 for the way they format dates far in the past.
19770 SMARTDATE formats the date using the information from your locale settings
19771 to format the date string. It may end up formatting dates so that they look
19772 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19773 The feature
19774 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19775 may have an effect on the values of these tokens.
19776 If you want more control you may use one of the following.
19777   <DL>
19778   <DT>SMARTDATE</DT> <DD>If the option
19779 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19780 then this will be locale specific. Control this with the
19781 LC_TIME locale setting on a UNIX system. On Windows
19782 the Regional Options control panel may be used to set the Short date
19783 format. At the programming level, the strftime routine is what Alpine
19784 uses to print the date.
19785 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19786 to SMARTDATES1.</DD>
19787   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19788   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19789   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19790   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19791   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19792   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19793   </DL>
19794 </DD>
19796 <DT>SMARTDATETIME alternatives</DT>
19797 <DD>
19798 There are several versions of SMARTDATETIME that are all very similar.
19799 The ones that end in 24 use a 24-hour clock for Today's messages instead
19800 of a 12-hour clock.
19801 The other variation is
19802 for the way they format dates far in the past.
19803 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19804 to format the date string. It may end up formatting dates so that they look
19805 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19806 The feature
19807 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19808 may have an effect on the values of these tokens.
19809 The possible choices are:
19810   <DL>
19811   <DT>SMARTDATETIME</DT> <DD>If the option
19812 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19813 then this will be locale specific. Control this with the
19814 LC_TIME locale setting on a UNIX system. On Windows
19815 the Regional Options control panel may be used to set the Short date
19816 format. At the programming level, the strftime routine is what Alpine
19817 uses to print the date.
19818 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19819 to SMARTDATETIMES1.</DD>
19820   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19821   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19822   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19823   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19824   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19825   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19826   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19827   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19828   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19829   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19830   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19831   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19832   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19833   </DL>
19834 </DD>
19836 <DT>DAYDATE</DT>
19837 <DD>
19838 This token represents the date on which the message was sent, according
19839 to the &quot;Date&quot; header field.
19840 It looks like &quot;Sat, 23 Oct 1998&quot;.
19841 This token is never converted in any locale-specific way.
19842 </DD>
19844 <DT>PREFDATE</DT>
19845 <DD>
19846 This token represents the date on which the message was sent, according
19847 to the &quot;Date&quot; header field.
19848 It is your operating system's idea of the preferred date representation for the current locale.
19849 Internally it uses the %x version of the date from the strftime routine.
19850 </DD>
19852 <DT>PREFTIME</DT>
19853 <DD>
19854 This token represents the time at which the message was sent, according
19855 to the &quot;Date&quot; header field.
19856 It is the preferred time representation for the current locale.
19857 Internally it uses the %X version of the time from the strftime routine.
19858 </DD>
19860 <DT>PREFDATETIME</DT>
19861 <DD>
19862 This token represents the date and time at which the message was sent, according
19863 to the &quot;Date&quot; header field.
19864 It is the preferred date and time representation for the current locale.
19865 Internally it uses the %c version of the time from the strftime routine.
19866 </DD>
19868 <DT>DAY</DT>
19869 <DD>
19870 This token represents the day of the month on which the message was sent,
19871 according to the &quot;Date&quot; header field.
19872 For example, &quot;23&quot; or &quot;9&quot;.
19873 </DD>
19875 <DT>DAY2DIGIT</DT>
19876 <DD>
19877 This token represents the day of the month on which the message was sent,
19878 according to the &quot;Date&quot; header field.
19879 For example, &quot;23&quot; or &quot;09&quot;.
19880 It is always 2 digits.
19881 </DD>
19883 <DT>DAYORDINAL</DT>
19884 <DD>
19885 This token represents the ordinal number that is the day of
19886 the month on which the message was sent,
19887 according to the &quot;Date&quot; header field.
19888 For example, &quot;23rd&quot; or &quot;9th&quot;.
19889 </DD>
19891 <DT>DAYOFWEEK</DT>
19892 <DD>
19893 This token represents the day of the week on which the message was sent,
19894 according to the &quot;Date&quot; header field.
19895 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19896 </DD>
19898 <DT>DAYOFWEEKABBREV</DT>
19899 <DD>
19900 This token represents the day of the week on which the message was sent,
19901 according to the &quot;Date&quot; header field.
19902 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19903 </DD>
19905 <DT>MONTHABBREV</DT>
19906 <DD>
19907 This token represents the month the message was sent, according
19908 to the &quot;Date&quot; header field.
19909 For example, &quot;Oct&quot;.
19910 </DD>
19912 <DT>MONTHLONG</DT>
19913 <DD>
19914 This token represents the month in which the message was sent, according
19915 to the &quot;Date&quot; header field.
19916 For example, &quot;October&quot;.
19917 </DD>
19919 <DT>MONTH</DT>
19920 <DD>
19921 This token represents the month in which the message was sent, according
19922 to the &quot;Date&quot; header field.
19923 For example, &quot;10&quot; or &quot;9&quot;.
19924 </DD>
19926 <DT>MONTH2DIGIT</DT>
19927 <DD>
19928 This token represents the month in which the message was sent, according
19929 to the &quot;Date&quot; header field.
19930 For example, &quot;10&quot; or &quot;09&quot;.
19931 It is always 2 digits.
19932 </DD>
19934 <DT>YEAR</DT>
19935 <DD>
19936 This token represents the year the message was sent, according
19937 to the &quot;Date&quot; header field.
19938 For example, &quot;1998&quot; or &quot;2001&quot;.
19939 </DD>
19941 <DT>YEAR2DIGIT</DT>
19942 <DD>
19943 This token represents the year the message was sent, according
19944 to the &quot;Date&quot; header field.
19945 For example, &quot;98&quot; or &quot;01&quot;.
19946 It is always 2 digits.
19947 </DD>
19949 <DT>TIME24</DT>
19950 <DD>
19951 This token represents the time at which the message was sent, according
19952 to the &quot;Date&quot; header field.
19953 There is no adjustment made for different time zones, so you'll get
19954 the time the message was sent according to the time zone the sender
19955 was in.
19956 It has the format HH:MM. For example, &quot;17:28&quot;.
19957 </DD>
19959 <DT>TIME12</DT>
19960 <DD>
19961 This token represents the time at which the message was sent, according
19962 to the &quot;Date&quot; header field.
19963 This time is for a 12 hour clock.
19964 It has the format HH:MMpm.
19965 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19966 </DD>
19968 <DT>TIMEZONE</DT>
19969 <DD>
19970 This token represents the numeric timezone from
19971 the &quot;Date&quot; header field.
19972 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19973 </DD>
19975 </DL>
19978 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19980 <DL>
19981 <DT>MSGNO</DT>
19982 <DD>
19983 This token represents the message's current position in the folder that,
19984 of course, may change as the folder is sorted or new mail arrives.
19985 </DD>
19987 <DT>STATUS</DT>
19988 <DD>
19989 This token represents a three character wide field displaying various
19990 aspects of the message's state.
19991 The first character is either blank,
19992 a '*' for message marked Important, or a '+' indicating a message
19993 addressed directly to you (as opposed to your having received it via a
19994 mailing list, for example).
19995 When the feature
19996 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19997 is set, if the first character would have been
19998 blank then it will instead be a '-' if the message is cc'd to you.
19999 The second character is typically blank,
20000 though the arrow cursor may occupy it if either the 
20001 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
20002 or the
20003 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
20004 is set (or you actually are on a slow link).
20005 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
20006 '<A HREF="h_flag_answered">A</A>' (Answered),
20007 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
20008 '<A HREF="h_flag_new">N</A>' (New), or blank.
20010 If you are using a threaded view of the index and this message is at the
20011 top of a collapsed portion of a thread,
20012 then this token refers to all of the messages in the collapsed portion of
20013 the thread instead of just the top message.
20014 The first character will be a '*' if <EM>any</EM> of the messages in the thread
20015 are marked Important, else a '+' if any of the messages are addressed
20016 to you, else a '-' if any of the messages are cc'd to you.
20017 The third character will be a 'D' if <EM>all</EM> of the messages
20018 in the collapsed thread are marked deleted,
20019 an 'A' if <EM>all</EM> of the messages
20020 in the collapsed thread are marked answered,
20021 it will be an 'N' if any of
20022 the messages are undeleted and unseen, and it will be blank otherwise.
20023 </DD>
20025 <DT>FULLSTATUS</DT>
20026 <DD>
20027 This token represents a less abbreviated alternative
20028 to the &quot;STATUS&quot; token.
20029 It is six characters wide.
20030 The first character is '+', '-', or blank, the
20031 second blank, the third either '*' or blank, the fourth
20032 '<A HREF="h_flag_new">N</A>' or blank,
20033 the fifth '<A HREF="h_flag_answered">A</A>'
20034 or blank, and the sixth character is
20035 either '<A HREF="h_flag_deleted">D</A>' or
20036 blank.
20038 If you are using a threaded view of the index and this message is at the
20039 top of a collapsed portion of a thread,
20040 then this token refers to all of the messages in the collapsed portion of
20041 the thread instead of just the top message.
20042 The first character is '+', '-', or blank depending on whether <EM>any</EM>
20043 of the messages in the collapsed thread are addressed to you or cc'd to you.
20044 The third character will be '*' if any of the messages are marked
20045 Important.
20046 The fourth character will be 'N' if all of the messages in the thread
20047 are New, else 'n' if some of the messages in the thread are New, else blank.
20048 The fifth character will be 'A' or 'a' or blank, and the sixth character
20049 will be 'D' or 'd' or blank.
20050 </DD>
20052 <DT>IMAPSTATUS</DT>
20053 <DD>
20054 This token represents an even less abbreviated alternative to the
20055 &quot;STATUS&quot; token.
20056 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
20057 an 'N' if the message is new to this folder since the last time
20058 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
20059 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
20060 new to the folder since it was last opened <EM>but</EM> has not been
20061 viewed, or a blank if the message has been in the folder since it was
20062 last opened and has been viewed.
20064 If you are using a threaded view of the index and this message is at the
20065 top of a collapsed portion of a thread,
20066 then the fourth character will be
20067 'N' if all of the messages in the thread are unseen and recent;
20068 else 'n' if some of the messages in the thread are unseen and recent;
20069 else 'U' if all of the messages in the thread are unseen and not recent;
20070 else 'u' if some of the messages in the thread are unseen and not recent;
20071 else 'R' if all of the messages in the thread are seen and recent;
20072 else 'r' if some of the messages in the thread are seen and recent;
20073 else blank.
20074 </DD>
20076 <DT>SHORTIMAPSTATUS</DT>
20077 <DD>
20078 This is the same as the last four of the six characters of IMAPSTATUS,
20079 so the '+' To Me information will be missing.
20080 </DD>
20082 <DT>SIZE</DT>
20083 <DD>
20084 This token represents the total size, in bytes, of the message.
20085 If a &quot;K&quot; (Kilobyte)
20086 follows the number, the size is approximately 1,000
20087 times that many bytes (rounded to the nearest 1,000).
20088 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20089 1,000,000 times that many bytes.
20090 Commas are not used in this field.
20091 This field is seven characters wide, including the enclosing parentheses.
20092 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
20093 The progression of sizes used looks like:
20096 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
20098 </DD>
20100 <DT>SIZECOMMA</DT>
20101 <DD>
20102 This token represents the total size, in bytes, of the message.
20103 If a &quot;K&quot; (Kilobyte)
20104 follows the number, the size is approximately 1,000
20105 times that many bytes (rounded to the nearest 1,000).
20106 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20107 1,000,000 times that many bytes.
20108 Commas are used if the number shown is 1,000 or greater.
20109 The SIZECOMMA field is one character wider than the SIZE field.
20110 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
20111 The progression of sizes used looks like:
20114 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
20116 </DD>
20118 <DT>KSIZE</DT>
20119 <DD>
20120 This token represents the total size of the message, expressed in
20121 kilobytes or megabytes, as most appropriate.
20122 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
20123 The progression of sizes used looks like:
20126 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
20128 </DD>
20130 <DT>SIZENARROW</DT>
20131 <DD>
20132 This token represents the total size, in bytes, of the message.
20133 If a &quot;K&quot; (Kilobyte)
20134 follows the number, the size is approximately 1,000
20135 times that many bytes.
20136 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20137 1,000,000 times that many bytes.
20138 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
20139 1,000,000,000 times that many bytes.
20140 This field uses only five characters of screen width, including the enclosing
20141 parentheses.
20142 The progression of sizes used looks like:
20145 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
20147 </DD>
20149 <DT>DESCRIPSIZE</DT>
20150 <DD>
20151 This token is intended to represent a more useful description of the
20152 message than just its size, but it isn't very useful at this point.
20153 The plus sign in this view means there are attachments.
20154 Note that including this token in
20155 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20156 display a little while Alpine collects the necessary information.
20157 </DD>
20159 <DT>SHORTSUBJECT</DT> 
20160 <DD> This token is the same as SUBJECT, but removes 
20161 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
20162 between these characters corresponds to mailing list names, and may be 
20163 unnecessary or unwanted in some instances. 
20164 </DD>
20166 <DT>SUBJKEY</DT>
20167 <DD>
20168 This token is the same as the SUBJECT token unless keywords are set for
20169 the message.
20170 In that case, a list of keywords enclosed in braces will be prepended to
20171 the subject of the message.
20172 Only those keywords that you have defined in your
20173 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20174 in Setup/Config are considered in the list.
20175 In other words, keywords that have been set by some other means, perhaps
20176 by another email program, won't show up unless included in
20177 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20178 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
20179 prepended to the subject in the MESSAGE TEXT screen.
20180 If you have given a keyword a nickname
20181 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20182 instead of the actual keyword.
20183 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20184 option may be used to modify this token slightly.
20185 It is also possible to color keywords in the index using the
20186 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20187 </DD>
20189 <DT>SHORTSUBJKEY</DT>
20190 <DD> This token is the same as SUBJKEY, but it is based on
20191 SHORTSUBJECT, instead of in SUBJECT.
20192 </DD>
20194 <DT>SUBJKEYINIT</DT>
20195 <DD>
20196 This token is the same as the SUBJKEY token except that instead of
20197 prepending a list of keywords to the subject, a list of first initials
20198 of keywords will be prepended instead.
20199 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
20200 set (or Work and Now are the Alpine nicknames of keywords that are set)
20201 then the SUBJKEY token would cause a result like
20203 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
20205 whereas the SUBJKEYINIT token would give
20207 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
20209 Only those keywords that you have defined in your
20210 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20211 in Setup/Config are considered in the list.
20212 In other words, keywords that have been set by some other means, perhaps
20213 by another email program, won't show up unless included in
20214 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20215 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20216 option may be used to modify this token slightly.
20217 It is also possible to color keywords in the index using the
20218 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20219 </DD>
20221 <DT>SHORTSUBJKEYINIT</DT>
20222 <DD> This token is the same as SUBJKEYINIT, but it is based on
20223 SHORTSUBJECT, instead of in SUBJECT.
20224 </DD>
20226 <DT>SUBJECTTEXT</DT>
20227 <DD>
20228 Same as SUBJECT but if there is room in the Subject field for more text,
20229 the opening part of the text of the message is displayed after the subject.
20230 The time needed to fetch the text may cause a performance problem
20231 which can, of course, be avoided by using the SUBJECT version of
20232 the Subject instead.
20233 You may color this opening text differently by using the
20234 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20235 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20236 You may adjust the characters that are displayed between the Subject and the
20237 opening text with the option
20238 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
20239 </DD>
20241 <DT>SUBJKEYTEXT</DT>
20242 <DD>
20243 Same as SUBJKEY but with the opening message text.
20244 </DD>
20246 <DT>OPENINGTEXT</DT>
20247 <DD>
20248 This is similar to SUBJECTTEXT.
20249 Instead of combining the Subject and the opening text in a single
20250 field in the index screen this token allows you to allocate a
20251 separate column just for the opening text of the message.
20252 The time needed to fetch this text may cause a performance problem.
20253 You may color this opening text differently by using the
20254 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20255 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20256 </DD>
20258 <DT>OPENINGTEXTNQ</DT>
20259 <DD>
20260 This is very similar to OPENINGTEXT.
20261 The NQ stands for No Quotes.
20262 The only difference is that quoted text (lines beginning with &gt;) is deleted.
20263 For some messages this may be confusing.
20264 For example, a message might have a line preceding some quoted
20265 text that reads something like &quot;On May 8th person A said.&quot;
20266 That no longer makes sense after the quoted text is deleted and it
20267 will appear that person A said whatever the text after the quote
20268 is, even though that is really person B talking.
20269 </DD>
20271 <DT>SUBJKEYINITTEXT</DT>
20272 <DD>
20273 Same as SUBJKEYINIT but with the opening message text.
20274 </DD>
20276 <DT>KEY</DT>
20277 <DD>
20278 This is a space-delimited list of keywords that are set for the message.
20279 Only those keywords that you have defined in your
20280 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20281 in Setup/Config are considered in the list.
20282 In other words, keywords that have been set by some other means, perhaps
20283 by another email program, won't show up unless included in
20284 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20285 If you have given a keyword a nickname
20286 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20287 instead of the actual keyword.
20288 It is also possible to color keywords in the index using the
20289 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20290 This token defaults to an arbitrary width of 5.
20291 You should set it to whatever width suits you using something
20292 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
20293 </DD>
20295 <DT>KEYINIT</DT>
20296 <DD>
20297 This is a list of keyword initials that are set for the message.
20298 If you have given a keyword a nickname
20299 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
20300 is displayed instead of the initial of the actual keyword.
20301 It is also possible to color keyword initials in the index using the
20302 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20303 This token defaults to an arbitrary width of 2.
20304 You should set it to whatever width suits you using something
20305 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
20306 </DD>
20308 <DT>PRIORITY</DT>
20309 <DD>
20310 The X-Priority header is a non-standard header that is used in a
20311 somewhat standard way by many mail programs.
20312 Alpine expects the value of this header to be a digit with a value
20313 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
20314 Since this priority is something that the sender sets it is only an indication
20315 of the priority that the sender attaches to the mail and it is therefore almost
20316 totally unreliable for use as a filtering criterion.
20317 This token will display the numeric value of the priority if it is between
20318 1 and 5.
20319 It will be suppressed (blank) if the value is 3, which is normal priority.
20320 This token may be colored with the
20321 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20322 </DD>
20324 <DT>PRIORITYALPHA</DT>
20325 <DD>
20326 This is a more verbose interpretation of the X-Priority field.
20327 Once again nothing is displayed unless the value of the field
20328 is 1, 2, 4, or 5.
20329 The values displayed for those values are:
20331 <TABLE>
20332 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
20333 <TR> <TD>2</TD> <TD>High</TD> </TR>
20334 <TR> <TD>4</TD> <TD>Low</TD> </TR>
20335 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
20336 </TABLE>
20338 This token may be colored with the
20339 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20340 </DD>
20342 <DT>PRIORITY!</DT>
20343 <DD>
20344 This is a one character, non-numeric version of the X-Priority field.
20345 If the value of the X-Priority header is 1 or 2 an exclamation
20346 point is displayed.
20347 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
20348 This token may be colored with the
20349 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20350 </DD>
20352 <DT>ATT</DT>
20353 <DD>
20354 This is a one column wide field that represents the number of attachments
20355 a message has. It will be blank if there are no attachments, a single
20356 digit for one to nine attachments, or an asterisk for more than nine.
20357 Note that including this token in
20358 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20359 display a little while Alpine collects the necessary information.
20360 </DD>
20362 <DT>FROMORTO</DT>
20363 <DD>
20364 This token represents <EM>either</EM> the personal name (or email address) of
20365 the person listed in the message's &quot;From:&quot; header
20366 field, <EM>or</EM>, if that address is yours or one of your
20367 <A HREF="h_config_alt_addresses">alternate addresses</A>,
20368 the first person specified in the
20369 message's &quot;To:&quot; header field
20370 with the prefix &quot;To: &quot; prepended.
20371 If the from address is yours and there is also no &quot;To&quot; address,
20372 Alpine will use the address on the &quot;Cc&quot; line.
20373 If there is no address there, either, Alpine will look for a newsgroup name
20374 from the &quot;Newsgroups&quot; header field and put
20375 that after the &quot;To: &quot; prefix.
20376 </DD>
20378 <DT>FROMORTONOTNEWS</DT>
20379 <DD>
20380 This is almost the same as <EM>FROMORTO</EM>.
20381 The difference is that newsgroups aren't considered.
20382 When a message is from you, doesn't have a To or Cc, and does have
20383 a Newsgroups header; this token will be your name instead of the name
20384 of the newsgroup (like it would be with FROMORTO).
20385 </DD>
20387 <DT>TEXT</DT>
20388 <DD>
20389 This is a different sort of token.
20390 It allows you to display a label within each index line.
20391 It will be the same fixed text for each line.
20392 It is different from all the other tokens in that there is no space column
20393 displayed after this token.
20394 Instead, it is butted up against the following field.
20395 It also has a different syntax.
20396 The text to display is given following a colon after the
20397 word &quot;TEXT&quot;.
20398 For example,
20400 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
20402 would insert the literal text &quot;abc=&quot; (without the quotes)
20403 into the index display line.
20404 You must quote the text if it includes space characters, like
20406 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
20408 </DD>
20410 <DT>HEADER</DT>
20411 <DD>
20412 This allows you to display the text from a particular header line in the
20413 message.
20414 The syntax for this token is substantially different from all the others
20415 in order that you might be able to display a portion of the text following
20416 a particular header.
20417 The header name you are interested in is given following a colon
20418 after the word &quot;HEADER&quot;.
20419 For example,
20421 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20423 would display the text of the X-Spam header, if any.
20424 Like for other index tokens a width field may (and probably should)
20425 follow this.
20427 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20429 displays the first ten characters of the X-Spam header.
20430 Unlike other index tokens, the syntax for HEADER is more flexible.
20431 An optional second argument comes after a comma inside the parentheses.
20432 It specifies the &quot;field&quot; number.
20433 By default, the field separator is a space character.
20434 No extra space characters are allowed in the argument list.
20436 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20438 would display the second field, left-justified, in a 10 character
20439 wide field.
20440 The second field would consist of all the text after the first space
20441 up to the next space or the end of the header.
20442 The default field number is zero, which stands for the entire line.
20443 There is also an optional third argument that is a list of field
20444 separators. It defaults to a space character.
20445 The example
20447 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20449 would cause the field separators to be any of colon, percent,
20450 or space (there is a space character between the percent and the
20451 right parenthesis).
20452 The first field runs from the start of the header value up to the first
20453 colon, percent, or space; the second goes from there to the next; and so on.
20454 In order to use a comma character as a field separator you must escape
20455 it by preceding it with a backslash (&#92;).
20456 The same is true of the backslash character itself.
20457 There is one further optional argument.
20458 It is an R or an L to specify right or left adjustment of the text
20459 within the field.
20460 The default is to left justify, however if you are displaying numbers
20461 you might prefer to right justify.
20463 Here's an example of a SpamAssassin header.
20464 The exact look of the header will vary, but if your incoming mail
20465 contains headers that look like the following
20467 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20469 you might want to display the hits value.
20470 The first field starts with the Y in Yes.
20471 To get what you're interested in you might use &quot;=&quot; and
20472 space as the field separators and display the third field, like
20474 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20476 or maybe you would break at the dot instead
20478 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20480 Another example we've seen has headers that look like
20482 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20484 Because there are two equals and a comma before the 7% and a comma
20485 after it, the token
20487 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20489 should display the probability (for example 7% or 83%) right justified
20490 in a 3-wide field.
20491 </DD>
20493 <DT>ARROW</DT>
20494 <DD>
20495 This gives an alternative way to display the current message in the
20496 MESSAGE INDEX screen.
20497 Usually the current message is indicated by the line being shown in
20498 reverse video.
20499 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20500 the current line will include an &quot;arrow&quot; that
20501 looks like
20503 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20505 in the ARROW token's field.
20506 For all of the non-current messages, the ARROW field will be filled
20507 with blanks.
20508 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20509 may be adjusted.
20510 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20511 For example, if you use ARROW(3) you will get
20513 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20515 and ARROW(1) will give you just
20517 <CENTER><SAMP>&gt;</SAMP></CENTER>
20519 It is also possible to set the color of the ARROW field.
20520 By default (and for non-current messages) the arrow is colored the same
20521 as the index line it is part of.
20522 You may set it to be another color with the 
20523 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20524 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20525 </DD>
20527 <DT>SCORE</DT>
20528 <DD>
20529 This gives the
20530 <a href="h_rules_score">score</a>
20531 of each message.
20532 This will be six columns wide to accommodate the widest possible score.
20533 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20534 to limit the width of the field to the widest score that
20535 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20536 If you have not defined any score rules the scores will all be zero.
20537 If any of your score rules contain AllText or BodyText patterns
20538 then including SCORE in the <!--#echo var="VAR_index-format"-->
20539 may slow down the display of the MESSAGE INDEX screen.
20540 </DD>
20541 </DL>
20544 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20546 <DL>
20547 <DT>CURNEWS</DT>
20548 <DD>
20549 This token represents the current newsgroup if there is one.
20550 For example, &quot;comp.mail.pine&quot;.
20551 </DD>
20553 <DT>MSGID</DT>
20554 <DD>
20555 This token represents the message ID of the message.
20556 This token does not work with Filter Rule folder names.
20557 </DD>
20559 <DT>CURDATE</DT>
20560 <DD>
20561 This token represents the current date.
20562 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20563 </DD>
20565 <DT>CURDATEISO</DT>
20566 <DD>
20567 This token represents the current date.
20568 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20569 </DD>
20571 <DT>CURDATEISOS</DT>
20572 <DD>
20573 This token represents the current date.
20574 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20575 </DD>
20577 <DT>CURPREFDATE</DT>
20578 <DD>
20579 This token represents the current date.
20580 It is your operating system's idea of the preferred date representation for the current locale.
20581 Internally it uses the %x version of the date from the strftime routine.
20582 </DD>
20584 <DT>CURPREFTIME</DT>
20585 <DD>
20586 This token represents the current time.
20587 It is the preferred time representation for the current locale.
20588 Internally it uses the %X version of the time from the strftime routine.
20589 </DD>
20591 <DT>CURPREFDATETIME</DT>
20592 <DD>
20593 This token represents the current date and time.
20594 It is the preferred date and time representation for the current locale.
20595 Internally it uses the %c version of the time from the strftime routine.
20596 </DD>
20598 <DT>CURTIME24</DT>
20599 <DD>
20600 This token represents the current time.
20601 It has the format HH:MM. For example, &quot;17:28&quot;.
20602 </DD>
20604 <DT>CURTIME12</DT>
20605 <DD>
20606 This token represents the current time.
20607 This time is for a 12 hour clock.
20608 It has the format HH:MMpm.
20609 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20610 </DD>
20612 <DT>CURDAY</DT>
20613 <DD>
20614 This token represents the current day of the month.
20615 For example, &quot;23&quot; or &quot;9&quot;.
20616 </DD>
20618 <DT>CURDAY2DIGIT</DT>
20619 <DD>
20620 This token represents the current day of the month.
20621 For example, &quot;23&quot; or &quot;09&quot;.
20622 It is always 2 digits.
20623 </DD>
20625 <DT>CURDAYOFWEEK</DT>
20626 <DD>
20627 This token represents the current day of the week.
20628 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20629 </DD>
20631 <DT>CURDAYOFWEEKABBREV</DT>
20632 <DD>
20633 This token represents the current day of the week.
20634 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20635 </DD>
20637 <DT>CURMONTH</DT>
20638 <DD>
20639 This token represents the current month.
20640 For example, &quot;10&quot; or &quot;9&quot;.
20641 </DD>
20643 <DT>CURMONTH2DIGIT</DT>
20644 <DD>
20645 This token represents the current month.
20646 For example, &quot;10&quot; or &quot;09&quot;.
20647 It is always 2 digits.
20648 </DD>
20650 <DT>CURMONTHLONG</DT>
20651 <DD>
20652 This token represents the current month.
20653 For example, &quot;October&quot;.
20654 </DD>
20656 <DT>CURMONTHABBREV</DT>
20657 <DD>
20658 This token represents the current month.
20659 For example, &quot;Oct&quot;.
20660 </DD>
20662 <DT>CURYEAR</DT>
20663 <DD>
20664 This token represents the current year.
20665 For example, &quot;1998&quot; or &quot;2001&quot;.
20666 </DD>
20668 <DT>CURYEAR2DIGIT</DT>
20669 <DD>
20670 This token represents the current year.
20671 For example, &quot;98&quot; or &quot;01&quot;.
20672 It is always 2 digits.
20673 </DD>
20675 <DT>LASTMONTH</DT>
20676 <DD>
20677 This token represents last month.
20678 For example, if this is November (the 11th month),
20679 it is equal to &quot;10&quot; or if this is October (the 10th month),
20680 it is &quot;9&quot;.
20681 It is possible that this and the other tokens beginning with LASTMONTH
20682 below could be useful when used with a Filtering Rule that
20683 has the &quot;Beginning of Month&quot; option set.
20684 </DD>
20686 <DT>LASTMONTH2DIGIT</DT>
20687 <DD>
20688 This token represents last month.
20689 For example, if this is November (the 11th month),
20690 it is equal to &quot;10&quot; or if this is October (the 10th month),
20691 it is &quot;09&quot;.
20692 It is always 2 digits.
20693 </DD>
20695 <DT>LASTMONTHLONG</DT>
20696 <DD>
20697 This token represents last month.
20698 For example, if this is November the value is &quot;October&quot;.
20699 </DD>
20701 <DT>LASTMONTHABBREV</DT>
20702 <DD>
20703 This token represents last month.
20704 For example, if this is November the value is &quot;Oct&quot;.
20705 </DD>
20707 <DT>LASTMONTHYEAR</DT>
20708 <DD>
20709 This token represents what the year was a month ago.
20710 For example, if this is October, 1998, it is &quot;1998&quot;.
20711 If this is January, 1998, it is &quot;1997&quot;.
20712 </DD>
20714 <DT>LASTMONTHYEAR2DIGIT</DT>
20715 <DD>
20716 This token represents what the year was a month ago.
20717 For example, if this is October, 1998, it is &quot;98&quot;.
20718 If this is January, 1998, it is &quot;97&quot;.
20719 </DD>
20721 <DT>LASTYEAR</DT>
20722 <DD>
20723 This token represents last year.
20724 For example, if this is 1998, it equals &quot;1997&quot;.
20725 It is possible that this
20726 could be useful when used with a Filtering Rule that
20727 has the &quot;Beginning of Year&quot; option set.
20728 </DD>
20730 <DT>LASTYEAR2DIGIT</DT>
20731 <DD>
20732 This token represents last year.
20733 For example, if this is 1998, it equals &quot;97&quot;.
20734 It is always 2 digits.
20735 </DD>
20737 <DT>ROLENICK</DT>
20738 <DD>
20739 This token represents the nickname of the
20740 role currently being used.  If no role is being used,
20741 then no text will be printed for this token.
20742 This token does not work with Filter Rule folder names.
20743 </DD>
20744 </DL>
20747 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20748 See the help for the
20749 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20750 to see why you might want to use this.
20751 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20752 must be surrounded by underscores when used.
20754 <DL>
20755 <DT>NEWLINE</DT>
20756 <DD>
20757 This is an end of line marker.
20758 </DD>
20759 </DL>
20762 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20764 <DL>
20765 <DT>CURSORPOS</DT>
20766 <DD>
20767 This token is different from the others.
20768 When it is replaced it is replaced with nothing, but it sets an Alpine
20769 internal variable that tells the composer to start with the cursor
20770 positioned at the position where this token was.
20771 If both the template file and the signature file contain
20772 a &quot;CURSORPOS&quot; token, then the position in the template file
20773 is used.
20774 If there is a template file and neither it nor the signature file contains
20775 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20776 after the end of the contents of the
20777 template file when the composer starts up.
20778 </DD>
20779 </DL>
20782 &lt;End of help on this topic&gt;
20783 </BODY>
20784 </HTML>
20785 ======= h_reply_token_conditionals =======
20786 <HTML>
20787 <HEAD>
20788 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20789 </HEAD>
20790 <BODY>
20791 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20793 Conditional text inclusion may be used with
20794 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20795 in signature files, and in template files used in
20796 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20797 It may <EM>not</EM> be used with the
20798 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20801 There is a limited if-else capability for including text.
20802 The if-else condition is based
20803 on whether or not a given token would result in replacement text you
20804 specify.
20805 The syntax of this conditional inclusion is
20807 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20809 The left parenthesis must follow the underscore immediately, with no
20810 intervening space.
20811 It means the token is expanded and the results of that expansion are
20812 compared against the &quot;match_this&quot; argument.
20813 If there is an exact match, then the &quot;if_matched&quot; text is used
20814 as the replacement text.
20815 Otherwise, the &quot;if_not_matched&quot; text is used.
20816 One of the most useful values for the &quot;match_this&quot; argument is
20817 the empty string, &quot;&quot;.
20818 In that case the expansion is compared against the empty string.
20820 Here's an example to make it clearer.
20821 This text could be included in one of your template files:
20823 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20825 If that is included in a template file that you are using while replying
20826 to a message (because you chose to use the role it was part of),
20827 and that message has a newsgroup header and a newsgroup in that header,
20828 then the text
20830 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20832 will be included in the message you are about to compose.
20833 On the other hand, if the message you are replying to does not have
20834 a newsgroup, then the text
20836 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20838 would be included instead.
20839 This would also work in signature files and in
20840 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20841 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20842 or &quot;if_not_matched&quot; arguments contain
20843 spaces, parentheses, or commas;
20844 they have to be quoted with double quotation marks (like in the example
20845 above).
20846 If you want to include a literal quote (&quot;) in the text you must escape the
20847 quote by preceding it with a backslash (&#92;) character.
20848 If you want to include a literal backslash character you must escape it
20849 by preceding it with another backslash.
20851 The comma followed by &quot;if_not_matched&quot; is optional.
20852 If there is no &quot;if_not_matched&quot;
20853 present then no text is included if the not_matched case is true.
20854 Here's another example:
20856 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20858 Here you can see that tokens may appear in the arguments.
20859 The same is true for tokens with the conditional parentheses.
20860 They may appear in arguments,
20861 though you do have to be careful to get the quoting and escaping of
20862 nested double quotes correct.
20863 If this was in the signature file being used and you were replying to a message
20864 sent to comp.mail.pine the resulting text would be:
20866 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20868 If you were replying to a message that wasn't sent to any newsgroup the
20869 resulting text would be a single blank line.
20870 The reason you'd get a blank line is because the end of the line is
20871 outside of the conditional, so is always included.
20872 If you wanted to get rid of that blank line you could do so by moving
20873 the end of line inside the conditional.
20874 In other words, it's ok to have multi-line
20875 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20876 template file.
20877 The text just continues until the next double quotation, even if it's not
20878 on the same line.
20880 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20882 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20884 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20885 while reading the newsgroup comp.mail.pine the resulting text would be:
20887 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20889 If you were replying to a message while reading an email folder instead
20890 of a newsgroup the resulting leadin text would be
20892 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20894 Here's one more (contrived) example illustrating a matching argument
20895 that is not the empty string.
20897 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20899 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20900 were replying to
20901 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20902 would be
20904 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20906 But if you were replying to a message sent on Oct. 27 (and that wasn't
20907 today) you would get
20909 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20912 &lt;End of help on this topic&gt;
20913 </BODY>
20914 </HTML>
20915 ======= h_composer_cntxt_nick =======
20916 <HTML>
20917 <HEAD>
20918 <TITLE>Collection Nickname Explained</TITLE>
20919 </HEAD>
20920 <BODY>
20921 <H1>Collection Edit Help -- Nickname Field</H1>
20923 This field is provided so you can add a short nickname to use when
20924 referring to this collection within Alpine.  Spaces are allowed, and
20925 you don't need to use double-quotes.  However, the double-quote
20926 character is not allowed.
20928 Look <A HREF="h_edit_nav_cmds">here</A>
20929 to see the available Editing and Navigation commands.
20931 &lt;End of help on this topic&gt;
20932 </BODY>
20933 </HTML>
20934 ======= h_folder_server_syntax =======
20935 <HTML>
20936 <HEAD>
20937 <TITLE>Server Name Syntax</TITLE>
20938 </HEAD>
20939 <BODY>
20940 <H1>Server Name Syntax</H1>
20942 This help describes the syntax that may be used for server names
20943 that may be associated with remote folders or SMTP servers.
20946 A server name is the hostname of the server.
20947 It's a good idea to use the host's fully-qualified network name.
20950 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20953 However, IP addresses are allowed if surrounded
20954 with square-brackets.
20957 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20960 An optional network port number may be supplied by appending
20961 a colon (:) followed by the port number
20962 to the server name.
20963 By default, the IMAP port number, 143, is used.
20966 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20969 Besides server name and optional port number, various other optional
20970 parameters may be supplied that alter Alpine's interaction with the server.
20971 A parameter is supplied by appending a slash (/) character followed by
20972 the parameter's name and,
20973 depending on the particular parameter, the value assigned to that
20974 name, to the server name (and optional port number).
20975 Parameter names are <EM>not</EM> case sensitive.
20976 Currently supported parameters include:
20978 <DL>
20980 <DT>User</DT>
20981 <DD>This parameter requires an associated value, and is intended to
20982 provide the username identifier with which to establish the server
20983 connection.
20984 If your SMTP server offers SMTP AUTH authentication, adding this 
20985 parameter to the
20986 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20987 option will cause Alpine to attempt to authenticate to the server using the
20988 supplied username.
20989 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20990 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20991 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20992 option (or to the server name for any folder collection using NNTP)
20993 will cause Alpine to attempt
20994 to authenticate to the server using the supplied username.
20995 An example might be:
20998 <CENTER><SAMP>/user=katie</SAMP></CENTER>
21001 </DD>
21003 <DT>STARTTLS</DT>
21004 <DD>
21005 This is a unary parameter indicating communication with the server must 
21006 take place over a TLS connection. If you use this parameter, Alpine will 
21007 establish an insecure connection to the server, and later will attempts to 
21008 use a secure encrypted connection. If the attempt to use TLS fails then 
21009 this parameter will cause the connection to fail instead of falling back 
21010 to an insecure connection.
21012 Use this option when you are told to use STARTTLS. If you are told to use 
21013 SSL or TLS on port 993, use the /ssl unary parameter instead, and not this 
21014 parameter. Use this parameter when establishing a connection to a server 
21015 on an insecure port (normally port 143 for IMAP) and then needing to 
21016 establish a secure connection using STARTTLS.
21018 <P><A href="h_security_considerations">Learn more</A> about security 
21019 considerations when you use this option.
21022 <CENTER><SAMP>/starttls</SAMP></CENTER>
21025 </DD>
21027 <DT>SSL</DT>
21028 <DD>
21029 This is a unary parameter indicating communication with the server should 
21030 take place over a Secure Socket Layer connection.  The server must support
21031 this method, and be prepared to accept connections on the appropriate
21032 port (993 by default).
21033 Alpine must be linked with an SSL library for this option to be operational.
21034 Using this option will make Alpine try to connect to the server using the
21035 most secure encrypted SSL connection that both your version of Alpine and the
21036 server support.
21039 <CENTER><SAMP>/ssl</SAMP></CENTER>
21042 </DD>
21044 <DT>TLS1</DT>
21045 <DD>
21046 This parameter indicates that the connection to the server will be made
21047 over the SSL port, but using the TLSv1 protocol, instead of the usual
21048 SSLv3 or SSLv2 protocols.
21049 Alpine must be linked with an SSL library for this option to be operational.
21052 <CENTER><SAMP>/tls1</SAMP></CENTER>
21054 </DD>
21056 <DT>TLS1_1</DT>
21057 <DD>
21058 This parameter indicates that the connection to the server will be made
21059 over the SSL port, but using the TLSv1.1 protocol.
21060 Alpine must be linked with an SSL library that supports this encryption
21061 protocol for this option to be operational.
21064 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
21066 </DD>
21068 <DT>TLS1_2</DT>
21069 <DD>
21070 This parameter indicates that the connection to the server will be made
21071 over the SSL port, but using the TLSv1.2 protocol.
21072 Alpine must be linked with an SSL library that supports this encryption
21073 protocol for this option to be operational.
21076 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
21078 </DD>
21080 <DT>TLS1_3</DT>
21081 <DD>
21082 This parameter indicates that the connection to the server will be made
21083 over the SSL port, but using the TLSv1.3 protocol.
21084 Alpine must be linked with an SSL library that supports this encryption
21085 protocol for this option to be operational.
21088 <CENTER><SAMP>/tls1_3</SAMP></CENTER>
21090 </DD>
21092 <DT>NoValidate-Cert</DT>
21093 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
21094 This is needed if the server uses self-signed certificates or if Alpine
21095 cannot validate the certificate for some other known reason. You should avoid
21096 using this option, and instead install the certificate of the server, so you
21097 are not a victim of a cracker-in-the-middle attack.
21099 </DD>
21101 <DT>Anonymous</DT>
21102 <DD>This is a unary parameter (that means it does not have a value)
21103 indicating that the connection be logged in as
21104 &quot;anonymous&quot; rather than a specific user.
21105 Not all servers offer anonymous
21106 access; those which do generally only offer read-only access to certain
21107 &quot;public&quot; folders.
21110 <CENTER><SAMP>/anonymous</SAMP></CENTER>
21113 </DD>
21115 <DT>Secure</DT>
21116 <DD>This is a unary parameter indicating that the connection use the
21117 most secure authentication method mutually supported by Alpine and the
21118 server.
21119 Alpine is capable of authenticating connections to 
21120 the server using several methods.
21121 By default, Alpine will attempt each
21122 method until either a connection is established or the
21123 list of methods is exhausted.
21124 This parameter causes Alpine to instead fail 
21125 the connection if the first (generally most &quot;secure&quot;) method fails.
21128 <CENTER><SAMP>/secure</SAMP></CENTER>
21131 </DD>
21133 <DT>Submit</DT>
21134 <DD>This is a unary parameter for use with the
21135 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
21136 It indicates that the connection should be made to the Submit server
21137 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
21138 (port 587) instead of the SMTP port (25).
21139 At the time this help was written the submit option was equivalent to
21140 specifying port 587. <A href="h_security_considerations">Learn more</A>
21141 about security considerations when you use this option.
21144 <CENTER><SAMP>/submit</SAMP></CENTER>
21148 <CENTER><SAMP>host:587</SAMP></CENTER>
21151 </DD>
21153 <DT>Debug</DT>
21154 <DD>This is a unary parameter indicating that the connection be established
21155 in a verbose mode.  Basically, it causes Alpine to log the communication with
21156 the server in Alpine's debug file.
21157 Normally, the pine -d command-line flag would be used instead.
21159 </DD>
21161 <DT>NoRsh</DT>
21162 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
21163 the UNIX remote shell program.
21164 Including &quot;NoRsh&quot; will cause connections to this server to skip
21165 the &quot;rsh&quot; attempt.
21166 This might be useful to avoid long timeouts caused by rsh firewalls, for
21167 example.
21169 </DD>
21171 <DT>Loser</DT>
21172 <DD>This option makes sense only for IMAP servers that do not perform
21173 a SEARCH command correctly. If your filtering rules
21174 fail to filter some messages, that should have been filtered, then this
21175 option will make Alpine download all data necessary data to perform that 
21176 search. There is a performance penalty when using this option. Downloading 
21177 the data to perform the search will take longer than requesting the IMAP
21178 server to perform the filtering, but the filtering will be done correctly.
21180 </DD>
21183 <DT>Service</DT>
21184 <DD>This parameter requires an associated value.  The default value is
21185 &quot;IMAP&quot; which indicates communication with the server based
21186 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
21187 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
21189 Other service values include:
21190  <DL>
21191  <DT>NNTP</DT>
21192  <DD>This value indicates communication with the server takes place via
21193 the Network News Transfer Protocol.  Use this to define a collection
21194 of newsgroups on a remote news server.  So
21197 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
21199 or just
21201 <CENTER><SAMP>/NNTP</SAMP></CENTER>
21204 is the way to specify NNTP access.
21206  </DD>
21208  <DT>POP3</DT>
21209  <DD>This value indicates communication with the server takes place via the
21210 Post Office Protocol 3 protocol.
21213 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
21215 or just
21217 <CENTER><SAMP>/POP3</SAMP></CENTER>
21220 Note that there are several important issues
21221 to consider when selecting this option:
21222 <OL>
21223  <LI> POP3 provides access to only your INBOX.  In other words,
21224 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
21225  <LI> Alpine's implementation of POP3 does not follow the traditional POP
21226 model and will leave your mail on the server. Refer to the
21227 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
21228  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
21229 </OL>
21230 </DD>
21231 </DL>
21232 </DL>
21235 Note that it is possible to include more than one parameter in a server
21236 specification by concatenating the parameters. For example:
21239 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
21243 &lt;End of help on this topic&gt;
21244 </BODY>
21245 </HTML>
21246 ======= h_security_considerations =======
21247 <HTML>
21248 <HEAD>
21249 <TITLE>SSL, TLS, STARTTLS and More Security Considerations</TITLE>
21250 </HEAD>
21251 <BODY>
21252 <H1>SSL, TLS, STARTTLS and More Security Considerations</H1>
21254 The purpose of this text is to educate users on how to best choose
21255 the type of security connection to a remote server using the SSL and TLS
21256 encryption protocols.
21259 In the past, and when Alpine originally started to support encrypted connections
21260 to remote servers, the /ssl modifier was needed, and it meant any of the SSLv2
21261 or SSLv3 protocols. Those encryption protocols are considered not fully secure
21262 anymore, and in fact, you might not be able to use them anymore.
21264 <P> Today the /ssl modifier means to use the most secure encryption 
21265 protocol between your version of Alpine and what the server supports. This 
21266 might mean more modern protocols, such as TLS 1.0, TLS 1.1, etc. As of 
21267 this writing, Alpine supports connection using TLS 1.3. These protocols
21268 are considered more secure today and they should be preferred over the old
21269 SSL protocols.
21271 <P> A source of confusion for Alpine users might be the meaning of the 
21272 modifier /tls with respect to the names of the encryption protocols, such 
21273 as TLS 1.2. The meaning of /tls is to start an encrypted connection to a 
21274 server after an insecure connection has been established, and we will 
21275 discuss this later in this help text. The preferred way flag is to use
21276 /starttls, instead of /tls.
21278 <P>The best way to start an encrypted connection to a server is to use the 
21279 /ssl modifier. If your provider allows encrypted connections on port 993 
21280 for IMAP, or port 995 for POP3, or in port 465 for SMTP, just define your 
21281 server by adding the /ssl modifier and do not add the port to the server. 
21282 Alpine knows that the secure connection will be done in the correct port, 
21283 and will use the most secure encryption available between Alpine and the 
21284 server. You only need to use the port number when it is different from the
21285 default port numbers for this type of connections, and those were given
21286 above.
21288 <P>Most email service providers identify secure connections by saying 
21289 &quot;SSL or TLS&quot;. In this case, use the /ssl modifier, and only use 
21290 the port number in case it is different to the ones above.
21292 <P>If your service provider says to use STARTTLS, then you need to use the 
21293 /starttls modifier. If your service provider gives you the option to use SSL or 
21294 TLS and to use STARTTLS choose the secure port and choose the /ssl 
21295 modifier. This is because connections using the /starttls modifier can be 
21296 attacked and your username and password can be stolen by a hacker. The next
21297 paragraph describes in short how to do this.
21299 <P> When you use the /starttls modifier, Alpine connects insecurely to the 
21300 remote server. Because the connection is insecure, it is possible that you 
21301 connect to a different server, which connects you to the real server. This 
21302 is called &quot;man-in-the-middle&quot; attack, and so your communication 
21303 will pass through the hackers computer before it reaches the real target. 
21304 An example of a possible man-in-the-middle is your internet service provider, 
21305 or your employer in some instances.
21306 This means that the hacker can modify the replies from the correct server 
21307 and give you the illusion of security before you are actually connected to 
21308 the secure server. Therefore, you might disclose your username and 
21309 password to the hacker before you establish a secure connection to the correct
21310 server.
21312 <P> Therefore, if possible avoid using STARTTLS (for IMAP and POP) or SUBMIT
21313 for SMTP (in port 587), as these are subject to attack. If possible
21314 ask your provider for secure connections for SSL or TLS in the secure ports
21315 993 for IMAP, 995 for POP or 465 for SMTP.
21317 <P> In the current state, even as of TLS 1.3, these protocols are considered 
21318 secure but they do not protect your privacy. For example your internet 
21319 service provider might track to which servers you are connecting securely. 
21320 Encryption protocols are evolving to not only protect the security of your 
21321 data, but also your privacy.
21323 <P> Other types of errors can lead to insecure connections. An example is
21324 when the name of the server as provided by the user does not match the
21325 name of the server in the certificate. 
21326 <A href="h_tls_validation_failure">Read more</A> about security errors
21327 of this type and learn how to protect yourself against this type of
21328 errors.
21331 &lt;End of help on this topic&gt;
21332 </BODY>
21333 </HTML>
21334 ======= h_composer_cntxt_server =======
21335 <HTML>
21336 <HEAD>
21337 <TITLE>Collection Server: Explained</TITLE>
21338 </HEAD>
21339 <BODY>
21340 <H1>Collection Edit Help -- Server Field</H1>
21342 This collection's &quot;Server:&quot; definition indicates the
21343 hostname of the server providing access to the folders in this
21344 collection.
21345 The syntax of this server name is the same as for other server names used
21346 in remote folder names in
21347 Alpine and is described
21348 <A HREF="h_folder_server_syntax">here</A>.
21351 &lt;End of help on this topic&gt;
21352 </BODY>
21353 </HTML>
21354 ======= h_composer_cntxt_path =======
21355 <HTML>
21356 <HEAD>
21357 <TITLE>Collection Path: Explained</TITLE>
21358 </HEAD>
21359 <BODY>
21360 <H1>Collection Edit Help -- Path Field</H1>
21362 The collection's &quot;Path:&quot; definition indicates the location
21363 of the folders in this collection.  If the path or any of its components
21364 do not exist, Alpine will prompt you for their creation when exiting the
21365 Add/Change screen.
21367 <P> 
21368 By default the path is interpreted as defining a section of your personal
21369 folder area.  This area and how you specify it are defined by the
21370 server, if one is specified in the collection, or, typically, the home
21371 directory if no server is defined.
21374 To define a collection outside the default &quot;area&quot;, prefix
21375 the path with the &quot;namespace&quot; to use when interpreting the
21376 given path.  If a namespace is specified, the Path begins with the
21377 sharp, &quot;#&quot;, character followed by the name of the namespace
21378 and then the namespace's path-element-delimiter.  Aside from the
21379 path's format, namespaces can also imply access rights, content
21380 policy, audience, location, and, occasionally, access methods.
21383 Each server exports its own set (possibly of size one) of 
21384 namespaces.  Hence, it's likely communication with your server's
21385 administrator will be required for specific configurations.  Some of
21386 the more common namespaces, however, include:
21388 <DL>
21389 <DT>#news.</DT>
21390 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
21391 names are hierarchically defined with each level delimited by a period.
21392 </DD>
21393 <DT>#public/</DT>
21394 <DD>This specifies a folder area that the server may export to the general
21395 public.
21396 </DD>
21397 <DT>#shared/</DT>
21398 <DD>This specifies a folder area that the folder may export to groups
21399 of users.
21400 </DD>
21401 <DT>#ftp/</DT>
21402 <DD>This specifies a folder area that is the same as that it may have 
21403 exported via the &quot;File Transfer Protocol&quot;.
21404 </DD>
21405 <DT>#mh/</DT>
21406 <DD>This specifies the personal folder area associated with folders
21407 and directories that were created using the MH message handling system.
21408 </DD>
21409 </DL>
21412 In addition, the server may support access to other user's folders,
21413 provided you have suitable permissions.  Common methods use a prefix
21414 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
21415 indicate the root of the other user's folder area.
21418 No, nothing's simple.
21421 &lt;End of help on this topic&gt;
21422 </BODY>
21423 </HTML>
21424 ======= h_composer_cntxt_view =======
21425 <HTML>
21426 <HEAD>
21427 <TITLE>Collection View: Explained</TITLE>
21428 </HEAD>
21429 <BODY>
21430 <H1>Collection Edit Help -- View Field</H1>
21432 The collection's &quot;View:&quot; definition provides a way to limit
21433 the displayed list of folders within a collection.  By default, only
21434 folders that contain the specified characters anywhere in their name
21435 are shown in the collection's folder list.
21438 Additionally, you can use a wildcard character to better control
21439 the list of folders selected for display.  The wildcard specifier is
21440 the star, &quot;*&quot;, character.
21443 So, for example, to define a collection of all folders ending with
21444 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
21445 quote characters!).  Or, similarly, to define a collection of folders
21446 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
21447 specify a view of &quot;a*z&quot;.
21450 &lt;End of help on this topic&gt;
21451 </BODY>
21452 </HTML>
21453 ======= h_composer_abook_add_server =======
21454 <HTML>
21455 <HEAD>
21456 <TITLE>Addressbook Server Name Field Explained</TITLE>
21457 </HEAD>
21458 <BODY>
21459 This field should be left blank if the address book is stored in a regular
21460 file on this system.  If it is a remote address book stored on an IMAP
21461 server then this is the name of that IMAP server.
21463 Look <A HREF="h_edit_nav_cmds">here</A>
21464 to see the available Editing and Navigation commands.
21466 &lt;End of help on this topic&gt;
21467 </BODY>
21468 </HTML>
21469 ======= h_composer_abook_add_folder =======
21470 <HTML>
21471 <HEAD>
21472 <TITLE>Addressbook Folder Name Field Explained</TITLE>
21473 </HEAD>
21474 <BODY>
21475 For a remote address book (one for which the Server Name is filled in)
21476 this is the name of a folder on the remote server. The address book data
21477 will be stored in this folder. This folder should be used only for
21478 storing this single address book, not for other address books or for
21479 other messages.
21481 For a local address book (one for which the Server Name is not filled in)
21482 this is the name of a file in which the address book will be stored.
21483 The file is in the same directory as the Alpine configuration file if the
21484 configuration file is local.
21485 If the configuration file is remote, then this will be in the home directory
21486 for Unix Alpine and in the directory specified by the
21487 &quot;-aux local_directory&quot; command line argument.
21489 Look <A HREF="h_edit_nav_cmds">here</A>
21490 to see the available Editing and Navigation commands.
21492 &lt;End of help on this topic&gt;
21493 </BODY>
21494 </HTML>
21495 ======= h_composer_abook_add_nick =======
21496 <HTML>
21497 <HEAD>
21498 <TITLE>Addressbook NickName Field Explained</TITLE>
21499 </HEAD>
21500 <BODY>
21501 This is just an optional nickname for this address book. If present, it
21502 is used in some of the displays and error messages in the address book
21503 maintenance screens. It is for your convenience only and serves no
21504 other purpose.
21506 Look <A HREF="h_edit_nav_cmds">here</A>
21507 to see the available Editing and Navigation commands.
21509 &lt;End of help on this topic&gt;
21510 </BODY>
21511 </HTML>
21512 ======= h_composer_qserv_cn =======
21513 <HTML>
21514 <HEAD>
21515 <TITLE>Directory Query Form Explained</TITLE>
21516 </HEAD>
21517 <BODY>
21519 Fill in as many of these fields as you wish to narrow down your
21520 search. All the fields you fill in must match in order for an entry
21521 to be returned. You may use the wildcard character &quot;*&quot; in
21522 any of the fields, it matches any zero or more characters at that
21523 point in the string. There are no implicit wildcards, so the match is
21524 exact unless you include wildcards.
21527 Note that if an attribute isn't present at all, then the match will fail.
21528 For example, if a server doesn't support the Locality attribute, then no
21529 matter what you put in the Locality field (other than leaving it empty)
21530 the search will fail.
21533 This field, the Common Name field, is typically a person's full name.
21536 <H1>EDITING and NAVIGATION COMMANDS</H1>
21537 <!--chtml if pinemode="function_key"-->
21538 <PRE>
21539 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21540 ^B (Left Arrow)    Back character       | ^D       Delete current character
21541 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21542 ^P (Up Arrow)      Previous line        |
21543 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21544 ^A                 Beginning of line    |            delete current line
21545 ^E                 End of line          | F10      Undelete line(s)
21546 F7                 Previous page        |
21547 F8                 Next page            |-------------------------------------
21548 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21549 ----------------------------------------|
21550 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21551 F2   Cancel      |   F1    Get help     |
21552 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21553 </PRE>
21554 <!--chtml else-->
21555 <PRE>
21556 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21557 ^B (Left Arrow)    Back character       | ^D       Delete current character
21558 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21559 ^P (Up Arrow)      Previous line        |
21560 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21561 ^A                 Beginning of line    |            delete current line
21562 ^E                 End of line          | ^U       Undelete line(s)
21563 ^Y                 Previous page        |
21564 ^V                 Next page            |-------------------------------------
21565 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21566 ----------------------------------------|
21567 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21568 ^C   Cancel      |   ^G    Get help     |
21569 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21570 </PRE>
21571 <!--chtml endif-->
21572 <P><UL>
21573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21574 </UL><P>
21575 &lt;End of help on this topic&gt;
21576 </BODY>
21577 </HTML>
21578 ======= h_composer_qserv_sn =======
21580 The Surname is usually the family name of a person.
21582 <End of help on this topic>
21583 ======= h_composer_qserv_gn =======
21585 This is the part of a person's name that isn't the surname or initials.
21587 <End of help on this topic>
21588 ======= h_composer_qserv_mail =======
21590 This is the email address of a person.
21592 <End of help on this topic>
21593 ======= h_composer_qserv_org =======
21595 This is the organization a person belongs to.
21597 <End of help on this topic>
21598 ======= h_composer_qserv_unit =======
21600 This is the organizational unit a person belongs to.
21602 <End of help on this topic>
21603 ======= h_composer_qserv_country =======
21605 This is the country a person belongs to.
21607 <End of help on this topic>
21608 ======= h_composer_qserv_state =======
21610 This is the state a person belongs to.
21612 <End of help on this topic>
21613 ======= h_composer_qserv_locality =======
21615 This is the locality a person belongs to.
21617 <End of help on this topic>
21618 ======= h_composer_qserv_custom =======
21620 This one is for advanced users only! If you put something in this field,
21621 then the rest of the fields are ignored.
21623 This field may be set to the string representation of an LDAP search
21624 filter (see RFC1960). Here are some examples:
21626 To search for an entry with a surname equal to "clinton" you could set
21627 the custom filter to:
21629      (sn=clinton)
21630     
21631 This is equivalent to putting "clinton" in the SurName field.
21632 To search for an entry that has a surname that begins with "clint" and
21633 has a givenname equal to "william" you could use:
21635      (&(sn=clint*)(givenname=william))
21636     
21637 This is equivalent to setting the SurName field to "clint*" and the
21638 GivenName field to "william".
21639 To search for an entry where either the common name OR the email address
21640 contains "abcde" you could use:
21642      (|(cn=*abcde*)(mail=*abcde*))
21644 That isn't equivalent to anything you can do by setting the other fields
21645 because of the OR.
21647 <End of help on this topic>
21648 ======= h_composer_qserv_qq =======
21650 This one is a little different from the rest of the categories.  It causes
21651 a search to be formed from the configured search filter that you filled
21652 in when you added the directory server to your configuration. It can also
21653 be combined with the other fields if you'd like.
21655 <End of help on this topic>
21656 ======= h_address_format =======
21657 <HTML>
21658 <HEAD>
21659 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21660 </HEAD>
21661 <BODY>
21662 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21664 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21665 and then a domain, with no spaces.  
21666 For example, jsmith@art.example.com might be the email address
21667 of a person  
21668 with the username &quot;jsmith&quot; who has an account in the domain
21669 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21670 right of the &quot;@&quot; sign can vary - a shorter example would be 
21671 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21672 organization's domain is specified after the &quot;@&quot; sign); a longer 
21673 example would be 
21674  jsingh@shakti.edutech.example.com
21675 (here, the name of the host &quot;shakti&quot; in the domain 
21676 edutech.example.com is also specified).  
21677 <P>  
21678 If you do not know the exact email address of someone you want to write 
21679 to, ask them what it is using other means of communication than email; or 
21680 use the tools for 
21681 finding people's addresses that are available on the Internet.
21683 If you are sending to someone on the same system as you are, you can leave
21684 the &quot;@&quot; sign and all the information to its right off of the 
21685 address, and Alpine will fill it in automatically, 
21686 unless the feature 
21687 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21690 When an email address you send a message to is not reachable -- either because 
21691 it is simply an incorrect address, or because email can temporarily not be 
21692 delivered to it due to a technical problem on the way to or at the recipient's 
21693 end -- you will almost always get an error notification email message back.
21695 If you encounter problems with, or have questions about, email delivery or
21696 email address syntax, contact your local network computing consultants.
21697 <P><UL>
21698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21699 </UL>
21701 &lt;End of help on this topic&gt;
21702 </BODY>
21703 </HTML>
21704 ======= h_flag_user_flag =======
21705 <HTML>
21706 <HEAD>
21707 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21708 </HEAD>
21709 <BODY>
21710 <H1>STATUS FLAG: User Defined Keyword</h1>
21712 This is a keyword that is defined for this folder.
21713 It was most likely defined by the owner of the folder.
21714 Alpine will not set or clear this flag on its own.
21716 <P><UL>
21717 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21718 </UL><P>
21719 &lt;End of help on this topic&gt;
21720 </BODY>
21721 </HTML>
21722 ======= h_flag_important =======
21723 <html>
21724 <title>STATUS FLAG: Important</title>
21725 <body>
21726 <h1>STATUS FLAG: Important</h1>
21729 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21730 MESSAGE&nbsp;INDEX
21731 screen, can only be set by the user, and is intended to be used in
21732 whatever fashion makes sense to you.  You are the only one that can set or
21733 clear it. 
21736 &lt;End of help on this topic&gt;
21737 </BODY>
21738 </HTML>
21739 ======= h_flag_new =======
21740 <html>
21741 <title>STATUS FLAG: New</title>
21742 <body>
21743 <h1>STATUS FLAG: New</h1>
21746 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21747 MESSAGE&nbsp;INDEX screen,
21748 is automatically set when messages are delivered to your Inbox (or other
21749 folder specified outside of Alpine).  Likewise, it is cleared automatically
21750 the first time you read the message it is associated with.
21753 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21754 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21755 you'd like to be reminded of it next time you read mail.  This can be done
21756 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21760 &lt;End of help on this topic&gt;
21761 </BODY>
21762 </HTML>
21763 ======= h_flag_answered =======
21764 <html>
21765 <title>STATUS FLAG: Answered</title>
21766 <body>
21767 <h1>STATUS FLAG: Answered</h1>
21769 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21770 MESSAGE&nbsp;INDEX
21771 screen, is automatically set when you reply to a message.  This flag is not
21772 automatically cleared.
21775 &lt;End of help on this topic&gt;
21776 </BODY>
21777 </HTML>
21778 ======= h_flag_forwarded =======
21779 <html>
21780 <title>STATUS FLAG: Forwarded</title>
21781 <body>
21782 <h1>STATUS FLAG: Forwarded</h1>
21784 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21785 MESSAGE&nbsp;INDEX
21786 screen, is automatically set when you forward a message.  This flag is not
21787 automatically cleared.
21790 &lt;End of help on this topic&gt;
21791 </BODY>
21792 </HTML>
21793 ======= h_flag_deleted =======
21794 <html>
21795 <title>STATUS FLAG: Deleted</title>
21796 <body>
21797 <h1>STATUS FLAG: Deleted</h1>
21799 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21800 MESSAGE&nbsp;INDEX
21801 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21802 It is cleared
21803 when you use the &quot;U&nbsp;Undelete&quot; command.
21806 Messages marked with this flag will be permanently removed from
21807 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21808 command, or
21809 when you indicate acceptance of their removal upon leaving the folder.
21812 Note, there can be other actions implicit in the
21813 &quot;D&nbsp;Delete&quot; command,
21814 such as advancing to the next message, that may be momentarily undesirable.
21815 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21816 flag <A HREF="h_common_flag">explicitly</A>.
21819 &lt;End of help on this topic&gt;
21820 </BODY>
21821 </HTML>
21822 ====== h_config_incoming_timeo ======
21823 <HTML>
21824 <HEAD>
21825 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21826 </HEAD>
21827 <BODY>
21828 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21830 This option has no effect unless the feature
21831 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21832 is set, which in turn has no effect unless
21833 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21834 is set.
21836 Sets the time in seconds that Alpine will
21837 attempt to open a network connection used for monitoring for Unseen
21838 messages in Incoming Folders. The default is 5.
21839 If a connection has not completed within this many seconds Alpine will
21840 give up and consider it a failed connection.
21842 <UL>   
21843 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21844 </UL><P>
21845 &lt;End of help on this topic&gt;
21846 </BODY>
21847 </HTML>
21848 ====== h_config_incoming_interv ======
21849 <HTML>
21850 <HEAD>
21851 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21852 </HEAD>
21853 <BODY>
21854 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21856 This option has no effect unless the feature
21857 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21858 is set, which in turn has no effect unless
21859 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21860 is set.
21862 This option specifies, in seconds, how often Alpine will check
21863 for new mail and state changes in Incoming Folders when Incoming Folders
21864 Checking is turned on.
21865 The default is 3 minutes (180).
21866 This value applies only to folders that are local to the system that
21867 Alpine is running on or that are accessed using the IMAP protocol.
21868 The similar option
21869 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21870 applies to all other monitored folders.
21872 <UL>   
21873 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21874 </UL><P>
21875 &lt;End of help on this topic&gt;
21876 </BODY>
21877 </HTML>
21878 ====== h_config_incoming_second_interv ======
21879 <HTML>
21880 <HEAD>
21881 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21882 </HEAD>
21883 <BODY>
21884 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21886 This option has no effect unless the feature
21887 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21888 is set, which in turn has no effect unless
21889 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21890 is set.
21892 This option together with the option
21893 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21894 specifies, in seconds, how often Alpine will check
21895 for new mail and state changes in Incoming Folders when Incoming Folders
21896 Checking is turned on.
21897 The default for this option is 3 minutes (180).
21898 For folders that are local to this system or
21899 that are accessed using the IMAP protocol
21900 the value of the option
21901 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21902 is used.
21903 For all other monitored folders, the value of this option is used.
21905 The reason there are two separate options is because it is usually
21906 less expensive to check local and IMAP folders than it is to check
21907 other types, like POP or NNTP folders.
21908 You may want to set this secondary value to a higher number than
21909 the primary check interval.
21911 <UL>   
21912 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21913 </UL><P>
21914 &lt;End of help on this topic&gt;
21915 </BODY>
21916 </HTML>
21917 ====== h_config_incoming_list ======
21918 <HTML>
21919 <HEAD>
21920 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21921 </HEAD>
21922 <BODY>
21923 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21925 This option has no effect unless the feature
21926 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21927 is set, which in turn has no effect unless
21928 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21929 is set.
21931 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21932 normally monitor all Incoming Folders.
21933 You may use this option to restrict the list of monitored folders to a
21934 subset of all Incoming Folders.
21936 <UL>   
21937 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21938 </UL><P>
21939 &lt;End of help on this topic&gt;
21940 </BODY>
21941 </HTML>
21942 ====== h_config_pers_name ======
21943 <HTML>
21944 <HEAD>
21945 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21946 </HEAD>
21947 <BODY>
21948 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21950 This value is used to determine the full name part of the "From" address
21951 on messages you send.
21952 <!--chtml if pinemode="os_windows"-->
21953  PC-Alpine requires that this be set in order to properly construct the "From" address.
21954 <!--chtml else-->
21955  If unset, Unix Alpine will obtain your full name from
21956  the system password file. PC-Alpine, on the other hand, requires that this be set.
21957 <!--chtml endif-->
21959 If you want to change the value of what gets included in the From header
21960 in messages you send (other than just the Personal Name)
21961 look <A HREF="h_config_change_your_from">here</A> for a description.
21962 <P><UL>
21963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21964 </UL><P>
21965 &lt;End of help on this topic&gt;
21966 </BODY>
21967 </HTML>
21968 ====== h_config_pruned_folders ======
21969 <html>
21970 <header>
21971 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21972 </header>
21973 <body>
21974 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21976 This variable allows you to define a list of one or more folders that
21977 Alpine will offer to prune for you in the same way it automatically offers
21978 to prune your "sent-mail" folder each month.
21979 Each folder in this list must be a folder in your default folder collection
21980 (the first folder collection if you have more than one), and it is just
21981 the relative name of the folder in the collection, not the fully-qualified name.
21982 It is similar to sent-mail.
21983 Instead of something like
21985 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21987 the correct value to use would be
21989 <CENTER><SAMP>folder</SAMP></CENTER>
21991 There is an assumption here that your first collection is the folders in
21993 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21996 Once a month, for each folder listed, Alpine will offer to move
21997 the contents of the folder to a new folder of the same name but with
21998 the previous month's date appended.  Alpine will then look for any such
21999 date-appended folder names created for a previous month, and offer each
22000 one it finds for deletion.
22003 If you decline the first offer, no mail is moved and no new folder is
22004 created.
22007 The new folders will be created
22008 in your default folder collection.
22011 <UL>   
22012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22013 </UL><P>
22014 &lt;End of help on this topic&gt;
22015 </body>
22016 </html>
22017 ====== h_config_upload_cmd ======
22018 <HTML>
22019 <HEAD>
22020 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
22021 </HEAD>
22022 <BODY>
22023 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
22025 This option affects the behavior of the Composer's &quot;Read File&quot; 
22026 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
22027 commands.  It specifies
22028 a Unix program name, and any necessary command line arguments, that Alpine can
22029 use to transfer files from your personal computer into messages that you are
22030 composing.<P>
22032 <B>Note:</B> this facility is intended for use with serial line transfer 
22033 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
22034 to work with TCP/IP file transfer programs such as ftp.<P>
22036 If a program is specified, the commands listed above are modified to offer a
22037 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
22038 specified here must match the transfer program or protocol available on the
22039 personal computer.<P>
22041 Alpine expects to exchange uploaded data via a file on your Unix system.  When
22042 the specified upload program finishes, Alpine expects the uploaded data to be
22043 contained in this file.<P>
22045 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
22046 generates a
22047 temporary file name that it will pass to the specified Unix program.  Alpine
22048 will read the resulting uploaded text from this file and then delete it when
22049 the upload command is finished.<P>
22051 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
22052 prompt
22053 you for the name of the file that is to contain the uploaded information that
22054 it is to attach.  Alpine will attach this file to the composition, but will
22055 <B>not</B> delete this file after the upload command is finished.<P>
22057 The special token &quot;_FILE_&quot; may be included among the Unix program's 
22058 command
22059 line arguments.  Alpine will replace this symbol with the name of the file
22060 being used to exchange the uploaded information.  This token allows you to
22061 position the file name where it is required in the Unix program's command
22062 line arguments.<P>
22064 If the &quot;_FILE_&quot; token is not present in the specified command, the
22065 temporary file's name is automatically appended to the specified Unix
22066 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
22067 <B>last</B> command line argument.
22068 <P><UL>
22069 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22070 </UL><P>
22071 &lt;End of help on this topic&gt;
22072 </BODY>
22073 </HTML>
22074 ====== h_config_upload_prefix ======
22075 <HTML>
22076 <HEAD>
22077 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
22078 </HEAD>
22079 <BODY>
22080 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
22082 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
22083 It defines text to be written to the terminal emulator (via standard output)
22084 immediately prior to starting upload command.  This is useful for
22085 integrated serial line file transfer agents that permit command passing
22086 (e.g., Kermit's APC method).<P>
22088 The special token &quot;_FILE_&quot; may be included in the string specification.
22089 That symbol will be replaced with the (Alpine-created) name of the temporary
22090 file in which Alpine will expect to find the uploaded file.
22091 <P><UL>
22092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22093 </UL><P>
22094 &lt;End of help on this topic&gt;
22095 </BODY>
22096 </HTML>
22097 ====== h_config_download_cmd ======
22098 <HTML>
22099 <HEAD>
22100 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
22101 </HEAD>
22102 <BODY>
22103 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
22105 This option affects the behavior of the Export command.  It specifies a Unix
22106 program name, and any necessary command line arguments, that Alpine can use to
22107 transfer the exported message to your personal computer's disk.<P>
22108 Note: this facility is intended for use with serial line transfer 
22109 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
22110 to work with TCP/IP file transfer programs such as ftp.<P>
22111 If a program is specified, the Export command is modified to offer a
22112 subcommand (^V) to activate the transfer (in lieu of saving it to
22113  the machine where Alpine is running).  Obviously, the Unix program
22114 specified here must match the transfer program or protocol available on the
22115 personal computer.<P>
22117 When this subcommand is selected and before Alpine invokes the specified Unix
22118 program, Alpine will create a temporary file containing the text of the
22119 exported message.  Alpine uses this file to pass the exported message text to
22120 the specified Unix program.<P>
22122 The special token &quot;_FILE_&quot; may be included among the Unix program's command
22123 line arguments.  Alpine will replace this symbol with the temporary file's name
22124 before executing the Unix program.  This token allows you to position the
22125 file name where it is required in the Unix program's command line arguments.
22127 If the &quot;_FILE_&quot; token is not present in the specified command, the
22128 temporary file's name is automatically appended to the specified Unix
22129 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
22130 <B>last</B> command line argument.
22131 <P><UL>
22132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22133 </UL><P>
22134 &lt;End of help on this topic&gt;
22135 </BODY>
22136 </HTML>
22137 ====== h_config_download_prefix ======
22138 <HTML>
22139 <HEAD>
22140 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
22141 </HEAD>
22142 <BODY>
22143 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
22145 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
22146 It defines text to be written to the terminal emulator (via standard output)
22147 immediately prior to starting the download command.  This is useful for
22148 integrated serial line file transfer agents that permit command passing
22149 (e.g., Kermit's APC method).
22151 The special token &quot;_FILE_&quot; may be included in the string 
22152 specification.
22153 That symbol will be replaced with the (Alpine-created) name of the temporary
22154 file into which Alpine will place the message to be downloaded.
22155 <P><UL>
22156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22157 </UL><P>
22158 &lt;End of help on this topic&gt;
22159 </BODY>
22160 </HTML>
22161 ====== h_config_mailcap_path ======
22162 <HTML>
22163 <HEAD>
22164 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
22165 </HEAD>
22166 <BODY>
22167 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
22168 This variable is used to replace Alpine's default mailcap file search path.
22169 It takes one or more file names (full paths must be specified) in which to
22170 look for mail capability data.  The default search path can be found in this
22171 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
22172 If there is more than one file name listed, list members should be delimited
22173 by 
22174 <!--chtml if pinemode="os_windows"-->
22175 a semi-colon (;) under Windows; for example:<PRE>
22176         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
22177 </PRE>
22178 <!--chtml else-->
22179 a colon (:) under UNIX; for example:<PRE>
22180         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
22181 </PRE>
22182 <!--chtml endif-->
22183 <P><UL>
22184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22185 </UL>
22187 &lt;End of help on this topic&gt;
22188 </BODY>
22189 </HTML>
22190 ====== h_config_mimetype_path ======
22191 <HTML>
22192 <HEAD>
22193 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
22194 </HEAD>
22195 <BODY>
22196 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
22198 This variable is used to replace Alpine's default mime.types file search path.
22199 It takes one or more file names (full paths must be specified) in which to
22200 look for file-name-extension to MIME type mapping data.  The default search
22201 path can be found in this
22202 <A HREF="h_news_config">Alpine Configuration</A> help.
22206 If there is more than one file name listed, list members should be delimited
22207 by a colon (:) under UNIX and a semi-colon (;) under Windows.
22209 &lt;End of help on this topic&gt;
22210 </BODY></HTML>
22211 ====== h_config_system_certs_path ======
22212 <HTML>
22213 <HEAD>
22214 <TITLE>OPTION: <!--#echo var="VAR_system-certs-path"--></TITLE>
22215 </HEAD>
22216 <BODY>
22217 <H1>OPTION: <!--#echo var="VAR_system-certs-path"--></H1>
22219 When Alpine is built to support secure connections to remote servers, a directory
22220 must be reserved in the system to store certificates that will be used to validate
22221 remote servers. This is normally configured at the time that Alpine is built, but
22222 there might be circumstances under which a user might want to use a different
22223 directory. For example, the directory might not be accessible, or has not been 
22224 updated and contains old certificates that have expired.
22227 This variable can be used to list
22228 the directory where such certificates can be found. Alpine will use the first
22229 directory in this list that exists in your system and can be accessed. This
22230 allows for users to be able to use the same pinerc file in different systems.
22233 Example of values for this option might be:
22235 <PRE>
22236 System CACerts Dir = /etc/ssl/certs
22237                      /usr/local/ssl/certs
22238                      C:\\libressl\\ssl\\certs
22239 <PRE>
22242 In unix systems, the default location of the certificates for openssl can
22243 be obtained by first executing the command
22245 <PRE>openssl version -d</PRE>
22247 and adding &quot;/certs&quot; to that value. In Windows the default location
22248 for the certificates is C:\\libressl\\ssl\\certs. This value was set by
22249 LibreSSL developers, and this option can be used to override this default.
22252 &lt;End of help on this topic&gt;
22253 </BODY></HTML>
22254 ====== h_config_system_certs_file ======
22255 <HTML>
22256 <HEAD>
22257 <TITLE>OPTION: <!--#echo var="VAR_system-certs-file"--></TITLE>
22258 </HEAD>
22259 <BODY>
22260 <H1>OPTION: <!--#echo var="VAR_system-certs-file"--></H1>
22262 This option sets the location of the container file that holds 
22263 certificate authority (CA) certificates.
22264 Alpine will use the first
22265 container in this list that exists in your system and can be accessed. This
22266 allows for users to be able to use the same pinerc file in different systems.
22269 Example of values for this option might be:
22271 <PRE>
22272 System Certs Path = /etc/ssl/certs/cert.pem
22273                     /usr/local/ssl/ca-root-nss.crt
22274                     C:\\libressl\\ssl\\certs\\cert.pem
22275 <PRE>
22278 In unix systems, the default location of the certificates for openssl can
22279 be obtained by first executing the command
22281 <PRE>openssl version -d</PRE>
22283 and adding &quot;/certs&quot; to that value. In Windows the default location
22284 for the certificates is C:\\libressl\\ssl\\certs\\cert.pem. This value was set 
22285 by LibreSSL developers, and this option can be used to override this default.
22288 &lt;End of help on this topic&gt;
22289 </BODY></HTML>
22290 ====== h_config_set_att_ansi ======
22291 <HTML><HEAD>
22292 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
22293 </HEAD>
22294 <BODY>
22295 <H1>OPTION: Set printer to attached ansi printer</H1>
22297 Type "S" to set your printer to "attached-to-ansi".<BR>
22298 It is OK to include "attached-to-ansi" in your personal list below.
22300 &lt;End of help on this topic&gt;
22301 </BODY></HTML>
22302 ====== h_config_set_att_ansi2 ======
22303 <HTML><HEAD>
22304 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
22305 </HEAD>
22306 <BODY>
22307 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
22309 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
22310 It is OK to include "attached-to-ansi-no-formfeed" in your personal
22311 list below.
22315 This is the same as the "attached-to-ansi" option except that a
22316 formfeed character will not be appended to the end of the print job.
22317 If your printer already ejects the paper by itself at the end of the
22318 job, you may prefer the "no-formfeed" form of this printer so that you
22319 don't get an extra blank page between print jobs.
22322 &lt;End of help on this topic&gt;
22323 </BODY></HTML>
22324 ====== h_config_set_att_wyse ======
22325 <HTML><HEAD>
22326 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
22327 </HEAD>
22328 <BODY>
22329 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
22331 Type "S" to set your printer to "attached-to-wyse".<BR>
22332 It is OK to include "attached-to-wyse" in your personal list below.
22334 This is very similar to "attached-to-ansi".
22335 The only difference is in the control characters sent to turn the printer
22336 on and off.
22337 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
22338 to turn on the printer and ESC LEFT_BRACKET 4 i
22339 to turn it off.
22340 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
22341 &lt;End of help on this topic&gt;
22342 </BODY></HTML>
22343 ====== h_config_set_att_wyse2 ======
22344 <HTML><HEAD>
22345 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
22346 </HEAD>
22347 <BODY>
22348 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
22350 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
22351 It is OK to include "attached-to-wyse-no-formfeed" in your personal
22352 list below.
22356 This is the same as the "attached-to-wyse" option except that a
22357 formfeed character will not be appended to the end of the print job.
22358 If your printer already ejects the paper by itself at the end of the
22359 job, you may prefer the "no-formfeed" form of this printer so that you
22360 don't get an extra blank page between print jobs.
22363 &lt;End of help on this topic&gt;
22364 </BODY></HTML>
22365 ====== h_config_set_stand_print ======
22366 <HTML>
22367 <HEAD>
22368 <TITLE>OPTION: Set default printer</TITLE>
22369 </HEAD>
22370 <H1>OPTION: Set default printer</H1>
22371 <BODY>
22372 Move to the printer you want and type "S" to set it to be your
22373 default printer.  This list is not modifiable by you and has been
22374 set up by the system administrators.  If there is more than one printer
22375 listed in the Command List, you will be able to cycle through that
22376 whole list at the time you print, starting with your default.
22377 It is OK to include entries from this Standard list in your personal
22378 list below.
22380 &lt;End of help on this topic&gt;
22381 </BODY>
22382 </HTML>
22383 ====== h_config_set_custom_print ======
22384 <HTML>
22385 <HEAD>
22386 <TITLE>OPTION: Set default printer</TITLE>
22387 </HEAD>
22388 <H1>OPTION: Set default printer</H1>
22389 <BODY>
22390 You may add as many print commands as you want to your personal list.
22391 Specify one of them as your default printer by moving to the printer
22392 you want and typing "S".  If there is more than one printer listed
22393 in the Command List, you will be able to cycle through that list at
22394 the time you print, starting with your default.  It is OK to include
22395 entries from the Standard list above or to include the command
22396 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
22397 "attached-to-wyse-no-formfeed" as one of the entries here.
22399 &lt;End of help on this topic&gt;
22400 </BODY>
22401 </HTML>
22402 ====== h_config_user_id =====
22403 <HTML>
22404 <HEAD>
22405 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
22406 </HEAD>
22407 <BODY>
22408 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
22410 This value is used as part of the "From" address on messages you send.
22411 It is also the default login name for remote IMAP server access.  Set this
22412 to the username part you want to appear on outgoing email.
22414 If you want to change the value of what gets included in the From header
22415 in messages you send (other than just the User ID)
22416 look <A HREF="h_config_change_your_from">here</A> for a description.
22418 <P><UL>   
22419 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22420 </UL><P>
22421 &lt;End of help on this topic&gt;
22422 </BODY>
22423 </HTML>
22424 ====== h_config_user_dom =====
22425 <HTML>
22426 <HEAD>
22427 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
22428 </HEAD>
22429 <BODY>
22430 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
22432 This value specifies the domain part (right-hand side) of your return
22433 address on outgoing email and is also used as the default domain for email
22434 composed to a local user.
22435 <!--chtml if pinemode="os_windows"-->
22436  This value is required for PC-Alpine. If you are unsure as to what this should be,
22437  contact your local help desk, system administrator, or Internet Service Provider.
22438 <!--chtml else-->
22439  If unset, Unix Alpine will obtain the domain from
22440  the system.  Often this value will be set for your whole site by the
22441  system administrator.<P>
22442 <!--chtml endif-->
22443 If you set this, see also the <A HREF="h_config_quell_local_lookup">
22444 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
22446 If you want to change the value of what gets included in the From header
22447 in messages you send (other than just the User Domain)
22448 look <A HREF="h_config_change_your_from">here</A> for a description.
22449 <P><UL>
22450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22451 </UL><P>
22452 &lt;End of help on this topic&gt;
22453 </BODY>
22454 </HTML>
22455 ====== h_config_smtp_server =====
22456 <HTML>
22457 <HEAD>
22458 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
22459 </HEAD>
22460 <BODY>
22461 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
22462 This value specifies the name of one or more SMTP 
22463 (Simple Mail Transfer Protocol) servers for sending mail. 
22464 <!--chtml if pinemode="os_windows"-->
22465 You must have an SMTP server for use with PC-Alpine.
22466 SMTP servers are
22467 normally set up by a system administrator for use by all members of a given
22468 campus or department.
22469 Contact your local help desk to ask what SMTP
22470 servers you should use.  
22471 <!--chtml else-->
22472 Unix Alpine users may not need to set an SMTP server.
22473 Alpine will attempt to execute the program (usually sendmail) that is used
22474 to insert mail into the mail system.
22475 If this works for you, you may leave this option blank.
22476 If there is an SMTP server running on the Unix host you may be able to
22477 improve sending performance slightly by setting the SMTP server option
22478 to &quot;localhost&quot; or to the actual name of the Unix host.
22480 If the Unix host doesn't work the way Alpine was expecting you will need to
22481 set the value of this option.
22482 SMTP servers are
22483 normally set up by a system administrator for use by all members of a given
22484 campus or department.
22485 Contact your local help desk to ask what SMTP
22486 servers you should use.  
22487 <!--chtml endif-->
22489 Your SMTP server may offer SMTP AUTH authentication.
22490 It may even require it.
22491 If your SMTP server offers SMTP AUTH authentication you may specify a
22492 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
22493 This parameter requires an associated value,
22494 the username identifier with which to establish the server
22495 connection.
22496 An example might be:
22499 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
22502 If AUTH authentication is offered by the server, this will cause Alpine to
22503 attempt to use it.
22504 If AUTH authentication is not offered by the server, this will cause Alpine
22505 to fail sending with an error similar to:
22508 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
22511 Another type of authentication that is used by some ISPs is called
22512 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
22513 which means that you have to authenticate
22514 yourself to the POP or IMAP server by opening a mailbox before you
22515 can send mail.
22516 To do this, you usually only have to open your INBOX.
22519 You may tell Alpine to use the
22520 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
22521 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
22522 parameter
22523 in this option.
22524 At this time &quot;/submit&quot; is simply equivalent to specifying
22525 port 587, though it may imply more than that at some point in the future.
22526 Some ISPs are blocking port 25 in order to reduce the amount of spam
22527 being sent to their users.
22528 You may find that the submit option allows you to get around such a block.
22531 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
22534 To specify any non-standard port number on the SMTP server you may follow
22535 the hostname with a colon followed by the portnumber.
22538 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
22541 Normally, when a connection is made to the Smtp-Server Alpine will attempt
22542 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
22543 If that fails then a non-encrypted connection will be attempted instead.
22544 You may specify that a TLS connection is required if you wish.
22545 If you append &quot;/starttls&quot; to the name then the connection will fail
22546 instead of falling back to a non-secure connection.
22549 <CENTER><SAMP>smtpserver.example.com/starttls</SAMP></CENTER>
22553 For more details about server name possibilities see
22554 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22557 <UL>
22558 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22559 </UL>
22561 &lt;End of help on this topic&gt;
22562 </BODY>
22563 </HTML>
22564 ====== h_config_nntp_server =====
22565 <HTML>
22566 <HEAD>
22567 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22568 <BODY>
22569 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22571 This value specifies the name of one or more NNTP
22572 (Network News Transfer Protocol)
22573 servers for reading and posting USENET news.
22574 NNTP servers are normally
22575 set up by a system administrator for use by all members of a given campus
22576 or department.
22577 Contact your local help desk to ask what NNTP servers you should use.  
22578 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22579 Often Unix Alpine users will find that this variable has been
22580 set for the whole system (and they don't have to worry about it).  
22581 <!--chtml endif-->
22582 When you define an NNTP server here, Alpine implicitly defines a news
22583 collection for you, assuming that server as the news server and assuming
22584 that you will use the NNTP protocol and a local newsrc configuration file
22585 for reading news.
22586 For more about reading news with Alpine, see
22587 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22589 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22590 or &quot;AUTHINFO USER&quot; authentication.
22591 It may even require it.
22592 If your NNTP server does offer such authentication you may specify a user name
22593 parameter to cause Alpine to attempt to authenticate.
22594 The same is true for the server name in a folder collection that uses NNTP.
22595 This parameter requires an associated value,
22596 the username identifier with which to establish the server connection.
22597 An example might be:
22600 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22603 If authentication is offered by the server, this will cause Alpine to
22604 attempt to use it.
22605 If authentication is not offered by the server, this will cause Alpine
22606 to fail with an error similar to:
22609 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22611 For more details about the server name possibilities see
22612 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22613 <P><UL>
22614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22615 </UL><P>
22616 &lt;End of help on this topic&gt;
22617 </BODY>
22618 </HTML>
22619 ====== h_config_inbox_path =====
22620 <HTML>
22621 <HEAD>
22622 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22623 </HEAD>
22624 <BODY>
22625 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22627 This value overrides the default value of your INBOX name/path/location.
22628 <!--chtml if pinemode="os_windows"-->
22629 PC-Alpine users must specify an inbox path and it must be a folder on an
22630 IMAP server.  
22631 <!--chtml else-->
22632 Unix and VMS Alpine users will often find that this variable
22633 has been pre-configured by your system administrator.  
22634 <!--chtml endif-->
22635 You may be able to specify an alternate INBOX that is either a local folder 
22636 or a folder on an IMAP server.
22638 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22639 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22640 mail server.
22642 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22643 details on the syntax of folder definitions.
22645 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22646 mail is disappearing.
22647 <P><UL>
22648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22649 </UL><P>
22650 &lt;End of help on this topic&gt;
22651 </BODY>
22652 </HTML>
22653 ====== h_config_change_your_from =====
22654 <HTML>
22655 <HEAD>
22656 <TITLE>How to Change your From Address</TITLE>
22657 </HEAD>
22658 <BODY>
22659 <H1>How to Change your From Address</H1>
22661 If the From address that Alpine includes in mail that you send is not correct,
22662 you may want to configure a different default value for the From address.
22663 You may follow these directions to change the default:
22666 <UL>
22667   <LI> Go to the Main Alpine Menu
22668   <LI> From there type the Setup Command
22669   <LI> From there type the Config Command
22670 </UL>
22673 You've probably already seen this SETUP CONFIGURATION screen.
22674 If not, there are many options you may want to set here.
22675 To set the value of the From header you may use the
22676 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22677 Find it by scrolling down a few pages or use the WhereIs command to
22678 search for &quot;customized&quot;.
22679 You may want to read the help text associated with the option.
22681 To add a custom From header, type the Add command and enter the
22682 full header line, including the leading &quot;From:&nbsp;&quot;.
22683 For example:
22685 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22687 Now exit the Setup command and try sending mail to yourself to see
22688 what the From line looks like.
22690 When you are in the composer you may edit the custom From line by typing
22691 Ctrl-R while your cursor is in the headers of the message and then moving
22692 to the From line and editing.
22693 If you want to leave the default value the same but add the possibility
22694 of being able to edit the header when you compose, add just the header
22695 name without a value.
22696 For example:
22698 <CENTER><SAMP>From:</SAMP></CENTER>
22700 If you change your From address you may also find it useful to add the
22701 changed From address to the
22702 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22703 configuration option.
22705 <UL>   
22706 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22707 </UL><P>
22708 &lt;End of help on this topic&gt;
22709 </BODY>
22710 </HTML>
22711 ====== h_config_default_fcc =====
22712 <HTML>
22713 <HEAD>
22714 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22715 </HEAD>
22716 <BODY>
22717 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22719 This value specifies where a copy of outgoing mail should be saved.  If
22720 this is not a path name, it will be in the default collection for saves.
22721 Any valid folder specification, local or IMAP, is allowed.  This default
22722 folder carbon copy only applies when the 
22723 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22724 is set to use the default folder.  
22725 <!--chtml if pinemode="os_windows"-->
22726 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22727 <!--chtml else-->
22728 Unix Alpine default
22729 is normally &quot;sent-mail&quot; in the default folder collection. 
22730 <!--chtml endif-->
22732 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22733 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22734 IMAP server (remember that in order to later access this remote folder through Alpine, it
22735 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22736 for more information). An example:<p>
22737 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22739 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22741 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22742 details on the syntax of folder definitions.
22744 <UL>   
22745 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22746 </UL><P>
22747 &lt;End of help on this topic&gt;
22748 </BODY>
22749 </HTML>
22750 ====== h_config_def_save_folder =====
22751 <HTML>
22752 <HEAD>
22753 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22754 </HEAD>
22755 <BODY>
22756 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22758 This option determines the default folder name for save-message operations 
22759 (&quot;saves&quot;).
22761 If this is not a path name, it will be in the default collection for saves.
22762 Any valid folder specification, local or IMAP, is allowed.  This default
22763 folder only applies when the
22764 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22765 doesn't override it.  
22766 <!--chtml if pinemode="os_windows"-->
22767 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22768 <!--chtml else-->
22769 Unix Alpine default
22770 is normally &quot;saved-messages&quot; in the default folder collection.
22771 <!--chtml endif-->
22772 If you access your email through an IMAP server, especially if you often switch between Unix
22773 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22774 IMAP server (remember that in order to later access this remote folder through Alpine, it
22775 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22776 for more information). An example:<p>
22777 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22779 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22780 details on the syntax of folder definitions.
22782 <UL>   
22783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22784 </UL><P>
22785 &lt;End of help on this topic&gt;
22786 </BODY>
22787 </HTML>
22788 ====== h_config_postponed_folder =====
22789 <HTML>
22790 <HEAD>
22791 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22792 </HEAD>
22793 <BODY>
22794 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22796 This value overrides the default name for the folder where postponed
22797 messages are saved.  If this is not a path name, it will be in the default
22798 collection for message Saves.  Any valid folder specification, local or
22799 remote, is allowed. 
22800 PC-Alpine default
22801 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22802 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22803 in the default collection. 
22805 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22806 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22807 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22808 in all Alpine copies you use. 
22809 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22810 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22811 for more information). An
22812 example:<p> 
22813 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22815 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22816 details on the syntax of folder definitions.
22818 <UL>   
22819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22820 </UL><P>
22821 &lt;End of help on this topic&gt;
22822 </BODY>
22823 </HTML>
22824 ====== h_config_read_message_folder =====
22825 <HTML>
22826 <HEAD>
22827 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22828 </HEAD>
22829 <BODY>
22830 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22832 By virtue of specifying a folder name here, Alpine will be configured to
22833 save all messages that you have read during a session into the designated
22834 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22835 between your really new email (in your INBOX) and those that you have
22836 already read.  Depending on how you define the 
22837 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22838 setting, you may or may not be asked when you quit
22839 Alpine if you want read messages to be moved to this folder.  In either
22840 case, moving the messages means they will be deleted from your INBOX.
22842 If this is not a path name, it will be in the default collection for
22843 saves.  Any valid folder specification, local or remote (via IMAP), is
22844 allowed.  There is no default for the name of the read message folder.
22846 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22847 details on the syntax of folder definitions.
22849 <UL>   
22850 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22851 </UL><P>
22852 &lt;End of help on this topic&gt;
22853 </BODY>
22854 </HTML>
22855 ====== h_config_form_folder =====
22856 <HTML>
22857 <HEAD>
22858 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22859 </HEAD>
22860 <BODY>
22861 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22863 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22864 contain messages that you have composed and that are intended to be
22865 sent in their original form repeatedly.
22868 Setting this variable will alter Alpine's usual behavior when you
22869 execute the Compose command.  Normally, Alpine offers a chance to
22870 continue a postponed or interrupted message should one or the other
22871 exist.  When this variable is set to a folder name that exists, Alpine
22872 will also offer the chance to select a message from the folder to
22873 insert into the composer (much like when continuing a postponed message).
22874 The difference, however, is that Alpine will not automatically delete
22875 the selected message from the Form Letter Folder.
22877 Setting this variable will also affect Alpine's behavior when you
22878 Postpone a message from the composer.  Normally, Alpine simply stashes
22879 the message away in your
22880 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22881 Regardless of the specified folder's existence, Alpine will ask which
22882 folder you intend the message to be stored in.  Choose the
22883 &quot;F&quot; option to store the message in your Form Letter Folder.
22884 This is the most common way to add a message to the folder.
22887 Another method of adding messages to the folder is via the Alpine
22888 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22889 you expect to send in the same form again, you can enter the Form
22890 Letter Folder's name in this field.  Alpine, as usual, will copy the
22891 message as it's sent.  Note, when you later select this message from 
22892 your Form Letter Folder, it will have the same recipients as the original
22893 message.
22896 To delete a message from the Form Letter Folder, you can either select
22897 the folder from a suitable FOLDER LIST screen, or use the Delete
22898 command in the MESSAGE INDEX offered when selecting from the folder as
22899 part of the Compose command.  You can delete a Form Letter Folder just
22900 as any other folder from a suitable FOLDER LIST screen.
22903 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22904 facility can be used
22905 to replace the Form Letter Folder.
22908 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22909 details on the syntax of folder definitions.
22912 <UL>   
22913 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22914 </UL><P>
22915 &lt;End of help on this topic&gt;
22916 </BODY>
22917 </HTML>
22918 ====== h_config_archived_folders =====
22919 <HTML>
22920 <HEAD>
22921 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22922 </HEAD>
22923 <BODY>
22924 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22926 This is like
22927 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22928 only more general.  You may archive
22929 any of the folders in your incoming collection.  This is a list of folder
22930 pairs, with the first separated from the second in the pair by a space.
22931 The first folder in a pair is the folder you want to archive, and the
22932 second folder is the folder that read messages from the first should be
22933 moved to.  Depending on how you define the
22934 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22935 setting, you may or may not be asked when you
22936 leave the first folder if you want read messages to be moved to the
22937 second folder.  In either case, moving the messages means they will be
22938 deleted from the first folder.
22940 The name of the first folder in each pair can be either the technical
22941 specification of the folder (like what appears in your configuration file)
22942 or (much easier) the nickname that you gave the folder when you made it
22943 an incoming folder.
22945 For example:<p>
22946 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22947 <p>or, using nicknames:<p>
22948 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22950 If these are not path names, they will be in the default collection for
22951 saves. Any valid folder specification, local or remote (via IMAP), is
22952 allowed. There is no default.
22954 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22955 details on the syntax of folder definitions.
22957 <UL>   
22958 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22959 </UL><P>
22960 &lt;End of help on this topic&gt;
22961 </BODY>
22962 </HTML>
22963 ====== h_config_newsrc_path ======
22964 <HTML>
22965 <HEAD>
22966 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22967 </HEAD>
22968 <BODY>
22969 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22971 This option overrides the default name Alpine uses for your "newsrc" news
22972 status and subscription file.  If set, Alpine will take this value as the
22973 full pathname for the desired newsrc file.<P>
22975 If this option is <B>not</B> set, 
22976 <!--chtml if pinemode="os_windows"-->
22977 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22978 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22979 directory as your pinerc file for NEWSRC.
22980 <!--chtml else-->
22981 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22982 your account's home directory).
22983 <!--chtml endif-->
22984 <P><UL>
22985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22986 </UL>
22988 &lt;End of help on this topic&gt;
22989 </BODY>
22990 </HTML>
22991 ====== h_config_literal_sig =====
22992 <HTML>
22993 <HEAD>
22994 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22995 </HEAD>
22996 <BODY>
22997 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22999 With this option your actual signature, as opposed to
23000 the name of a file containing your signature,
23001 is stored in the Alpine configuration file.
23002 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
23005 This is simply a different way to store the signature.
23006 The signature is stored inside your Alpine configuration file instead of in
23007 a separate file.
23008 Tokens work the same way they do with the
23009 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
23010 help.
23013 The Setup/Signature command on Alpine's MAIN MENU will edit
23014 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
23015 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
23016 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
23017 instead.
23020 The two character sequence &#92;n (backslash followed by
23021 the character n) will be used to signify a line-break in your signature.
23022 You don't have to enter the &#92;n, but it will be visible in the
23023 SETUP CONFIGURATION window after you are done editing the signature.
23026 <UL>   
23027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23028 </UL><P>
23029 &lt;End of help on this topic&gt;
23030 </BODY>
23031 </HTML>
23032 ====== h_config_signature_file =====
23033 <HTML>
23034 <HEAD>
23035 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
23036 </HEAD>
23037 <BODY>
23038 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
23040 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
23041 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
23042 You can tell that that is the case because the value of the
23043 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
23045 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
23047 You may either use all Literal Signatures (signatures stored in your
23048 configuration file) throughout Alpine, or all signature files.
23049 You can't mix the two.
23051 This is the name of a file that will be automatically inserted into
23052 outgoing messages.
23053 It typically contains information such as your
23054 name, email address and organizational affiliation.
23055 Alpine adds the
23056 signature into the message as soon as you enter the composer so you
23057 can choose to remove it or edit it on a message by message basis.
23058 Signature file placement in message replies is controlled by the
23059 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
23060 setting in the feature list.
23063 The default file name is
23064 <!--chtml if pinemode="os_windows"-->
23065 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
23066 PINERC file is a local file.
23067 If your PINERC file is remote, then it will be in the directory specified
23068 by the &quot;-aux local_directory&quot; command line option.
23069 <!--chtml else-->
23070 &quot;.signature&quot;.
23071 <!--chtml endif-->
23074 To create or edit your signature file choose Setup from the MAIN MENU
23075 and then select S for Signature (Main/Setup/Signature).  This puts you
23076 into the Signature Editor where you can enter a <EM>few</EM> lines of
23077 text containing your identity and affiliation.
23080 If the filename is followed by a vertical bar (|) then instead
23081 of reading the contents of the file the file is assumed to be a
23082 program that will produce the text to be used on its standard output.
23083 The program can't have any arguments and doesn't receive any input from Alpine,
23084 but the rest of the processing works as if the contents came from a file.
23087 Instead of storing the data in a local file, the
23088 signature data may be stored remotely in an IMAP folder.
23089 In order to do this, 
23090 you must use a remote name for the file.
23091 A remote <!--#echo var="VAR_signature-file"--> name might look like:
23093 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
23096 The syntax used here is the same as the syntax used for remote configuration
23097 files from the command line.
23098 Note that you may not access an existing signature file remotely,
23099 you have to create a new <EM>folder</EM> that contains the signature data.
23100 If the name you use here for the signature file is a remote name, then when
23101 you edit the file from the Setup/Signature command the data will be stored
23102 remotely in the folder.
23103 You aren't required to do anything special to create the folder, it
23104 gets created automatically if you use a remote name.
23107 Besides regular text, the signature file may also contain
23108 (or a signature program may produce) tokens that
23109 are replaced with text that usually depends on the message you are replying
23110 to or forwarding.
23111 For example, if the signature file contains the token
23113 <CENTER><SAMP>_DATE_</SAMP></CENTER>
23115 anywhere in the text, then that token is replaced by the date
23116 the message you are replying to or forwarding was sent.
23117 If it contains
23119 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
23121 that is replaced with the current date.
23122 The first is an example of a token that depends on the message you
23123 are replying to (or forwarding) and the second is an example which
23124 doesn't depend on anything other than the current date.
23125 You have to be a little careful with this facility since tokens that
23126 depend on the message you are replying to or forwarding will be replaced
23127 by nothing in the case where you are composing a new message from scratch.
23128 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
23129 in this respect.
23130 It allows you to use different signature files in different cases.
23133 The list of tokens available for use in the signature file is
23134 <A HREF="h_index_tokens">here</A>.
23137 Instead of, or along with the use of &quot;roles&quot; to give you
23138 different signature files in different situations, there is also
23139 a way to conditionally include text based
23140 on whether or not a token would result in specific replacement text.
23141 For example, you could include some text based on whether or not
23142 the _NEWS_ token would result in any newsgroups if it was used.
23143 This is explained in detail
23144 <A HREF="h_reply_token_conditionals">here</A>.
23145 This isn't for the faint of heart.
23147 In the very unlikely event that you want to include a literal token
23148 in the signature you must precede it with a backslash character.
23149 For example,
23151 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
23153 would produce something like
23155 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
23157 It is not possible to have a literal backslash followed by an expanded token.
23159 An alternate method for storing the signature data is available by using the
23160 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
23161 This variable will be used by default.
23163 <UL>   
23164 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23165 </UL><P>
23166 &lt;End of help on this topic&gt;
23167 </BODY>
23168 </HTML>
23169 ====== h_config_init_cmd_list =====
23170 <HTML>
23171 <HEAD>
23172 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
23173 </HEAD>
23174 <BODY>
23175 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
23177 The initial keystroke--or command--list option lets you start Alpine at
23178 any place you like.
23179 Whatever keystrokes you specify here will be executed
23180 by Alpine upon startup as a macro.
23181 The words SPACE, TAB, DOWN, UP, LEFT, and
23182 RIGHT indicate the pressing of those keys.
23183 CR indicates the pressing of the RETURN key.
23184 F1 through F12 represent the function keys, and ^ followed
23185 by a character indicates that key pressed along with the control key (in
23186 other words, ^P means Ctrl-P).
23187 As a shortcut notation, an element of the list may be several characters
23188 surrounded by double-quotes (").
23189 That will be expanded into the individual keystrokes
23190 (excluding the double-quote characters).
23191 For example, the quoted-string
23193 <P><CENTER>"ABC"</CENTER>
23196 is interpreted the same as the three separate list members
23198 <P><CENTER>A and B and C</CENTER>
23201 which is also the same as
23203 <P><CENTER>A,B,C</CENTER>
23206 An example: To view message 1 on startup,
23207 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
23209 <P><CENTER>I,J,1,CR,V</CENTER>
23212 An equivalent version of this is
23214 <P><CENTER>"IJ1",CR,V</CENTER>
23217 Restrictions: You cannot pre-type into the composer with the initial
23218 keystroke list, and you cannot mix function key commands with letter
23219 commands.
23221 <P><UL>   
23222 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23223 </UL>
23225 &lt;End of help on this topic&gt;
23226 </BODY>
23227 </HTML>
23228 ====== h_config_comp_hdrs =====
23229 <html>
23230 <header>
23231 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
23232 </header>
23233 <body>
23234 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
23236 You can control which headers you want visible when composing outgoing
23237 email using this option.
23238 You can specify any of the regular set, any
23239 <A HREF="h_compose_richhdr">Rich Header</A>,
23240 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
23241 that you have already defined.
23242 If you use this setting at all, you must specify all the
23243 headers you want to see, you can't just add to the regular header set.
23244 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
23246 Note that the "Newsgroups:" header will be abbreviated in the Composer
23247 display, but should be spelled out in full here.<p>
23248 <UL>   
23249 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23250 </UL><P>
23251 &lt;End of help on this topic&gt;
23252 </body>
23253 </html>
23254 ====== h_config_custom_hdrs =====
23255 <HTML>
23256 <HEAD>
23257 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
23258 </HEAD>
23259 <BODY>
23260 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
23262 You may add your own custom headers to outgoing messages.
23263 Each header you specify here must include the header tag 
23264 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
23265 and may optionally include a value for that header.
23266 If you want to see these custom headers each time you compose a message,
23267 you must add them to your
23268 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
23269 otherwise they become part
23270 of the rich header set that you only see when you press the
23271 <A HREF="h_compose_richhdr">Rich Header</A>
23272 <!--chtml if pinemode="function_key"-->(F5)
23273 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
23274 (If you are looking for a way to change which headers are <EM>displayed</EM>
23275 when you view a message, take a look at the
23276 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
23277 option instead.)
23278 Here's an example that shows how you might set your From address
23280 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
23282 and another showing how you might set a Reply-To address
23284 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
23286 You may also set non-standard header values here.
23287 For example, you could add
23289 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
23291 or even
23293 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
23295 If you include a value after the colon then that header will be included
23296 in your outgoing messages unless you delete it before sending.
23297 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
23298 it will not be included in outgoing messages unless you edit a value
23299 in manually.
23300 For example, if
23302 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
23304 is in the list, then the Reply-To header will be available for editing
23305 but won't be included unless a value is added while in the composer.
23307 It's actually a little more complicated than that.
23308 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
23309 defaults.
23310 If the message you are about to compose already has a value for a header,
23311 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
23312 For example, if you are Replying to a message the Subject field
23313 will already be filled in.
23314 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
23315 custom subject will <EM>NOT</EM> be used.
23316 The subject derived from the subject of the message you are Replying
23317 to will be used instead.
23319 It is also possible to make header setting even more complicated and more
23320 automatic by using
23321 <A HREF="h_rules_roles">Roles</A>,
23322 but if all you want to do is set a default value for a header, you don't
23323 need to think about Roles.
23325 If you change your From address you may also find it useful to add the
23326 changed From address to the
23327 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
23328 configuration option.
23330 Limitation: Because commas are used to separate the list of
23331 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
23332 header contain a comma.
23333 Nor is there currently an &quot;escape&quot; mechanism provided
23334 to make this work.
23335 <P><UL>
23336 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23337 </UL>
23339 &lt;End of help on this topic&gt;
23340 </BODY>
23341 </HTML>
23342 ====== h_config_viewer_headers =====
23343 <HTML>
23344 <HEAD>
23345 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
23346 </HEAD>
23347 <BODY>
23348 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
23350 You may change the default list of headers that are viewed by listing
23351 the headers you want to view here.  If the headers in your
23352 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
23353 will be shown.  The order of the headers you list will be honored.  If
23354 the special value &quot;all-except&quot; is included as the first
23355 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
23356 message except those in the list will be shown.  The values are all
23357 case insensitive.
23360 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
23361 then the original default headers are ignored.  So, if you just wanted
23362 to add the header Organization to the list, you would have to list
23363 Organization plus all of the other headers originally in the default
23364 list.  If you just included Organization and nothing else, then you
23365 would see only the Organization header, nothing else.
23368 The default list of headers includes:
23369 <UL>
23370   <LI>From
23371   <LI>Resent-From
23372   <LI>To
23373   <LI>Resent-To
23374   <LI>Cc
23375   <LI>Resent-cc
23376   <LI>Bcc
23377   <LI>Newsgroups
23378   <LI>Followup-To
23379   <LI>Date
23380   <LI>Resent-Date
23381   <LI>Subject
23382   <LI>Resent-Subject
23383   <LI>Reply-To
23384 </UL>
23387 If you are looking for a way to control which headers are included in
23388 outgoing mail and are visible or not in the composer, take a look at the
23389 options
23390 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
23391 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
23392 this option.
23394 <UL>   
23395 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23396 </UL><P>
23397 &lt;End of help on this topic&gt;
23398 </BODY>
23399 </HTML>
23400 ====== h_config_viewer_margin_left =====
23401 <HTML>
23402 <HEAD>
23403 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
23404 </HEAD>
23405 <BODY>
23406 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
23408 This variable controls the left-hand vertical margin's width in
23409 Alpine's Message Viewing screen.
23410 Its value is the number of space characters preceding each displayed line.
23411 For consistency with
23412 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
23413 you may specify the column number to start in
23414 (column numbering begins with number 1)
23415 instead of the width of the margin by appending a lower case letter
23416 &quot;c&quot; to the number.
23417 For example, a value of &quot;2c&quot; means to start the text in column two,
23418 which is entirely equivalent to a value of &quot;1&quot;, which means to
23419 leave a margin of 1 space.
23421 The default is a left margin of 0 (zero).
23422 Misconfigurations (for example, negative values or values with starting
23423 left columns greater than the ending right column)
23424 are silently ignored.
23425 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
23426 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23427 instead.
23430 &lt;End of help on this topic&gt;
23431 </BODY>
23432 </HTML>
23433 ====== h_config_viewer_margin_right =====
23434 <HTML>
23435 <HEAD>
23436 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
23437 </HEAD>
23438 <BODY>
23439 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
23441 This variable controls the right-hand vertical margin's width in
23442 Alpine's Message Viewing screen.
23443 Its value is the number of space characters following each displayed line.
23444 You may specify the column number to end the text in
23445 (column numbering begins with number 1)
23446 instead of the width of the margin by appending a lower case letter
23447 &quot;c&quot; to the number.
23448 For example, a value of &quot;76c&quot; means to end the text in column 76.
23449 If the screen is 80 characters wide, this is equivalent to a value
23450 of &quot;4&quot;, which means to leave a margin of 4 spaces.
23451 However, if you use different size screens at different times, then these
23452 two values are not equivalent.
23454 The default right margin is 4.
23455 Misconfigurations (for example, negative values or values with starting
23456 left columns greater than the ending right column)
23457 are silently ignored.
23458 If the number of columns for text between the
23459 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
23460 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23461 instead.
23464 &lt;End of help on this topic&gt;
23465 </BODY>
23466 </HTML>
23467 ====== h_config_quote_suppression =====
23468 <HTML>
23469 <HEAD>
23470 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
23471 </HEAD>
23472 <BODY>
23473 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
23475 This option should be used with care.
23476 It will cause some of the quoted text to be eliminated from the
23477 display when viewing a message in the MESSAGE TEXT screen.
23478 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
23479 value &quot;5&quot;,
23480 this will cause quoted text that is longer than five lines to be truncated.
23481 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
23482 Quoted text of more than six lines will have the first five lines displayed
23483 followed by a line that looks something like
23485 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
23487 As a special case, if exactly one line of quoted text would be hidden, the
23488 entire quote will be shown instead.
23489 So for the above example, quoted text that is exactly six lines long will
23490 will be shown in its entirety.
23491 (In other words, instead of hiding a single line and adding a line
23492 that announces that one line was hidden, the line is just shown.)
23494 If the sender of a message has carefully chosen the quotes that he or she
23495 includes, hiding those quotes may change the meaning of the message.
23496 For that reason, Alpine requires that when you want to set the value of this
23497 variable to something less than four lines, you actually have to set it
23498 to the negative of that number.
23499 So if you want to set this option to &quot;3&quot;, you actually have to
23500 set it to &quot;-3&quot;.
23501 The only purpose of this is to get you to think about whether or not you
23502 really want to do this!
23503 If you want to delete all quoted text you set the value of this option
23504 to the special value &quot;-10&quot;.
23506 The legal values for this option are
23508 <TABLE>   
23509 <TR>
23510   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23511   <TD> Default, don't hide anything </TD>
23512 </TR>
23513 <TR>
23514   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
23515   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
23516 </TR>
23517 <TR>
23518   <TD> &nbsp;4,5,6,...&nbsp; </TD>
23519   <TD> Suppress if more than that many lines </TD>
23520 </TR>
23521 <TR>
23522   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23523   <TD> Suppress all quoted lines </TD>
23524 </TR>
23525 </TABLE>
23527 If you set this option to a non-default value you may sometimes wish to
23528 view the quoted text that is not shown.
23529 When this is the case, the
23530 <A HREF="h_common_hdrmode">HdrMode Command</A>
23531 may be used to show the hidden text.
23532 Typing the &quot;H&quot; command once will show the hidden text.
23533 Typing a second &quot;H&quot; will also turn on Full Header mode.
23534 The presence or absence of the HdrMode command is determined by the
23535 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
23536 Feature-List option in your Alpine configuration, so you will want to
23537 be sure that is turned on if you use quote suppression.
23539 For the purposes of this option, a quote is a line that begins with the
23540 character &quot;&gt;&quot;.
23542 Quotes are only suppressed when displaying a message on the screen.
23543 The entire quote will be left intact when printing or forwarding or something
23544 similar.
23546 &lt;End of help on this topic&gt;
23547 </BODY>
23548 </HTML>
23549 ====== h_config_saved_msg_name_rule =====
23550 <HTML>
23551 <HEAD>
23552 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23553 </HEAD>
23554 <BODY>
23555 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23557 This option determines the default folder name when saving
23558 a message.
23561 The default option is &quot;default-folder&quot;, which is the folder
23562 called &quot;saved-messages&quot; in Unix Alpine and
23563 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23564 the Alpine option called
23565 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23568 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23569 get the chosen option's value for the message being saved (or for the
23570 first message being saved if using an aggregrate save).
23571 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23572 value of who the message came from (i.e. the from address).
23573 Alpine then attempts to save the message to a folder matching that value.
23574 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23575 &quot;by-sender&quot;.
23576 The opposite is also true.
23577 If &quot;by-recipient&quot; is chosen and the message was posted to a
23578 newsgroup, Alpine will use the newsgroup name.
23579 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23580 &quot;by-from&quot;.
23583 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23584 to use the personal name part of the address instead of the mailbox part.
23585 If any of the &quot;by-nick&quot; options are chosen, the
23586 address is looked up in your address book and if found, the
23587 nickname for that entry is used.
23588 Only simple address book entries are checked, not distribution lists.
23589 Similarly, if any of the
23590 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23591 address book entry is used.
23592 If by-realname, or the by-nick or by-fcc lookups result in no value,
23593 then if the chosen option ends with the &quot;then-from&quot;,
23594 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23595 or &quot;then-recip&quot; suffix, Alpine
23596 reverts to the same behavior as &quot;by-from&quot;,
23597 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23598 depending on which option was specified.
23599 If the chosen option doesn't end with one of
23600 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23601 folder when no match is found in the address book.
23604 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23605 to save to the folder that you saved to the last time you saved a
23606 message.  The first time you save a message in an Alpine session, Alpine
23607 attempts to save the message to the default folder.
23610 Here is an example to make some of the options clearer.
23611 If the message is From
23613 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23615 and this rule is set to &quot;by-from&quot;, then the default folder offered
23616 in the save dialog would be &quot;flint&quot;.
23618 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23619 be &quot;Fred Flintstone&quot;.
23621 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23622 for the address &quot;flint@bedrock.org&quot; in your address book.
23623 If an entry is found and it has a nickname associated with it, that nickname
23624 will be offered as the default folder.
23625 If not, the default saved message folder will be offered as the default.
23627 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23628 for the address &quot;flint@bedrock.org&quot; in your address book.
23629 If an entry is found and it has an Fcc associated with it, that Fcc
23630 will be offered as the default folder.
23631 If not, the default saved message folder will be offered as the default.
23633 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23634 for the address &quot;flint@bedrock.org&quot; in your address book.
23635 If an entry is found and it has a nickname associated with it, that nickname
23636 will be offered as the default folder.
23637 If it is not found (or has no nickname) then the default offered will be
23638 the same as it would be for the &quot;by-from&quot; rule.
23639 That is, it would be &quot;flint&quot;
23641 <UL>   
23642 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23643 </UL><P>
23644 &lt;End of help on this topic&gt;
23645 </BODY>
23646 </HTML>
23647 ====== h_config_fcc_rule =====
23648 <HTML>
23649 <HEAD>
23650 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23651 </HEAD>
23652 <BODY>
23653 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23655 This option determines the default name for folder carbon copy. Choose
23656 one:
23658 <DL>
23659 <DT>default-fcc</DT>
23660 <DD>This is the normal default, the value of which is set in the
23661 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23662 configuration.
23663 </DD>
23665 <DT>last-fcc-used</DT>
23666 <DD> Causes Alpine to use the folder that was last
23667 used in the fcc field
23668 </DD>
23670 <DT>by-nickname</DT>
23671 <DD>Means that Alpine will use the nickname
23672 from your address book that matches the first address in the To line.
23673 If there is no match, it will use the value of the
23674 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23675 </DD>
23677 <DT>by-recipient</DT>
23678 <DD>Means Alpine will form a folder name
23679 based on the left hand side of the first address in the To line.
23680 </DD>
23682 <DT>by-nick-then-recip</DT>
23683 <DD>Means that it will use the
23684 matching nickname from your address book if there is one, otherwise it
23685 will extract the recipient name from the address and use that (like
23686 by-recipient).
23687 </DD>
23689 <DT>current-folder</DT>
23690 <DD>Causes a copy to be written to
23691 the currently open folder, unless that is the INBOX.  In the case
23692 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23693 used instead.
23694 </DD>
23695 </DL>
23698 Note: Whatever the fcc specified by the rule here, it will be
23699 over-ridden by any fcc entries you have in your address book.
23702 <UL>   
23703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23704 </UL><P>
23705 &lt;End of help on this topic&gt;
23706 </BODY>
23707 </HTML>
23708 ====== h_config_sort_key =====
23709 <HTML>
23710 <HEAD>
23711 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23712 </HEAD>
23713 <BODY>
23714 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23716 This option determines the order in which messages will be displayed in
23717 the MESSAGE INDEX screen.  Choose from:
23719 <UL>
23720  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23721  <LI> <A HREF="h_index_sort_date">Date</A>
23722  <LI> <A HREF="h_index_sort_subj">Subject</A>
23723  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23724  <LI> <A HREF="h_index_sort_thread">Thread</A>
23725  <LI> <A HREF="h_index_sort_from">From</A>
23726  <LI> <A HREF="h_index_sort_size">Size</A>
23727  <LI> <A HREF="h_index_sort_score">Score</A>
23728  <LI> <A HREF="h_index_sort_to">To</A>
23729  <LI> <A HREF="h_index_sort_cc">Cc</A>
23730 </UL>
23733 Each type of sort may also be reversed.
23734 Normal default is by &quot;Arrival&quot;.
23737 A possible point of confusion arises when you change the configuration
23738 of the <!--#echo var="VAR_sort-key"-->.
23739 The folder will normally be re-sorted when you go back to viewing the
23740 index.
23741 However, if you have manually sorted the folder with the
23742 Sort
23743 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23744 command, then it will not be re-sorted until the next time it is opened.
23747 <UL>   
23748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23749 </UL><P>
23750 &lt;End of help on this topic&gt;
23751 </BODY>
23752 </HTML>
23753 ====== h_config_other_startup =====
23754 <HTML>
23755 <HEAD>
23756 <TITLE>OPTION: Set Startup Rule</TITLE>
23757 </HEAD>
23758 <BODY>
23759 <H1>OPTION: Set Startup Rule</H1>
23761 This option determines which message will be the <EM>current message</EM> when
23762 the folder is first opened.
23763 It works the same way that the option
23764 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23765 works, so look there for help.
23766 It may be used for any folder, not just incoming folders.
23769 <UL>   
23770 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23771 </UL><P>
23772 &lt;End of help on this topic&gt;
23773 </BODY>
23774 </HTML>
23775 ====== h_config_perfolder_sort =====
23776 <HTML>
23777 <HEAD>
23778 <TITLE>Set Sort Order</TITLE>
23779 </HEAD>
23780 <BODY>
23781 <H1>Set Sort Order</H1>
23783 This option determines the order in which messages will be displayed in
23784 the MESSAGE INDEX screen when the Current Folder Type set in the
23785 Pattern is a match. Choose from:
23787 <UL>
23788  <LI> <A HREF="h_index_sort_default">Default</A>
23789  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23790  <LI> <A HREF="h_index_sort_date">Date</A>
23791  <LI> <A HREF="h_index_sort_subj">Subject</A>
23792  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23793  <LI> <A HREF="h_index_sort_thread">Thread</A>
23794  <LI> <A HREF="h_index_sort_from">From</A>
23795  <LI> <A HREF="h_index_sort_size">Size</A>
23796  <LI> <A HREF="h_index_sort_score">Score</A>
23797  <LI> <A HREF="h_index_sort_to">To</A>
23798  <LI> <A HREF="h_index_sort_cc">Cc</A>
23799 </UL>
23802 Each type of sort may also be reversed.
23803 Normal default is by &quot;Arrival&quot;.
23806 A possible point of confusion arises when you change the configuration
23807 of the Sort Order for the currently open folder.
23808 The folder will normally be re-sorted when you go back to viewing the
23809 index.
23810 However, if you have manually sorted the folder with the
23811 Sort
23812 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23813 command, then it will not be re-sorted until the next time it is opened.
23816 <UL>   
23817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23818 </UL><P>
23819 &lt;End of help on this topic&gt;
23820 </BODY>
23821 </HTML>
23822 ====== h_config_fld_sort_rule =====
23823 <HTML>
23824 <HEAD>
23825 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23826 </HEAD>
23827 <BODY>
23828 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23830 This option controls the order in which folder list entries will be
23831 presented in the FOLDER LIST screen.  Choose one of the following:
23833 <DL>
23834 <DT>Alphabetical</DT>
23835 <DD>sort by alphabetical name independent of type
23836 </DD>
23838 <DT>Alpha-with-dirs-last</DT>
23839 <DD>sort by alphabetical name grouping directory entries
23840 to the end of the list
23841 </DD>
23843 <DT>Alpha-with-dirs-first</DT>
23844 <DD>sort by alphabetical name grouping directory entries
23845 to the start of the list
23846 </DD>
23847 </DL>
23849 The normal default is &quot;Alphabetical&quot;.
23852 <UL>   
23853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23854 </UL><P>
23855 &lt;End of help on this topic&gt;
23856 </BODY>
23857 </HTML>
23858 ====== h_config_ab_sort_rule =====
23859 <HTML>
23860 <HEAD>
23861 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23862 </HEAD>
23863 <BODY>
23864 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23866 This option controls the order in which address book entries will be
23867 presented.  Choose one of the following:
23869 <DL>
23870 <DT>fullname</DT>
23871 <DD>use fullname field, lists mixed in
23872 </DD>
23874 <DT>fullname-with-lists-last</DT>
23875 <DD>use fullname field, but put lists at end
23876 </DD>
23878 <DT>nickname</DT>
23879 <DD>use nickname field, lists mixed in
23880 </DD>
23882 <DT>nickname-with-lists-last</DT>
23883 <DD>use nickname field, but put lists at end
23884 </DD>
23886 <DT>dont-sort</DT>
23887 <DD>don't change order of file
23888 </DD>
23889 </DL>
23892 The normal default is &quot;fullname-with-lists-last&quot;.
23893 If you use an address book from more than one computer and those
23894 computers sort the address book differently then the sort order
23895 will be the order where the last change to the address book was
23896 made.
23897 There are two reasons the sorting might be different on different
23898 systems.
23899 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23900 places.
23901 Second, the collation rules on the two computers may be different.
23902 For example, one system might ignore special characters while the other
23903 doesn't or one may sort upper and lower case letters together while
23904 the other doesn't.
23905 In any case, the order you see is the order on the system where the
23906 last change was made, for example by an address book edit or a
23907 Take Address command.
23910 <UL>   
23911 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23912 </UL><P>
23913 &lt;End of help on this topic&gt;
23914 </BODY>
23915 </HTML>
23916 ====== h_config_post_char_set =====
23917 <HTML>
23918 <HEAD>
23919 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23920 </HEAD>
23921 <BODY>
23922 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23924 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23925 when sending messages.
23929 When sending a message the text typed in the composer is
23930 labeled with the character set specified by this option.
23931 If the composed text is not fully representable in the 
23932 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23933 instead;
23936 Attachments are labeled with your
23937 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23940 Generally, there should be little need to set this option.
23941 If left unset, the
23942 default behavior is to label composed text as specifically as
23943 possible.  That is, if the composed text has no non-ASCII characters,
23944 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23945 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23946 attempt to automatically detect a number of character sets including ISO-8859-15,
23947 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23948 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23949 If the message contains a mix of character sets,
23950 it is labeled as &quot;UTF-8.&quot;
23954 This setting is provided to allow you to force a particular character set that
23955 Alpine does not automatically detect. For example, if a message is representable
23956 in more than one character set then Alpine may choose a different default
23957 than you want.
23958 Lastly, by setting this option explicitly to
23959 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23960 &quot;UTF-8&quot; instead of something more specific.
23963 In the Setup/Config screen you may choose from a list of all the
23964 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23967 The options
23968 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23969 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23970 are closely related.
23971 Setting the feature
23972 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23973 should cause this option to be ignored.
23976 <UL>   
23977 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23978 </UL><P>
23979 &lt;End of help on this topic&gt;
23980 </BODY>
23981 </HTML>
23982 ====== h_config_unk_char_set =====
23983 <HTML>
23984 <HEAD>
23985 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23986 </HEAD>
23987 <BODY>
23988 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23990 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23991 when reading or replying to messages.
23995 A text message should either be made up of all US-ASCII characters
23996 or it should contain a charset label which tells the software which
23997 character set encoding to use to interpret the message.
23998 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23999 This message is outside of the standards so any attempt to read it could fail.
24000 When Alpine attempts to read such a message it will try to interpret the
24001 text in the character set you specify here.
24002 For example, if you have correspondents who send you unlabeled messages that
24003 are usually made up of characters from the WINDOWS-1251 character set, setting
24004 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
24005 allow you to read those messages.
24006 Of course, if the unlabeled message is actually in some other character set,
24007 then you may see garbage on your screen.
24009 Instead of just unlabeled text, this option also affects text which is labeled
24010 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
24011 or &quot;US-ASCII&quot;.
24014 In the Setup/Config screen you may choose from a list of all the
24015 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24018 <UL>   
24019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24020 </UL><P>
24021 &lt;End of help on this topic&gt;
24022 </BODY>
24023 </HTML>
24024 ====== h_config_char_set =====
24025 <HTML>
24026 <HEAD>
24027 <TITLE>OPTION: Display Character Set</TITLE>
24028 </HEAD>
24029 <BODY>
24030 <H1>OPTION: Display Character Set</H1>
24032 The Display Character Set configuration option is used when viewing messages.
24034 Alpine uses Unicode characters internally and 
24035 it is a goal for Alpine to handle email in many different languages.
24036 Alpine will properly display only left-to-right character sets
24037 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
24038 font is in use, in the sense that
24039 characters are assumed to take up zero, one, or two character cell
24040 widths from left to right on the screen. This is true even in PC-Alpine.
24043 Alpine recognizes some local character sets that are right-to-left
24044 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
24045 (Arabic) and properly converts texts in these character sets to/from
24046 Unicode; however, there are known display bugs with these character
24047 sets.
24050 There are three possible configuration character settings and some
24051 environment variable settings that can affect how Alpine
24052 handles international characters.
24053 The first two of these are only available in UNIX Alpine.
24054 The three configuration options are
24055 Display Character Set,
24056 Keyboard Character Set, and
24057 <!--#echo var="VAR_posting-character-set"-->.
24058 The Keyboard Character Set defaults to being the same value
24059 as the Display Character Set, and that is usually correct, because
24060 the keyboard almost always produces characters in the same character set
24061 as the display displays.
24062 The Display Character Set is the character set that Alpine
24063 will attempt to use when sending characters to the display.
24066 By default, the Display Character Set variable is not set and UNIX Alpine
24067 will attempt to get this information from the environment.
24068 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
24069 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
24070 An explicit configuration setting for Display Character Set will,
24071 of course, override any default setting.
24073 For PC-Alpine the Display Character Set
24074 and the Keyboard Character Set
24075 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
24078 It is probably best to use UNIX Alpine in a terminal emulator
24079 capable of displaying UTF-8 characters, since that will allow you to
24080 view just about any received text that is correctly formatted (note,
24081 however, the above comments about known index display bugs with certain
24082 character sets). You'll need to have an emulator that uses a UTF-8 font
24083 and you'll need to set up your environment to use a UTF-8 charmap. For
24084 example, on a Linux system you might include
24086 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
24089 or something similar in your UNIX startup files.
24090 You'd also have to select a UTF-8 font in your terminal emulator.
24093 The types of values that the character set variables may be set to are
24094 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
24095 The <CODE>ISO-2022</CODE> character sets are not supported for input or
24096 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
24097 for use only as a <!--#echo var="VAR_posting-character-set"-->.
24098 In the Setup/Config screen you may choose from a list of all the
24099 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24100 Here is a list of many of the possible character sets:
24103 <TABLE>
24104 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
24105 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
24106 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
24107 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
24108 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
24109 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
24110 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
24111 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
24112 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
24113 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
24114 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
24115 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
24116 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
24117 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
24118 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
24119 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
24120 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
24121 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
24122 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
24123 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukrainian</TD> </TR>
24124 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
24125 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
24126 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
24127 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24128 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24129 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24130 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
24131 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
24132 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
24133 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
24134 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
24135 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
24136 </TABLE>
24139 When reading incoming email, Alpine understands many different
24140 character sets and is able to convert the incoming mail into Unicode.
24141 The Unicode will be converted to the Display Character Set
24142 for display on your terminal.
24143 Characters typed at the keyboard will be converted from the
24144 Keyboard Character Set to Unicode for Alpine's internal
24145 use.
24146 You may find that you can read some malformed messages that do not
24147 contain a character set label by setting the option
24148 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
24151 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
24152 The default behavior obtained by leaving this variable unset is usually
24153 what is wanted. In that default case, Alpine will attempt
24154 to label the message with the most specific character set from the
24155 rather arbitrary set
24157 US-ASCII, ISO-8859-15,
24158 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
24159 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
24162 For example, if the message is made up of only US-ASCII characters, it
24163 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
24164 that will be the label. If that doesn't work the same is tried for the
24165 remaining members of the list.
24168 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
24169 explicit value instead.
24170 For example, if you usually send messages in Greek, setting this
24171 option to ISO-8859-7 will result in messages being labeled as
24172 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
24173 are only Greek characters, or UTF-8 if there are some characters
24174 that aren't representable in ISO-8859-7.
24175 Another possibility is to set this option explicitly to UTF-8.
24176 In that case
24177 Alpine labels only ascii messages as US-ASCII and all other
24178 messages as UTF-8.
24181 The options
24182 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
24183 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
24184 are closely related to this option.
24185 Setting the feature
24186 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
24187 should cause this option to be ignored.
24190 When displaying a message, Alpine compares this setting to the character
24191 set specified in the message.  If not all of the
24192 characters in the message can be displayed using the Display Character Set
24193 then Alpine places an editorial
24194 comment in the displayed text (enclosed in square-brackets) indicating
24195 that some characters may not be displayed correctly.
24196 This comment may be eliminated by turning on the option
24197 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
24200 <UL>   
24201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24202 </UL><P>
24203 &lt;End of help on this topic&gt;
24204 </BODY>
24205 </HTML>
24206 ====== h_config_key_char_set =====
24207 <HTML>
24208 <HEAD>
24209 <TITLE>OPTION: Keyboard Character Set</TITLE>
24210 </HEAD>
24211 <BODY>
24212 <H1>OPTION: Keyboard Character Set</H1>
24214 UNIX Alpine only.
24216 The Keyboard Character Set identifies the character set of the characters
24217 coming from your keyboard.
24218 It defaults to having the same value as your
24219 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
24220 which in turn defaults to a value obtained from your environment.
24221 It is unlikely that you will need to use this option, because the keyboard
24222 almost always produces the same kind of characters as the display displays.
24225 This character set is also used when accessing files in your local
24226 file system.
24227 The names of the files are assumed to be in the same character set as
24228 what the keyboard produces, as well as the contents of the files.
24231 In the Setup/Config screen you may choose from a list of all the
24232 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24235 The options
24236 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
24237 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
24238 are closely related.
24239 Setting the feature
24240 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
24241 should cause this option to be ignored.
24244 <UL>   
24245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24246 </UL><P>
24247 &lt;End of help on this topic&gt;
24248 </BODY>
24249 </HTML>
24250 ====== h_config_editor =====
24251 <HTML>
24252 <HEAD>
24253 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
24254 </HEAD>
24255 <BODY>
24256 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
24258 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
24259 normally an alternative to Alpine's internal composer (Pico).  You could use
24260 this setting to specify an alternate editor to use occasionally or if you
24261 have a favorite editor and want to use it all the time (see the 
24262 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
24263 If you specify multiple editors for this option, ^_ will invoke the first one 
24264 of those specified that exists and is executable.  When specifying a program 
24265 for use here, make sure that the format of the text it saves -- which, when 
24266 you exit it, will become the message body in Alpine -- is appropriate 
24267 for the body of an email message; avoid proprietary formats that may result in 
24268 a message body that the recipient of your message will be unable to decipher.
24270 <!--chtml if pinemode="os_windows"-->
24271 <!--chtml else-->
24272 If you are in doubt about what editors are available on your system, or which 
24273 of them may be appropriate for specification here, ask your local computing 
24274 support staff.  
24275 <!--chtml endif-->
24277 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
24278 unset, outgoing text will be set as flowed.  In most cases this will be fine,
24279 but if the editor has a &quot;flowed text&quot; mode, it would be best to
24280 use that.
24282 <P><UL>
24283 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24284 </UL>
24286 &lt;End of help on this topic&gt;
24287 </BODY>
24288 </HTML>
24289 ====== h_config_speller =====
24290 <HTML>
24291 <HEAD>
24292 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
24293 </HEAD>
24294 <BODY>
24295 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
24297 UNIX Alpine only.
24299 For PC-Alpine, you must install the aspell library code that you
24300 may get from
24301 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
24303 This option affects the behavior of the ^T (spell check) command in the
24304 Composer.  It specifies the program invoked by ^T in the Composer.
24305 By default, Alpine uses
24307 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
24309 if it knows where to find &quot;aspell&quot;.
24310 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
24311 then the command used is
24313 <CENTER><SAMP>ispell -l</SAMP></CENTER>
24315 Otherwise, the ancient &quot;spell&quot; command is used.
24317 If you specify a value for this command (with full pathname) then that is what
24318 will be used instead of any of the defaults.
24319 When invoking this
24320 spell-checking program, Alpine appends a tempfile name (where the message is
24321 passed) to the command line. Alpine expects the speller to correct the
24322 spelling in that file. When you exit from that program Alpine will read the
24323 tempfile back into the composer.
24325 Don't set this speller option to the standard Unix spell command.
24326 That won't work because spell works in a different way.
24329 <UL>   
24330 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24331 </UL><P>
24332 &lt;End of help on this topic&gt;
24333 </BODY>
24334 </HTML>
24335 ====== h_config_aspell_dictionary =====
24336 <HTML>
24337 <HEAD>
24338 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
24339 </HEAD>
24340 <BODY>
24341 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
24343 PC Alpine only.
24345 This option specifies a list of dictionaries you will use with
24346 aspell. A sample entry is &quot;en_US&quot; for american english, or
24347 &quot;en_GB&quot; for british english.
24350 <UL>   
24351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24352 </UL><P>
24353 &lt;End of help on this topic&gt;
24354 </BODY>
24355 </HTML>
24356 ====== h_config_display_filters =====
24357 <HTML>
24358 <HEAD>
24359 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
24360 </HEAD>
24361 <BODY>
24362 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
24364 This option defines a list of text-filtering commands (programs or
24365 scripts) that may be used to filter text portions of received messages
24366 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
24367 display screen, exporting to a text file).  
24368 For security reasons, the full path name of the
24369 filter command must be specified.
24372 The command is executed and the message is piped into its standard input. 
24373 The standard output of the command is read back by Alpine.  The
24374 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
24376 <P> 
24377 The filter's use is based on the configured &quot;trigger&quot; string.  The
24378 format of a filter definition is:
24380 <P>   
24381 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
24384 You can specify as many filters as you wish, separating them with a comma.  
24385 Each filter can have only one trigger and command.  Thus, two trigger 
24386 strings that invoke the same command require separate filter 
24387 specifications. 
24389 <P> 
24390 The &quot;trigger&quot; is simply text that, if found in the message,
24391 will invoke the associated command.  If the trigger contains any space
24392 characters, it must be placed within quotes.  Likewise, should you
24393 wish a filter to be invoked unconditionally, define the trigger as the
24394 null string, &quot;&quot; (two consecutive double-quote characters).  If the
24395 trigger string is found anywhere in the text of the message the filter
24396 is invoked.  Placing the trigger text within the tokens defined below
24397 changes where within the text the trigger must be before considering
24398 it a match.
24400 <P>  
24401 Trigger Modifying Tokens:
24402 <DL>
24403 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
24404 <DD>This token tells Alpine to invoke the supplied command
24405 if the text is in a character set matching <VAR>string</VAR>
24406 (e.g., ISO-8859-2 or ISO-2022-JP).
24407 </DD>
24410 <DT>_LEADING(<VAR>string</VAR>)_</DT>
24411 <DD>This token tells Alpine to invoke the supplied command
24412 if the enclosed <VAR>string</VAR> is found to be the first
24413 non-whitespace text.
24414 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24415 the space character.
24416 </DD>
24418 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
24419 <DD>This token tells Alpine to invoke the supplied command
24420 if the enclosed <VAR>string</VAR> is found at the beginning
24421 of any line in the text.
24422 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24423 the space character.
24424 </DD>
24425 </DL>
24428 The &quot;command&quot; and &quot;arguments&quot; portion is simply
24429 the command line to be invoked if the trigger string is found.  Below
24430 are tokens that Alpine will recognize and replace with special values
24431 when the command is actually invoked.
24434 Command Modifying Tokens:
24436 <DL>
24437 <DT>_TMPFILE_</DT>
24438 <DD>When the command is executed, this token is 
24439 replaced with the path and name of the temporary 
24440 file containing the text to be filtered.  Alpine 
24441 expects the filter to replace this data with the 
24442 filter's result.
24445 NOTE: Use of this token implies that the text to 
24446 be filtered is not piped into standard input of the 
24447 executed command and its standard output is ignored. 
24448 Alpine restores the tty modes before invoking the
24449 filter in case the filter interacts with the user
24450 via its own standard input and output.  
24451 </DD>
24452                         
24453 <DT>_RESULTFILE_</DT>
24454 <DD>When the command is executed, this token is 
24455 replaced with the path and name of a temporary 
24456 file intended to contain a status message from the 
24457 filter.  Alpine displays this in the message status 
24458 field. 
24459 </DD>
24461 <DT>_DATAFILE_</DT>
24462 <DD>When the command is executed, this token is 
24463 replaced with the path and name of a temporary 
24464 file that Alpine creates once per session and deletes 
24465 upon exit.  The file is intended to be used by the 
24466 filter to store state information between instances 
24467 of the filter.
24468 </DD>
24469    
24470 <DT>_PREPENDKEY_</DT>
24471 <DD>When the command is executed, this token indicates that a random
24472 number will be passed down the input stream before the message text.
24473 This number could be used as a session key.  It is sent in this way to
24474 improve security.  The number is unique to the current Alpine session
24475 and is only generated once per session.
24476 </DD>
24478 <DT>_SILENT_</DT>
24479 <DD>When the filter is executed, this token tells Alpine not to repaint
24480 the screen while the command is being executed. This can be used with 
24481 filters that do not interact with the user, and therefore repainting 
24482 the screen is not necessary. 
24483 </DD>
24484 </DL>
24487 The feature
24488 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
24490 Performance caveat/considerations:
24491 <BR>
24492 Testing for the trigger and invoking the filter doesn't come for free.
24493 There is overhead associated with searching for the trigger string, testing
24494 for the filter's existence and actually piping the text through the filter.
24495 The impact can be reduced if the Trigger Modifying Tokens above are 
24496 employed.
24498 &lt;End of help on this topic&gt;
24499 </BODY>
24500 </HTML>
24501 ====== h_config_sending_filter =====
24502 <HTML>
24503 <HEAD>
24504 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
24505 </HEAD>
24506 <BODY>
24507 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
24508       
24509 This option defines a list of text-filtering commands (programs and
24510 scripts) that may be selectively invoked to process a message just before
24511 it is sent.  If set, the Composer's ^X (Send) command will allow you to
24512 select which filter (or none) to apply to the message before it is sent. 
24513 For security reasons, the full path of the filter program must be
24514 specified.
24517 Command Modifying Tokens:
24519 <DL>
24520 <DT>_RECIPIENTS_</DT>
24521 <DD>When the command is executed, this token is replaced 
24522 with the space delimited list of recipients of the 
24523 message being sent. 
24524 </DD>
24525         
24526 <DT>_TMPFILE_</DT>
24527 <DD>
24528 When the command is executed, this token is 
24529 replaced with the path and name of the temporary 
24530 file containing the text to be filtered.  Alpine 
24531 expects the filter to replace this data with the 
24532 filter's result.
24535 NOTE: Use of this token implies that the text to 
24536 be filtered is not piped into standard input of the 
24537 executed command and its standard output is ignored. 
24538 Alpine restores the tty modes before invoking the
24539 filter in case the filter interacts with the user
24540 via its own standard input and output.  
24541 </DD>
24542                         
24543 <DT>_RESULTFILE_</DT>
24544 <DD>When the command is executed, this token is 
24545 replaced with the path and name of a temporary 
24546 file intended to contain a status message from the 
24547 filter.  Alpine displays this in the message status 
24548 field. 
24549 </DD>
24551 <DT>_DATAFILE_</DT>
24552 <DD>When the command is executed, this token is replaced 
24553 in the command line with the path and name of a 
24554 temporary file that Alpine creates once per session 
24555 and deletes upon exit.  The file is intended to be 
24556 used by the filter to store state information between 
24557 instances of the filter.
24558 </DD>
24559    
24560 <DT>_PREPENDKEY_</DT>
24561 <DD>When the command is executed, this token indicates 
24562 that a random number will be passed down the input 
24563 stream before the message text.  This number could 
24564 be used as a session key.  It is sent in this way 
24565 to improve security.  The number is unique to the 
24566 current Alpine session and is only generated once per 
24567 session. 
24568 </DD>
24570 <DT>_INCLUDEALLHDRS_</DT>
24571 <DD>When the command is executed, this token indicates 
24572 that the headers of the message will be passed down the input stream
24573 before the message text.
24574 </DD>
24576 <DT>_MIMETYPE_</DT>
24577 <DD>When the command is executed, this token is replaced in the
24578 command name with a temporary file name used to accept any new MIME
24579 Content-Type information necessitated by the output of the filter.
24580 Upon the filter's exit, if the file contains new MIME type
24581 information, Alpine verifies its format and replaces the outgoing
24582 message's MIME type information with that contained in the file. This
24583 is basically a cheap way of sending something other than Text/Plain.
24584 </DD>
24585 </DL>
24587 <P>   
24588 NOTE: Only the body text, which is visible in the Composer, is piped
24589 through this filter.  Attachments are not sent to the filter.
24590 <P>   
24591 Sending filters are not used if the feature
24592 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24594 <UL>   
24595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24596 </UL><P>
24597 &lt;End of help on this topic&gt;
24598 </BODY>
24599 </HTML>
24600 ====== h_config_keywords =====
24601 <HTML>
24602 <HEAD>
24603 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24604 </HEAD>
24605 <BODY>
24606 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24608 You may define your own set of keywords and optionally set them on a
24609 message by message basis.
24610 These are similar to the &quot;Important&quot; flag which the user
24611 may set using the Flag command.
24612 The difference is that the Important flag is always present for each folder.
24613 User-defined keywords are chosen by the user.
24614 You may set up the list of possible keywords here, or you may add keywords
24615 from the Flag Details screen that you
24616 can get to after typing the
24617 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24618 command.
24619 After the keywords have been defined,
24620 then you use the <A HREF="h_common_flag">Flag command</A>
24621 to set or clear the keywords in each message.
24622 The behavior of the flag command may be modified by using the
24623 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24624 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24627 Keywords may be used when Selecting messages (Select Keyword).
24628 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24629 Filter Rules may be used to set keywords automatically.
24630 Keywords may be displayed as part of the Subject of a message by using
24631 the SUBJKEY or SUBJKEYINIT tokens in the
24632 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24633 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24634 option may be used to modify the display of keywords using
24635 SUBJKEY and SUBJKEYINIT slightly.
24636 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24637 screen by using the KEY or KEYINIT tokens.
24638 It is also possible to color keywords in the index using the
24639 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24640 Keywords are not supported by all mail servers.
24643 You may give keywords nicknames if you wish.
24644 If the keyword definition you type in contains a SPACE character, then the
24645 actual value of the keyword is everything after the last SPACE and the
24646 nickname for that keyword is everything before the last SPACE.
24647 For example, suppose you are trying to interoperate with another email program
24648 that uses a particular keyword with an unpleasant name.
24649 Maybe it uses a keyword called
24651 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24653 but for you that keyword means that the message is work-related.
24654 You could define a keyword to have the value
24656 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24658 and then you would use the name &quot;Work&quot; when dealing with
24659 that keyword in Alpine.
24660 If you defined it as
24662 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24664 the nickname would be everything before the last SPACE, that is the nickname
24665 would be &quot;My Work&quot;.
24667 Some commonly used keywords begin with dollar signs.
24668 This presents a slight complication, because the dollar sign is normally used
24669 to signify
24670 <A HREF="h_news_config">environment variable expansion</A>
24671 in the Alpine configuration.
24672 In order to specify a keyword that begins with a dollar sign you must
24673 precede the dollar sign with a second dollar sign to escape its special
24674 meaning.
24675 For example, if you want to include the keyword
24677 <CENTER><SAMP>$Label1</SAMP></CENTER>
24679 as one of your possible keywords, you must enter the text
24681 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24684 instead.
24686 There are a couple limitations.
24687 First, not all servers support keywords.
24688 Second, some servers (including the IMAP server included with Alpine)
24689 have a per folder limit on the number of keywords that may be defined.
24690 This count commonly includes every keyword you have ever used in the
24691 folder, even if it is no longer being used.
24692 In other words, you can add keywords but you cannot remove them easily.
24693 If you have changed keywords over the life of a folder and find that
24694 you have reached such a limit, one possible solution might be to copy
24695 all of the messages to a newly created folder (using Alpine) and then
24696 delete the original and rename the new folder.
24697 The reason this might work is that only the keywords currently set in
24698 any of the messages will be used in the new folder, hopefully putting you
24699 under the limit.
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_alt_addresses =====
24709 <HTML>
24710 <HEAD>
24711 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24712 </HEAD>
24713 <BODY>
24714 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24716 This option provides a place for you to list alternate email addresses
24717 you may have.
24718 Each address in the list should be the actual email address part of an
24719 address, without the full name field or the angle brackets.
24720 For example:
24723 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24726 The matching is case-insensitive, so this would match any of
24727 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24728 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24731 If set, the option affects the behavior of the Reply
24732 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24733 a message has been addressed specifically to you.
24736 In the default INDEX display
24737 the personal name (or email address) of
24738 the person listed in the message's &quot;From:&quot; header
24739 field is usually displayed except when that address is yours or one of your
24740 alternate addresses.
24741 In that case you will usually see the name of
24742 the first person specified in the
24743 message's &quot;To:&quot; header field
24744 with the prefix &quot;To: &quot; prepended.
24747 With respect to Reply, the reply-to-all option will exclude addresses
24748 listed here.
24751 The feature
24752 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24753 is somewhat related to this option.
24756 In addition to a list of actual addresses,
24757 you may use regular expressions (as used with egrep with the ignore case flag)
24758 to describe the addresses you want to match.
24759 Alpine will somewhat arbitrarily interpret your entry as a regular
24760 expression if it contains any of the characters
24761 *, |, +, ?, {, [, ^, $, or &#92;.
24762 Otherwise, it will be treated literally.
24763 The feature
24764 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24765 may be used to turn off regular expression processing regardless of whether or not
24766 special characters appear in the entry.
24769 A description of how regular expressions work is beyond the
24770 scope of this help text, but some examples follow.
24773 The entry
24776 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24779 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24780 address with a domain name of <SAMP>example.com</SAMP> (such as
24781 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24782 one of your alternate addresses.
24783 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24784 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24785 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24786 Complicating things further, the dollar sign
24787 is special in the Alpine configuration (it signifies environment variable expansion)
24788 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24789 Quotes around the whole expression will not escape the dollar sign successfully.
24790 So this example should look like
24793 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24797 The entry
24800 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24803 would match
24804 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24805 as <SAMP>fred@example.com</SAMP>.
24808 You could match all addresses that look like
24809 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24810 entry
24813 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24816 Notice that you have to escape the plus sign with a backslash because plus
24817 is a special character in regular expressions.
24818 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24819 the expression
24822 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24825 would do it, but it would be easier to just add fred@example.com as a
24826 separate entry.
24829 One more example, a match of all first-level subdomains, is given by
24832 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24836 Because the regular expression matching is based on an old library
24837 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24838 but they should be close.
24841 <UL>   
24842 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24843 </UL><P>
24844 &lt;End of help on this topic&gt;
24845 </BODY>
24846 </HTML>
24847 ====== h_config_abook_formats =====
24848 <HTML>
24849 <HEAD>
24850 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24851 </HEAD>
24852 <BODY>
24853 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24855 This option specifies the format that address books are displayed in.
24856 Normally, address books are displayed with the nicknames in the first
24857 column, the fullnames in the second column, and addresses in the third
24858 column.  The system figures out reasonable defaults for the widths of
24859 the columns.  An address book may be given a different format by
24860 listing special tokens in the order you want them to display.  The
24861 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24862 So, for example, to get the default behavior you could list
24865 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24868 (You can also use the token DEFAULT to get the default behavior for
24869 an address book format.)
24872 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24873 is a list, so if you have more than one address book you may have a
24874 separate format for each by putting its format at the corresponding
24875 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24879 Listed first are the personal address books, then the global address
24880 books.  So, if you have two personal address books and one global
24881 address book, you may have up to three formats in the
24882 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24883 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24884 are address books, the last element is used repeatedly.
24888 Each of the tokens may also be optionally followed by parentheses with
24889 either a number or a percentage inside the parentheses.  For example,
24890 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24891 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24892 of the available space (the screen width minus the space for
24893 inter-column spaces) to the fullnames column, while plain
24894 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24895 reasonable number of columns.
24898 There are always 2 spaces between every column, so if you use
24899 fixed column widths (like 13) you should remember to take that into
24900 account.
24903 <UL>   
24904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24905 </UL><P>
24906 &lt;End of help on this topic&gt;
24907 </BODY>
24908 </HTML>
24909 ====== h_config_set_index_format =====
24910 <HTML>
24911 <HEAD>
24912 <TITLE>Set Index Format</TITLE>
24913 </HEAD>
24914 <BODY>
24915 <H1>Set Index Format</H1>
24917 This option is used to customize the content of lines in the
24918 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24919 This action works exactly like the regular
24920 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24921 except that you can have a folder-specific value for it if you specify it here.
24922 Consult the help for
24923 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24924 for more information.
24927 <UL>   
24928 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24929 </UL><P>
24930 &lt;End of help on this topic&gt;
24931 </BODY>
24932 </HTML>
24933 ====== h_config_index_format =====
24934 <HTML>
24935 <HEAD>
24936 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24937 </HEAD>
24938 <BODY>
24939 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24941 This option is used to customize the content of lines in the
24942 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24943 to convey some amount of immediately relevant information about each 
24944 message in the current folder.
24947 Alpine provides a pre-defined set of informational fields with
24948 reasonable column widths automatically computed.  You can, however,
24949 replace this default set by listing special tokens in the order you
24950 want them displayed.
24953 The list of available tokens is
24954 <A HREF="h_index_tokens">here</A>.
24957 Spaces are used to separate listed tokens.  Additionally, you can
24958 specify how much of the screen's width the token's associated data
24959 should occupy on the index line by appending to the token a pair of
24960 parentheses enclosing either a number or percentage.  For example,
24961 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24962 column, and &quot;SUBJECT(20%)&quot; means to
24963 allocate 20% of the available space
24964 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24965 attempt to figure out a reasonable amount of space.
24968 There is always one space between every pair of columns, so if you use fixed
24969 column widths (like 13) you should remember to take that into account.
24970 Several of the fields are virtually fixed-width, so it doesn't make
24971 much sense to specify the width for them.  The fields STATUS,
24972 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24973 and DESCRIPSIZE all fall into that category.
24974 You <EM>may</EM> specify widths for those if you wish, but
24975 you're probably better off letting the system pick those widths.  <P>
24978 The default is equivalent to:
24981 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24984 This means that the four fields without percentages will be allocated
24985 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24986 the from and subject fields.  If one of those two fields is specified
24987 as a percentage and the other is left for the system to choose, then
24988 the percentage is taken as an absolute percentage of the screen, not
24989 of the space remaining after allocating the first four columns.  It
24990 doesn't usually make sense to do it that way.  If you leave off all
24991 the widths, then the subject and from fields (if both are present) are
24992 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24993 the default.
24996 What you are most likely to do with this configuration option is to
24997 specify which fields appear at all, which order they appear in, and the
24998 percentage of screen that is used for the from and subject fields if you
24999 don't like the 2 to 1 default.
25002 If you want to retain the default format that Pine 4.64 had, use
25005 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
25007 <EM>and</EM> set the feature
25008 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
25009 <UL>   
25010 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25011 </UL><P>
25012 &lt;End of help on this topic&gt;
25013 </BODY>
25014 </HTML>
25015 ====== h_config_reply_intro =====
25016 <HTML>
25017 <HEAD>
25018 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
25019 </HEAD>
25020 <BODY>
25021 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
25023 This option is used to customize the content of the introduction line
25024 that is included when replying to a message and including the original
25025 message in the reply.
25026 The normal default (what you will get if you delete this variable) looks
25027 something like:
25029 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
25031 where the day of the week is only included if it is available in the
25032 original message.
25033 You can replace this default with text of your own.
25034 The text may contain tokens that are replaced with text
25035 that depends on the message you are replying to.
25036 For example, the default is equivalent to:
25038 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
25041 Since this variable includes regular text mixed with special tokens
25042 the tokens have to be surrounded by underscore characters.
25043 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
25044 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
25045 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
25047 The list of available tokens is
25048 <A HREF="h_index_tokens">here</A>.
25051 By default, the text is all on a single line and is followed by a blank line.
25052 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
25053 than 80 characters when replying to a particular message, it is shortened.
25054 However, if you use the token
25056 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
25059 anywhere in the value, no end of line or blank line is appended, and no
25060 shortening is done.
25061 The _NEWLINE_ token may be used to get rid of the blank line following
25062 the text, to add more blank lines, or to form a multi-line
25063 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
25064 To clarify how _NEWLINE_ works recall that the default value is:
25066 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
25069 That is equivalent to
25071 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
25074 In the former case, two newlines are added automatically because
25075 no _NEWLINE_ token appears in the value of the option (for backwards
25076 compatibility). In the latter case, the newlines are explicit.
25077 If you want to remove the blank line that follows the
25078 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
25079 _NEWLINE_ token like
25081 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
25084 Because of the backwards compatibility problem, it is not possible to
25085 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
25086 and that will cause the automatic adding of two newlines!
25087 If you want, you may embed newlines in the middle of the text, as well,
25088 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
25091 By default, no attempt is made to localize the date.
25092 If you prefer a localized form you may find that one of the tokens
25093 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
25094 If you want more control one of the many other date tokens, such as _DATEISO_,
25095 might be better.
25098 For the adventurous, there is a way to conditionally include text based
25099 on whether or not a token would result in specific replacement text.
25100 For example, you could include some text based on whether or not
25101 the _NEWS_ token would result in any newsgroups if it was used.
25102 It's explained in detail
25103 <A HREF="h_reply_token_conditionals">here</A>.
25106 In the very unlikely event that you want to include a literal token
25107 in the introduction line you must precede it with a backslash character.
25108 For example,
25110 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
25112 would produce something like
25114 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
25116 It is not possible to have a literal backslash followed by an expanded token.
25118 <UL>   
25119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25120 </UL><P>
25121 &lt;End of help on this topic&gt;
25122 </BODY>
25123 </HTML>
25124 ====== h_config_remote_abook_history =====
25125 <HTML>
25126 <HEAD>
25127 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
25128 </HEAD>
25129 <BODY>
25130 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
25132 Sets how many extra copies of
25133 remote address book
25134 data will be kept in each remote address book folder.
25135 The default is three.
25136 These extra copies are simply old versions of the data. Each time a change
25137 is made a new copy of the address book data is appended to the folder. Old
25138 copies are trimmed, if possible, when Alpine exits.
25139 An old copy can be put back into use by
25140 deleting and expunging newer versions of the data from the folder.
25141 Don't delete the first message from the folder. It is a special header
25142 message for the remote address book and it must be there.
25143 This is to prevent regular folders from being used as remote address book
25144 folders and having their data destroyed.
25146 This option is also used to determine how many extra copies of remote
25147 Alpine configuration files are kept.
25149 <UL>   
25150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25151 </UL><P>
25152 &lt;End of help on this topic&gt;
25153 </BODY>
25154 </HTML>
25155 ====== h_config_remote_abook_validity =====
25156 <HTML>
25157 <HEAD>
25158 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
25159 </HEAD>
25160 <BODY>
25161 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
25163 Sets the minimum number of minutes that a
25164 remote address book will be considered up to date.
25165 Whenever an entry contained in a remote address book is used,
25166 if more than this many minutes have
25167 passed since the last check the remote server will be queried to see if the
25168 address book has changed.
25169 If it has changed, the local copy is updated.
25170 The default value is five minutes.
25171 The special value of -1 means never check.
25172 The special value of zero means only check when the address book is first
25173 opened.
25175 No matter what the value, the validity check is always done when the
25176 address book is about to be changed by the user.
25177 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
25178 while in the address book maintenance screen for the remote address book.
25180 <UL>   
25181 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25182 </UL><P>
25183 &lt;End of help on this topic&gt;
25184 </BODY>
25185 </HTML>
25186 ====== h_config_user_input_timeo =====
25187 <HTML>
25188 <HEAD>
25189 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
25190 </HEAD>
25191 <BODY>
25192 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
25194 If this is set to an integer greater than zero, then this is the number
25195 of <EM>hours</EM> to wait for user input before Alpine times out.
25196 If Alpine is
25197 in the midst of composing a message or is waiting for user response to
25198 a question, then it will not timeout.
25199 However, if Alpine is sitting idle waiting for
25200 the user to tell it what to do next and the user does not give any
25201 input for this many hours, Alpine will exit.
25202 No expunging or moving of read
25203 messages will take place.
25204 It will exit similarly to the way it would exit
25205 if it received a hangup signal.
25206 This may be useful for cleaning up unused Alpine sessions that have been
25207 forgotten by their owners.
25208 The Alpine developers envision system administrators
25209 setting this to a value of several hours (24?) so that it won't surprise
25210 a user who didn't want to be disconnected.
25212 <UL>   
25213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25214 </UL><P>
25215 &lt;End of help on this topic&gt;
25216 </BODY>
25217 </HTML>
25218 ====== h_config_ssh_open_timeo =====
25219 <HTML>
25220 <HEAD>
25221 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
25222 </HEAD>
25223 <BODY>
25224 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
25226 Sets the time in seconds that Alpine will
25227 attempt to open a UNIX secure shell connection.
25228 The default is 15, the minimum non-zero value is 5,
25229 and the maximum is unlimited. If this is set to zero ssh connections
25230 will be completely disabled.
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_rsh_open_timeo =====
25239 <HTML>
25240 <HEAD>
25241 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
25242 </HEAD>
25243 <BODY>
25244 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
25246 Sets the time in seconds that Alpine will
25247 attempt to open a UNIX remote shell connection.
25248 The default is 15, the minimum non-zero value is 5,
25249 and the maximum is unlimited. If this is set to zero rsh connections
25250 will be completely disabled.
25251 This might be useful if rsh connections will never work in your environment
25252 but are causing delays due to firewalls or some other reason.
25254 <UL>   
25255 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25256 </UL><P>
25257 &lt;End of help on this topic&gt;
25258 </BODY>
25259 </HTML>
25260 ====== h_config_tcp_open_timeo =====
25261 <HTML>
25262 <HEAD>
25263 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
25264 </HEAD>
25265 <BODY>
25266 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
25268 Sets the time in seconds that Alpine will
25269 attempt to open a network connection. The default is 30, the minimum is 5,
25270 and the maximum is system defined (typically 75). If a connection has not
25271 completed within this many seconds Alpine will give up and consider it a
25272 failed connection.
25274 <UL>   
25275 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25276 </UL><P>
25277 &lt;End of help on this topic&gt;
25278 </BODY>
25279 </HTML>
25280 ====== h_config_tcp_readwarn_timeo =====
25281 <HTML>
25282 <HEAD>
25283 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
25284 </HEAD>
25285 <BODY>
25286 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
25288 Sets the time in seconds that Alpine will
25289 wait for a network read before warning you that things are moving slowly
25290 and possibly giving you the option to break the connection.
25291 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
25292 1000 seconds.
25294 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
25296 <UL>   
25297 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25298 </UL><P>
25299 &lt;End of help on this topic&gt;
25300 </BODY>
25301 </HTML>
25302 ====== h_config_tcp_writewarn_timeo =====
25303 <HTML>
25304 <HEAD>
25305 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
25306 </HEAD>
25307 <BODY>
25308 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
25310 Sets the time in seconds that Alpine will
25311 wait for a network write before warning you that things are moving slowly
25312 and possibly giving you the option to break the connection.
25313 The default is 0 which means it is unset. If set to a non-zero value, the
25314 minimum is 5 and the maximum is 1000.
25316 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
25318 <UL>   
25319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25320 </UL><P>
25321 &lt;End of help on this topic&gt;
25322 </BODY>
25323 </HTML>
25324 ====== h_config_tcp_query_timeo =====
25325 <HTML>
25326 <HEAD>
25327 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
25328 </HEAD>
25329 <BODY>
25330 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
25332 When Alpine times out a network read or write it will normally just display
25333 a message saying &quot;Still waiting&quot;.
25334 However, if enough time has elapsed since it started waiting it will offer
25335 to let you break the connection.
25336 That amount of time is set by this option, which defaults to 60 seconds,
25337 has a minimum of 5 seconds, and a maximum of 1000 seconds.
25339 <UL>   
25340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25341 </UL><P>
25342 &lt;End of help on this topic&gt;
25343 </BODY>
25344 </HTML>
25345 ====== h_config_quit_query_timeo =====
25346 <HTML>
25347 <HEAD>
25348 <TITLE>OPTION: <!--#echo var="VAR_close-connection-timeout"--></TITLE>
25349 </HEAD>
25350 <BODY>
25351 <H1>OPTION: <!--#echo var="VAR_close-connection-timeout"--></H1>
25353 The original purpose of this option was to close a connection after this
25354 much time has elapsed without response from the server. The problem this
25355 generates is that a server might not reply on time due to a slow operation
25356 (for example, sorting a large folder, or filtering messages, etc.) In those
25357 situations it is desirable to wait for the server, even when this takes
25358 a long time.
25361 In order to have a good compromise so that a user can distinguish between
25362 when a connection is closed, therefore
25363 we do not need to wait for it, and the operation that the user is waiting
25364 for takes a long time, this option only applies to the
25365 &quot;NOOP&quot; IMAP command. So, if a NOOP command has been issued,
25366 and the connection does not return after the number of seconds configured
25367 here, which must be at least the amount configured in the option
25368 <a href="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></a>,
25369 then Alpine will close the connection.
25372 Closing connections that have connectivity problems is a good idea. In an ideal
25373 world, one would like all connections to be fast and reliable, so the amount
25374 of time and effort put into parsing a folder to report its state when it is
25375 opened is not wasted, so keeping connections alive is good, but the problem
25376 with this is that waiting for a user to reply to a &quot;keep connection
25377 alive?&quot; question can take a long time, and that might affect other
25378 connections that could be closed because Alpine is not pinging them while it
25379 is waiting for a reply from a user for a different connection. Therefore
25380 setting this value helps to keep other connections alive, in case
25381 you have several incoming folders in other servers.
25384 The default value for this option is 0, which means that no connections will
25385 be closed automatically, so if you want connections to be closed automatically
25386 you must set this option to a positive number bigger or equal than the
25387 value of the option <!--#echo var="VAR_tcp-query-timeout"-->.
25389 <UL>
25390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25391 </UL><P>
25392 &lt;End of help on this topic&gt;
25393 </BODY>
25394 </HTML>
25395 ====== h_config_incoming_folders =====
25396 <HTML>
25397 <HEAD>
25398 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
25399 </HEAD>
25400 <BODY>
25401 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
25403 This is a list of one or more folders other than <EM>INBOX</EM> that
25404 may receive new messages.
25405 It is related to the
25406 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
25407 feature.
25408 This variable is normally manipulated with the Add, Delete, and Rename
25409 commands in the FOLDER LIST for the Incoming Message Folders collection.
25411 <UL>   
25412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25413 </UL><P>
25414 &lt;End of help on this topic&gt;
25415 </BODY>
25416 </HTML>
25417 ====== h_config_folder_spec =====
25418 <HTML>
25419 <HEAD>
25420 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
25421 </HEAD>
25422 <BODY>
25423 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
25425 This is a list of one or more collections where saved mail is stored. 
25426 The first collection in this list is the default
25427 collection for <EM>Save</EM>s,
25428 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
25430 This variable is normally manipulated using the Setup/collectionList screen.
25432 <UL>   
25433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25434 </UL><P>
25435 &lt;End of help on this topic&gt;
25436 </BODY>
25437 </HTML>
25438 ====== h_config_news_spec =====
25439 <HTML>
25440 <HEAD>
25441 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
25442 </HEAD>
25443 <BODY>
25444 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
25446 This is a list of collections where news folders are located.
25448 This variable is normally manipulated using the Setup/collectionList screen.
25450 <UL>   
25451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25452 </UL><P>
25453 &lt;End of help on this topic&gt;
25454 </BODY>
25455 </HTML>
25456 ====== h_config_address_book =====
25457 <HTML>
25458 <HEAD>
25459 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
25460 </HEAD>
25461 <BODY>
25462 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
25464 A list of personal address books.
25465 Each entry in the list is an
25466 optional nickname followed by a pathname or file name relative to the home
25467 directory.
25468 The nickname is separated from the rest of the line with whitespace.
25469 Instead of a local pathname or file name, a remote folder name can be given.
25470 This causes the address book to
25471 be a Remote address book.
25473 Use the Setup/AddressBook screen to modify this variable.
25475 <UL>   
25476 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25477 </UL><P>
25478 &lt;End of help on this topic&gt;
25479 </BODY>
25480 </HTML>
25481 ====== h_config_glob_addrbook =====
25482 <HTML>
25483 <HEAD>
25484 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
25485 </HEAD>
25486 <BODY>
25487 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
25489 A list of shared address books.  Each entry in the list is an
25490 optional nickname followed by a pathname or file name relative to the home
25491 directory.
25492 A SPACE character separates the nickname from the rest of the line.
25493 Instead of a local pathname or file name, a remote folder name can be given.
25494 This causes the address book to
25495 be a Remote address book.
25496 Global address books are
25497 defined to be ReadOnly.
25499 Use the Setup/AddressBook screen to modify this variable.
25501 <UL>   
25502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25503 </UL><P>
25504 &lt;End of help on this topic&gt;
25505 </BODY>
25506 </HTML>
25507 ====== h_config_last_vers =====
25508 <HTML>
25509 <HEAD>
25510 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
25511 </HEAD>
25512 <BODY>
25513 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
25515 This is set automatically by Alpine. 
25516 It is used to keep track of the last version of Alpine that
25517 was run by the user.
25518 Whenever the version number increases, a new version message is printed out.
25519 This may not be set in the system-wide configuration files.
25521 <UL>   
25522 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25523 </UL><P>
25524 &lt;End of help on this topic&gt;
25525 </BODY>
25526 </HTML>
25527 ====== h_config_printer =====
25528 <HTML>
25529 <HEAD>
25530 <TITLE>OPTION: Printer</TITLE>
25531 </HEAD>
25532 <BODY>
25533 <H1>OPTION: Printer</H1>
25535 Your default printer selection.
25537 Use the Setup/Printer screen to modify this variable.
25539 <UL>   
25540 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25541 </UL><P>
25542 &lt;End of help on this topic&gt;
25543 </BODY>
25544 </HTML>
25545 ====== h_config_print_cat =====
25546 <HTML>
25547 <HEAD>
25548 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
25549 </HEAD>
25550 <BODY>
25551 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
25553 This is an internal Alpine variable.
25554 It will be equal to 1, 2, or 3 depending on whether the default printer is
25555 attached, standard, or a personal print command.
25557 Use the Setup/Printer screen to modify this variable.
25559 <UL>   
25560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25561 </UL><P>
25562 &lt;End of help on this topic&gt;
25563 </BODY>
25564 </HTML>
25565 ====== h_config_print_command =====
25566 <HTML>
25567 <HEAD>
25568 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
25569 </HEAD>
25570 <BODY>
25571 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
25573 List of personal print commands.
25575 Use the Setup/Printer screen to modify this variable.
25577 <UL>   
25578 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25579 </UL><P>
25580 &lt;End of help on this topic&gt;
25581 </BODY>
25582 </HTML>
25583 ====== h_config_pat_old =====
25584 <HTML>
25585 <HEAD>
25586 <TITLE>OPTION: Patterns</TITLE>
25587 </HEAD>
25588 <BODY>
25589 <H1>OPTION: Patterns</H1>
25591 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
25592 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
25593 and Patterns-Other.
25594 Patterns-Scores and Patterns-Filters have been replaced since then by
25595 Patterns-Scores2 and Patterns-Filters2.
25597 Use the Setup/Rules screens to modify these variable.
25599 <UL>   
25600 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25601 </UL><P>
25602 &lt;End of help on this topic&gt;
25603 </BODY>
25604 </HTML>
25605 ====== h_config_pat_roles =====
25606 <HTML>
25607 <HEAD>
25608 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25609 </HEAD>
25610 <BODY>
25611 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25613 List of rules used for roles.
25614 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25615 other options.
25617 Use the Setup/Rules/Roles screen to modify this variable.
25619 <UL>   
25620 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25621 </UL><P>
25622 &lt;End of help on this topic&gt;
25623 </BODY>
25624 </HTML>
25625 ====== h_config_pat_filts =====
25626 <HTML>
25627 <HEAD>
25628 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25629 </HEAD>
25630 <BODY>
25631 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25633 List of rules used for filters.
25635 Use the Setup/Rules/Filters screen to modify this variable.
25637 <UL>   
25638 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25639 </UL><P>
25640 &lt;End of help on this topic&gt;
25641 </BODY>
25642 </HTML>
25643 ====== h_config_pat_scores =====
25644 <HTML>
25645 <HEAD>
25646 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25647 </HEAD>
25648 <BODY>
25649 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25651 List of rules used for scoring.
25653 Use the Setup/Rules/SetScores screen to modify this variable.
25655 <UL>   
25656 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25657 </UL><P>
25658 &lt;End of help on this topic&gt;
25659 </BODY>
25660 </HTML>
25661 ====== h_config_pat_other =====
25662 <HTML>
25663 <HEAD>
25664 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25665 </HEAD>
25666 <BODY>
25667 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25669 List of rules used for miscellaneous configuration.
25671 Use the Setup/Rules/Other screen to modify this variable.
25673 <UL>   
25674 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25675 </UL><P>
25676 &lt;End of help on this topic&gt;
25677 </BODY>
25678 </HTML>
25679 ====== h_config_pat_incols =====
25680 <HTML>
25681 <HEAD>
25682 <TITLE>OPTION: patterns-indexcolors</TITLE>
25683 </HEAD>
25684 <BODY>
25685 <H1>OPTION: patterns-indexcolors</H1>
25687 List of rules used for coloring lines in the index.
25689 Use the Setup/Rules/Indexcolor screen to modify this variable.
25691 <UL>   
25692 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25693 </UL><P>
25694 &lt;End of help on this topic&gt;
25695 </BODY>
25696 </HTML>
25697 ====== h_config_pat_srch =====
25698 <HTML>
25699 <HEAD>
25700 <TITLE>OPTION: patterns-search</TITLE>
25701 </HEAD>
25702 <BODY>
25703 <H1>OPTION: patterns-search</H1>
25705 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25707 Use the Setup/Rules/searCh screen to modify this variable.
25709 <UL>   
25710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25711 </UL><P>
25712 &lt;End of help on this topic&gt;
25713 </BODY>
25714 </HTML>
25715 ====== h_config_font_name =====
25716 <HTML>
25717 <HEAD>
25718 <TITLE>OPTION: Font Name</TITLE>
25719 </HEAD>
25720 <BODY>
25721 <H1>OPTION: Font Name</H1>
25723 PC-Alpine only.
25725 Name of normal font.
25727 Use the pulldown Config menu to modify this variable.
25729 <UL>   
25730 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25731 </UL><P>
25732 &lt;End of help on this topic&gt;
25733 </BODY>
25734 </HTML>
25735 ====== h_config_font_size =====
25736 <HTML>
25737 <HEAD>
25738 <TITLE>OPTION: Font Size</TITLE>
25739 </HEAD>
25740 <BODY>
25741 <H1>OPTION: Font Size</H1>
25743 PC-Alpine only.
25745 Size of normal font.
25747 Use the pulldown Config menu to modify this variable.
25749 <UL>   
25750 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25751 </UL><P>
25752 &lt;End of help on this topic&gt;
25753 </BODY>
25754 </HTML>
25755 ====== h_config_font_style =====
25756 <HTML>
25757 <HEAD>
25758 <TITLE>OPTION: Font Style</TITLE>
25759 </HEAD>
25760 <BODY>
25761 <H1>OPTION: Font Style</H1>
25763 PC-Alpine only.
25765 Style of normal font.
25767 Use the pulldown Config menu to modify this variable.
25769 <UL>   
25770 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25771 </UL><P>
25772 &lt;End of help on this topic&gt;
25773 </BODY>
25774 </HTML>
25775 ====== h_config_font_char_set =====
25776 <HTML>
25777 <HEAD>
25778 <TITLE>OPTION: Font Character Set</TITLE>
25779 </HEAD>
25780 <BODY>
25781 <H1>OPTION: Font Character Set</H1>
25783 PC-Alpine only.
25785 Character set of normal font.
25787 Use the pulldown Config menu to modify this variable.
25789 <UL>   
25790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25791 </UL><P>
25792 &lt;End of help on this topic&gt;
25793 </BODY>
25794 </HTML>
25795 ====== h_config_print_font_name =====
25796 <HTML>
25797 <HEAD>
25798 <TITLE>OPTION: Print-Font-Name</TITLE>
25799 </HEAD>
25800 <BODY>
25801 <H1>OPTION: Print-Font-Name</H1>
25803 PC-Alpine only.
25805 Name of printer font.
25807 Use the pulldown Config menu to modify this variable.
25809 <UL>   
25810 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25811 </UL><P>
25812 &lt;End of help on this topic&gt;
25813 </BODY>
25814 </HTML>
25815 ====== h_config_print_font_size =====
25816 <HTML>
25817 <HEAD>
25818 <TITLE>OPTION: Print-Font-Size</TITLE>
25819 </HEAD>
25820 <BODY>
25821 <H1>OPTION: Print-Font-Size</H1>
25823 PC-Alpine only.
25825 Size of printer font.
25827 Use the pulldown Config menu to modify this variable.
25829 <UL>   
25830 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25831 </UL><P>
25832 &lt;End of help on this topic&gt;
25833 </BODY>
25834 </HTML>
25835 ====== h_config_print_font_style =====
25836 <HTML>
25837 <HEAD>
25838 <TITLE>OPTION: Print-Font-Style</TITLE>
25839 </HEAD>
25840 <BODY>
25841 <H1>OPTION: Print-Font-Style</H1>
25843 PC-Alpine only.
25845 Style of printer font.
25847 Use the pulldown Config menu to modify this variable.
25849 <UL>   
25850 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25851 </UL><P>
25852 &lt;End of help on this topic&gt;
25853 </BODY>
25854 </HTML>
25855 ====== h_config_print_font_char_set =====
25856 <HTML>
25857 <HEAD>
25858 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25859 </HEAD>
25860 <BODY>
25861 <H1>OPTION: Print-Font-Char-Set</H1>
25863 PC-Alpine only.
25865 Character set of printer font.
25867 Use the pulldown Config menu to modify this variable.
25869 <UL>   
25870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25871 </UL><P>
25872 &lt;End of help on this topic&gt;
25873 </BODY>
25874 </HTML>
25875 ====== h_config_window_position =====
25876 <HTML>
25877 <HEAD>
25878 <TITLE>OPTION: Window-Position</TITLE>
25879 </HEAD>
25880 <BODY>
25881 <H1>OPTION: Window-Position</H1>
25883 PC-Alpine only.
25885 Position on the screen of the Alpine window.
25887 Alpine normally maintains this variable itself, and it is set automatically. 
25888 This variable is provided to those who wish to use the same window position 
25889 across different machines from the same configuration.
25890 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25891 must also be set for this setting to be used.
25893 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25894 C is the number of columns, R is the number of rows, and X and Y specify the
25895 top left corner of the window.
25897 <UL>   
25898 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25899 </UL><P>
25900 &lt;End of help on this topic&gt;
25901 </BODY>
25902 </HTML>
25903 ====== h_config_cursor_style =====
25904 <HTML>
25905 <HEAD>
25906 <TITLE>OPTION: Cursor Style</TITLE>
25907 </HEAD>
25908 <BODY>
25909 <H1>OPTION: Cursor Style</H1>
25911 PC-Alpine only.
25913 Cursor style.
25915 Use the pulldown Config menu to modify this variable.
25917 <UL>   
25918 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25919 </UL><P>
25920 &lt;End of help on this topic&gt;
25921 </BODY>
25922 </HTML>
25923 ====== h_config_ldap_servers =====
25924 <HTML>
25925 <HEAD>
25926 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25927 </HEAD>
25928 <BODY>
25929 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25931 List of LDAP servers and associated data.
25933 Use the Setup/Directory screen to modify this variable.
25935 <UL>   
25936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25937 </UL><P>
25938 &lt;End of help on this topic&gt;
25939 </BODY>
25940 </HTML>
25941 ====== h_config_sendmail_path =====
25942 <HTML>
25943 <HEAD>
25944 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25945 </HEAD>
25946 <BODY>
25947 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25949 This names the path to an
25950 alternative program, and any necessary arguments, to be used in posting
25951 mail messages. See the Technical notes for more information.
25953 <UL>   
25954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25955 </UL><P>
25956 &lt;End of help on this topic&gt;
25957 </BODY>
25958 </HTML>
25959 ====== h_config_oper_dir =====
25960 <HTML>
25961 <HEAD>
25962 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25963 </HEAD>
25964 <BODY>
25965 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25967 This names the root of the
25968 tree to which you are restricted when reading and writing folders and
25969 files. It is usually used in the system-wide,
25970 <EM>fixed</EM> configuration file.
25972 <UL>   
25973 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25974 </UL><P>
25975 &lt;End of help on this topic&gt;
25976 </BODY>
25977 </HTML>
25978 ====== h_config_rshpath =====
25979 <HTML>
25980 <HEAD>
25981 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25982 </HEAD>
25983 <BODY>
25984 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25986 Sets the name of the command used to open a UNIX remote shell
25987 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25989 <UL>   
25990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25991 </UL><P>
25992 &lt;End of help on this topic&gt;
25993 </BODY>
25994 </HTML>
25995 ====== h_config_rshcmd =====
25996 <HTML>
25997 <HEAD>
25998 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25999 </HEAD>
26000 <BODY>
26001 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
26003 Sets the format of the command used to
26004 open a UNIX remote shell connection. The default is
26005 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
26006 provided command. The first is for the command's pathname, the second is
26007 for the host to connect to, the third is for the user to connect as, and
26008 the fourth is for the connection method (typically <CODE>imap</CODE>).
26010 <UL>   
26011 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26012 </UL><P>
26013 &lt;End of help on this topic&gt;
26014 </BODY>
26015 </HTML>
26016 ====== h_config_sshpath =====
26017 <HTML>
26018 <HEAD>
26019 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
26020 </HEAD>
26021 <BODY>
26022 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
26024 Sets the name of the command used to open a UNIX secure shell
26025 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
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_sshcmd =====
26034 <HTML>
26035 <HEAD>
26036 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
26037 </HEAD>
26038 <BODY>
26039 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
26041 Sets the format of the command used to
26042 open a UNIX secure shell connection. The default is
26043 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
26044 provided command. The first is for the command's pathname, the second is
26045 for the host to connect to, the third is for the user to connect as, and
26046 the fourth is for the connection method (typically <CODE>imap</CODE>).
26048 <UL>   
26049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26050 </UL><P>
26051 &lt;End of help on this topic&gt;
26052 </BODY>
26053 </HTML>
26054 ====== h_config_new_ver_quell =====
26055 <HTML>
26056 <HEAD>
26057 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
26058 </HEAD>
26059 <BODY>
26060 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
26062 When a new version of Alpine is run for the first time it offers a
26063 special explanatory screen to the user upon startup.  This option
26064 helps control when and if that special screen appears for users that
26065 have previously run Alpine.  It takes as its value an Alpine version
26066 number.  Alpine versions less than the specified value will suppress this
26067 special screen while versions equal to or greater than that specified
26068 will behave normally.
26070 <UL>   
26071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26072 </UL><P>
26073 &lt;End of help on this topic&gt;
26074 </BODY>
26075 </HTML>
26076 ====== h_config_disable_drivers =====
26077 <HTML>
26078 <HEAD>
26079 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
26080 </HEAD>
26081 <BODY>
26082 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
26084 This variable is a list of mail drivers that will be disabled.
26085 The candidates for disabling are listed below.
26086 There may be more in the future if you compile Alpine with
26087 a newer version of the c-client library.
26090 <UL>
26091 <LI> mbox
26092 <LI> mbx
26093 <LI> mh
26094 <LI> mmdf
26095 <LI> mtx
26096 <LI> mx
26097 <LI> news
26098 <LI> phile
26099 <LI> tenex
26100 <LI> unix
26101 </UL>
26104 The <EM>mbox</EM> driver enables the following behavior: if there is a
26105 file called <CODE>mbox</CODE>
26106 in your home directory, and if that file is either empty or in Unix mailbox
26107 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
26108 will automatically transfer mail from the system mail spool directory into the
26109 <CODE>mbox</CODE> file and
26110 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
26111 this will not happen.
26114 It is not recommended to disable the driver that supports the system default
26115 mailbox format. On most non-SCO systems, that driver is the
26116 <EM>unix</EM> driver.
26117 On most SCO systems, it is the <EM>mmdf</EM> driver.
26118 The system default driver may be
26119 configured to something else on your system; check with your system manager
26120 for additional information.
26123 It is most likely not very useful for you to disable any of the drivers other
26124 than possibly <EM>mbox</EM>.
26125 You could disable some of the others if you know for
26126 certain that you don't need them but the performance gain in doing so
26127 is very modest.
26129 <UL>   
26130 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26131 </UL><P>
26132 &lt;End of help on this topic&gt;
26133 </BODY>
26134 </HTML>
26135 ====== h_config_disable_auths =====
26136 <HTML>
26137 <HEAD>
26138 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
26139 </HEAD>
26140 <BODY>
26141 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
26143 This variable is a list of SASL (Simple Authentication and Security
26144 Layer) authenticators that will be disabled.
26145 SASL is a mechanism for
26146 authenticating to IMAP, POP3, SMTP, and other network servers.
26149 Alpine matches its list of supported authenticators with the server to
26150 determine the most secure authenticator that is supported by both.
26151 If no matching authenticators are found, Alpine will revert to plaintext
26152 login (or, in the case of SMTP, will be unable to authenticate at all).
26154 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
26157 Normally, you will not disable any authenticators.
26158 There are two exceptions:
26160 <OL>
26161 <LI> You use a broken server that advertises an authenticator,
26162 but does not actually implement it.
26163 <LI> You have a Kerberos-capable version of Alpine and the server is
26164 also Kerberos-capable, but you can not obtain Kerberos
26165 credentials on the server machine, thus you desire to disable
26166 GSSAPI (which in turn disables Alpine's Kerberos support).
26167 </OL>
26169 It is never necessary to disable authenticators, since Alpine will try
26170 other authenticators before giving up.
26171 However, disabling the relevant authenticator avoids annoying error messages.
26173 <UL>   
26174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26175 </UL><P>
26176 &lt;End of help on this topic&gt;
26177 </BODY>
26178 </HTML>
26179 ====== h_config_encryption_range =====
26180 <HTML>
26181 <HEAD>
26182 <TITLE>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></TITLE>
26183 </HEAD>
26184 <BODY>
26185 <H1>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></H1>
26187 This option sets a range of encryption protocols that can be attempted when
26188 Alpine will try to establish a secure connection using the SSL or TLS
26189 protocols.
26192 Before a secure connection to an external server is established, Alpine and the
26193 server will attempt to negotiate a secure connection. This part is known as the
26194 &quot;ClientHello&quot;. At that time Alpine will announce the version of
26195 encryption that it would like to establish. The server can reject that, and announce
26196 a different version of encryption. Once both the server and Alpine have found
26197 a version of encryption that they both agree on, they will both use it to start
26198 a secure connection.
26201 The use of the /ssl parameter in the definition of the server will make Alpine
26202 attempt the highest encryption protocol that it can use, in agreement with the
26203 server. However, using this option, you will set limits to the versions of
26204 the protocols that are used. This would, for example, allow you to disable the use
26205 of ssl3, in favor of more modern protocols. 
26208 For purposes of this option, the protocols are sorted 
26209 as follows
26212 <CENTER>
26213 no_min < ssl3 < tls1 < tls1_1 < tls1_2 < tls1_3 < no_max
26214 </CENTER>
26217 For example, if you want to disable ssl3, all you have to do is to set the minimum 
26218 version to tls1, or any higher protocol. 
26220 <P>The name of the parameters used to configure this option is the same as the 
26221 parameters that are added to the definition of a server to make it a secure 
26222 connection, and they are listed above for your reference.
26225 The special values &quot;no_min&quot; and &quot;no_max&quot; do not set values
26226 for the minimum and maximum protocol versions, and Alpine will use the maximum
26227 and minimum values of encryption protocols built into your SSL library.
26230 <UL>   
26231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26232 </UL><P>
26233 &lt;End of help on this topic&gt;
26234 </BODY>
26235 </HTML>
26236 ====== h_config_abook_metafile =====
26237 <HTML>
26238 <HEAD>
26239 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
26240 </HEAD>
26241 <BODY>
26242 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
26244 This is usually set by Alpine and is the name of a file
26245 that contains data about
26246 remote address books and remote configuration files.
26248 <UL>   
26249 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26250 </UL><P>
26251 &lt;End of help on this topic&gt;
26252 </BODY>
26253 </HTML>
26254 ====== h_config_composer_wrap_column =====
26255 <HTML>
26256 <HEAD>
26257 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
26258 </HEAD>
26259 <BODY>
26260 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
26263 This option specifies an aspect of Alpine's Composer.  This gives the
26264 maximum width that auto-wrapped lines will have.  It's also the maximum
26265 width of lines justified using the <A HREF="h_compose_justify">^J
26266 Justify</A> command.  The normal default
26267 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
26268 in order to
26269 prevent very long lines from being sent in outgoing mail.  When the mail
26270 is actually sent, trailing spaces will be stripped off of each line.
26273 <UL>   
26274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26275 </UL><P>
26276 &lt;End of help on this topic&gt;
26277 </BODY>
26278 </HTML>
26279 ====== h_config_deadlets =====
26280 <HTML>
26281 <HEAD>
26282 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
26283 </HEAD>
26284 <BODY>
26285 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
26288 This option affects Alpine's behavior when you cancel a message being
26289 composed.  Alpine's usual behavior is to write the canceled message to
26290 a file named 
26291 <!--chtml if pinemode="os_windows"-->
26292 &quot;DEADLETR&quot;,
26293 <!--chtml else-->
26294 &quot;dead.letter&quot; in your home directory,
26295 <!--chtml endif-->
26296 overwriting any previous message.
26298 If you set this option to a value higher than one, then that many copies
26299 of dead letter files will be saved.
26300 For example, if you set this option to &quot;3&quot; then you may have
26301 files named
26302 <!--chtml if pinemode="os_windows"-->
26303 &quot;DEADLETR&quot;,
26304 &quot;DEADLETR2&quot;, and
26305 &quot;DEADLETR3&quot;.
26306 <!--chtml else-->
26307 &quot;dead.letter&quot;,
26308 &quot;dead.letter2&quot;, and
26309 &quot;dead.letter3&quot; in your home directory.
26310 <!--chtml endif-->
26311 In this example, the most recently cancelled message will be in
26312 <!--chtml if pinemode="os_windows"-->
26313 &quot;DEADLETR&quot;,
26314 <!--chtml else-->
26315 &quot;dead.letter&quot;,
26316 <!--chtml endif-->
26317 and the third most recently cancelled message will be in
26318 <!--chtml if pinemode="os_windows"-->
26319 &quot;DEADLETR3&quot;.
26320 <!--chtml else-->
26321 &quot;dead.letter3&quot;.
26322 <!--chtml endif-->
26323 The fourth most recently cancelled message will no longer be saved.
26326 If you set this option to zero, then NO record of canceled messages is
26327 maintained.
26329 If the feature
26330 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
26331 is set, that overrides whatever you set for this option.
26332 If this option had existed at the time, then the Quell feature would not
26333 have been added, but it is still there for backwards compatibility.
26334 So, in order for this option to have the desired effect, make sure the
26335 Quell feature is turned off.
26338 <UL>   
26339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26340 </UL><P>
26341 &lt;End of help on this topic&gt;
26342 </BODY>
26343 </HTML>
26344 ====== h_config_maxremstream =====
26345 <HTML>
26346 <HEAD>
26347 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
26348 </HEAD>
26349 <BODY>
26350 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
26352 This option affects low-level behavior of Alpine.
26353 The default value for this option is <EM>3</EM>.
26354 If your INBOX is accessed using the IMAP protocol
26355 from an IMAP server, that connection is kept open throughout the
26356 duration of your Alpine session, independent of the value of this option.
26357 The same is true of any 
26358 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26359 you have defined.
26360 This option controls Alpine's behavior when connecting to remote IMAP folders
26361 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
26362 It specifies the maximum number of remote IMAP connections (other than
26363 those mentioned above) that Alpine will use for accessing the rest of your
26364 folders.
26365 If you set this option to zero, you will turn off most remote connection
26366 re-use.
26367 It's difficult to understand exactly what this option does, and it is usually
26368 fine to leave it set to its default value.
26369 It is probably more likely that you will be interested in setting the
26370 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
26371 instead of changing the value of this option.
26372 A slightly longer explanation of what is going on with this option
26373 is given in the next paragraphs.
26376 There are some time costs involved in opening and closing remote IMAP 
26377 folders, the main costs being the time you have to wait for the connection
26378 to the server and the time for the folder to open.
26379 Opening a folder may involve not only the time the server takes to do its
26380 processing but time that Alpine uses to do filtering.
26381 These times can vary widely.
26382 They depend on how loaded the server is, how large
26383 the folder being opened is, and how you set up filtering, among other things.
26384 Once Alpine has opened a connection to a particular folder, it will attempt
26385 to keep that connection open in case you use it again.
26386 In order to do this,
26387 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
26388 this option) IMAP connections you have allotted for this purpose.
26390 For example, suppose the value of this option is set to &quot;2&quot;.
26391 If your INBOX is accessed on a remote server using the IMAP protocol, that
26392 doesn't count as one of the remote connections but it is always kept open.
26393 If you then open another IMAP folder, that would be your first
26394 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
26395 If you open a third folder the second will be left open, in case you
26396 return to it.
26397 You won't be able to tell it has been left open.
26398 It will appear to be closed when you leave the folder but the connection
26399 will remain in the background.
26400 Now suppose you go back to the second folder (the first folder after the
26401 INBOX).
26402 A connection to that folder is still open so you won't have to wait
26403 for the startup time to open it.
26404 Meanwhile, the connection to the third folder will be left behind.
26405 Now, if you open a fourth folder, you will bump into the
26406 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
26407 than INBOX and you have the option set to &quot;2&quot;.
26408 The connection that is being used for
26409 the third folder will be re-used for this new fourth folder.
26410 If you go back to the third folder after this, it is no longer already
26411 connected when you get there.
26412 You'll still save some time since Alpine will re-use the connection to the
26413 fourth folder and you have already logged in on that connection,
26414 but the folder will have to be re-opened from scratch.
26416 If a folder is large and the startup cost is dominated by the time it takes
26417 to open that folder or to run filters on it, then it will pay to make the
26418 value of this option large enough to keep it open.
26419 On the other hand, if you only revisit a handful of folders or if
26420 the folders are small, then it might
26421 make more sense to keep this number small so that the reconnect
26422 time (the time to start up a new connection and authenticate)
26423 is eliminated instead.
26425 You may also need to consider the impact on the server.
26426 On the surface, a larger number here may cause a larger impact on the
26427 server, since you will have more connections open to the server.
26428 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
26429 associated with reopening a folder, but the <EM>server</EM> will be
26430 avoiding those costs as well.
26432 When twenty five minutes pass without any active use of an IMAP connection
26433 being saved for possible re-use, that connection will be shut down,
26436 <UL>   
26437 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26438 </UL><P>
26439 &lt;End of help on this topic&gt;
26440 </BODY>
26441 </HTML>
26442 ====== h_config_permlocked =====
26443 <HTML>
26444 <HEAD>
26445 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
26446 </HEAD>
26447 <BODY>
26448 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
26450 This option affects low-level behavior of Alpine.
26451 There is no default value for this option.
26452 It is related to the options
26453 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
26454 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
26455 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
26458 Note: changes made to this list take effect the next time you open a
26459 folder in the list.
26462 This is a list of folders that will be permanently kept open once they
26463 are first opened.
26464 The names in this list may be either the nickname of an Incoming folder
26465 or the full technical specification of a folder.
26466 The folders in this list need not be remote IMAP folders, they could usefully
26467 be local folders, as well.
26468 If a folder in the list is a newsgroup or is not accessed either locally
26469 or via IMAP, then the entry will be ignored.
26470 For example, folders accessed via NNTP or POP3 will not be kept open, since
26471 the way that new mail is found with those protocols involves closing and
26472 reopening the connection.
26474 Once a Stay Open folder has been opened, new-mail checking will continue
26475 to happen on that folder for the rest of the Alpine session.
26476 Your INBOX is always implicitly included in this Stay-Open list and doesn't
26477 need to be added explicitly.
26479 Another difference that you may notice between a Stay Open folder and a
26480 non-Stay Open folder is which message is selected as the current message
26481 when you enter the folder index.
26482 Normally, the starting position for an incoming folder (which most Stay Open
26483 folders will likely be) is controlled by the
26484 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
26485 However, if a folder is a Stay Open folder, when you re-enter the folder
26486 after the first time the current message will be the same as it was when
26487 you left the folder.
26488 An exception is made if you use the TAB command to get to the folder.
26489 In that case, the message number will be incremented by one from what it
26490 was when you left the folder.
26492 The above special behavior is thought to be useful.
26493 However, it is special and different from what you might at first expect.
26494 The feature
26495 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
26496 may be used to turn off this special treatment.
26498 If the message that was current when you left the folder no longer exists,
26499 then the regular startup rule will be used instead.
26502 <UL>   
26503 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26504 </UL><P>
26505 &lt;End of help on this topic&gt;
26506 </BODY>
26507 </HTML>
26508 ====== h_config_viewer_overlap =====
26509 <html>
26510 <header>
26511 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
26512 </header>
26513 <body>
26514 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
26516 This option specifies an aspect of Alpine's Message Viewing screen.  When
26517 the space bar is used to page forward in a message, the number of lines
26518 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
26519 bottom of the screen.  That is, if this was set to two lines, then the
26520 bottom two lines of the screen would be repeated on the top of the next
26521 screen.  The normal default value is "2".<p>
26522 <UL>   
26523 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26524 </UL><P>
26525 &lt;End of help on this topic&gt;
26526 </body>
26527 </html>
26528 ====== h_config_scroll_margin =====
26529 <HTML>
26530 <HEAD>
26531 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
26532 </HEAD>
26533 <BODY>
26534 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
26536 This option controls when Alpine's line-by-line scrolling occurs.
26537 Typically, when a selected item is at the top or bottom screen edge
26538 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
26539 displayed items are scrolled down or up by a single line.
26542 This option allows you to tell Alpine the number of lines from the top and
26543 bottom screen edge that line-by-line paging should occur.  For example,
26544 setting this value to one (1) will cause Alpine to scroll the display
26545 vertically when you move to select an item on the display's top or
26546 bottom edge.
26549 By default, this variable is zero, indicating that scrolling happens
26550 when you move up or down to select an item immediately off the display's
26551 top or bottom edge.
26554 <UL>   
26555 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26556 </UL><P>
26557 &lt;End of help on this topic&gt;
26558 </BODY>
26559 </HTML>
26560 ====== h_config_wordseps =====
26561 <HTML>
26562 <HEAD>
26563 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
26564 </HEAD>
26565 <BODY>
26566 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
26568 This option affects how a &quot;word&quot; is defined in the composer.
26569 The definition of a word is used when using the Forward Word and Backward
26570 Word commands in the composer, as well as when using the spell checker.
26571 Whitespace is always considered a word separator.
26572 Punctuation (like question marks, periods, commas, and so on) is always
26573 a word separator if it comes at the end of a word.
26574 By default, a punctuation character that is in the middle of a word does
26575 not break up that word as long as the character before and the character
26576 after it are both alphanumeric.
26577 If you add a character to this option it will be considered a
26578 word separator even when it occurs in the middle of an alphanumeric word.
26579 For example, if you want to skip through each part of an address instead
26580 of skipping the whole address at once you might want to include &quot;@&quot;
26581 and &quot;.&quot; in this list.
26582 If you want the word-skipper to stop on each part of a UNIX filename you
26583 could add &quot;/&quot; to the list.
26584 The equal sign and dash are other possibilities you might find helpful.
26586 <UL>   
26587 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26588 </UL><P>
26589 &lt;End of help on this topic&gt;
26590 </BODY>
26591 </HTML>
26592 ====== h_config_reply_indent_string =====
26593 <HTML>
26594 <HEAD>
26595 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
26596 </HEAD>
26597 <BODY>
26598 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
26600 This option specifies an aspect of Alpine's Reply command.
26601 When a message is replied to and the text of the message is included, the
26602 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
26603 to each line indicating it is quoted text.
26604 (In case you haven't seen this before, &quot;string&quot; is a technical term
26605 that means chunk of text.)
26608 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
26609 in 1999 and its wide-spread adoption since then, you will usually be better off if you
26610 use one of the standard values,
26611 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
26614 This option specifies a different value for that string.
26615 If you wish to use a string that begins or ends with a space,
26616 enclose the string in double quotes.
26619 Besides simple text, the prepended string can be based
26620 on the message being replied to.
26621 The following tokens are substituted for the message's corresponding value:
26623 <DL>
26624 <DT>_FROM_</DT>
26625 <DD>This token gets replaced with the message sender's &quot;username&quot;.
26626 If the name is longer than six characters, only the first six characters are
26627 used.
26628 </DD>
26630 <DT>_NICK_</DT>
26631 <DD>This token gets replaced with the nickname of the message sender's
26632 address as found in your addressbook.
26633 If no addressbook entry is found,
26634 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
26635 If the nickname is longer than six characters, only the first six characters are
26636 used.
26637 </DD>
26639 <DT>_INIT_</DT>
26640 <DD>This token gets replaced with the initials of the sender of the message.
26641 </DD>
26643 </DL>
26645 NOTE: When the
26646 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
26647 feature is enabled, you are given the opportunity to edit the string, whether 
26648 it is the default or one automatically generated using the above tokens.
26650 If you change your <!--#echo var="VAR_reply-indent-string"-->
26651 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
26652 quoted text will not be flowed
26653 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26654 when you reply.
26655 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26656 set to the default value.
26658 <UL>   
26659 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26660 </UL><P>
26661 &lt;End of help on this topic&gt;
26662 </BODY>
26663 </HTML>
26664 ====== h_config_quote_replace_string =====
26665 <HTML>
26666 <HEAD>
26667 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
26668 </HEAD>
26669 <BODY>
26670 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
26672 This option specifies what string to use as a quote when <b>viewing</b> a
26673 message.  The standard way of quoting messages when replying is the string
26674 &quot;&gt;&nbsp;&quot; (quote space).
26675 With this variable set, viewing a message will
26676 replace occurrences of 
26677 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
26678 This setting works best when
26679 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
26680 or the equivalent setting in your correspondents' mail programs
26681 is set to the default
26682 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
26683 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
26685 By default, this setting will only work on messages that are flowed, which is
26686 the default way of sending messages for many mail clients including
26687 Alpine.  Enable the feature
26688 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
26689 to also have quote-replacement performed on non-flowed messages.
26692 Setting this option will replace  &quot;&gt;&quot; and 
26693 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
26694 spaces. To preserve those spaces enclose the full string in double quotes.
26696 No padding to separate the text of the message from the quote string is
26697 added. This means that if you do not add trailing spaces to the value of
26698 this variable, text will be displayed right next to the quote string,
26699 which may be undesirable. This can be avoided by adding a new string
26700 separated by a space from your selection of quote string replacement. This
26701 last string will be used for padding. For example, setting this variable to 
26702 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26703 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26704 a space from the last quote string to make it more readable.
26706 One possible setting for this variable could be
26707 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26708 would have the effect of indenting each level of quoting four spaces and
26709 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26710 more discernible by setting colors for quoted text.
26712 Replying to or forwarding the viewed message will preserve the original
26713 formatting of the message, so quote-replacement will not be performed on
26714 messages that are being composed.
26716 <UL>   
26717 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26718 </UL><P>
26719 &lt;End of help on this topic&gt;
26720 </BODY>
26721 </HTML>
26722 ====== h_config_empty_hdr_msg =====
26723 <HTML>
26724 <HEAD>
26725 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26726 </HEAD>
26727 <BODY>
26728 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26730 When sending, if both the To and Cc fields are empty and you
26731 are sending the message to a Bcc,
26732 Alpine will put a special address in the To line.  The default value is:
26735 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26738 The reason for this is to avoid embarrassment caused by some Internet
26739 mail transfer software that interprets a &quot;missing&quot;
26740 <SAMP>To:</SAMP> header as an error and replaces it with an
26741 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26742 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26743 Bcc.  You may change the part of this message that comes before the
26744 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26745 variable to something else.
26748 The normal default is &quot;undisclosed-recipients&quot;.
26751 <UL>   
26752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26753 </UL><P>
26754 &lt;End of help on this topic&gt;
26755 </BODY>
26756 </HTML>
26757 ====== h_config_status_msg_delay =====
26758 <HTML>
26759 <HEAD>
26760 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26761 </HEAD>
26762 <BODY>
26763 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26765 This option has evolved over time, causing the possible values to be
26766 counter-intuitive.
26767 Read carefully before you set this option.
26768 First we explain what the option does, then there is a longer discussion
26769 following that.
26771 If this is set to zero, the default value, it has <EM>no</EM> effect.
26772 Positive and negative values serve two similar, but different purposes.
26774 If it is set to a positive number, it causes the cursor to move to the
26775 status line whenever a status message is printed and pause there for this
26776 many seconds.
26777 It will probably only be useful if the 
26778 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26779 also turned on.
26780 Setting this option to a positive number can only be used to
26781 <EM>increase</EM> the status message delay.
26782 This may be useful for Braille displays, or other non-traditional displays.
26784 If it is set to a negative number the interpretation is a bit complicated.
26785 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26786 allow you to read important status messages.
26787 Of course, this may cause you to miss some important messages.
26788 If you see a message flash by but miss what it says you can use the
26789 Journal command from the MAIN MENU to read it.
26790 If you set this option to a negative value, the delay will be
26791 no more than one second less than the absolute value
26792 of the value you set.
26793 So if you set it to -1, the delay will be no more than zero seconds, no
26794 delay at all.
26795 If you set it to -2, the delay will be no more than 1 second.
26796 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26797 If the delay that Alpine would have used by default is less than this delay,
26798 then the smaller delay set by Alpine will be used.
26799 Setting this option to a negative value can only reduce the amount of
26800 delay, never increase it.
26802 Here is a more detailed explanation.
26803 Status messages are the messages that show up spontaneously in the
26804 status message line, usually the third line from the bottom of the screen.
26805 By default, Alpine assigns each status message it produces a minimum
26806 display time.
26807 Some status messages have a minimum display time of zero.
26808 You can see an example of such a message by paging up in this help text
26809 until you reach the top of the screen.
26810 If you try to page past the top you will see the message
26812 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26814 in the status line.
26815 If there is another more important use of the status message line this message
26816 might be replaced quickly, or it even might not be shown at all.
26817 However, if there is no reason to get rid of the message, it might stay
26818 there for several seconds while you read the help.
26819 An example where it is replaced immediately happens when you page up in
26820 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26821 command right after paging up.
26822 The message will disappear immediately without causing a delay (unless you
26823 have set this option to a positive value) to allow you to type input for
26824 the &quot;WhereIs&quot; command.
26825 Since it isn't a very important message, Alpine has set its minimum display
26826 time to zero seconds.
26828 Other messages have minimum display times of three or more seconds.
26829 These are usually error messages that Alpine thinks you ought to see.
26830 For example, it might be a message about a failed Save or a failed folder open.
26831 It is often the case that this minimum display time won't delay you in
26832 any way because the status message line is not needed for another reason.
26833 However, there are times when Alpine has to delay what it is doing in
26834 order to display a status message for the minimum display time.
26835 This happens when a message is being displayed and Alpine wants to ask
26836 for input from the keyboard.
26837 For example, when you Save a message you use the status message line.
26838 You get a prompt there asking for the name of the folder to save to.
26839 If there is a status message being displayed that has not
26840 yet displayed for its minimum
26841 time Alpine will display that status message surrounded with the characters
26842 &gt; and &lt; to show you that it is delaying.
26843 That might happen, for example, if you tried to save to a folder that
26844 caused an error, then followed that immediately with another Save command.
26845 You might find yourself waiting for a status message like
26847 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26849 to finish displaying for three seconds.
26850 If that is something you find happening to you frequently, you may use
26851 negative values of this option to decrease or eliminate that delay, at
26852 the risk of missing the message.
26854 <UL>   
26855 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26856 </UL><P>
26857 &lt;End of help on this topic&gt;
26858 </BODY>
26859 </HTML>
26860 ====== h_config_active_msg_interval =====
26861 <HTML>
26862 <HEAD>
26863 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26864 </HEAD>
26865 <BODY>
26866 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26868 When Alpine is delayed for some reason it usually shows that
26869 something is happening with a small animated display in the status
26870 message line near the bottom of the screen.
26871 This option sets how frequently the characters (for example, a spinning bar)
26872 in the active status message lines are updated.
26873 At most, it can be set to be updated 20 times per second. 
26876 Setting this value to zero will prevent display of the animations
26877 altogether.
26880 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26881 can be used to remove the randomness from this animated display.
26884 <UL>   
26885 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26886 </UL><P>
26887 &lt;End of help on this topic&gt;
26888 </BODY>
26889 </HTML>
26890 ====== h_config_mailchecknoncurr =====
26891 <HTML>
26892 <HEADER>
26893 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26894 </HEADER>
26895 <BODY>
26896 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26898 This option is closely related to the
26899 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26900 option, as well as the
26901 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26902 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26903 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26904 new-mail checking is disabled and this option will have no effect.
26906 Normally this option is set to zero, which means that the value used will be
26907 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26908 If you set this option to a value different from zero
26909 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26910 then that is the check interval that will be used
26911 for folders that are not the currently open folder or the INBOX.
26912 You may not even have any folders that are noncurrent and not the INBOX.
26913 If you do, it is likely that they are due to
26914 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26915 you have configured.
26916 This option also affects the rate of mail checking done on cached
26917 connections to folders you previously had open but are no longer actively
26918 using.
26919 You aren't expected to understand that last sentence, but if you are interested
26920 take a look at
26921 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26922 and the related options.
26924 <UL>   
26925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26926 </UL><P>
26927 &lt;End of help on this topic&gt;
26928 </BODY>
26929 </HTML>
26930 ====== h_config_fifopath =====
26931 <HTML>
26932 <HEADER>
26933 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26934 </HEADER>
26935 <BODY>
26936 <H1>OPTION: NewMail FIFO Path</H1>
26938 This option is only available in UNIX Alpine.
26939 However, there is a very similar feature built in to PC-Alpine.
26940 In PC-Alpine's Config menu at the top of the screen
26941 is an option called &quot;New Mail Window&quot;.
26943 You may have Alpine create a FIFO special file (also called a named pipe) where
26944 it will send a one-line message each time a new message is received in
26945 the current folder, the INBOX, or any open
26946 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26947 To protect against two different Alpines both writing to the same FIFO, Alpine
26948 will only create the FIFO and write to it if it doesn't already exist.
26950 A possible way to use this option would be to have a separate window
26951 on your screen running the command
26953 <CENTER><SAMP>cat filename</SAMP></CENTER>
26955 where &quot;filename&quot; is the name of the file given for this option.
26956 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26957 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26958 You may be tempted to use &quot;tail -f filename&quot; to view the new
26959 mail log.
26960 However, the common implementations of the tail command will not do what you
26961 are hoping.
26963 The width of the messages produced for the FIFO may be altered with the
26964 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26966 On some systems, fifos may only be created in a local filesystem.
26967 In other words, they may not be in NFS filesystems.
26968 This requirement is not universal.
26969 If the system you are using supports it, it should work.
26970 (It is often the case that your home directory is in an NFS filesystem.
26971 If that is the case, you might try using a file in the &quot;/tmp&quot;
26972 filesystem, which is usually a local filesystem.)
26973 Even when it is possible to use an NFS-mounted filesystem as a place to name
26974 the fifo (for example, your home directory), it will still be the case that
26975 the reader (probably the &quot;cat&quot; command) and the
26976 writer (Alpine) of the fifo must be running on the same system.
26978 <UL>   
26979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26980 </UL><P>
26981 &lt;End of help on this topic&gt;
26982 </BODY>
26983 </HTML>
26984 ====== h_config_newmailwidth =====
26985 <HTML>
26986 <HEADER>
26987 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26988 </HEADER>
26989 <BODY>
26990 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26992 For UNIX Alpine, this option is only useful if you have turned on the
26993 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26994 That option causes new mail messages to be sent to a fifo file.
26995 Those messages will be 80 characters wide by default.
26996 You can change the width of those messages by changing this option.
26997 For example, if you are reading those messages in another window you might
26998 want to set this width to the width of that other window.
27000 If you are using PC-Alpine, it has an option in the Config menu to turn
27001 on the &quot;New Mail Window&quot;.
27002 This present option also controls the width of that window.
27004 <UL>   
27005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27006 </UL><P>
27007 &lt;End of help on this topic&gt;
27008 </BODY>
27009 </HTML>
27010 ====== h_config_mailcheck =====
27011 <HTML>
27012 <HEADER>
27013 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
27014 </HEADER>
27015 <BODY>
27016 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
27018 This option specifies, in seconds,
27019 how often Alpine will check for new mail.
27020 If set to zero, new-mail checking is disabled.
27021 (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
27022 current message is the last message of the folder.)
27023 There is a minimum value for this option, normally 15 seconds.
27024 The default value is normally 150 seconds.
27025 The higher you set this option, the easier it is on the server.
27027 There are some situations where automatic new-mail checking does not work.
27028 See the discussion about new-mail checking in
27029 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
27031 The new-mail checking will not happen exactly at the frequency that you specify.
27032 For example, Alpine may elect to defer a non-INBOX mail check if you
27033 are busy typing.
27034 Or, it may check more frequently than you have specified if that is
27035 thought to be necessary to keep the server from closing the connection
27036 to the folder due to inactivity.
27037 If Alpine checks for new mail as a side effect of another command, it will reset
27038 the timer, so that new-mail checking may seem to happen irregularly instead of
27039 every X seconds like clockwork.
27041 If you are anxious to know about new mail as soon as possible, set the check
27042 interval low, and you'll know about the new mail by approximately
27043 that amount of time after it arrives.
27044 If you aren't so worried about knowing right away, set this option to a
27045 higher value.
27046 That will save the server some processing time and may save you some of
27047 the time you spend waiting for new-mail checks to happen if you are
27048 dealing with a slow server or slow network connection.
27050 If you suspect that new-mail checking is causing slow downs for you,
27051 you may want to look into the options
27052 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
27053 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
27054 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
27055 which refine when mail checking is done.
27057 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
27058 there is a minimum time
27059 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
27060 between new-mail checks.
27061 Because of this minimum you may notice that new mail does not
27062 appear promptly when you expect it.
27063 The reason for this is to protect the server from over-zealous opening and
27064 closing of the Mail Drop folder, since that is a costly operation.
27066 <UL>   
27067 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27068 </UL><P>
27069 &lt;End of help on this topic&gt;
27070 </BODY>
27071 </HTML>
27072 ====== h_config_quell_checks_comp =====
27073 <HTML>
27074 <HEAD>
27075 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
27076 </HEAD>
27077 <BODY>
27078 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
27080 This option is closely related to the
27081 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
27082 option, the
27083 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
27084 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
27086 If this option is set, then the normal new-mail checking that happens
27087 while you are composing will not happen for folders other than your
27088 INBOX (which depends on the setting
27089 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
27091 You might want to set this option if you are experiencing delays while
27092 composing that you think might be related to the speed of the new-mail
27093 checks.
27095 Even with this option turned on, an occasional new-mail check may be done
27096 in order to keep the server from killing the connection to the folder.
27097 For example, IMAP servers may remove a connection to a folder if there
27098 has been no activity on the connection for 30 minutes or more.
27099 Instead of letting that happen, Alpine will check for new mail before the
27100 30 minutes is up even though you have turned on this feature to quell
27101 those checks.
27103 Besides new-mail checks, checkpoint operations on the folders
27104 will also be quelled when you set this option.
27105 The purpose of checkpointing is to write the changes to a folder out to
27106 disk periodically in order to avoid losing those changes when system or
27107 software problems occur.
27108 New-mail checking and checkpointing while you are not composing are not
27109 affected by this option.
27112 &lt;End of help on this topic&gt;
27113 </BODY>
27114 </HTML>
27115 ====== h_config_quell_checks_comp_inbox =====
27116 <HTML>
27117 <HEAD>
27118 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
27119 </HEAD>
27120 <BODY>
27121 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
27123 This option is closely related to the
27124 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
27125 option, the
27126 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
27127 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
27129 If this option is set, then the normal new-mail checking that happens
27130 while you are composing will not happen for your INBOX.
27131 Checking of other folders is controlled in a similar way with the
27132 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
27134 You might want to set this option if you are experiencing delays while
27135 composing that you think might be related to the speed of the new-mail
27136 checks.
27138 Even with this option turned on, an occasional new-mail check may be done
27139 in order to keep the server from killing the connection to the folder.
27140 For example, IMAP servers may remove a connection to a folder if there
27141 has been no activity on the connection for 30 minutes or more.
27142 Instead of letting that happen, Alpine will check for new mail before the
27143 30 minutes is up even though you have turned on this feature to quell
27144 those checks.
27146 Besides new-mail checks, checkpoint operations on the INBOX
27147 will also be quelled when you set this option.
27148 The purpose of checkpointing is to write the changes to a folder out to
27149 disk periodically in order to avoid losing those changes when system or
27150 software problems occur.
27151 New-mail checking and checkpointing while you are not composing are not
27152 affected by this option.
27154 &lt;End of help on this topic&gt;
27155 </BODY>
27156 </HTML>
27157 ====== h_config_maildropcheck =====
27158 <HTML>
27159 <HEADER>
27160 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
27161 </HEADER>
27162 <BODY>
27163 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
27165 New-mail checking for a
27166 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
27167 mail checking for a regular folder.
27168 One of the differences is that the connection to the Mail Drop is not
27169 kept open and so the cost of checking
27170 (delay for you and additional load for the server) may be significant.
27171 Because of this additional cost we set a minimum time that
27172 must pass between checks.
27173 This minimum only applies to the automatic checking done by Alpine.
27174 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
27175 at the end of a folder index, then the check is done right away.
27177 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
27178 new-mail checks.
27179 You may want to set this minimum high in order to avoid experiencing some
27180 of the delays associated with the checks.
27181 Note that the time between checks is still controlled by the regular
27182 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
27183 When Alpine is about to do an automatic check for new mail (because
27184 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
27185 new-mail check
27186 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
27187 the Mail Drop is checked for new mail as well.
27188 Therefore, it is only useful to set this option to a value that is higher
27189 than the <!--#echo var="VAR_mail-check-interval"-->.
27191 If this option is set to zero, automatic Mail Drop new-mail
27192 checking is disabled.
27193 There is a minimum value, normally 60 seconds.
27194 The default value is normally 60 seconds as well.
27195 This applies to the INBOX and to the currently open folder if that is
27196 different from the INBOX.
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_nntprange =====
27206 <HTML>
27207 <HEADER>
27208 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
27209 </HEADER>
27210 <BODY>
27211 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
27213 This option applies only to newsgroups accessed using the NNTP protocol.
27214 It does not, for example,
27215 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
27218 When you open a connection to a News server using the NNTP protocol, you
27219 normally have access to all of the articles in each newsgroup.
27220 If a server keeps a large backlog of messages it may speed performance
27221 some to restrict attention to only the newer messages in a group.
27222 This option allows you to set how many article numbers should be checked
27223 when opening a newsgroup.
27224 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
27225 of messages you ever want to see.
27226 For example, if you only ever wanted to look at the last 500 messages in each
27227 newsgroup you could set this option to 500.
27228 In actuality, it isn't quite that.
27229 Instead, for performance reasons, it specifies the range of article
27230 numbers to be checked, beginning
27231 with the highest numbered article and going backwards from there.
27232 If there are messages that have been canceled or deleted
27233 their article numbers are still counted as part of the range.
27235 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
27236 numbers
27237 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
27239 to be considered when reading a newsgroup.
27240 The number of messages that show up in your index will be less than or equal
27241 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
27244 The purpose of this option is simply to speed up access when reading news.
27245 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
27246 numbers, and can avoid downloading any information about the ignored articles.
27247 There is a cost you pay for this speedup.
27248 That cost is that there is no way for you to see those ignored articles.
27249 The articles that come before the range you specify are invisible to you and
27250 to Alpine, as if they did not exist at all.
27251 There is no way to see those messages using, for example, an unexclude command
27252 or something similar.
27253 The only way to see those articles is to set this option high enough (or
27254 set it to zero) and then to reopen the newsgroup.
27257 If this option is set to 0 (which is also the default),
27258 then the range is unlimited.
27259 This option applies globally to all NNTP servers and to all newsgroups
27260 on those servers.
27261 There is no way to set different values for different newsgroups or servers.
27264 <UL>   
27265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27266 </UL><P>
27267 &lt;End of help on this topic&gt;
27268 </BODY>
27269 </HTML>
27270 ====== h_config_news_active =====
27271 <html>
27272 <header>
27273 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
27274 </header>
27275 <body>
27276 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
27278 This option tells Alpine where to look for the "active file" for newsgroups
27279 when accessing news locally, rather than via NNTP.  The default path is
27280 usually "/usr/lib/news/active".<p>
27281 <UL>   
27282 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27283 </UL><P>
27284 &lt;End of help on this topic&gt;
27285 </body>
27286 </html>
27287 ====== h_config_news_spool =====
27288 <html>
27289 <header>
27290 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
27291 </header>
27292 <body>
27293 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
27295 This option tells Alpine where to look for the "news spool" for newsgroups
27296 when accessing news locally, rather than via NNTP.  The default path is
27297 usually "/var/spool/news".<p>
27298 <UL>   
27299 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27300 </UL><P>
27301 &lt;End of help on this topic&gt;
27302 </body>
27303 </html>
27304 ====== h_config_image_viewer =====
27305 <html>
27306 <header>
27307 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
27308 </header>
27309 <body>
27310 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
27311 <body>
27312 This option specifies the program Alpine should call to view MIME
27313 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
27314 no longer needed, but remains for backward compatibility.  The more
27315 general method for associating external printing and viewing programs with
27316 specific MIME data types is to use the system's (or your personal)
27317 "mailcap" configuration file.<p>
27318 <UL>   
27319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27320 </UL><P>
27321 &lt;End of help on this topic&gt;
27322 </body>
27323 </html>
27324 ====== h_config_domain_name =====
27325 <HTML>
27326 <HEAD>
27327 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
27328 </HEAD>
27329 <BODY>
27330 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
27332 This option is used only if the 
27333 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
27334 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
27335 strips the hostname from your return (&quot;From&quot;) address and when 
27336 completing unqualified addresses that you enter into the composer.
27338 If you set this, see also the <A HREF="h_config_quell_local_lookup">
27339 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
27342 <!--chtml if pinemode="os_windows"-->
27343 <P>This option is not applicable to PC-Alpine.
27344 <!--chtml else-->
27346 <!--chtml endif-->
27347 <UL>
27348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27349 </UL>
27351 &lt;End of help on this topic&gt;
27352 </BODY>
27353 </HTML>
27354 ====== h_config_prune_date =====
27355 <HTML>
27356 <HEAD>
27357 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
27358 </HEAD>
27359 <BODY>
27360 <H1>OPTION: Last-Time-Prune Question</H1>
27362 This value records the last time you were asked about deleting old
27363 sent-mail.
27364 It is set automatically by Alpine at the beginning of each month.
27365 In the past, if you wished to suppress the monthly sent-mail
27366 pruning feature, you could set this to a date in the future.
27367 This value is relative to the year 1900, so 
27368 to set this, for example, to October 2005, use 105.10.
27370 You can still do that if you wish, or you can use the
27371 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
27372 a little more convenient to use.
27374 <UL>   
27375 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27376 </UL><P>
27377 &lt;End of help on this topic&gt;
27378 </BODY>
27379 </HTML>
27380 ====== h_config_goto_default =====
27381 <HTML>
27382 <HEAD>
27383 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
27384 </HEAD>
27385 <BODY>
27386 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
27388 This value affects Alpine's behavior when you use the Goto command.
27389 Alpine's usual behavior has two parts.  If your current folder is
27390 &quot;Inbox&quot;, Alpine will offer the last open folder as the
27391 default.  If the current folder is other than &quot;Inbox&quot;,
27392 &quot;Inbox&quot; is offered as the default.
27395 The available options include:
27397 <DL>
27399  <DT>folder-in-first-collection</DT>
27401  <DD> Alpine will offer the most recently visited folder in the default
27402 collection found in the &quot;Collection List&quot; screen as the default.
27403 </DD>
27405  <DT> inbox-or-folder-in-first-collection</DT>
27407  <DD> If the current folder is &quot;Inbox&quot;,
27408 Alpine will offer the most recently visited folder in the
27409 default collection found in the &quot;Collection List&quot; screen.
27410 If the current folder is other than &quot;Inbox&quot;,
27411 &quot;Inbox&quot; is offered as the default.
27412 </DD>
27414  <DT> inbox-or-folder-in-recent-collection</DT>
27416  <DD> This is Alpine's default behavior.
27417 If the current folder is &quot;Inbox&quot;,
27418 Alpine will offer the last open
27419 folder as the default.
27420 If the current folder is other than &quot;Inbox&quot;,
27421 &quot;Inbox&quot; is offered as the default.
27422 </DD>
27424  <DT> first-collection-with-inbox-default</DT>
27426  <DD> Instead of offering the most recently visited folder in the default
27427 collection, the default collection is offered but with &quot;Inbox&quot; as
27428 the default folder.
27429 If you type in a folder name it will be in the default collection.
27430 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
27431 </DD>
27433  <DT> most-recent-folder</DT>
27435  <DD> The last accepted value simply causes the most recently opened
27436 folder to be offered as the default regardless of the currently opened
27437 folder.
27438 </DD>
27439 </DL>
27442 NOTE: The default while a newsgroup is open remains the same; the last
27443 open newsgroup.
27446 <UL>   
27447 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27448 </UL><P>
27449 &lt;End of help on this topic&gt;
27450 </BODY>
27451 </HTML>
27452 ====== h_config_thread_lastreply_char =====
27453 <HTML>
27454 <HEAD>
27455 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
27456 </HEAD>
27457 <BODY>
27458 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
27460 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
27461 INDEX display when using a
27462 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
27463 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
27464 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
27465 The value of this option is a single character.
27466 This character is used instead of the vertical line character when there are
27467 no more replies directly to the parent of the current message.
27468 It can be used to &quot;round-off&quot; the bottom of the vertical line
27469 by setting it to a character such as a backslash (&#92;) or
27470 a backquote (&#96;).
27471 The default value of this option is the backslash character (&#92;).
27472 This option may not be set to the Empty Value.
27473 In that case, the default will be used instead.
27476 <UL>   
27477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27478 </UL><P>
27479 &lt;End of help on this topic&gt;
27480 </BODY>
27481 </HTML>
27482 ====== h_config_thread_indicator_char =====
27483 <HTML>
27484 <HEAD>
27485 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
27486 </HEAD>
27487 <BODY>
27488 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
27490 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
27491 INDEX display when using a
27492 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27493 than &quot;none&quot; and sorting by Threads or OrderedSubject.
27494 The value of this option is a single character.
27495 This character is used to indicate that part of a thread (a conversation) is
27496 hidden beneath a message.
27497 The message could be expanded
27498 if desired with the &quot;/&quot; Collapse/Expand command.
27499 By default, the value of this option is the greater than sign (&gt;).
27501 If this option is set to the Empty Value, then the column (and the following
27502 blank column) will be deleted from the display.
27505 This option is closely related to the
27506 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
27507 Another similar option that affects the thread display is the
27508 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27511 <UL>   
27512 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27513 </UL><P>
27514 &lt;End of help on this topic&gt;
27515 </BODY>
27516 </HTML>
27517 ====== h_config_thread_exp_char =====
27518 <HTML>
27519 <HEAD>
27520 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
27521 </HEAD>
27522 <BODY>
27523 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
27525 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
27526 INDEX display when using a
27527 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27528 than &quot;none&quot;.
27529 The value of this option is a single character.
27530 This character is used to indicate that part of a thread has been expanded
27531 and could be collapsed if desired with
27532 the &quot;/&quot; Collapse/Expand command.
27533 By default, the value of this option is a dot (.).
27535 If this option is set to the Empty Value, then the column (and the following
27536 blank column) will be deleted from the display.
27539 This option is closely related to the
27540 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
27541 Another similar option that affects the thread display is the
27542 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27545 <UL>   
27546 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27547 </UL><P>
27548 &lt;End of help on this topic&gt;
27549 </BODY>
27550 </HTML>
27551 ====== h_config_thread_index_style =====
27552 <HTML>
27553 <HEAD>
27554 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
27555 </HEAD>
27556 <BODY>
27557 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
27559 When a folder is sorted by Threads or OrderedSubject,
27560 this option will affect the INDEX displays.
27563 The possible values for this option are:
27565 <DL>
27566 <DT>regular-index-with-expanded-threads</DT>
27567 <DD>This is the default display.
27568 If the configuration option
27569 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27570 is set to something other than &quot;none&quot;, then this setting
27571 will cause Alpine to start off with a MESSAGE INDEX with all of
27572 the threads expanded.
27573 That is, each message will have a line in the MESSAGE INDEX display.
27574 The Collapse/Expand command (/) may be used to manually collapse or
27575 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27577 This setting affects the display when the folder is first threaded.
27578 The collapsed state may also be re-initialized by re-sorting the folder manually
27579 using the SortIndex command ($).
27580 After re-sorting the threads will once again all be expanded, even if you
27581 have previously collapsed some of them.
27583 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
27584 the display will be the regular default Alpine MESSAGE INDEX, but sorted
27585 in a different order.
27586 </DD>
27588 <DT>regular-index-with-collapsed-threads</DT>
27589 <DD>If the configuration option
27590 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27591 is set to something other than &quot;none&quot;, then this setting
27592 will cause Alpine to start out with all of the threads collapsed instead of
27593 starting out with all of the threads expanded.
27594 The Collapse/Expand command (/) may be used to manually collapse or
27595 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27597 This setting affects the display when the folder is first threaded.
27598 The collapsed state may also be re-initialized by re-sorting the folder manually
27599 using the SortIndex command ($).
27600 After re-sorting the threads will once again all be collapsed, even if you
27601 have previously expanded some of them.
27602 </DD>
27604 <DT>separate-index-screen-always</DT>
27605 <DD>With this setting and the next, you will see an index of threads
27606 instead of an
27607 index of messages, provided you have sorted by Threads or OrderedSubject.
27609 The THREAD INDEX contains a '*' in the first column if any message in the thread
27610 is marked Important.
27611 If not, it contains a '+' if any message in the thread is to you.
27612 The second column is blank. The third column contains a 'D' if all of the
27613 messages in the thread are deleted.
27614 Otherwise, it contains an 'N' if any of the messages in the thread are New.
27616 When you view a particular thread from the THREAD INDEX you will be
27617 in the MESSAGE INDEX display
27618 but the index will only contain messages from the thread you are viewing.
27619 </DD>
27621 <DT>separate-index-screen-except-for-single-messages</DT>
27622 <DD>This is very similar to the option above.
27623 When you are in the THREAD INDEX, one of the available commands
27624 is &quot;ViewThd&quot;.
27625 With the setting &quot;separate-index-screen-always&quot; (the option above)
27626 when you view a particular thread you will be in the
27627 MESSAGE INDEX display and the index will only contain messages from
27628 the thread you are viewing.
27629 If the thread you are viewing consists of a single message, the MESSAGE INDEX
27630 will be an index with only one message in it.
27631 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
27632 setting instead, then that index that contains a single message
27633 will be skipped and you will go directly from the THREAD INDEX into the
27634 MESSAGE TEXT screen.
27635 </DD>
27637 </DL>
27640 <UL>   
27641 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27642 </UL><P>
27643 &lt;End of help on this topic&gt;
27644 </BODY>
27645 </HTML>
27646 ====== h_config_thread_disp_style =====
27647 <HTML>
27648 <HEAD>
27649 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
27650 </HEAD>
27651 <BODY>
27652 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27654 When a folder is sorted by Threads or OrderedSubject,
27655 this option will affect the MESSAGE INDEX display.
27656 By default, Alpine will display the MESSAGE INDEX in the
27657 &quot;show-thread-structure&quot; style if a folder is sorted
27658 by Threads or OrderedSubject.
27661 The possible values for this option are:
27663 <DL>
27664 <DT>none</DT>
27665 <DD>Regular index display.
27666 The same index line as would be displayed without threading is used.
27667 The only difference will be in the order of the messages.
27668 </DD>
27670 <DT>show-thread-structure</DT>
27671 <DD>Threaded Subjects will be indented and vertical bars and horizontal
27672 lines will be added to make it easier to see the relationships among
27673 the messages in a thread (a conversation).
27674 </DD>
27676 <DT>mutt-like</DT>
27677 <DD>This is the same as the option above except that the Subject
27678 is suppressed (is blank) if it matches the previous Subject in the thread.
27679 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
27680 Here is an example of what a mutt-like index might look like.
27681 In this example, the first column represents the message number, the
27682 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
27683 is set to &quot;regular-index-with-expanded-threads&quot;, and the
27684 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
27685 is set to a backslash:
27686 <PRE>
27687 &nbsp;&nbsp;&nbsp;1    Some topic
27688 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
27689 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
27690 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
27691 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
27692 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
27693 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
27694 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27695 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27696 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27697 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27698 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27699 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27700 &nbsp;&nbsp;&nbsp;14    Next topic
27701 </PRE>
27702 </DD>
27704 <DT>indent-subject-1</DT>
27705 <DD>Threaded Subjects will be indented one space per level of the conversation.
27706 The bars and lines that show up in the show-thread-structure display will
27707 not be there with this style.
27708 </DD>
27710 <DT>indent-subject-2</DT>
27711 <DD>Same as above but indent two spaces per level instead of one space.
27712 </DD>
27714 <DT>indent-from-1</DT>
27715 <DD>Similar to indent-subject-1, except that instead of indenting the
27716 Subject field one space the From field of a thread will be indented one
27717 space per level of the conversation.
27718 </DD>
27720 <DT>indent-from-2</DT>
27721 <DD>Same as above but indent two spaces per level instead of one space.
27722 </DD>
27724 <DT>show-structure-in-from</DT>
27725 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27726 and horizontal lines just like with the show-thread-structure option, but
27727 the From field is used to show the relationships instead of the Subject field. 
27728 </DD>
27730 </DL>
27733 <UL>   
27734 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27735 </UL><P>
27736 &lt;End of help on this topic&gt;
27737 </BODY>
27738 </HTML>
27739 ====== h_config_pruning_rule =====
27740 <HTML>
27741 <HEAD>
27742 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27743 </HEAD>
27744 <BODY>
27745 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27747 By default, Alpine will ask at the beginning of each month whether or not
27748 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27749 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27750 change the format of the folder to sent-mail-yyyy-mm.)
27751 It will also ask whether you would like to delete old sent-mail folders.
27752 If you have defined
27753 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27755 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27756 Alpine will also ask about pruning those folders.
27759 With this option you may provide an automatic answer to these questions.
27760 The default value is to ask you what you'd like to do.
27763 The six possible values for this option are:
27765 <DL>
27766 <DT>ask about rename, ask about deleting</DT>
27767 <DD>This is the default.
27768 Alpine will ask whether you want to rename the folders and whether you
27769 want to delete each of the old folders.
27770 </DD>
27772 <DT>ask about rename, don't delete</DT>
27773 <DD>Alpine will ask whether you want to rename the folders, but won't
27774 ask about or delete old folders.
27775 </DD>
27777 <DT>always rename, ask about deleting</DT>
27778 <DD>This means you want to always answer yes and have Alpine automatically
27779 rename the folder if possible.
27780 You will also be asked about deleting old folders.
27781 </DD>
27783 <DT>always rename, don't delete</DT>
27784 <DD>This means you want to always answer yes and have Alpine automatically
27785 rename the folder if possible.
27786 There will be no deleting of old folders.
27787 </DD>
27789 <DT>don't rename, ask about deleting</DT>
27790 <DD>This means you want to always answer no.
27791 Alpine will not rename the folder.
27792 You will be asked about deleting old folders.
27793 </DD>
27795 <DT>don't rename, don't delete</DT>
27796 <DD>This means you want to always answer no.
27797 Alpine will not rename the folder.
27798 There will be no deleting of old folders, either.
27799 </DD>
27800 </DL>
27803 <UL>   
27804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27805 </UL><P>
27806 &lt;End of help on this topic&gt;
27807 </BODY>
27808 </HTML>
27809 ====== h_config_reopen_rule =====
27810 <HTML>
27811 <HEAD>
27812 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27813 </HEAD>
27814 <BODY>
27815 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27817 Alpine normally checks for new mail in the currently open folder
27818 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27821 There are some situations where automatic new-mail checking does not work.
27822 For example, if a mail folder is opened using the POP protocol or a newsgroup
27823 is being read using the NNTP protocol, then new-mail checking is disabled.
27826 It may be possible to check for new mail in these cases by reopening the
27827 folder.
27828 Alpine does not do this for you automatically, but you may do the commands
27829 manually to cause this to happen.
27830 You reopen by going back to the folder list screen from the message
27831 index screen with the &quot;&lt;&quot; command,
27832 and then going back into the message index screen with
27833 the &quot;&gt;&quot; command.
27834 (Actually, any method you would normally use to open a folder will work the
27835 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27836 For example, the GoTo Folder command will work, or you may use L to go to the
27837 Folder List screen and Carriage Return to reopen the folder.)
27840 There are some cases where Alpine knows that reopening the folder should
27841 be useful as a way to discover new mail.
27842 At the time of this writing, connections made using the POP protocol,
27843 news reading using the NNTP protocol, local news reading, and local
27844 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27845 fall into this category.
27846 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27847 has no way of knowing, so it might also just be an exercise in futility.
27848 All remote, ReadOnly folders other than those listed just above fall into this
27849 category.
27850 The setting of this option together with the type of folder
27851 controls how Alpine will react to the apparent attempt to reopen a folder.
27854 If you don't reopen, then you will just be back in
27855 the message index with no change.
27856 You left the index and came back, but the folder remained &quot;open&quot;
27857 the whole time.
27858 However, if you do reopen the folder, the folder is closed and then reopened.
27859 In this case, the current state of the open folder is lost.
27860 The New status, Important and Answered flags,
27861 selected state, Zoom state, collapsed or expanded state of threads,
27862 current message number,
27863 and any other temporary state is all lost when the reopen happens.
27864 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27867 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27868 several places.
27869 That really implies the case where Alpine knows it is a good way to discover
27870 new mail, which is more than just POP and NNTP, but POP and NNTP are
27871 the cases of most interest.
27872 This option probably has more possible values than it deserves. They are:
27874 <DL>
27875 <DT>Always reopen</DT>
27876 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27877 whenever you type a command that implies a reopen, regardless of the
27878 access method.
27879 In other words, it is assumed you would always answer Yes if asked
27880 about reopening.
27881 </DD>
27883 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27884 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27885 will ask you whether to reopen other remote folders,
27886 with a default answer of Yes.
27887 </DD>
27889 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27890 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27891 will ask you whether to reopen other remote folders,
27892 with a default answer of No.
27893 </DD>
27895 <DT>Yes for POP/NNTP, No for other remote</DT>
27896 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27897 will assume a No answer for all other remote folders.
27898 </DD>
27900 <DT>Always ask [Yes]</DT>
27901 <DD>Alpine will not differentiate based on access method.
27902 It will always ask for all remote folders, with a default answer of Yes.
27903 </DD>
27905 <DT>Always ask [No]</DT>
27906 <DD>Alpine will not differentiate based on access method.
27907 It will always ask for all remote folders, with a default answer of No.
27908 </DD>
27910 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27911 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27912 of Yes.
27913 It will never attempt to reopen other remote folders.
27914 </DD>
27916 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27917 <DD>This is the default.
27918 Alpine will ask if the access method is POP or NNTP, with a default answer
27919 of No.
27920 It will never attempt to reopen other remote folders.
27921 </DD>
27923 <DT>Never reopen</DT>
27924 <DD>Alpine will never attempt to reopen already open folders.
27925 </DD>
27926 </DL>
27929 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27930 any of the other situations where it is likely that reopening is a good way
27931 to discover new mail.
27934 There is an alternative that may be of useful in some situations.
27935 Instead of manually checking for new mail you can set up a
27936 <A HREF="h_maildrop">Mail Drop</A>
27937 and automatically check for new mail.
27940 <UL>   
27941 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27942 </UL><P>
27943 &lt;End of help on this topic&gt;
27944 </BODY>
27945 </HTML>
27946 ====== h_config_inc_startup =====
27947 <HTML>
27948 <HEAD>
27949 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27950 </HEAD>
27951 <BODY>
27952 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27954 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27955 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27956 It determines which message will be the <EM>current message</EM> when
27957 the folder is first opened.
27958 The default value is &quot;first-unseen&quot;.
27961 The seven possible values for this option are:
27963 <DL>
27964 <DT>first-unseen</DT>
27965 <DD>The current message is set to the first
27966 unseen message that has not been marked deleted, or the last message if
27967 all of the messages have been seen previously.
27968 Messages which have not been seen or which have been seen but re-marked
27969 as New are considered unseen messages.
27970 See the note at the bottom of this help about newsgroups.
27971 </DD>
27973 <DT>first-recent</DT>
27974 <DD>Similar to the default, but rather than starting on the first
27975 unseen message Alpine starts on the first <EM>recent</EM> message.
27976 A message is recent if it arrived since the last time the folder was
27977 open.  This value causes the current message to be set to the first
27978 recent message if there is one, otherwise to the last
27979 message in the folder.
27980 </DD>
27982 <DT>first-important</DT>
27983 <DD>This will result in the current message being set to the first
27984 message marked Important (but not Deleted).
27985 If no messages are marked Important, then it will be the last message.
27986 Messages are marked Important by <EM>you</EM>, not by the sender, using
27988 <A HREF="h_common_flag">Flag command</A>.
27989 Or they may be marked Important by an Alpine
27990 <A HREF="h_mainhelp_filtering">Filter</A>
27991 that you have set up.
27992 </DD>
27994 <DT>first-important-or-unseen</DT>
27995 <DD>This selects the first of the first unseen and the first important
27996 messages.
27997 </DD>
27999 <DT>first-important-or-recent</DT>
28000 <DD>This selects the first of the first recent and the first important
28001 messages.
28002 </DD>
28004 <DT>first</DT>
28005 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
28006 If all messages are deleted you start on the last message.
28007 </DD>
28009 <DT>last</DT>
28010 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
28011 If all messages are deleted you start on the last message.
28012 </DD>
28013 </DL>
28016 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
28017 &quot;first-recent&quot; are the same and are affected by whether or not the
28018 feature 
28019 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
28020 is turned on. 
28021 Also, there is no permanent storage in news for an Important flag.
28022 This means that no messages will be marked Important when a newsgroup is
28023 first opened.
28026 <UL>   
28027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28028 </UL><P>
28029 &lt;End of help on this topic&gt;
28030 </BODY>
28031 </HTML>
28032 ====== h_config_browser =====
28033 <HTML>
28034 <HEAD>
28035 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
28036 </HEAD>
28037 <BODY>
28038 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
28039 <!--chtml if pinemode="os_windows"-->
28040 PC-Alpine users do not need to enter anything here, unless:<UL>
28041 <LI> they want to override, for use with Alpine, the application defined
28042 in the Windows operating system for handling URLs; or
28043 <LI> they are (planning on) using the same configuration file with 
28044 Unix Alpine.
28045 </UL>
28047 Note that if using a viewer that has a space in its path, you should
28048 use the DOS name for that directory or file. Example:
28049 <PRE>
28050 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
28051 </PRE>
28052 <HR><P>
28053 <!--chtml endif-->
28054 This option affects Alpine's handling of URLs that are found in 
28055 messages you read.  Normally, only URLs Alpine can handle directly
28056 are automatically offered for selection in the &quot;Message
28057 Text&quot; screen.  When one or more applications
28058 capable of deciphering URLs on their command line are added here, Alpine
28059 will choose the first available to display URLs it cannot handle directly.
28060 A viewer's availability is based on its being specified with a <B>full
28061 directory path</B> and the evaluation of any optionally supplied
28062 parameters described below.
28065 Additionally, to support various connection methods and applications, each
28066 entry in this list can optionally begin with one or more of
28067 the following special tokens.  The allowed tokens include:
28070 <DL>
28071 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
28072 <DD>
28073 The <VAR>test-string</VAR> is a shell command that Alpine will run to
28074 evaluate a viewer's availability.  The command specified by the test
28075 string is run and if its resulting exit status is non-zero, Alpine will
28076 not consider the associated viewer for use.
28077 </DD>
28079 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
28080 <DD>
28081 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
28082 URL schemes that are to be used with the associated viewer.  This is
28083 the way to configure Alpine to recognize URLs other than the built-in set.
28085 It can also be used to override Alpine's built-in handlers.
28086 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
28087 and Alpine would use (provided it passed all other criteria) the associated
28088 viewer when it encountered a URL of the form &quot;news:comp.mail.pine&quot;.
28090 </DD>
28091 </DL>
28094 By default, Alpine will simply append a space character followed by the
28095 selected URL prior to launching the command in your specified SHELL.  You can
28096 optionally specify where in the command the selected URL should appear
28097 by using the &quot;_URL_&quot; token.  All occurrences found in the command
28098 will be replaced with the selected URL before the command is handed
28099 to the shell.  If such replacement occurs, the default appending of the
28100 selected URL does not take place.
28103 NOTE: If the viewer you specify has any command-line arguments,
28104 including the &quot;_URL_&quot; token, you will need to add a
28105 double-quote character before the command path and after the last
28106 argument (see the &quot;lynx&quot; example below).
28109 So, here are some example entries:
28110 <PRE>
28111 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
28112               &quot;/usr/local/bin/lynx _URL_&quot;
28113               C:&#92;BIN&#92;NETSCAPE.BAT
28114 </PRE>
28116 This example shows that for the first viewer in the list to be used
28117 the environment variable &quot;DISPLAY&quot; must be defined.  If it
28118 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
28119 If neither condition is met,
28120 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
28121 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
28122 If the path to &quot;lynx&quot; is invalid,
28123 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
28124 Note that the last
28125 entry is a DOS/Windows path.  This is one way to support Alpine running
28126 on more than one architecture with the same configuration file.<P>
28128 <!--chtml if pinemode="os_windows"-->
28129 <!--chtml else-->
28130 Note that depending on the type of browser used and the method of 
28131 its invocation (such as whether it will open in a separate window) from
28132 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
28133 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
28134 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
28135 In other words, launching the browser from Alpine may make Alpine 
28136 &quot;disappear&quot; (although it is still &quot;running&quot;)
28137 until you close the browser again.<P>  
28138 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
28139 environment: for advanced users and  systems administrators</A>
28140 </UL>
28141 <!--chtml endif-->
28142 <P>If you are unsure what browsers are available on your system or how to 
28143 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
28144 local computing support staff.
28145 <P><UL>
28146 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28147 </UL>
28149 &lt;End of help on this topic&gt;
28150 </BODY>
28151 </HTML>
28152 ====== h_config_history =====
28153 <HTML>
28154 <HEAD>
28155 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
28156 </HEAD>
28157 <BODY>
28158 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
28160 This option allows you to input a list of directories that Alpine will offer 
28161 for you to use when you are saving or exporting attachments. This is useful
28162 when navigating to specific directories becomes too tedious, or when you 
28163 need to do this on a daily basis, and want Alpine to remember this on a 
28164 permanent basis.
28166 The list of directories saved here can be accessed using the ^Y and ^V commands
28167 in the save prompt for attachments, or the export command.
28169 <P><UL>
28170 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28171 </UL>
28173 &lt;End of help on this topic&gt;
28174 </BODY>
28175 </HTML>
28176 ====== h_config_browser_xterm =====
28177 <HTML>
28178 <HEAD>
28179 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
28180 </HEAD>
28181 <BODY>
28182 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
28183 environment: for advanced users and  systems administrators</H1>
28184 If you are using Alpine with an X-terminal (emulator) and want to define an 
28185 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
28186 you may want to do so in a manner that causes any <B>already</B> 
28187 invoked viewer application to be used for viewing URLs you select from Alpine 
28188 messages, and a <B>new</B> URL-viewer process to be 
28189 started <B>only</B> if the same application has <B>not already</B> 
28190 been launched -- for one reason, to avoid file-locking contentions among 
28191 multiple invocations of the same URL-viewer application.  
28192 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
28193 option does not do this.)  A method of doing that would be:<OL>
28194 <LI> use 
28195 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
28196 check (using commands appropriate for your Unix shell
28197 in place of <VAR>test-string</VAR>) for the presence of a 
28198 lockfile created by the URL-viewer application -- which implies that the 
28199 application is already running, though this is not foolproof. 
28200 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
28201 application with its appropriate command line option(s) to 
28202 show the URL selected from the Alpine message in an already open window of 
28203 that application, or perhaps in a new window of that application.  
28205 <LI> In the 
28206 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
28207 application without those command line options, but this time using the 
28208 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
28209 is defined.
28210 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
28211 windows environment (for instance, using VT-100 terminal emulation), you 
28212 may wish to specify a non-X windows URL-viewer application such as Lynx
28213 as the last entry.
28214 </OL><BR>
28215 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
28216 the command shell, the URL-viewer application(s), and possibly the specific 
28217 version of the latter, you are using.  
28219 Relevant command 
28220 line options for the Netscape browser for showing URLs (selected from Alpine) 
28221 when Netscape is already running are discussed in the document
28222 &quot;Remote Control of UNIX Netscape&quot; 
28223 found at the URL (as of 12 Aug. 1998):
28226 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
28228 <P>(If the URL-viewer application is 
28229 <B>not</B> running on the same host as Alpine, but being launched from an 
28230 applications server, you may not be able to use the command line options for 
28231 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
28233 <!--chtml if this-method="shown-to-work"-->
28234 An example using the Korn shell and the Netscape browser (first entry wrapped 
28235 because of its length, but should all appear on one line):
28237 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
28239 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
28240               &quot;/usr/local/bin/lynx '_URL_'&quot;
28242 <!--chtml endif-->
28244 <UL>   
28245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28246 </UL><P>
28247 &lt;End of help on this topic&gt;
28248 </BODY>
28249 </HTML>
28250 ====== h_config_enable_full_hdr =====
28251 <HTML>
28252 <HEAD>
28253 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
28254 </HEAD>
28255 <BODY>
28256 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
28258 This feature enables the &quot;H Full Headers&quot; command which toggles between
28259 the display of all headers in the message and the normal edited view of
28260 headers.  The Full Header command also controls which headers are included
28261 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
28262 Full Header mode will respect the
28263 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
28264 feature setting.)
28266 If Full Header mode is turned on and you Forward a message, you will
28267 be asked if you'd like to forward the message as an attachment, as opposed
28268 to including the text of the message in the body of your new message.
28270 If you have also turned on the
28271 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
28272 option then the Full Headers command actually rotates through three states
28273 instead of just two.
28274 The first is the normal view with long quotes suppressed.
28275 The second is the normal view but with the long quotes included.
28276 The last enables the display of all headers in the message.
28277 When using Export, Pipe, Print, Forward, or Reply the quotes are
28278 never suppressed, so the first two states are identical.
28280 Normally, the Header Mode will reset
28281 to the default behavior when moving to a new message.
28282 The mode can be made to persist from message to message by setting the feature
28283 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
28285 <UL>   
28286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28287 </UL><P>
28288 &lt;End of help on this topic&gt;
28289 </BODY>
28290 </HTML>
28291 ====== h_config_enable_full_hdr_and_text =====
28292 <HTML>
28293 <HEAD>
28294 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
28295 </HEAD>
28296 <BODY>
28297 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
28299 This feature affects how the &quot;H Full Headers&quot; command displays
28300 message text.  If set, the raw message text will be displayed.  This
28301 especially affects MIME formatted email, where the entire MIME format
28302 will be displayed.  This feature similarly affects how messages are
28303 included for the Export, Pipe, Print, Forward, and Reply functions.
28305 When viewing a raw message that has attachments with this feature set,
28306 you will not be able to view attachments without first leaving full 
28307 headers mode.  This is because MIME parsing is not done on the raw message.
28309 <UL>   
28310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28311 </UL><P>
28312 &lt;End of help on this topic&gt;
28313 </BODY>
28314 </HTML>
28315 ====== h_config_enable_pipe =====
28316 <HTML>
28317 <HEAD>
28318 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
28319 </HEAD>
28320 <BODY>
28321 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
28323 This feature enables the "| Pipe" command that sends the current message
28324 to the specified command for external processing.
28327 A short description of how the pipe command works is given
28328 <A HREF="h_pipe_command">here</A>.
28331 <UL>   
28332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28333 </UL><P>
28334 &lt;End of help on this topic&gt;
28335 </BODY>
28336 </HTML>
28337 ====== h_config_quell_full_hdr_reset =====
28338 <HTML>
28339 <HEAD>
28340 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
28341 </HEAD>
28342 <BODY>
28343 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
28345 The <A HREF="h_common_hdrmode">HdrMode Command</A>
28346 normally resets to the default state when switching to a new message.
28347 For example, if you've used the &quot;H&quot; command to turn on Full
28348 Headers for a message you are viewing, and then you type the Next command
28349 to look at the next message, the full headers will no longer be shown.
28350 Setting this feature disables that reset.
28351 Instead, the Header Mode remains the same from message to message.
28354 The presence or absence of the HdrMode command is determined by the
28355 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
28356 Feature-List option.
28358 <UL>   
28359 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28360 </UL><P>
28361 &lt;End of help on this topic&gt;
28362 </BODY>
28363 </HTML>
28364 ====== h_config_enable_tab_complete =====
28365 <HTML>
28366 <HEAD>
28367 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
28368 </HEAD>
28369 <BODY>
28370 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
28372 This feature enables the TAB key when at a prompt for a filename. In this
28373 case, TAB will cause the partial name already entered to be automatically
28374 completed, provided the partial name is unambiguous.
28375 This feature is on by default.
28377 Similarly, this feature also enables TAB completion of address book
28378 nicknames when at a prompt for a nickname,
28379 or when typing in an address field in the composer.
28381 &lt;End of help on this topic&gt;
28382 </BODY>
28383 </HTML>
28384 ====== h_config_quit_wo_confirm =====
28385 <HTML>
28386 <HEAD>
28387 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
28388 </HEAD>
28389 <BODY>
28390 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
28392 This feature controls whether or not Alpine will ask for confirmation when a
28393 Quit command is received.
28395 &lt;End of help on this topic&gt;
28396 </BODY>
28397 </HTML>
28398 ====== h_config_quote_replace_noflow =====
28399 <HTML>
28400 <HEAD>
28401 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
28402 </HEAD>
28403 <BODY>
28404 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
28406 This feature, which is only active when
28407 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
28408 also set,
28409 enables quote-replacement on non-flowed messages.  It is off
28410 by default because a non-flowed message is more dependent on its format,
28411 and thus quote-replacement may cause less-than-pleasing results.
28412 Setting this feature will cause quote-replacement similar to that of flowed
28413 messages, but with the added possibility of long lines being wrapped
28414 into new lines if the Quote-Replacement-String is longer than the string
28415 it is replacing, which is &quot;&gt;&nbsp;&quot;.
28417 &lt;End of help on this topic&gt;
28418 </BODY>
28419 </HTML>
28420 ====== h_config_enable_jump =====
28421 <HTML>
28422 <HEAD>
28423 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
28424 </HEAD>
28425 <BODY>
28426 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
28428 When this feature is set you may enter a number (followed by RETURN)
28429 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
28430 screens.  In other words, it obviates the need for typing the "J" for the
28431 Jump command.
28433 &lt;End of help on this topic&gt;
28434 </BODY>
28435 </HTML>
28436 ====== h_config_enable_alt_ed =====
28437 <HTML>
28438 <HEAD>
28439 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
28440 </HEAD>
28441 <BODY>
28442 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
28444 If this feature is set (the default), and the 
28445 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28446 <B>is not</B> set, entering
28447 the ^_ (Ctrl-underscore) key while composing a message will prompt you
28448 for the name of the editor you would like to use.
28450 If the environment variable $EDITOR is set, its value will be offered as
28451 a default.
28453 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28454 <B>is</B> set, the ^_ key will activate the specified
28455 editor without prompting, in which case it is not necessary to
28456 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
28458 <UL>   
28459 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28460 </UL><P>
28461 &lt;End of help on this topic&gt;
28462 </BODY>
28463 </HTML>
28464 ====== h_config_alt_ed_now =====
28465 <HTML>
28466 <HEAD>
28467 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
28468 </HEAD>
28469 <BODY>
28470 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
28472 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
28473 variable are both set, Alpine will
28474 automatically activate the specified editor when the cursor is moved from
28475 the header of the message being composed into the message text.  For
28476 replies, the alternate editor will be activated immediately.  If this
28477 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
28478 automatically ask for the name of an alternate editor when the cursor
28479 is moved out of the header being composed, or if a reply is being done.
28481 <P><UL>
28482 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28483 </UL>
28485 &lt;End of help on this topic&gt;
28486 </BODY>
28487 </HTML>
28488 ====== h_config_enable_bounce =====
28489 <HTML>
28490 <HEAD>
28491 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
28492 </HEAD>
28493 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
28494 <BODY>
28496 Setting this feature enables the "B Bounce" command, which will prompt
28497 for an address and *remail* the message to the new recipient.  This command
28498 is used to re-direct messages that you have received in error, or need to
28499 be redirected for some other reason (e.g. list moderation).  The final
28500 recipient will see a header indicating that you have Resent the msg, but
28501 the message's From: header will show the original author of the message,
28502 and replies to it will go back to that author, and not to you.
28504 &lt;End of help on this topic&gt;
28505 </BODY>
28506 </HTML>
28507 ====== h_config_enable_agg_ops =====
28508 <HTML>
28509 <HEAD>
28510 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
28511 </HEAD>
28512 <BODY>
28513 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
28515 When this feature is set you may use the commands and subcommands that relate to
28516 performing operations on more than one message at a time.  We call these
28517 &quot;aggregate operations&quot;.  In particular, the 
28518 <!--chtml if pinemode="function_key"-->&quot;F5
28519 <!--chtml else-->&quot;;
28520 <!--chtml endif--> Select&quot;, 
28522 <!--chtml if pinemode="function_key"-->
28523 &quot;F6
28524 <!--chtml else-->
28525 &quot;A 
28526 <!--chtml endif-->
28527 Apply&quot;, and 
28528 <!--chtml if pinemode="function_key"-->
28529 &quot;F4
28530 <!--chtml else-->
28531 &quot;Z 
28532 <!--chtml endif-->
28533 Zoom&quot; commands are enabled by this feature.  Select is used to
28534 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
28535 then be used to apply any message command to all of the selected/tagged
28536 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
28537 view between just those Selected and all messages in the folder.
28539 This feature also enables the 
28540 <!--chtml if pinemode="function_key"-->
28541 &quot;F7&quot; 
28542 <!--chtml else-->
28543 &quot;^X&quot; 
28544 <!--chtml endif-->
28546 subcommand in the MESSAGE INDEX 
28547 WhereIs command that causes all messages matching the WhereIs argument to 
28548 become selected; and the Select, Select Current, and ZoomMode commands in the
28549 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
28551 Some related help topics are
28552 <UL>
28553 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28554 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28555 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
28556 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28557 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28558 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28559 </UL>
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>
28568 ====== h_config_enable_flag =====
28569 <HTML>
28570 <HEAD>
28571 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
28572 </HEAD>
28573 <BODY>
28574 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
28576 Setting this feature enables the
28577 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
28578 command that allows you to
28579 manipulate the status flags associated with a message.  By default, Flag
28580 will set the "Important" flag, which results in an asterisk being
28581 displayed in column one of the MESSAGE INDEX for such messages.
28583 &lt;End of help on this topic&gt;
28584 </BODY>
28585 </HTML>
28586 ====== h_config_flag_screen_default =====
28587 <HTML>
28588 <HEAD>
28589 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
28590 </HEAD>
28591 <BODY>
28592 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
28594 The feature modifies the behavior of the
28595 <a href="h_common_flag">Flag</a>
28596 command (provided it too is
28597 <A HREF="h_config_enable_flag">enabled</A>).
28598 By default, when the "* Flag" command is selected,
28599 Alpine offers a prompt to set one of several flags and also offers the
28600 option of entering the detailed flag manipulation screen via the "^T"
28601 key. Enabling this feature causes Alpine to immediately enter the detailed
28602 flag screen rather than first offer the simple prompt.
28604 <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.
28606 &lt;End of help on this topic&gt;
28607 </BODY>
28608 </HTML>
28609 ====== h_config_flag_screen_kw_shortcut =====
28610 <HTML>
28611 <HEAD>
28612 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
28613 </HEAD>
28614 <BODY>
28615 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
28617 This feature modifies the behavior of the
28618 <a href="h_common_flag">Flag</a> command
28619 and the <A HREF="h_index_cmd_select">Select</A> command.
28620 This feature is set by default.
28621 When this feature is not set, when the "* Flag" command is selected,
28622 Alpine offers a prompt to set one of several flags and also offers the
28623 option of entering the detailed flag manipulation screen via the "^T"
28624 key.
28625 If you have
28626 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
28627 defined, then enabling this feature adds a shortcut way to set or unset
28628 keywords.
28629 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
28630 a keyword if you've given it a nickname) and that will set the keyword.
28632 An example is easier to understand than the explanation.
28633 The flag command can always be used to set the system flags.
28634 For example, to set the Answered flag you would type
28636 <CENTER><SAMP>* A</SAMP></CENTER>
28638 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
28639 option in the Config screen.
28640 By default, to set a keyword like &quot;Work&quot; you would usually
28641 have to go to the Flag Details screen using
28642 the &quot;^T To Flag Details&quot; command.
28643 Instead, if you have enabled this feature, you may type
28645 <CENTER><SAMP>* W</SAMP></CENTER>
28647 to set the Work flag, or
28649 <CENTER><SAMP>* ! W</SAMP></CENTER>
28651 to unset it.
28652 Just like for the other flag setting commands, the case of the letter does
28653 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28654 keyword.
28656 Notice that you can only use this trick for one keyword that begins
28657 with &quot;W&quot;.
28658 If you happen to have a &quot;Work&quot; keyword and another keyword that is
28659 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
28660 your list of keywords.
28661 Also, there are five letters that are reserved for system
28662 flags and the NOT command.
28663 If you type &quot;* A&quot; it will always set the Answered flag, not
28664 your &quot;Aardvark&quot; keyword.
28665 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
28666 the Flag Details screen.
28668 Because enabling the
28669 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
28670 option causes Alpine to skip directly to the Flag Details screen when the
28671 Flag command is used, 
28672 setting it will cause this feature to have no effect at all.
28674 Similarly, when Selecting by Keyword, setting this option will allow you
28675 to use Keyword initials instead of full keywords.
28677 &lt;End of help on this topic&gt;
28678 </BODY>
28679 </HTML>
28680 ====== h_config_can_suspend =====
28681 <HTML>
28682 <HEAD>
28683 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
28684 </HEAD>
28685 <BODY>
28686 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
28688 Setting this feature will allow you to type ^Z (Control Z) to 
28689 <!--chtml if pinemode="os_windows"-->
28690 minimize Alpine into its icon, bringing into focus whatever
28691 application is running behind the PC-Alpine window.
28692 <!--chtml else-->
28693 temporarily suspend Alpine.
28696 This does not exit Alpine, but puts it in the background to watch
28697 for new mail and such.  Normally, you type a command, such
28698 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28701 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28702 adjusts whether Alpine is placed into the background of the shell its 
28703 running in or starts a news shell.
28704 <!--chtml endif-->
28707 <UL>   
28708 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28709 </UL><P>
28710 &lt;End of help on this topic&gt;
28711 </BODY>
28712 </HTML>
28713 ====== h_config_take_lastfirst ======
28714 <HTML>
28715 <HEAD>
28716 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28717 </HEAD>
28718 <BODY>
28719 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28721 Normally, when TakeAddr is used to copy an address from a message into
28722 an address book entry, Alpine will attempt to rewrite the full name of the
28723 address in the form
28726 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28728 instead of<P>
28730 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28733 It does this because many people find it useful to sort by Last name
28734 instead of First name.  If this feature is set, then the TakeAddr command
28735 will not attempt to reverse the name in this manner.
28737 &lt;End of help on this topic&gt;
28738 </BODY></HTML>
28739 ====== h_config_disable_regex ======
28740 <HTML>
28741 <HEAD>
28742 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28743 </HEAD>
28744 <BODY>
28745 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28747 Normally, the
28748 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28749 option is interpreted as a regular expression.
28750 One type of address that might cause trouble is an address that
28751 contains a plus sign.
28752 If you want to have an address with a plus as one of your
28753 <!--#echo var="VAR_alt-addresses"-->
28754 and you don't want to use regular expressions, then setting this
28755 feature will cause Alpine to treat the addresses you list literally instead.
28757 &lt;End of help on this topic&gt;
28758 </BODY></HTML>
28759 ====== h_config_take_fullname ======
28760 <HTML>
28761 <HEAD>
28762 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28763 </HEAD>
28764 <BODY>
28765 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28767 Normally, when TakeAddr is used to copy an address or addresses
28768 from a message into an address book entry, Alpine will try to preserve
28769 the full name associated with each address in the list of addresses.
28770 The reason for this is so that if the entry is a list or later becomes a
28771 list, then information about the individual addresses in the list
28772 is preserved.
28773 If you would rather just have the simple addresses in the list of addresses,
28774 set this feature. For example, with the default setting you might
28775 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28777 <PRE>
28778  Nickname  : nick
28779  Fullname  : Bedrock Elders
28780  Fcc       :
28781  Comment   :
28782  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28783              Barney Rubble &lt;rubble@bedrock.org&gt;
28784 </PRE>
28786 but with this feature set it would look like
28788 <PRE>
28789  Nickname  : nick
28790  Fullname  : Bedrock Elders
28791  Fcc       :
28792  Comment   :
28793  Addresses : flint@bedrock.org,
28794              rubble@bedrock.org
28795 </PRE>
28797 instead. Note the difference in the Addresses field.
28799 &lt;End of help on this topic&gt;
28800 </BODY></HTML>
28801 ====== h_config_print_from ======
28802 <HTML>
28803 <HEAD>
28804 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28805 </HEAD>
28806 <BODY>
28807 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28809 If this feature is set, then the Berkeley-mail style From line is included
28810 at the start of each message that is printed.  This line looks something
28811 like the following, with the address replaced by the address from the
28812 From line of the message being printed:
28814 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28815 14:11:06 1998
28817 &lt;End of help on this topic&gt;
28818 </BODY>
28819 </HTML>
28820 ====== h_config_expanded_distlists ======
28821 <HTML>
28822 <HEAD>
28823 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28824 </HEAD>
28825 <BODY>
28826 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28827 If this feature is set, then distribution lists in the address book
28828 screen will always be expanded automatically.
28830 &lt;End of help on this topic&gt;
28831 </BODY>
28832 </HTML>
28833 ====== h_config_compose_news_wo_conf ======
28834 <HTML>
28835 <HEAD>
28836 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28837 </HEAD>
28838 <BODY>
28839 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28840 This feature controls one aspect of Alpine's Composer.  If you enter the
28841 composer while reading a newsgroup, you will normally be prompted to
28842 determine whether you intend the new message to be posted to the current
28843 newsgroup or not.  If this feature is set, Alpine will not prompt you
28844 in this situation, and will assume that you do indeed wish to post
28845 to the newsgroup you are reading.
28847 &lt;End of help on this topic&gt;
28848 </BODY>
28849 </HTML>
28850 ====== h_config_compose_rejects_unqual ======
28851 <HTML>
28852 <HEAD>
28853 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28854 </HEAD>
28855 <BODY>
28856 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28858 This feature controls one aspect of the message composer; in particular,
28859 what happens when an unqualified name is entered into an address header.
28860 If set, unqualified names entered as addresses will be treated as errors
28861 unless they match an addressbook nickname.  Alpine will not attempt to turn
28862 them into complete addresses by adding your local domain.<P>
28864 A complete (fully qualified) address is one containing a username followed
28865 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28866 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28867 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28869 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28873 When you enter a fully qualified address, Alpine does not interpret or
28874 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28875 your system.  Alpine conforms to the Internet standards governing message
28876 headers and will not send an unqualifed name to the MTA.  Therefore, when
28877 you enter an unqualified name, Alpine will normally attempt to turn it into
28878 a fully qualified address, first by checking to see if you have entered a
28879 matching nickname in your addressbook, or failing that, by simply adding
28880 your own domain to the name entered.  So if your address is
28881 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28882 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28883 that into &quot;fred@example.com&quot;.<P>
28885 There are situations where it is not desirable for Alpine to interpret such
28886 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28887 turned out to be a typo (intended to be an addressbook nickname), but
28888 there actually was a &quot;fred&quot; in your local domain, the message might 
28889 be mis-delivered without your realizing it.  In order to reduce the likelihood
28890 of such accidents, setting this feature will cause Alpine to treat such
28891 addresses as errors, and require that you explicitly enter the full local
28892 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28893 matches an address book nickname.<P>
28895 Consider this a safety feature against mis-directed mail.
28897 <UL>   
28898 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28899 </UL><P>
28900 &lt;End of help on this topic&gt;
28901 </BODY>
28902 </HTML>
28903 ====== h_config_quell_local_lookup ======
28904 <HTML>
28905 <HEAD>
28906 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28907 </HEAD>
28908 <BODY>
28909 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28911 This feature controls an aspect of Alpine's Composer, and if needed, will
28912 usually be set by your system manager in Alpine's system-wide configuration
28913 file. Specifically, if this feature is set, Alpine will not attempt to look
28914 in the system password file to find a Full Name for the entered address.
28916 Normally, names you enter into address fields (e.g. To: or Cc:) are
28917 checked against your address book(s) to see if they match an address book
28918 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28919 the Unix password file.  If the entered name matches a username in the
28920 system password file, Alpine extracts the corresponding Full Name information
28921 for that individual, and adds that to the address being entered.
28923 However, password file matching can have surprising (incorrect) results if
28924 other users of the system do not receive mail at the domain you are using.
28925 That is, if either the 
28926 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28927 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28928 option
28929 is set such that the administrative domain of other users on the system
28930 isn't accurately reflected, Alpine should be told that a passwd file match
28931 is coincidental, and Full Name info will be incorrect.  For example, a
28932 personal name from the password file could get falsely paired with the
28933 entered name as it is turned into an address in the configured domain.
28935 If you are seeing this behavior, enabling this feature will prevent Unix
28936 Alpine from looking up names in the password file to find the Full Name
28937 for incomplete addresses you enter.<P>
28938 <UL>
28939 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28940 </UL>
28942 &lt;End of help on this topic&gt;
28943 </BODY>
28944 </HTML>
28945 ====== h_config_tab_checks_recent ======
28946 <HTML>
28947 <HEAD>
28948 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28949 </HEAD>
28950 <BODY>
28951 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28953 In a FOLDER LIST screen, the TAB key usually just changes which
28954 folder is highlighted.
28955 If this feature is set, then the TAB key will cause the number of
28956 recent messages and the total number of messages in the highlighted folder
28957 to be displayed instead.
28960 &lt;End of help on this topic&gt;
28961 </BODY>
28962 </HTML>
28963 ====== h_config_maildrops_preserve_state ======
28964 <HTML>
28965 <HEAD>
28966 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28967 </HEAD>
28968 <BODY>
28969 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28971 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28972 Normally, when mail is moved from a Mail Drop folder to a destination
28973 folder, it is delivered as new mail.
28974 Any Seen/New, Answered, Important/Flagged state that has changed will be
28975 ignored.
28976 All of the mail will be considered unSeen, unAnswered, and unImportant after
28977 it is moved.
28979 If this feature is set, then the state changes that have been made
28980 to the messages in the Mail Drop folder will be preserved.
28982 In any case, messages that are already marked Deleted when the
28983 mail is to be moved from the Mail Drop will be ignored.
28985 &lt;End of help on this topic&gt;
28986 </BODY>
28987 </HTML>
28988 ====== h_config_preopen_stayopens ======
28989 <HTML>
28990 <HEAD>
28991 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28992 </HEAD>
28993 <BODY>
28994 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28996 This feature is related to the option
28997 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28998 Normally, Stay Open folders are only opened on demand, when the user
28999 asks to open them.
29000 From then on they are kept open for the duration of the session.
29001 However, if this feature is set, then the Stay Open folders will all be
29002 opened at startup, at the same time that the INBOX is opened.
29005 &lt;End of help on this topic&gt;
29006 </BODY>
29007 </HTML>
29008 ====== h_config_expunge_inbox ======
29009 <HTML>
29010 <HEAD>
29011 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
29012 </HEAD>
29013 <BODY>
29014 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
29016 The INBOX is normally treated differently from regular folders in several
29017 ways.
29018 One of the differences is that the normal &quot;close&quot; sequence of
29019 events is deferred until Alpine is exited, instead of happening when you
29020 leave the INBOX to view another folder.
29021 The &quot;close&quot; sequence normally includes the Expunging
29022 of deleted messages
29023 (either automatically or after a prompt, controlled by the features
29024 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
29025 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
29026 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
29027 handling of the
29028 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
29031 If this feature is set the &quot;close&quot; sequence handling will take
29032 place every time you leave the INBOX.
29033 The INBOX will still be kept open, but the offer to Expunge and the archiving
29034 to the <!--#echo var="VAR_read-message-folder"-->
29035 will take place each time you leave the INBOX instead of only once at the
29036 end of the session.
29039 &lt;End of help on this topic&gt;
29040 </BODY>
29041 </HTML>
29042 ====== h_config_expunge_stayopens ======
29043 <HTML>
29044 <HEAD>
29045 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
29046 </HEAD>
29047 <BODY>
29048 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
29050 This feature is related to the option
29051 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
29052 Stay Open folders are treated differently from regular folders in several
29053 ways.
29054 One of the differences is that the normal &quot;close&quot; sequence of
29055 events is deferred until Alpine is exited, instead of happening when you
29056 leave the folder to view another folder.
29057 The &quot;close&quot; sequence normally includes the Expunging
29058 of deleted messages
29059 (either automatically or after a prompt, controlled by the features
29060 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
29061 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
29062 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
29063 handling of
29064 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
29067 If this feature is set the &quot;close&quot; sequence handling will take
29068 place when you leave the Stay Open folder.
29069 The folder will still be kept open, but the offer to Expunge and the archiving
29070 will take place each time you leave the folder instead of only once at the
29071 end of the session.
29072 This feature does not affect the INBOX, which will still only be processed
29073 when you exit Alpine.
29074 However, there is a similar feature that affects only the INBOX called
29075 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
29078 &lt;End of help on this topic&gt;
29079 </BODY>
29080 </HTML>
29081 ====== h_config_preserve_start_stop ======
29082 <HTML>
29083 <HEAD>
29084 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
29085 </HEAD>
29086 <BODY>
29087 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
29089 This feature controls how special control key characters, typically
29090 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
29091 are known as the "stop" and "start" characters and are sometimes used in
29092 communications paths to control data flow between devices that operate at
29093 different speeds.
29097 By default, Alpine turns the system's handling of these special characters
29098 off except during printing.  However, if you see Alpine reporting input errors
29099 such as:
29101 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
29103 and, at the same time, see your display become garbled, then it is likely
29104 that setting this option will solve the problem.  Be aware, though, that
29105 enabling this feature will also cause Alpine to ostensibly "hang" 
29106 whenever the Ctrl-S key combination is entered as the system is now
29107 interpreting such input as a "stop output" command.  To "start
29108 output"  again, simply type Ctrl-Q. 
29110 &lt;End of help on this topic&gt;
29111 </BODY>
29112 </HTML>
29113 ====== h_config_enable_incoming ======
29114 <HTML>
29115 <HEAD>
29116 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
29117 </HEAD>
29118 <BODY>
29119 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
29121 Alpine's Incoming Message Folders collection
29122 provides a convenient way to access multiple incoming folders.
29123 It is also useful if you have accounts on multiple computers.
29126 If set, this feature defines a pseudo-folder collection called
29127 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
29128 in this collection will be your INBOX, which will no longer show up in
29129 your Default folder collection.
29132 You may add more folders to the Incoming Message Folders collection by
29133 using the
29134 <!--chtml if pinemode="function_key"-->
29135 &quot;F10
29136 <!--chtml else-->
29137 &quot;A
29138 <!--chtml endif-->
29139 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
29140 the host the folder is stored on (which defaults to the same host used
29141 for your INBOX), a nickname, and the actual folder name.  Once a set
29142 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
29143 or MESSAGE TEXT screens) may be used to scan the folders for those
29144 with Recent messages.  If you add more folders to
29145 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
29146 no effect.
29148 NOTE: Normally the software that actually delivers mail (the stuff that happens
29149 before Alpine is involved) is in a better position to do delivery filtering
29150 than is Alpine itself.
29151 If possible, you may want to look at programs such as
29152 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
29153 filtering programs.
29154 If you'd prefer to have Alpine do the filtering for you, you may set that
29156 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
29158 <UL>   
29159 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29160 </UL><P>
29161 &lt;End of help on this topic&gt;
29162 </BODY>
29163 </HTML>
29164 ====== h_config_enable_incoming_checking ======
29165 <HTML>
29166 <HEAD>
29167 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
29168 </HEAD>
29169 <BODY>
29170 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
29172 This feature is only operational if you have enabled the optional
29173 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
29174 If you do have Incoming Message Folders and you also set this feature,
29175 then the number of Unseen messages in each folder will be displayed
29176 in the FOLDER LIST screen for the Incoming Message Folders.
29177 The number of Unseen messages in a folder will be displayed in parentheses
29178 to the right of the name of each folder.
29179 If there are no Unseen messages in a folder then only the name
29180 is displayed, not a set of parentheses with zero inside them.
29181 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
29182 the Incoming Message Folders to cause an immediate update.
29184 If a check for Unseen messages fails for a particular folder then Alpine
29185 will no longer attempt to check that folder for the duration of the
29186 session and this will be indicated by a question mark inside the
29187 parentheses.
29189 The features
29190 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
29191 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
29192 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
29193 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
29194 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
29195 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
29196 all affect how this feature behaves.
29198 <UL>   
29199 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29200 </UL><P>
29201 &lt;End of help on this topic&gt;
29202 </BODY>
29203 </HTML>
29204 ====== h_config_incoming_checking_total ======
29205 <HTML>
29206 <HEAD>
29207 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
29208 </HEAD>
29209 <BODY>
29210 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
29212 This option has no effect unless the feature
29213 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
29214 is set, which in turn has no effect unless
29215 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
29216 is set.
29218 When incoming folder checking is turned on the default is to display
29219 the number of unseen messages in each folder.
29220 More precisely, it is the number of undeleted unseen messages.
29221 Using this option you may also display the total number of messages
29222 in each folder.
29223 Instead of a single number representing the number of unseen messages
29224 you will get two numbers separated by a slash character.
29225 The first is the number of unseen messages and the second is the
29226 total number of messages.
29228 You may also use the recent message count instead of the unseen message
29229 count by turning on the feature
29230 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
29232 <UL>   
29233 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29234 </UL><P>
29235 &lt;End of help on this topic&gt;
29236 </BODY>
29237 </HTML>
29238 ====== h_config_incoming_checking_recent ======
29239 <HTML>
29240 <HEAD>
29241 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
29242 </HEAD>
29243 <BODY>
29244 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
29246 This option has no effect unless the feature
29247 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
29248 is set, which in turn has no effect unless
29249 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
29250 is set.
29252 When incoming folder checking is turned on the default is to display
29253 the number of unseen messages in each folder.
29254 More precisely, it is the number of undeleted unseen messages.
29255 Using this option you may display the number of recent messages instead
29256 of the number of unseen messages.
29257 A message is only counted as recent if this is the first session to
29258 see it, so the recent count might be less than the unseen count.
29259 The difference between the two would be accounted for by the unseen messages
29260 in the folder which were there previously but have not been looked at yet.
29262 If you simultaneously run more than one email client at a time
29263 (for example, you run more than one Alpine in parallel) then turning
29264 this feature on can cause some confusion.
29265 The confusion stems from the fact that each message is only considered to be
29266 recent in one session.
29267 That means that the counts of new messages may be different in the two
29268 Alpines running side by side, because each incoming message will only be
29269 counted as recent in one of the two sessions.
29271 You may also display the total number of messages
29272 in each folder by using the
29273 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
29274 option.
29276 <UL>   
29277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29278 </UL><P>
29279 &lt;End of help on this topic&gt;
29280 </BODY>
29281 </HTML>
29282 ====== h_config_attach_in_reply ======
29283 <HTML>
29284 <HEAD>
29285 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
29286 </HEAD>
29287 <BODY>
29288 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
29290 This feature controls an aspect of Alpine's Reply command. If set, any MIME
29291 attachments that were part of the original message will automatically be
29292 included in the Reply.
29294 &lt;End of help on this topic&gt;
29295 </BODY>
29296 </HTML>
29297 ====== h_config_include_header =====
29298 <HTML>
29299 <HEAD>
29300 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
29301 </HEAD>
29302 <BODY>
29303 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
29305 This feature controls an aspect of Alpine's Reply command. If set, and the
29306 original message is being included in the reply, then headers from that
29307 message will also be part of the reply.
29309 &lt;End of help on this topic&gt;
29310 </HEAD>
29311 </HTML>
29312 ====== h_config_sig_at_bottom =====
29313 <HTML>
29314 <HEAD>        
29315 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
29316 </HEAD>
29317 <BODY>
29318 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
29320 This feature controls an aspect of Alpine's Reply command.  If this feature
29321 is set, and the original message is being included in the reply, then the
29322 contents of your signature file (if any) will be inserted after the included
29323 message.
29325 This feature does not affect the results of a Forward command.
29327 &lt;End of help on this topic&gt;
29328 </BODY>
29329 </HTML>
29330 ====== h_config_sigdashes =====
29331 <HTML>
29332 <HEAD>
29333 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
29334 </HEAD>
29335 <BODY>
29336 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
29338 This feature enables support for the common USENET news convention 
29339 of preceding a message signature with the special line consisting of 
29340 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
29343 When enabled and a
29344 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
29345 Alpine will insert the special line before including the file's text (unless
29346 the special line already exists somewhere in the file's text).
29349 In addition, when you Reply or Followup to a message containing one of
29350 these special lines and choose to include its text, Alpine will observe
29351 the convention of not including text beyond the special line in your
29352 reply.
29353 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29354 mode is enabled and turned on, then Alpine <EM>will</EM>
29355 include the text beyond the special line regardless of the setting of
29356 this feature.
29359 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
29360 for a related feature.
29363 <UL>   
29364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29365 </UL><P>
29366 &lt;End of help on this topic&gt;
29367 </BODY>
29368 </HTML>
29369 ====== h_config_new_thread_blank_subject =====
29370 <HTML>
29371 <HEAD>
29372 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
29373 </HEAD>
29374 <BODY>
29375 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
29377 When this feature is enabled (the default) Alpine will create a new thread
29378 every time that the subject line becomes empty at any time during composition.
29381 This behavior is particularly useful in case you are replying to a message.
29382 Replying to a message causes the message to be in the same thread than the
29383 original message that is being replied to. However, many authors want to create
29384 a new message (in a different thread) while replying to a message, and they do
29385 this by changing the full subject, by first deleting the original subject and
29386 typing the new subject of the current message.
29389 Enabling this feature causes that any time that the subject is deleted, the 
29390 message being composed will be considered the first message of a new thread.
29393 <UL>   
29394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29395 </UL><P>
29396 &lt;End of help on this topic&gt;
29397 </BODY>
29398 </HTML>
29399 ====== h_config_strip_sigdashes =====
29400 <HTML>
29401 <HEAD>
29402 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
29403 </HEAD>
29404 <BODY>
29405 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
29407 This feature doesn't do anything if the feature
29408 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
29409 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
29410 then turning on this feature enables support for the convention
29411 of not including text beyond the sigdashes line when Replying or Following
29412 up to a message and including the text of that message.
29413 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29414 mode is enabled and turned on, then Alpine <EM>will</EM>
29415 include the text beyond the special line regardless of the setting of
29416 this feature.
29418 In other words, this is a way to turn on the signature stripping behavior
29419 without also turning on the dashes-adding behavior.
29421 <UL>   
29422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29423 </UL><P>
29424 &lt;End of help on this topic&gt;
29425 </BODY>
29426 </HTML>
29427 ====== h_config_forward_as_attachment =====
29428 <HTML>
29429 <HEAD>
29430 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
29431 </HEAD>
29432 <BODY>
29433 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
29435 This feature affects the way forwarded message text is handled.  When set, rather than 
29436 include the text of the forwarded message below any additional text you provide in the
29437 composer, the forwarded message is attached in its entirety to the message you send.
29439 This is useful in that it keeps the text you provide in the composer distinct from the
29440 text of the forwarded message.  Similarly, it allows the recipient to 
29441 conveniently operate on the forwarded message.  For example, they might reply directly to
29442 the sender of the forwarded message, or process it as part of a spam report.
29443 <UL>   
29444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29445 </UL><P>
29446 &lt;End of help on this topic&gt;
29447 </BODY>
29448 </HTML>
29449 ====== h_config_preserve_field =====
29450 <HTML>
29451 <HEAD>
29452 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
29453 </HEAD>
29454 <BODY>
29455 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
29457 This feature affects Alpine's behavior when one replies to a message. 
29458 When you receive a message, some or all of the recipients of the message 
29459 have been added to the To: and Cc: fields. If you reply to such message, 
29460 and this feature is disabled, then the original sender of the message is 
29461 added to the To: field, and all other recipients are added to the Cc: 
29462 field, while your address is added to the From: field.
29465 However, if this feature is enabled, then Alpine will preserve the 
29466 original fields as sent in the original message, so the Cc: and To: 
29467 fields will be preserved. The sender's address will be added to the To: 
29468 field, while your address is added to the From: field.
29471 The behavior of this feature is that replies to all messages will behave 
29472 in the way described above. If you only intend this to happen on a per 
29473 message basis, then keep this feature disabled, and when replying to a 
29474 message you will see a new option in the menu for the &quot;Reply to all 
29475 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
29476 make Alpine toggle its question so you can preserve the To: and Cc: 
29477 fields for that message only.
29479 <UL>   
29480 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29481 </UL><P>
29482 &lt;End of help on this topic&gt;
29483 </BODY>
29484 </HTML>
29485 ====== h_config_sub_lists =====
29486 <HTML>
29487 <HEAD>
29488 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
29489 </HEAD>
29490 <BODY>
29491 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
29493 This feature affects the subcommands available when Saving, 
29494 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
29495 available. This command allows you to type in a substring of the folder
29496 you are looking for and when you type ^X it will display all folders
29497 that contain that substring in their names.
29498 This feature is set by default.
29501 &lt;End of help on this topic&gt;
29502 </BODY>
29503 </HTML>
29504 ====== h_config_scramble_message_id =====
29505 <HTML>
29506 <HEAD>
29507 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
29508 </HEAD>
29509 <BODY>
29510 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
29512 Normally the Message-ID header that Alpine generates when sending a message
29513 contains the name of the computer from which the message is being sent.
29514 Some believe that this hostname could be used by spammers or could
29515 be used by others for nefarious purposes.
29516 If this feature is set, that name will be transformed with a simple
29517 Rot13 transformation.
29518 The result will still have the correct syntax for a Message-ID but the
29519 part of the MessageID that is often a domain name will not be an actual
29520 domain name because the letters will be scrambled.
29522 In addition, other information such as the name program, version, and
29523 a code for operating system used to build Alpine, will be encoded using
29524 the Rot13 transformation, except for the version number which will be
29525 encoded using a Rot5 transformation.
29527 It is possible (but unlikely?) that some spam detection
29528 software will use that as a reason to reject the mail as spam.
29529 It has also been reported that some spam detection software uses the
29530 fact that there are no dots after the &quot;@&quot; as a reason to reject
29531 messages.
29532 If your PC-Alpine Message-ID is using a name without a dot that is because
29533 that is what Windows thinks is your &quot;Full computer name&quot;.
29534 The method used to set this varies from one type of Windows to another but
29535 check under Settings -> Control Panel -> System and
29536 look for Network Identification or Computer Name or something similar.
29537 How to set it is beyond the scope of Alpine.
29540 &lt;End of help on this topic&gt;
29541 </BODY>
29542 </HTML>
29543 ====== h_downgrade_multipart_to_text =====
29544 <HTML>
29545 <HEAD>
29546 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
29547 </HEAD>
29548 <BODY>
29549 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
29552 This feature affects Alpine's behavior when sending mail.  Internet
29553 standards require Alpine to translate all non-ASCII characters in
29554 messages that it sends using MIME encoding.  This encoding can be
29555 ostensibly broken for recipients if any agent between Alpine and the
29556 recipient, such as an email list expander, appends text to the
29557 message, such as list information or advertising.  When sending such
29558 messages Alpine attempts to protect such encoding by placing extra
29559 MIME boundaries around the message text.
29561 These extra boundaries are invisible to recipients that 
29562 use MIME-aware email programs (the vast majority).  However, if
29563 you correspond with users of email programs that are not MIME-aware,
29564 or do not handle the extra boundaries gracefully, you can
29565 use this feature to prevent Alpine from including the extra
29566 MIME information.  Of course, it will increase the likelihood
29567 that non-ASCII text you send may appear corrupt to the recipient.
29569 &lt;End of help on this topic&gt;
29570 </BODY>
29571 </HTML>
29572 ====== h_config_show_sort =====
29573 <HTML>
29574 <HEAD>
29575 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
29576 </HEAD>
29577 <BODY>
29578 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
29580 If this feature is set and there is sufficient space on the screen,
29581 a short indication of the current sort order will be
29582 added in the titlebar (the top line on the screen), before the name
29583 of the folder.
29584 For example, with the default Arrival sort in effect,
29585 the display would have the characters
29587 <P><CENTER>[A]</CENTER><P>
29589 added between the title of the screen and the folder name.
29590 The letters are the same as the letters you may type to manually
29591 sort a folder with the SortIndex command ($).
29592 The letters in the table below are the ones that may show
29593 up in the titlebar line.
29595 <TABLE>   
29596 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
29597 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
29598 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
29599 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
29600 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
29601 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
29602 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
29603 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
29604 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
29605 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
29606 </TABLE>
29608 If the sort order is Reversed, the letter above will be preceded by the letter
29609 &quot;R&quot;, for example
29611 <P><CENTER>[RS]</CENTER><P>
29613 means that a Reverse Subject sort is in effect.
29614 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
29615 left out, and just an &quot;R&quot; is shown.
29617 <P><CENTER>[R]</CENTER>
29620 &lt;End of help on this topic&gt;
29621 </BODY>
29622 </HTML>
29623 ====== h_config_disable_reset_disp =====
29624 <HTML>
29625 <HEAD>
29626 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
29627 </HEAD>
29628 <BODY>
29629 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
29631 UNIX Alpine only.
29633 This feature affects Alpine's behavior when using
29634 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
29635 Normally, before the display filter is run, the terminal mode is reset
29636 to what it was before you started Alpine.
29637 This may be necessary if the filter requires the use of the terminal.
29638 For example, it may need to interact with you.
29639 If you set this feature, then the terminal mode will not be reset.
29640 One thing that turning on this feature should fix is the coloring of
29641 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
29642 breaks because the terminal reset resets the color state of the terminal.
29645 &lt;End of help on this topic&gt;
29646 </BODY>
29647 </HTML>
29648 ====== h_config_disable_sender =====
29649 <HTML>
29650 <HEAD>
29651 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
29652 </HEAD>
29653 <BODY>
29654 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29656 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29657 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29658 header fields.
29659 By default, Alpine will generate such a header in situations where the
29660 username or domain are not the same as
29661 the &quot;From:&quot; header on the message.
29662 With this feature set,
29663 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
29664 This may be desirable on a system that is virtually hosting many domains,
29665 and the sysadmin has other methods available for tracking a message to
29666 its originator.
29668 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
29671 &lt;End of help on this topic&gt;
29672 </BODY>
29673 </HTML>
29674 ====== h_config_use_sender_not_x =====
29675 <HTML>
29676 <HEAD>
29677 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
29678 </HEAD>
29679 <BODY>
29680 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
29682 Normally Alpine adds a header line
29683 labeled &quot;X-X-Sender&quot;, if the sender is
29684 different from the From: line.
29685 The standard specifies that this header
29686 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
29687 Setting this feature causes
29688 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
29690 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
29693 &lt;End of help on this topic&gt;
29694 </BODY>
29695 </HTML>
29696 ====== h_config_use_fk =====
29697 <HTML>
29698 <HEAD>
29699 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29700 </HEAD>
29701 <BODY>
29702 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29704 This feature specifies that Alpine will respond to function keys instead of
29705 the normal single-letter commands. In this mode, the key menus at the
29706 bottom of each screen will show function key designations instead of the
29707 normal mnemonic key.
29710 &lt;End of help on this topic&gt;
29711 </BODY>
29712 </HTML>
29713 ====== h_config_cancel_confirm =====
29714 <HTML>
29715 <HEAD>
29716 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29717 </HEAD>
29718 <BODY>
29719 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29721 This feature affects what happens when you type ^C to cancel a composition.
29722 By default, if you attempt to cancel a composition by typing ^C, you will be
29723 asked to confirm the cancellation by typing a &quot;C&quot;
29724 for <EM>C</EM>onfirm.
29725 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29726 risky because the &quot;^C Y&quot; needed to cancel a message
29727 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29729 If this feature is set the confirmation asked for
29730 will be a &quot;<EM>Y</EM>es&quot;
29731 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29734 &lt;End of help on this topic&gt;
29735 </BODY>
29736 </HTML>
29737 ====== h_config_compose_maps_del =====
29738 <HTML>
29739 <HEAD>
29740 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29741 </HEAD>
29742 <BODY>
29743 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29745 This feature affects the behavior of the DELETE key.
29746 If set, Delete will be equivalent to ^D, and delete
29747 the current character.  Normally Alpine defines the Delete key
29748 to be equivalent to ^H, which deletes the <EM>previous</EM>
29749 character.
29752 &lt;End of help on this topic&gt;
29753 </BODY>
29754 </HTML>
29755 ====== h_config_compose_bg_post =====
29756 <HTML>
29757 <HEAD>
29758 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29759 </HEAD>
29760 <BODY>
29761 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29763 This feature affects the behavior of Alpine's mail sending.  If set, this
29764 feature enables a subcommand in the composer's "Send?" confirmation
29765 prompt.  The subcommand allows you to tell Alpine to handle the actual
29766 posting in the background.  While this feature usually allows posting
29767 to appear to happen very fast, it has no affect on the actual delivery
29768 time it takes a message to arrive at its destination.
29771 Please Note:
29772 <OL>
29773  <LI>This feature will have no effect if the feature
29774        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29775        is set.
29776  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29777        as well as several Unix ports, do not recognize this feature.
29778  <LI>Error handling is significantly different when this feature is
29779         enabled.  Any message posting failure results in the message
29780         being appended to your &quot;Interrupted&quot; mail folder.  When you
29781         type the <A HREF="h_common_compose">C</A>ompose command,
29782         Alpine will notice this folder and
29783         offer to extract any messages contained.  Upon continuing a 
29784         failed message, Alpine will display the nature of the failure 
29785         in the status message line.
29786  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29787         for message data to
29788         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29789         if you typically run close to any sort of disk-space limits or quotas.
29790 </OL>
29792 &lt;End of help on this topic&gt;
29793 </BODY>
29794 </HTML>
29795 ====== h_config_compose_dsn =====
29796 <HTML>
29797 <HEAD>
29798 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29799 </HEAD>
29800 <BODY>
29801 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29803 This feature affects the behavior of Alpine's mail sending.  If set, this
29804 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29805 prompt.  The subcommand allows you to tell Alpine to request the type of
29806 Delivery Status Notification (DSN) that you would like.  Most users will
29807 be happy with the default, and need not enable this feature.
29809 If the feature
29810 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29811 then this feature has no effect and the type of DSN is not selectable.
29814 Turning on this feature and then turning on the DSNOpts from the send
29815 prompt reveals four on-off toggles at the bottom of the screen.
29816 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29817 that no notification be returned to you, even if there is a delivery
29818 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29819 server that you are willing (or not) to receive delay notifications, which
29820 happen when there is an unusual delay at some mail server (in that mail
29821 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29822 Success requests that you be sent a DSN message when the message is
29823 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29824 automatically turn off Delay and Success notification, and will flip the
29825 toggles to show that.  Similarly, turning on Delay and/or Success will
29826 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29827 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29828 the full message be returned in any failed DSN.  RetHdrs requests that
29829 only the headers be returned in any failed DSN.  Notice that this command
29830 applies only to failed delivery status reports.  For delay or success
29831 reports, the full message is never returned, only the headers are returned.
29834 If you don't enable the DSN feature or if you don't turn it on for a
29835 particular message, the default is that you will be notified about failures,
29836 you might be notified about delays, and you won't be notified about
29837 successes.  You will usually receive the full message back when there is
29838 a failure.
29841 If you turn on the DSNOpts the default is to return as much information as
29842 possible to you.  That is, by default, the Success and Delay options are
29843 turned on and the full message will be returned on failure.
29846 The sending prompt will display the current DSN request (if any) in a
29847 shorthand form.  It will be:
29849 <P><CENTER>[Never]</CENTER>
29852 if you have requested NoErrRets.  Otherwise, it will look something like:
29854 <P><CENTER>[FDS-Hdrs]</CENTER>
29857 The &quot;F&quot; will always be there, indicating that you will be notified
29858 of failures.  (Alpine doesn't provide a way to request no failure notification
29859 and at the same time request either success or delay notification.  The only
29860 way to request no failure notifications is to request no notifications at
29861 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29862 requested Delay and/or Success notification.  If one of those is missing,
29863 that means you are requesting no notification of the corresponding type.
29864 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29865 the headers and Full means to return the full message (applies to
29866 failure notifications only).
29869 NOTE: This feature relies on your system's mail transport agent or
29870 configured
29871 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29872 having the negotiation mechanism introduced in
29873 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29874 &quot;Delivery Status Notification&quot; (DSN).  If the mail transport agent you
29875 are using doesn't support DSN, a short warning will be shown to you on
29876 the message line at the bottom of the screen after you send your message,
29877 but your message will have been sent anyway.
29880 Note that DSNs don't provide a mechanism to request read receipts.  That
29881 is, if you request notification on success you are notified when the
29882 message is delivered to the mailbox, not when the message is read.
29885 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29886 it is possible that this feature might cause problems for some servers. 
29889 &lt;End of help on this topic&gt;
29890 </BODY>
29891 </HTML>
29892 ====== h_config_auto_zoom =====
29893 <HTML>
29894 <HEAD>
29895 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29896 </HEAD>
29897 <BODY>
29898 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29900 This feature affects the behavior of the Select command.
29901 If set, the select command will automatically perform a zoom
29902 after the select is complete.
29903 This feature is set by default.
29905 Some related help topics are
29906 <UL>
29907 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29908 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29909 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29910 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29911 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29912 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29913 </UL>
29916 &lt;End of help on this topic&gt;
29917 </BODY>
29918 </HTML>
29919 ====== h_config_auto_unzoom =====
29920 <HTML>
29921 <HEAD>
29922 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29923 </HEAD>
29924 <BODY>
29925 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29927 This feature affects the behavior of the Apply command.  If set, and if
29928 you are currently looking at a Zoomed Index view of selected messages,
29929 the Apply command will do the operation you specify, but then will
29930 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29931 the normal Index view after the Apply. 
29932 This feature is set by default.
29935 Some related help topics are
29936 <UL>
29937 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29938 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29939 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29940 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29941 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29942 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29943 </UL>
29945 &lt;End of help on this topic&gt;
29946 </BODY>
29947 </HTML>
29948 ====== h_config_auto_unselect =====
29949 <HTML>
29950 <HEAD>
29951 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29952 </HEAD>
29953 <BODY>
29954 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29956 This feature affects the behavior of the Apply command.  If set,
29957 the Apply command will do the operation you specify, but then will
29958 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29959 the normal Index view after the Apply. 
29962 Some related help topics are
29963 <UL>
29964 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29965 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29966 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29967 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29968 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29969 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29970 </UL>
29972 &lt;End of help on this topic&gt;
29973 </BODY>
29974 </HTML>
29975 ====== h_config_fast_recent =====
29976 <HTML>
29977 <HEAD>
29978 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29979 </HEAD>
29980 <BODY>
29981 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29983 This feature controls the behavior of the TAB key when traversing folders
29984 in the optional 
29985 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29986 collection or in optional <!--#echo var="VAR_news-collections"-->.
29989 When the TAB
29990 (<A HREF="h_common_nextnew">NextNew</A>)
29991 key is pressed, the default behavior is to
29992 explicitly examine the status of the folder for the number of recent
29993 messages (messages delivered since the last time it was viewed).
29994 Depending on the size and number of messages in the folder, this test
29995 can be time consuming.
29998 Enabling this feature will cause Alpine to only test for the existence of
29999 any recent messages rather than to obtain the count.  This is much faster
30000 in many cases.  The downside is that you're not given the number of recent
30001 messages when prompted to view the next folder.
30002 If the feature
30003 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
30004 is turned on, then the present feature will have no effect.
30007 <UL>   
30008 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30009 </UL><P>
30010 &lt;End of help on this topic&gt;
30011 </BODY>
30012 </HTML>
30013 ====== h_config_arrow_nav =====
30014 <HTML>
30015 <HEAD>
30016 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
30017 </HEAD>
30018 <BODY>
30019 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
30021 This feature controls the behavior of the left and right arrow keys.
30022 If set, the left and right arrow keys will operate like the usual
30023 navigation keys &lt; and &gt;.
30024 This feature is set by default.
30027 If you set this feature, and do not like the changed behavior of the up/down 
30028 arrow 
30029 keys when navigating through the FOLDER LIST screen -- 
30030 <B>first</B> from column to column, if more than one folder is 
30031 displayed per row, 
30032 and <B>then</B> from row to row -- you may either also wish to set the feature 
30033 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
30034 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
30035 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
30036 folders in each column.
30038 <UL>   
30039 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30040 </UL><P>
30041 &lt;End of help on this topic&gt;
30042 </BODY>
30043 </HTML>
30044 ====== h_config_relaxed_arrow_nav =====
30045 <HTML>
30046 <HEAD>
30047 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
30048 </HEAD>
30049 <BODY>
30050 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
30052 This feature controls the behavior of the left, right, up and down
30053 arrow keys in the FOLDER LIST screen when the &quot;<A
30054 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
30055 set.
30056 This feature is set by default.
30060 When this feature is set, the left and right
30061 arrow keys in the FOLDER LIST screen
30062 move the highlight bar to the left or right, and the up and
30063 down arrows move it up or down.
30066 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
30067 feature is not set;
30068 the left and right arrow keys in the Folder List screen strictly
30069 track the commands bound to the '&lt;' and '&gt;' keys, and the up
30070 and down arrow keys move the highlight bar to the previous and next
30071 folder or directory name.
30074 <UL>   
30075 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30076 </UL><P>
30077 &lt;End of help on this topic&gt;
30078 </BODY>
30079 </HTML>
30080 ====== h_config_alt_compose_menu =====
30081 <HTML>
30082 <HEAD>
30083 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
30084 </HEAD>
30085 <BODY>
30086 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
30088 This feature controls the menu that is displayed when Compose is selected.
30089 If set, a list of options will be presented, with each option representing
30090 the type of composition that could be used. This feature is most useful for
30091 users who want to avoid being prompted with each option separately, or who
30092 want to avoid the checking of remote postponed or form letter folders.
30093 The possible types of composition are:
30096 New, for starting a new composition. Note that if New is selected and roles
30097 are set, roles are checked for matches and applied according to the setting
30098 of the matching role.
30101 Interrupted, for continuing an interrupted composition. This option is only
30102 offered if an interrupted message folder is detected.
30105 Postponed, for continuing postponed compositions. This option is offered
30106 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
30107 the postponed folder actually exists. This option is especially handy
30108 for avoiding having to check for the existence of a remote postponed folder.
30111 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
30112 is set in the config, and is not checked for existence for reasons similar
30113 to those explained by the postponed option.
30116 setRole, for selecting a role to apply to a composition.
30119 &lt;End of help on this topic&gt;
30120 </BODY>
30121 </HTML>
30122 ====== h_config_alt_role_menu =====
30123 <HTML>
30124 <HEAD>
30125 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
30126 </HEAD>
30127 <BODY>
30128 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
30130 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
30131 a role and compose a new message using that role.
30132 When this feature is set, the role command will first ask whether you want to
30133 Compose a new message, Forward the current message, Reply to the
30134 current message, or Bounce the current message.
30135 If you are not in the MESSAGE INDEX and are not viewing a message,
30136 then there is no current message and the question will be skipped.
30137 After you have chosen to Compose, Forward, Reply, or Bounce you will
30138 then choose the role to be used.
30140 When Bouncing the &quot;Set From&quot; address is used for the
30141 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
30142 provided that the option
30143 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
30144 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
30145 set.
30146 Other actions of the role are ignored when Bouncing.
30149 &lt;End of help on this topic&gt;
30150 </BODY>
30151 </HTML>
30152 ====== h_config_always_spell_check =====
30153 <HTML>
30154 <HEAD>
30155 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
30156 </HEAD>
30157 <BODY>
30158 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
30160 When this feature is set, every composed message will be spell-checked before
30161 being sent.
30163 &lt;End of help on this topic&gt;
30164 </BODY>
30165 </HTML>
30166 ====== h_config_quell_asterisks =====
30167 <HTML>
30168 <HEAD>
30169 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
30170 </HEAD>
30171 <BODY>
30172 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
30174 When you are running Alpine you will sometimes be asked for a password
30175 in a prompt on the third line from the bottom of the screen.
30176 Normally each password character you type will cause an asterisk to echo
30177 on the screen. That gives you some feedback to know that your typing is
30178 being recognized.
30179 There is a very slight security risk in doing it this way because someone
30180 watching over your shoulder might be able to see how many characters there
30181 are in your password.
30182 If you'd like to suppress the echoing of the asterisks set this feature.
30184 &lt;End of help on this topic&gt;
30185 </BODY>
30186 </HTML>
30187 ====== h_config_quell_flowed_text =====
30188 <HTML>
30189 <HEAD>
30190 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
30191 </HEAD>
30192 <BODY>
30193 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
30195 Alpine generates flowed text where possible.
30196 The method for generating flowed text is defined by
30197 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
30198 the benefit of doing so is
30199 to send message text that can properly be viewed both on normal width displays
30200 and on displays with smaller or larger than normal screen widths.
30201 With flowed text, a space at the end of a line tells the receiving mail
30202 client that the following line belongs to the same paragraph.
30203 Quoted text will also be affected, with only the innermost
30204 level of &quot;&gt;&quot; quoting being followed by a space.
30205 However, if you have changed the
30206 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30207 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30208 quoted text will not be flowed.
30209 For this reason, we recommend that you leave your
30210 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
30212 This feature turns off the generation of flowed text, as it might be
30213 desired to more tightly control how a message is displayed on the receiving end.
30215 If this feature is <EM>not</EM> set, you can control on a message by message
30216 basis whether or not flowed text is generated.
30217 You do this by typing ^V at the Send confirmation prompt that you get
30218 after typing ^X to send a message.
30219 ^V is a toggle that turns flowing off and back on if typed again.
30220 If for some reason flowing cannot be done on a particular message, then the
30221 ^V command will not be available.
30222 This would be the case, for example, if this feature was set, or if your
30223 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
30224 If the feature
30225 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
30226 then the opportunity to control on a message by message basis
30227 whether or not flowed text is generated is lost.
30229 When this feature is not set and you have typed ^V to turn off flowing,
30230 the Send confirmation prompt will change to look like
30232 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
30234 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
30235 also turn off the sending of flowed text messages, but it differs in that
30236 it also trims all trailing white space from a message before sending it.
30238 If alternate editors are used extensively, be aware that a message will still
30239 be sent flowed if this feature is unset.  In most cases this will be fine,
30240 but if the editor has a &quot;flowed text&quot; mode, it would be best to
30241 use that.
30243 &lt;End of help on this topic&gt;
30244 </BODY>
30245 </HTML>
30246 ====== h_config_strip_ws_before_send =====
30247 <HTML>
30248 <HEAD>
30249 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
30250 </HEAD>
30251 <BODY>
30252 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
30254 By default, trailing whitespace is not stripped from
30255 a message before sending.  Trailing whitespace should have no effect on an
30256 email message, and in flowed text can aid in delimiting paragraphs.
30257 However, the old behavior of stripping trailing whitespace was in place
30258 to better deal with older clients that couldn't handle certain types of
30259 text encodings.  This feature restores the old behavior
30261 Trailing whitespace is of aid to flowed-text-formatted messages, which are
30262 generated by default but can be turned off via the
30263 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
30264 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
30265 of flowed text.
30267 &lt;End of help on this topic&gt;
30268 </BODY>
30269 </HTML>
30270 ====== h_config_alt_reply_menu =====
30271 <HTML>
30272 <HEAD>
30273 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
30274 </HEAD>
30275 <BODY>
30276 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
30278 Note that if this option is enabled, then the option
30279 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
30280 is ignored. See below to understand why.
30282 When you reply to a message, a series of questions are asked that 
30283 determines how your reply will be handled by Alpine. This feature only 
30284 affects the result of the first question you are asked, and its purpose is 
30285 to set values that could override defaults set in Alpine's main 
30286 configuration screen. As a result, this menu allows you to configure even 
30287 more features than you would be able to do without this option. For 
30288 example, this menu always allows you to override or select a <A 
30289 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
30290 override your indent string, regardless of if you have enabled 
30291 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
30292 The full list of options can be found below.
30294 Here is an example of how this option works. After you press Reply,
30295 if you see &quot;A Inc Attach&quot; in the menu, it means that 
30296 if you press &quot;A&quot;, then Alpine will include the attachments
30297 of the original message, and the default is not to include them. 
30298 Conversely, if you see &quot;A No Attach&quot; 
30299 then by pressing &quot;A&quot; Alpine will not include
30300 attachments in your reply, and the default is that Alpine will 
30301 include them in your reply. The value that you see when you 
30302 start your reply is controlled by the option
30303 <A HREF="h_config_attach_in_reply">
30304 <!--#echo var="FEAT_include-attachments-in-reply"-->
30305 </A>. If the feature is enabled, then Alpine will display 
30306 &quot;A No Attach&quot; to override the default behavior. You can
30307 toggle between the two values of this option by pressing &quot;A&quot;.
30308 Remember that the value that you see in the menu is the action that will 
30309 be done when you press the associated command.
30311 Below are your options:
30312 <OL>
30313 <LI><B>A</B>: This determines if Alpine will include or not the 
30314 attachments sent to you in the message that you are replying to. The default 
30315 is to use the value of the configuration option 
30316 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overridden by using this command.
30318 <LI><B>H</B>: This command determines if the headers of a message are
30319 included in the body of the message that is being replied to. By default 
30320 Alpine will use the value of the configuration option 
30321 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
30322 Observe that by toggling this option to include headers, text will be toggled
30323 to be included by default.
30325 <LI><B>R</B>: Can be used to set a role different from the default.
30327 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
30328 message. The default is to strip the signature when the message is not
30329 viewed in headers mode, and you either have enabled
30330 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
30332 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
30334 <LI><B>Ctrl-R</B>: Can be used to edit the 
30335 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
30336 </OL>
30338 In order to include the text of the original message in the reply
30339 you either need to press 'y' to include the original text, or 'n' to 
30340 exclude it from the reply. Pressing return will execute the default 
30341 action, which is to include text only if the option
30342 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
30343 is enabled. However, notice that the default is to include text if you edit the 
30344 reply indent string or if you explicitly set through this menu that you
30345 want headers included in the reply message.
30348 &lt;End of help on this topic&gt;
30349 </BODY>
30350 </HTML>
30351 ====== h_config_del_from_dot =====
30352 <HTML>
30353 <HEAD>
30354 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
30355 </HEAD>
30356 <BODY>
30357 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
30359 This feature controls the behavior of the Ctrl-K command in the composer.
30360 If set, ^K will cut from the current cursor position to the end of the line,
30361 rather than cutting the entire line.
30364 &lt;End of help on this topic&gt;
30365 </BODY>
30366 </HTML>
30367 ====== h_config_print_index =====
30368 <HTML>
30369 <HEAD>
30370 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
30371 </HEAD>
30372 <BODY>
30373 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
30375 This feature controls the behavior of the Print command when in the
30376 MESSAGE INDEX screen.  If set, the print command will give you a prompt
30377 asking if you wish to print the message index, or the currently highlighted
30378 message. If not set, the message will be printed.
30381 &lt;End of help on this topic&gt;
30382 </BODY>
30383 </HTML>
30384 ====== h_config_allow_talk =====
30385 <HTML>
30386 <HEAD>
30387 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
30388 </HEAD>
30389 <BODY>
30390 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
30392 UNIX Alpine only.
30394 By default, permission for others to &quot;talk&quot; to your terminal is turned
30395 off when you are running Alpine.  When this feature is set, permission is
30396 instead turned on.  If enabled, you may see unexpected messages in the
30397 middle of your Alpine screen from someone attempting to contact you via the
30398 &quot;talk&quot; program.
30401 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
30402 talk daemon on your system will attempt to print a message on your screen 
30403 when someone else is trying to contact you.  If you wish to see these
30404 messages while you are running Alpine, you should enable this feature.
30407 If you do enable this feature and see a &quot;talk&quot; message, you must 
30408 suspend or quit Alpine before you can respond.
30411 &lt;End of help on this topic&gt;
30412 </BODY>
30413 </HTML>
30414 ====== h_config_send_filter_dflt =====
30415 <HTML>
30416 <HEAD>
30417 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
30418 </HEAD>
30419 <BODY>
30420 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
30421 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
30422 configured, setting this feature will cause
30423 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
30424 instead of unfiltered, the usual default.
30426 <UL>   
30427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30428 </UL><P>
30429 &lt;End of help on this topic&gt;
30430 </BODY>
30431 </HTML>
30432 ====== h_config_custom_print =====
30433 <HTML>
30434 <HEAD>
30435 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
30436 </HEAD>
30437 <BODY>
30438 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
30440 When this feature is set, the print command will have an additional
30441 subcommand called "C CustomPrint".  If selected, you will have
30442 the opportunity to enter any system print command --instead of being 
30443 restricted to using those that have been previously configured in the 
30444 printer setup menu.
30447 &lt;End of help on this topic&gt;
30448 </BODY>
30449 </HTML>
30450 ====== h_config_enable_dot_files =====
30451 <HTML>
30452 <HEAD>
30453 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
30454 </HEAD>
30455 <BODY>
30456 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
30458 When this feature is set, files beginning with dot (".") will be
30459 visible in the file browser.  For example, you'll be able to select them
30460 when using the browser to add an attachment to a message.
30462 &lt;End of help on this topic&gt;
30463 </BODY>
30464 </HTML>
30465 ====== h_config_enable_dot_folders =====
30466 <HTML>
30467 <HEAD>        
30468 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
30469 </HEAD>
30470 <BODY>
30471 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
30473 When this feature is set, folders beginning with dot (".") may be added
30474 and viewed.
30476 &lt;End of help on this topic&gt;
30477 </BODY>
30478 </HTML>
30479 ====== h_config_ff_between_msgs =====
30480 <HTML>
30481 <HEAD>
30482 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
30483 </HEAD>
30484 <BODY>
30485 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
30487 Setting this feature causes a formfeed to be printed between messages when
30488 printing multiple messages (with Apply Print command).
30490 &lt;End of help on this topic&gt;
30491 </BODY>
30492 </HTML>
30493 ====== h_config_blank_keymenu =====
30494 <HTML>
30495 <HEAD>
30496 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
30497 </HEAD>
30498 <BODY>
30499 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
30501 If this feature is set the command key menu that normally appears on the
30502 bottom two lines of the screen will not usually be there.  Asking for
30503 help with ^G or ? will cause the key menu to appear instead of causing
30504 the help message to come up.  If you want to actually see the help text,
30505 another ^G or ? will show it to you.  After the key menu has popped
30506 up with the help key it will remain there for an O for Other command but
30507 disappear if any other command is typed.
30509 &lt;End of help on this topic&gt;
30510 </BODY>
30511 </HTML>
30512 ====== h_config_enable_mouse =====
30513 <HTML>
30514 <HEAD>
30515 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
30516 </HEAD>
30517 <BODY>
30518 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
30520 This feature controls whether or not an X terminal mouse can be used with
30521 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
30522 being used, the left mouse button on the mouse can be used to select text
30523 or commands.
30524 Clicking on a command at the bottom of the screen will behave as if you had
30525 typed that command.
30526 Clicking on an index line will move the current message highlight to
30527 that line.
30528 Double-clicking on an index line will view the message.
30529 Double-clicking on a link will view the link.
30531 This type of mouse support will also work in some terminal emulators which are
30532 not actually X terminals, but which have extra code to support the xterm
30533 style mouse.
30534 For those emulators you not only need to turn this feature on but you also
30535 have to set the $DISPLAY environment variable even though it isn't needed
30536 for your terminal.
30537 That will cause Alpine to think that it is an xterm and to properly interpret the
30538 escape sequences sent by the mouse.
30540 Note: if this feature is set, the behavior of X terminal cut-and-paste is
30541 also modified.  It is sometimes possible to hold the shift key down while clicking
30542 left or middle mouse buttons for the normal xterm cut/paste operations. 
30543 There is also an Alpine command to toggle this mode on or off.
30544 The command is Ctrl-&#92; (Control-backslash).
30546 &lt;End of help on this topic&gt;
30547 </BODY>
30548 </HTML>
30549 ====== h_config_enable_xterm_newmail =====
30550 <HTML>
30551 <HEAD>        
30552 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
30553 </HEAD>
30554 <BODY>
30555 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
30557 This feature controls whether or not Alpine will attempt to announce new
30558 mail arrival when it is running in an X terminal window and that window
30559 is iconified.  If set, and the $DISPLAY variable indicates that an X
30560 terminal is being used, Alpine will send appropriate escape sequences to
30561 the X terminal to modify the label on Alpine's icon to indicate that new
30562 mail has arrived. Alpine will also modify the Alpine window's title to
30563 indicate new mail.
30564 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
30566 &lt;End of help on this topic&gt;
30567 </BODY></HTML>
30568 ====== h_config_enable_newmail_short_text =====
30569 <HTML>
30570 <HEAD>        
30571 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
30572 </HEAD>
30573 <BODY>
30574 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
30576 This feature controls the text to be displayed in an icon in the event
30577 of a new message arrival.  Normally, the message will
30578 be the one that is displayed on the screen.  This feature shortens the
30579 message to a count of the number of new messages in brackets.  This may be
30580 more useful for those who use the window's title bar in the task bar as a
30581 new mail indicator.  This feature is only useful if the
30582 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
30583 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
30584 feature, this feature is only relevant when run in an xterm environment.
30586 &lt;End of help on this topic&gt;
30587 </BODY></HTML>
30588 ====== h_config_copy_to_to_from =====
30589 <HTML>
30590 <HEAD>
30591 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
30592 </HEAD>
30593 <BODY>
30594 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
30596 This feature affects the From address used when Replying to a message.
30597 It is probably only useful if you have some
30598 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
30599 defined.
30600 When enabled, it checks to see if any of the addresses in the To or Cc
30601 fields of the message you are replying to is one of your addresses.
30602 If it is, and there is only one of them, then that address is used as
30603 the From address in the message you are composing.
30604 In other words, you will be using a From address that is the same
30605 as the To address that was used to get the mail to you in the first place.
30608 If a role is being used and it has a From address defined, that From address will
30609 be used rather than the one derived from this feature.
30612 <UL>   
30613 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30614 </UL><P>
30615 &lt;End of help on this topic&gt;
30616 </BODY>
30617 </HTML>
30618 ====== h_config_prefix_editing =====
30619 <HTML>
30620 <HEAD>
30621 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
30622 </HEAD>
30623 <BODY>
30624 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
30626 This feature affects the Reply command's &quot;Include original message
30627 in Reply?&quot; prompt.  When enabled, it causes the
30628 &quot;Edit Indent String&quot; sub-command to appear which allows 
30629 you to edit the string Alpine would otherwise use to denote included 
30630 text from the message being replied to.<P>
30632 Thus, you can change Alpine's default message quote character (usually
30633 an angle bracket) on a per message basis. So you could change your quoted message to
30634 look, for example, like this:<p>
30636 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
30638 John: I just wanted to say hello and to congratulate you
30639 John: on a job well done!</pre><p>
30641 The configuration option
30642 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30643 may be used to change what appears as the default string to be edited.
30645 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
30646 currently being replied to.
30648 If you change your <!--#echo var="VAR_reply-indent-string"-->
30649 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30650 quoted text will not be flowed
30651 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
30652 when you reply.
30653 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30654 set to the default value.
30656 <UL>   
30657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30658 </UL><P>
30659 &lt;End of help on this topic&gt;
30660 </BODY>
30661 </HTML>
30662 ====== h_config_enable_search_and_repl =====
30663 <HTML>
30664 <HEAD>
30665 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
30666 </HEAD>
30667 <BODY>
30668 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
30670 This feature modifies the behavior of Alpine's composer.  Setting this
30671 feature causes Alpine to offer the "^R Replace" subcommand, which
30672 allows you to search and replace text strings in a message you are composing, 
30673 inside the "^W Where is" command.  
30677 To search and replace text, first enter the text to be replaced at the 
30678 "Search: " prompt.  Then, rather than pressing Enter to just search for that
30679 text, press ^R, which turns the prompt into 
30683 Search (to replace): 
30687 and then press Enter.  The cursor will highlight the first occurrence 
30688 of the text string you entered, and the prompt will show: 
30692 Replace "<your text string>" with : 
30696 where <your text string> is what you entered at the previous prompt;
30697 here, enter the replacement text.  To only replace the highlighted 
30698 occurrence, simply press Enter now; to replace all occurrences in the 
30699 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30700 each replacement.
30704 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30705 ^X toggles between "Replace All" and "Replace One."
30709 If you previously searched for text in a message, it will be offered for 
30710 re-use as part of the prompt, shown in [ ] brackets.
30713 &lt;End of help on this topic&gt;
30714 </BODY>
30715 </HTML>
30716 ====== h_config_enable_view_attach =====
30717 <HTML>
30718 <HEAD>
30719 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30720 </HEAD>
30721 <BODY>
30722 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30724 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30725 Setting this feature causes Alpine to present attachments in boldface.
30726 The first available attachment is displayed in inverse.  This is the
30727 "selected" attachment.  Pressing RETURN will cause Alpine to display
30728 the selected attachment.  Use the arrow keys to change which of the
30729 attachments displayed in boldface is the current selection.
30733 Speaking of arrow keys, the Up and Down Arrows will select the next
30734 and previous attachments if one is available on the screen for selection.
30735 Otherwise, they will simply adjust the viewed text one line up or down.
30739 Similarly, when selectable items are present in a message, the Ctrl-F key
30740 can be used to select the next item in the message independent of which
30741 portion of the viewed message is currently displayed. The Ctrl-B key can
30742 be used to select the previous item in the same way. 
30743 <P> 
30744 &lt;End of help on this topic&gt;
30745 </BODY>
30746 </HTML>
30747 ====== h_config_enable_y_print =====
30748 <HTML>
30749 <HEAD>
30750 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30751 </HEAD>
30752 <BODY>
30753 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30755 This feature modifies the behavior of Alpine's Print command.
30757 By default, Alpine's print command is available by pressing the "%" key.  
30758 (This command is a substantial change from Pine versions before 4.00 -- 
30759 where the print command was "Y" -- based on numerous complaints about 
30760 printing being invoked inadvertently, since Y also means "Yes.")  
30764 This feature is supplied to mitigate any disruption or anxiety users 
30765 might feel as a result of this change.  
30769 Enabling this feature will cause Alpine to recognize both the old
30770 command, "Y" for Prynt, as well the new "%" method for invoking
30771 printing.  Note, key menu labels are not changed as a result of
30772 enabling this feature.
30776 &lt;End of help on this topic&gt;
30777 </BODY>
30778 </HTML>
30779 ====== h_config_enable_lessthan_exit =====
30780 <HTML>
30781 <HEAD>
30782 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30783 </HEAD>
30784 <BODY>
30785 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30787 If this feature is set, then on screens where there is an Exit command
30788 but no < command, the < key will perform the same function as the Exit
30789 command.
30790 This feature is set by default.
30792 &lt;End of help on this topic&gt;
30793 </BODY>
30794 </HTML>
30795 ====== h_config_enable_view_url =====
30796 <HTML>
30797 <HEAD>
30798 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30799 </HEAD>
30800 <BODY>
30801 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30802 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30803 When this feature is set (the default) Alpine will select possible URLs from the
30804 displayed text and display them in boldface for selection.
30806 The first available URL is displayed in inverse.  This is the
30807 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30808 the selected URL via either built-in means as with mailto:, imap:,
30809 news:, and nntp:, or via an external application as defined
30810 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30811 variable.
30813 Use the arrow keys to change which of the URLs displayed in boldface
30814 is the current selection.
30816 Speaking of arrow keys, the Up and Down Arrows will select the next
30817 and previous URL if one is available on the screen for selection (unless 
30818 you have set the feature 
30819 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30820 Otherwise, they will simply adjust the viewed text one line up or down.
30822 Similarly, when selectable items are present in a message, the Ctrl-F
30823 key can be used to select the next item in the message independent
30824 of which portion of the viewed message is currently displayed. The
30825 Ctrl-B key can be used to select the previous item in the same way.
30827 <UL>   
30828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30829 </UL><P>
30830 &lt;End of help on this topic&gt;
30831 </BODY>
30832 </HTML>
30833 ====== h_config_enable_view_web_host =====
30834 <HTML>
30835 <HEAD>
30836 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30837 </HEAD>
30838 <BODY>
30839 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30841 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30842 When this feature is set (the default) Alpine will select possible web hostnames
30843 from the displayed text and display them in boldface for selection.  
30844 This can be useful when you receive messages referencing World Wide Web 
30845 sites without the use of complete URLs; for example, specifying only 
30846 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
30847 selectable 
30848 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30849 rather than explicitly
30850 &quot;http://www.some.site.com&quot;.  
30852 The first available hostname is displayed in inverse.  This is the
30853 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30854 the selected hostname via an external application as defined
30855 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30856 variable.
30858 Use the arrow keys (unless you have set the feature 
30859 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30860 to change which of the hostnames displayed in
30861 boldface is the current selection.
30863 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30864 key can be used to select the next web hostname in the message independent
30865 of which portion of the viewed message is currently displayed. The
30866 Ctrl-B key can be used to select the previous web hostnames in the same way.
30868 <UL>   
30869 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30870 </UL><P>
30871 &lt;End of help on this topic&gt;
30872 </BODY>
30873 </HTML>
30874 ====== h_config_enable_view_addresses =====
30875 <HTML>
30876 <HEAD>
30877 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30878 </HEAD>
30879 <BODY>
30880 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30882 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30883 Setting this feature causes Alpine to select possible email addresses
30884 from the displayed text and display them in boldface for selection.  
30887 The first available email address is displayed in inverse.  This is the
30888 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30889 the message composition screen with the To: field filled in with the
30890 selected address.
30892 Use the arrow keys (unless you have set the feature 
30893 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30894 to change which of the hostnames displayed in
30895 boldface is the current selection.
30897 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30898 key can be used to select the next web hostname in the message independent
30899 of which portion of the viewed message is currently displayed. The
30900 Ctrl-B key can be used to select the previous web hostnames in the same way.
30902 <UL>   
30903 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30904 </UL><P>
30905 &lt;End of help on this topic&gt;
30906 </BODY>
30907 </HTML>
30908 ====== h_external_loads_inline_images_only =====
30909 <HTML>
30910 <HEAD>
30911 <TITLE>FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></TITLE>
30912 </HEAD>
30913 <BODY>
30914 <H1>FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></H1>
30916 Alpine allows you to pass a HTML message to the browser that you have configured in your
30917 <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A> variable. This allows
30918 you to read a message outside of Alpine. This is desirable when Alpine does not display
30919 html correctly, or when you wish to read the message and see the inline images in the message.
30922 An inline image is one that comes with the message and is necessary for the correct display of
30923 the message. However, there are instances in which the source of an image will come from
30924 external servers. If this feature is enabled (the default) then Alpine will only pass inline
30925 images to the browser and will remove the link to external images, so only inline images will
30926 be used to display the message, and no external image will be loaded. Alpine does this to protect
30927 your privacy and security.
30930 Please note that messages are usually formatted by the sender so that they display correctly once
30931 all images have been loaded. Enabling this feature might cause the message not to be correctly
30932 displayed by your browser.
30935 Also consider security and privacy implications of opening an HTML message in a browser. You are
30936 always protected when you do not use this feature, but you might not have the same level of
30937 protection if you try to open a spam or scam using the html view. Also commercial email is
30938 normally embedded with links to external images that let them, their partners, and your internet
30939 service provider (which could be your employer or school)  know that you opened their message or
30940 connected to a web site, violating your privacy.
30943 If you are worried about your privacy and security, do not use an external viewer to open
30944 html files, and keep using the internal mechanisms that Alpine provides to read messages.
30947 &lt;End of help on this topic&gt;
30948 </BODY>
30949 <HTML>
30950 ====== h_config_enable_view_arrows =====
30951 <HTML>
30952 <HEAD>
30953 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30954 </HEAD>
30955 <BODY>
30956 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30958 This feature modifies Up and Down arrow key behavior in Alpine's
30959 MESSAGE TEXT screen when selectable Attachments, URL's, or
30960 web-hostnames are presented. Alpine's usual behavior is to move to
30961 the next or previous selectable item if currently displayed or
30962 simply to adjust the screen view by one line.
30966 Setting this feature causes the UP and Down arrow key to behave as
30967 if no selectable items were present in the message.
30971 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30972 item) functionality is unchanged.
30975 &lt;End of help on this topic&gt;
30976 </BODY>
30977 <HTML>
30978 ====== h_config_quell_charset_warning =====
30979 <HTML>
30980 <HEAD>
30981 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30982 </HEAD>
30983 <BODY>
30984 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30986 By default, if the message you are viewing contains characters that are
30987 not representable in your
30988 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30989 then Alpine will
30990 add a warning to the start of the displayed text.
30991 If this option is set, then that editorial message will be suppressed.
30993 Setting this feature also suppresses the comment about the character set
30994 in header lines.
30995 For example, when viewing a message you might see
30997 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30999 in the From header if your Character-Set is something other than ISO-8859-2.
31000 If you set this feature, the comment about the character set will
31001 no longer be there.
31003 &lt;End of help on this topic&gt;
31004 </BODY>
31005 </HTML>
31006 ====== h_config_quell_host_after_url =====
31007 <HTML>
31008 <HEAD>
31009 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
31010 </HEAD>
31011 <BODY>
31012 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
31014 By default, links in HTML text are displayed with the host the link
31015 references appended, within square brackets, to the link text.  Alpine
31016 does this to help indicate where a link will take you, particularly when
31017 the link text might suggest a different destination.
31020 Setting this feature will prevent the server name from being appended
31021 to the displayed text.
31024 &lt;End of help on this topic&gt;
31025 </BODY>
31026 </HTML>
31027 ====== h_config_prefer_plain_text =====
31028 <HTML>
31029 <HEAD>
31030 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
31031 </HEAD>
31032 <BODY>
31033 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
31035 A message being viewed may contain alternate versions of the same content.
31036 Those alternate versions are supposed to be ordered by the sending software such that the
31037 first alternative is the least preferred and the last alternative is the
31038 most preferred. Alpine will normally display the most-preferred version that
31039 it knows how to display. This is most often encountered where the two
31040 alternate versions are a plain text version and an HTML version, with the
31041 HTML version listed last as the most preferred.
31043 If this option is set, then any plain text version will be preferred to
31044 all other versions.
31046 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
31047 which will temporarily change the sense of this option.
31048 If this option is set you will first see the plain text version of a
31049 message.
31050 If you then type the &quot;A&quot; command, you will see the most preferred version,
31051 most likely HTML, instead.
31052 Typing the &quot;A&quot; command a second time will switch it back.
31053 Alternatively, if the present option is not set you will originally see
31054 the most preferred version of the message and typing &quot;A&quot; will switch to
31055 the plain text version.
31057 &lt;End of help on this topic&gt;
31058 </BODY>
31059 </HTML>
31060 ====== h_config_pass_control =====
31061 <HTML>
31062 <HEAD>
31063 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
31064 </HEAD>
31065 <BODY>
31066 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
31068 It is probably not useful to set this option.
31069 This is a legacy option left behind &quot;just in case&quot;.
31070 Multi-byte characters that have an octet that has the same
31071 value as a control character are permitted through whether or not
31072 this option is turned on.
31074 This feature controls how certain characters contained in messages are
31075 displayed.
31076 If set, all characters in a message will be sent to the
31077 screen. Normally, control characters are displayed as shown below to
31078 avoid a garbled screen and to 
31079 avoid inadvertently changing terminal setup parameters.
31080 Control characters are usually displayed as two character sequences like
31081 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
31082 for Control-C,
31083 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
31084 for ESCAPE,
31085 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
31086 for DELETE, and
31087 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
31088 for the character with value 133 (0x85).
31089 (The DEL character is displayed as ^?, regular control characters are displayed
31090 as the character ^ followed by the character obtained by adding the
31091 five low-order bits of the character to 0x40, and the C1
31092 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
31093 character obtained by adding the
31094 five low-order bits of the character to 0x40.)
31095 Sometimes, in cases where changing a single control character into a
31096 two-character sequence would confuse Alpine's display routines,
31097 a question mark is substituted for the control character.
31099 If you wish to filter out regular control characters but pass the
31100 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
31101 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.
31103 &lt;End of help on this topic&gt;
31104 </BODY>
31105 </HTML>
31106 ====== h_config_pass_c1_control =====
31107 <HTML>
31108 <HEAD>
31109 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
31110 </HEAD>
31111 <BODY>
31112 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
31114 It is probably not useful to set this option.
31115 This is a legacy option left behind &quot;just in case&quot;.
31116 Multi-byte characters that have an octet that has the same
31117 value as a control character are permitted through whether or not
31118 this option is turned on.
31120 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
31121 is set, then this feature has no effect.
31122 However, if you wish to filter out regular control characters but pass the
31123 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
31124 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
31125 unset and set this feature.
31127 &lt;End of help on this topic&gt;
31128 </BODY>
31129 </HTML>
31130 ====== h_config_fcc_on_bounce =====
31131 <HTML>
31132 <HEAD>
31133 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
31134 </HEAD>
31135 <BODY>
31136 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
31138 This feature controls an aspect of Alpine's behavior when bouncing a
31139 message. If set, normal FCC ("File Carbon Copy") processing will be
31140 done, just as if you had composed a message to the address you are
31141 bouncing to.  If not set, no FCC of the message will be saved. 
31143 &lt;End of help on this topic&gt;
31144 </BODY>
31145 </HTML>
31146 ====== h_config_show_cursor =====
31147 <HTML>
31148 <HEAD>
31149 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
31150 </HEAD>
31151 <BODY>
31152 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
31154 This feature controls an aspect of Alpine's displays.  If set, the system
31155 cursor will move to convenient locations in the displays.  For example,
31156 to the beginning of the status field of the highlighted index line, or
31157 to the highlighted word after a successful WhereIs command.  It is intended
31158 to draw your attention to an "interesting" spot on the screen.
31160 &lt;End of help on this topic&gt;
31161 </BODY>
31162 </HTML>
31163 ====== h_config_sort_fcc_alpha =====
31164 <HTML>
31165 <HEAD>
31166 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
31167 </HEAD>
31168 <BODY>
31169 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
31171 This feature controls an aspect of Alpine's FOLDER LIST screen.
31172 If set, the default Fcc folder will be sorted alphabetically with the other
31173 folders instead of appearing right after the INBOX.
31175 &lt;End of help on this topic&gt;
31176 </BODY>
31177 </HTML>
31178 ====== h_config_sort_save_alpha =====
31179 <HTML>
31180 <HEAD>
31181 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
31182 </HEAD>
31183 <BODY>
31184 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
31186 This feature controls an aspect of Alpine's FOLDER LIST screen.
31187 If set, the default save folder will be sorted alphabetically with the other
31188 folders instead of appearing right after the INBOX (and default FCC folder).
31190 &lt;End of help on this topic&gt;
31191 </BODY>
31192 </HTML>
31193 ====== h_config_single_list =====
31194 <HTML>
31195 <HEAD>
31196 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
31197 </HEAD>
31198 <BODY>
31199 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
31201 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
31202 the folders will be listed one per line instead of several per line
31203 in the FOLDER LIST display.
31205 &lt;End of help on this topic&gt;
31206 </BODY>
31207 </HTML>
31208 ====== h_config_vertical_list =====
31209 <HTML>
31210 <HEAD>
31211 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
31212 </HEAD>
31213 <BODY>
31214 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
31216 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
31217 the folders will be listed alphabetically down the columns rather
31218 than across the columns as is the default.
31220 &lt;End of help on this topic&gt;
31221 </BODY>
31222 </HTML>
31223 ====== h_config_verbose_post =====
31224 <HTML>
31225 <HEAD>
31226 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
31227 </HEAD>
31228 <BODY>
31229 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
31230 This feature controls an aspect of Alpine's message sending.  When enabled,
31231 Alpine will send a VERB (i.e., VERBose) command early in the posting process
31232 intended to cause the SMTP server to provide a more detailed account of
31233 the transaction.  This feature is typically only useful to system
31234 administrators and other support personnel as an aid in troubleshooting
31235 problems.
31237 Note, this feature relies on a specific capability of the system's mail
31238 transport agent or configured 
31239 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
31240 It is possible that this
31241 feature will cause problems for some transport agents, and may result in
31242 sending failure.  In addition, as the verbose output comes from the mail
31243 transport agent, it is likely to vary from one system to another. 
31244 <P><UL>
31245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31246 </UL><P>
31247 &lt;End of help on this topic&gt;
31248 </BODY>
31249 </HTML>
31250 ====== h_config_auto_reply_to =====
31251 <HTML>
31252 <HEAD>
31253 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
31254 </HEAD>
31255 <BODY>
31256 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
31258 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
31259 will not prompt when a message being replied to contains a "Reply-To:"
31260 header value, but will simply use its value (as opposed to using the
31261 "From:" field's value).
31265 Note: Using the "Reply-To:" address is usually the preferred behavior,
31266 however, some mailing list managers choose to place the list's address in
31267 the "Reply-To:" field of any message sent out to the list.  In such
31268 cases, this feature makes it all too easy for personal replies to be
31269 inadvertently sent to the entire mail list, so be careful! 
31271 &lt;End of help on this topic&gt;
31272 </BODY>
31273 </HTML>
31274 ====== h_config_del_skips_del =====
31275 <HTML>
31276 <HEAD>
31277 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
31278 </HEAD>
31279 <BODY>
31280 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
31282 This feature controls an aspect of Alpine's Delete command.  If set, this
31283 feature will cause the Delete command to advance past following messages that
31284 are marked deleted.  In other words, pressing "D" will both mark the
31285 current message deleted and advance to the next message that is not marked
31286 deleted.
31287 This feature is set by default.
31289 &lt;End of help on this topic&gt;
31290 </BODY></HTML>
31291 ====== h_config_expunge_manually =====
31292 <HTML>
31293 <HEAD>
31294 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
31295 </HEAD>
31296 <BODY>
31297 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
31299 Normally, when you close a folder that contains deleted messages you are
31300 asked if you want to expunge those messages from the folder permanently.
31301 If this feature is set, you won't be asked and the deleted messages will
31302 remain in the folder.
31303 If you choose to set this feature you will have to expunge the
31304 messages manually using the eXpunge command, which you can use while
31305 in the MESSAGE INDEX screen.
31306 If you do not expunge deleted messages the size of your
31307 folder will continue to increase until you are out of disk space.
31309 <UL>   
31310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31311 </UL><P>
31312 &lt;End of help on this topic&gt;
31313 </BODY>
31314 </HTML>
31315 ====== h_config_auto_expunge =====
31316 <HTML>
31317 <HEAD>
31318 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
31319 </HEAD>
31320 <BODY>
31321 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
31323 This features controls an aspect of Alpine's eXpunge command.  If set, you
31324 will <B>not</B> be prompted to confirm your intent before the expunge takes 
31325 place.
31326 Actually, this is only true for the INBOX folder and for folders in the
31327 Incoming Folders collection. See the feature
31328 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
31330 <UL>   
31331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31332 </UL><P>
31333 &lt;End of help on this topic&gt;
31334 </BODY>
31335 </HTML>
31336 ====== h_config_full_auto_expunge =====
31337 <HTML>
31338 <HEAD>
31339 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
31340 </HEAD>
31341 <BODY>
31342 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
31344 This features controls an aspect of Alpine's eXpunge command.  If set, you
31345 will <B>not</B> be prompted to confirm your intent before the expunge 
31346 takes place.  This feature sets this behavior for all folders, unlike the
31347 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
31348 feature that works only for incoming folders.
31350 <UL>   
31351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31352 </UL><P>
31353 &lt;End of help on this topic&gt;
31354 </BODY>
31355 </HTML>
31356 ====== h_config_auto_read_msgs =====
31357 <HTML>
31358 <HEAD>
31359 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
31360 </HEAD>
31361 <BODY>
31362 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
31363 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
31364 and the 
31365 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
31366 option is also set, then Alpine will
31367 automatically transfer all read messages to the designated folder and mark
31368 them as deleted in the INBOX.  Messages in the INBOX marked with an 
31369 &quot;N&quot; (meaning New, or unseen) are not affected.
31371 <UL>   
31372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31373 </UL><P>
31374 &lt;End of help on this topic&gt;
31375 </BODY>
31376 </HTML>
31377 ====== h_config_auto_fcc_only =====
31378 <HTML>
31379 <HEAD>
31380 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
31381 </HEAD>
31382 <BODY>
31383 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
31384 This features controls an aspect of Alpine's composer.
31385 The only time this feature will be used is if you attempt to send mail
31386 that has no recipients but does have an Fcc.
31387 Normally, Alpine will ask if you really mean to copy the message only to
31388 the Fcc.
31389 That is, it asks if you really meant to have no recipients.
31390 If this feature is set, you
31391 will <B>not</B> be prompted to confirm your intent to make only a copy
31392 of a message with no recipients.
31394 This feature is closely related to
31395 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
31396 The difference between this feature and that feature is that this feature
31397 considers a Bcc to be a recipient while that feature will ask for confirmation
31398 even if there is a Bcc when there is no To, Cc, or Newsgroup.
31399 The default values also differ. This feature defaults to asking the question
31400 and you have to turn it off.
31401 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
31402 unless you turn it on.
31405 <UL>   
31406 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31407 </UL><P>
31408 &lt;End of help on this topic&gt;
31409 </BODY>
31410 </HTML>
31411 ====== h_config_mark_fcc_seen =====
31412 <HTML>
31413 <HEAD>
31414 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
31415 </HEAD>
31416 <BODY>
31417 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
31419 This features controls the way Fccs (File carbon copies) are
31420 made of the messages you send.
31423 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
31424 copy will be marked as Unseen.
31425 When you look at the folder it was saved in the message will appear to
31426 be a New message until you read it.
31427 When this feature is enabled, the message will be marked as having
31428 been Seen.
31431 <UL>   
31432 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31433 </UL><P>
31434 &lt;End of help on this topic&gt;
31435 </BODY>
31436 </HTML>
31437 ====== h_config_no_fcc_attach =====
31438 <HTML>
31439 <HEAD>
31440 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
31441 </HEAD>
31442 <BODY>
31443 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
31445 This features controls the way Fcc's (File carbon copies) are
31446 made of the messages you send.
31449 Normally, Alpine saves an exact copy of your message as it was sent.
31450 When this feature is enabled, the &quot;body&quot; of the message
31451 you send (the text you type in the composer) is preserved in the 
31452 copy as before, however all attachments are replaced with text
31453 explaining what had been sent rather than the attachments themselves.
31456 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
31457 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
31458 allows you to interactively set whether or not attachments are saved
31459 to the Fcc'd copy.
31462 <UL>   
31463 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31464 </UL><P>
31465 &lt;End of help on this topic&gt;
31466 </BODY>
31467 </HTML>
31468 ====== h_config_read_in_newsrc_order =====
31469 <HTML>
31470 <HEAD>
31471 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
31472 </HEAD>
31473 <BODY>
31474 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
31476 This feature controls the order in which newsgroups will be presented.  If
31477 set, they will be presented in the same order as they occur in your 
31478 <!--chtml if pinemode="os_windows"-->
31479 &quot;NEWSRC&quot;
31480 <!--chtml else-->
31481 &quot;.newsrc&quot;
31482 <!--chtml endif-->
31483 file (the default location of which can be changed with the 
31484 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
31486 If not set, the newsgroups will be presented in alphabetical order.
31488 <UL>   
31489 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31490 </UL><P>
31491 &lt;End of help on this topic&gt;
31492 </BODY>
31493 </HTML>
31494 ====== h_config_quell_tz_comment =====
31495 <HTML>
31496 <HEAD>
31497 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
31498 </HEAD>
31499 <BODY>
31500 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
31502 Normally, when Alpine generates a Date header for outgoing mail,
31503 it will try to include the symbolic timezone at the end of the
31504 header inside parentheses.
31505 The symbolic timezone is often three characters long, but on
31506 some operating systems, it may be longer.
31507 Apparently there are some SMTP servers in the world that will reject an
31508 incoming message if it has a Date header longer than about 80 characters.
31509 If this feature is set, the symbolic timezone normally generated by
31510 Alpine will not be included.
31511 You probably don't need to worry about this feature unless you run into
31512 the problem described above.
31515 &lt;End of help on this topic&gt;
31516 </BODY>
31517 </HTML>
31518 ====== h_config_post_wo_validation =====
31519 <HTML>
31520 <HEAD>
31521 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
31522 </HEAD>
31523 <BODY>
31524 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
31526 This feature controls whether the NNTP server is queried as newsgroups
31527 are entered for posting.  Validation over slow links (e.g. dialup using
31528 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
31530 &lt;End of help on this topic&gt;
31531 </BODY>
31532 </HTML>
31533 ====== h_config_send_wo_confirm =====
31534 <HTML>
31535 <HEAD>
31536 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
31537 </HEAD>
31538 <BODY>
31539 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
31541 By default, when you send or post a message you will be asked to confirm
31542 with a question that looks something like:
31545 <CENTER><SAMP>Send message?</SAMP></CENTER>
31548 If this feature is set, you
31549 will <B>not</B> be prompted to confirm your intent to send
31550 and your message will be sent.
31552 If this feature is set it disables some possibilities and renders some
31553 other features meaningless.
31554 You will not be able to use
31555 <A HREF="h_config_sending_filter">Sending Filters</A>,
31556 Verbose sending mode,
31557 <A HREF="h_config_compose_bg_post">Background Sending</A>,
31558 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
31559 or ^V to turn off the generation of flowed text for this message.
31560 These options are normally available as suboptions in the Send prompt, but
31561 with no Send prompt the options are gone.
31564 A somewhat related feature is
31565 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
31566 which may be used to eliminate the extra confirmation
31567 question when posting to a newsgroup.
31569 <UL>   
31570 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31571 </UL><P>
31572 &lt;End of help on this topic&gt;
31573 </BODY>
31574 </HTML>
31575 ====== h_config_quell_filtering_done_message =====
31576 <HTML>
31577 <HEAD>
31578 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
31579 </HEAD>
31580 <BODY>
31581 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
31583 If you use Filter Rules that move messages or set status of messages
31584 you sometimes see a message from Alpine that looks like
31587 <CENTER><SAMP>filtering done</SAMP></CENTER>
31590 If this feature is set, this message will be suppressed.
31591 If the feature
31592 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
31593 is set then this message will be suppressed regardless.
31596 <UL>   
31597 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31598 </UL><P>
31599 &lt;End of help on this topic&gt;
31600 </BODY>
31601 </HTML>
31602 ====== h_config_quell_filtering_messages =====
31603 <HTML>
31604 <HEAD>
31605 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
31606 </HEAD>
31607 <BODY>
31608 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
31610 If you use Filter Rules that move messages or set status of messages
31611 you sometimes see messages from Alpine that look like
31614 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
31620 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
31626 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
31629 If this feature is set, these messages will be suppressed.
31630 The feature
31631 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
31632 is related.
31635 <UL>   
31636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31637 </UL><P>
31638 &lt;End of help on this topic&gt;
31639 </BODY>
31640 </HTML>
31641 ====== h_config_quell_post_prompt =====
31642 <HTML>
31643 <HEAD>
31644 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
31645 </HEAD>
31646 <BODY>
31647 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
31649 By default, when you post a message to a newsgroup you are asked to confirm
31650 that you want to post with the question
31653 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
31656 If this feature is set, you
31657 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
31658 and your message will be posted.
31661 <UL>   
31662 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31663 </UL><P>
31664 &lt;End of help on this topic&gt;
31665 </BODY>
31666 </HTML>
31667 ====== h_config_check_mail_onquit =====
31668 <HTML>
31669 <HEAD>
31670 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
31671 </HEAD>
31672 <BODY>
31673 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
31675 If this feature is set, Alpine will check for new mail after you give the
31676 Quit command.
31677 If new mail has arrived since the previous check, you will be notified
31678 and given the choice of quitting or not quitting.
31680 <UL>   
31681 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31682 </UL><P>
31683 &lt;End of help on this topic&gt;
31684 </BODY>
31685 </HTML>
31686 ====== h_config_inbox_no_confirm =====
31687 <HTML>
31688 <HEAD>
31689 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
31690 </HEAD>
31691 <BODY>
31692 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
31694 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31695 command and there are no more folders or newsgroups to visit, you are asked
31696 if you want to return to the INBOX.
31697 If this feature is set you will not be asked.
31698 It will be assumed that you do want to return to the INBOX.
31700 <UL>   
31701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31702 </UL><P>
31703 &lt;End of help on this topic&gt;
31704 </BODY>
31705 </HTML>
31706 ====== h_config_dates_to_local =====
31707 <HTML>
31708 <HEAD>
31709 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
31710 </HEAD>
31711 <BODY>
31712 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
31714 Normally, the message dates that you see in the
31715 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
31716 For example, if a message was sent to you from a few timezones to the east
31717 it might appear that it was sent from the future;
31718 or if it was sent from somewhere to the west it might appear
31719 as if it is from yesterday even though it was sent only a few minutes ago.
31720 If this feature is set an attempt will be made to convert the dates
31721 to your local timezone to be displayed.
31723 Note that this does not affect the results of Select by Date or of
31724 anything else other than these displayed dates.
31725 When viewing the message you may look at the original unconverted value of the Date
31726 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
31728 <UL>   
31729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31730 </UL><P>
31731 &lt;End of help on this topic&gt;
31732 </BODY>
31733 </HTML>
31734 ====== h_config_tab_no_prompt =====
31735 <HTML>
31736 <HEAD>
31737 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31738 </HEAD>
31739 <BODY>
31740 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31742 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31743 command and there is a problem checking a folder, you are asked
31744 whether you want to continue with the search in the following folder or not.
31745 This question gives you a chance to stop the NextNew processing.
31746 (The checking problem might be caused by the fact that the folder does not
31747 exist, or by an authentication problem, or by a server problem
31748 of some sort.)
31751 If this feature is set you will not be asked.
31752 It will be assumed that you do want to continue.
31754 <UL>   
31755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31756 </UL><P>
31757 &lt;End of help on this topic&gt;
31758 </BODY>
31759 </HTML>
31760 ====== h_config_input_history =====
31761 <HTML>
31762 <HEAD>
31763 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31764 </HEAD>
31765 <BODY>
31766 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31768 Many of the prompts that ask for input in the status line near the
31769 bottom of the screen will respond to Up Arrow and Down Arrow
31770 with the history of previous entries.
31771 For example, in the MESSAGE INDEX screen when you use the WhereIs
31772 command the text you entered will be remembered and can be recalled
31773 by using the Up Arrow key.
31774 Another example, when saving a message the folders saved to will
31775 be remembered and can be recalled using the arrow keys.
31777 In the Save prompt, some users prefer that the Up and Down arrow keys
31778 be used for the Previous Collection and Next Collection commands
31779 instead of for a history of previous saves.
31780 If this option is set the Up and Down arrow keys will become synonyms for the
31781 Previous Collection and Next Collection (^P and ^N) commands in the
31782 prompt for the name of a folder to Save to or in the prompt for the
31783 name of a folder to GoTo.
31784 When this feature is not set (the default), ^P and ^N will change the
31785 collection and the arrow keys will show the history.
31787 <UL>   
31788 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31789 </UL><P>
31790 &lt;End of help on this topic&gt;
31791 </BODY>
31792 </HTML>
31793 ====== h_config_confirm_role =====
31794 <HTML>
31795 <HEAD>
31796 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31797 </HEAD>
31798 <BODY>
31799 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31801 If you have roles, when you Reply to or Forward a message, or Compose
31802 a new message, Alpine
31803 will search through your roles for one that matches.
31804 Normally, if no matches are found you will be placed into the composer
31805 with no opportunity to select a role.
31806 If this feature is set, then you will be asked to confirm that you don't
31807 want a role.
31808 This will give you the opportunity to select a role (with the ^T command).
31809 If you confirm no role with a Return, you will be placed in
31810 the composer with no role.
31811 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31812 These behave the same as if you pressed the Return.
31813 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31814 match what you might type if there was a role match.)
31816 If you are using the alternate form of the Compose command called
31817 &quot;Role&quot;, then all of your roles will be available to you,
31818 independent of the value of this feature and of the values set for all of
31819 Reply Use, Forward Use, and Compose Use.
31821 <UL>   
31822 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31823 </UL><P>
31824 &lt;End of help on this topic&gt;
31825 </BODY>
31826 </HTML>
31827 ====== h_config_news_cross_deletes =====
31828 <HTML>
31829 <HEAD>
31830 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31831 </HEAD>
31832 <BODY>
31833 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31835 This feature controls what Alpine does when you delete a message in a
31836 newsgroup that appears in more than one newsgroup.  Such a message
31837 is sometimes termed a &quot;crossposting&quot; in that it was posted
31838 across several newsgroups.
31841 Alpine's default behavior when you delete such a message is to remove
31842 only the copy in the current newsgroup from view when you use the
31843 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31846 Enabling this feature causes Alpine to remove every occurrence of the
31847 message from all newsgroups it appears in and to which you are
31848 subscribed.
31851 NOTE: As currently implemented, enabling this feature may increase the
31852 time it takes the Expunge command and newsgroup closing to complete.
31855 <UL>   
31856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31857 </UL><P>
31858 &lt;End of help on this topic&gt;
31859 </BODY>
31860 </HTML>
31861 ====== h_config_news_catchup =====
31862 <HTML>
31863 <HEAD>
31864 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31865 </HEAD>
31866 <BODY>
31867 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31869 This feature controls what Alpine does as it closes a newsgroup.
31870 When set, Alpine will offer to delete all messages from the newsgroup
31871 as you are quitting Alpine or opening a new folder.
31874 This feature is useful if you typically read all the interesting messages
31875 in a newsgroup each time you open it.  This feature saves you from
31876 having to delete each message in a newsgroup as you read it or from
31877 selecting all the messages and doing an
31878 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31879 move on to the next folder or newsgroup.
31882 <UL>   
31883 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31884 </UL><P>
31885 &lt;End of help on this topic&gt;
31886 </BODY>
31887 </HTML>
31888 ====== h_config_next_thrd_wo_confirm =====
31889 <HTML>
31890 <HEAD>
31891 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31892 </HEAD>
31893 <BODY>
31894 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31896 This feature controls an aspect of Alpine's Next and Prev commands in
31897 the case where you are using one of the
31898 &quot;separate-index-screen&quot; styles for the configuration option
31899 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31900 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31901 When you are Viewing a particular thread you have a
31902 MESSAGE INDEX of only the messages in that thread.
31903 If you press the Next command with the last message in the thread highlighted
31904 you will normally be asked if you want to &quot;View next thread?&quot;,
31905 assuming there is a next thread to view.
31906 If this feature is set it will be assumed that you always want to view the
31907 next thread and you won't be asked to confirm that.
31908 Similarly, if the first message of the thread is highlighted and you
31909 press the Prev command, this feature will prevent the question
31910 &quot;View previous thread&quot;.
31912 This feature only has an effect in the MESSAGE INDEX screen.
31913 If you then view a particular message from that screen and press the
31914 Next command, you will be sent to the next thread without being asked,
31915 independent of the setting of this feature.
31917 The feature
31918 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31920 &lt;End of help on this topic&gt;
31921 </BODY>
31922 </HTML>
31923 ====== h_config_kw_braces =====
31924 <HTML>
31925 <HEAD>
31926 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31927 </HEAD>
31928 <BODY>
31929 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31931 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31932 TEXT screens.
31933 If you have modified the
31934 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31935 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31936 are used to display keywords or their initials along with the Subject; then
31937 this option may be used to modify the resulting display slightly.
31938 By default, the keywords or initials displayed for these tokens will be
31939 surrounded with curly braces ({ and }) and a trailing space.
31940 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31941 a message, the &quot;SUBJKEY&quot; token will normally look like
31943 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31945 and the SUBJKEYINIT token would look like
31947 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31949 The default character before the keywords is the left brace ({) and the
31950 default after the keywords is the right brace followed by a space (} ).
31952 This option allows you to change that.
31953 You should set it to two values separated by a space.
31954 The values may be quoted if they include space characters.
31955 So, for example, the default value could be specified explicitly by setting this
31956 option to
31958 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31960 The first part wouldn't need to be quoted (but it doesn't hurt).
31961 The second part does need the quotes because it includes a space character.
31962 If you wanted to change the braces to brackets you could use
31964 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31966 Inside the quotes you can use backslash quote to mean quote, so
31968 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31970 would produce
31972 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31974 It is also possible to color keywords in the index using the
31975 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31977 It is not possible to change the fact that a space character is used to
31978 separate the keywords if more than one keyword is set for a message.
31979 It is also not possible to change the fact that there are no separators
31980 between the keyword initials if more than one keyword is set.
31982 &lt;End of help on this topic&gt;
31983 </BODY>
31984 </HTML>
31985 ====== h_config_opening_sep =====
31986 <HTML>
31987 <HEAD>
31988 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31989 </HEAD>
31990 <BODY>
31991 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31993 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31994 With some setups the text of the subject is followed
31995 by the opening text of the message if there is any room available in the index line.
31996 If you have configured your
31997 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31998 to include one of the Subject tokens that causes this behavior
31999 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
32000 to modify what is displayed slightly.
32001 By default, the Subject is separated from the opening text of the message by
32002 the three characters space dash space;
32004 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
32006 Use this option to set it to something different.
32007 The value must be quoted if it includes any space characters.
32008 For example, the default value could be specified explicitly by setting this
32009 option to
32011 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
32013 &lt;End of help on this topic&gt;
32014 </BODY>
32015 </HTML>
32016 ====== h_config_select_wo_confirm =====
32017 <HTML>
32018 <HEAD>
32019 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
32020 </HEAD>
32021 <BODY>
32022 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
32024 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
32025 These commands all take text input to specify the name of the folder or
32026 file to be used, but allow you to press ^T for a list of possible names.
32027 If set, the selected name will be used immediately, without further
32028 opportunity to confirm or edit the name.
32030 Some related help topics are
32031 <UL>
32032 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
32033 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
32034 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
32035 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
32036 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
32037 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
32038 </UL>
32040 &lt;End of help on this topic&gt;
32041 </BODY>
32042 </HTML>
32043 ====== h_config_save_part_wo_confirm =====
32044 <HTML>
32045 <HEAD>
32046 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
32047 </HEAD>
32048 <BODY>
32049 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
32051 This feature controls an aspect of Alpine's Save command.
32052 By default, when you Save a message that has some deleted parts, you will
32053 be asked to confirm that you want to Save with a prompt that looks like:
32055 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
32057 If this feature is set, you will not be asked.
32059 &lt;End of help on this topic&gt;
32060 </BODY>
32061 </HTML>
32062 ====== h_config_use_resentto =====
32063 <HTML>
32064 <HEAD>
32065 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
32066 </HEAD>
32067 <BODY>
32068 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
32070 This feature is turned off by default because turning it on causes problems
32071 with some deficient IMAP servers.
32072 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
32073 <A HREF="h_rule_patterns">Pattern</A>
32074 contains a To header pattern and this feature is turned on,
32075 then a check is made in the message to see
32076 if a Resent-To header is present, and that is used instead of the To header.
32077 If this feature is not turned on, then the regular To header will always
32078 be used.
32081 &lt;End of help on this topic&gt;
32082 </BODY>
32083 </HTML>
32084 ====== h_config_use_reg_start_for_stayopen =====
32085 <HTML>
32086 <HEAD>
32087 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
32088 </HEAD>
32089 <BODY>
32090 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
32092 This feature affects which message is selected as the current message
32093 when you enter a
32094 <A HREF="h_config_permlocked">Stay Open</A> folder.
32096 Normally, the starting position for an incoming folder (which most Stay Open
32097 folders will likely be) is controlled by the
32098 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
32099 However, if a folder is a Stay Open folder, when you re-enter the folder
32100 after the first time the current message will be the same as it was when
32101 you left the folder.
32102 An exception is made if you use the TAB command to get to the folder.
32103 In that case, the message number will be incremented by one from what it
32104 was when you left the folder.
32106 The above special behavior is thought to be useful.
32107 However, it is special and different from what you might at first expect.
32108 If this feature is set, then Stay Open folders will not be treated specially
32109 as far as the startup rule is concerned.
32112 &lt;End of help on this topic&gt;
32113 </BODY>
32114 </HTML>
32115 ====== h_config_use_current_dir =====
32116 <HTML>
32117 <HEAD>
32118 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
32119 </HEAD>
32120 <BODY>
32121 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
32123 This feature controls an aspect of several commands. 
32124 If set, your &quot;current working directory&quot; 
32125 <!--chtml if pinemode="running"-->
32126 (which, at least for your current Alpine &quot;session,&quot; 
32127 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
32128 <!--chtml endif-->
32129 will be used instead of your home directory 
32130 <!--chtml if pinemode="running"-->
32131 (which, in the present configuration of your system, is
32132  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
32133 <!--chtml endif-->
32134 for all of the following operations:<UL>
32135     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
32136     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
32137     <LI> <!--chtml if pinemode="function_key"-->F4
32138          <!--chtml else-->Ctrl-R
32139          <!--chtml endif--> file inclusion in the COMPOSER
32140     <LI> <!--chtml if pinemode="function_key"-->F5
32141          <!--chtml else-->Ctrl-J
32142          <!--chtml endif--> file attachment in the COMPOSER
32143 </UL>
32144 <!--chtml if pinemode="os_windows"-->
32146 If you are starting PC-Alpine from a desktop icon or the Start menu, 
32147 you can set the &quot;current drive&quot; 
32148 by specifying it in the &quot;Start in:&quot; 
32149 box found in the Shortcut tab of the Properties.  
32150 <!--chtml endif-->
32152 <UL>   
32153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32154 </UL>
32157 &lt;End of help on this topic&gt;
32158 </BODY>
32159 </HTML>
32160 ====== h_config_save_wont_delete =====
32161 <HTML>
32162 <HEAD>
32163 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
32164 </HEAD>
32165 <BODY>
32166 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
32168 This feature controls one aspect of the Save command.  If set, Save will
32169 not mark the message &quot;deleted&quot; (its default behavior) after
32170 it has been copied to the designated folder.
32173 &lt;End of help on this topic&gt;
32174 </BODY>
32175 </HTML>
32176 ====== h_config_use_boring_spinner =====
32177 <HTML>
32178 <HEAD>
32179 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
32180 </HEAD>
32181 <BODY>
32182 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
32184 When Alpine is delayed for some reason it usually shows that
32185 something is happening with a small animated display in the status
32186 message line near the bottom of the screen.
32187 Setting this feature will cause that animation to be the same
32188 each time instead of having Alpine choose a random animation.
32189 You may turn the animation off altogether by setting the
32190 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
32191 option to zero.
32194 &lt;End of help on this topic&gt;
32195 </BODY>
32196 </HTML>
32197 ====== h_config_unsel_wont_advance =====
32198 <HTML>
32199 <HEAD>
32200 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
32201 </HEAD>
32202 <BODY>
32203 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
32205 This feature controls one aspect of the Unselect Current message command.
32206 Normally, when the Unselect current message command (:) is typed when the
32207 current message is selected, the message will be unselected and the next
32208 message will become the current message.
32209 If this feature is set, the cursor will not advance to the next message.
32210 Instead, the current message will remain the current message after
32211 unselecting.
32214 &lt;End of help on this topic&gt;
32215 </BODY>
32216 </HTML>
32217 ====== h_config_prune_uses_iso =====
32218 <HTML>
32219 <HEAD>
32220 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
32221 </HEAD>
32222 <BODY>
32223 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
32225 By default, Alpine asks monthly whether or not you would like to rename
32226 some folders to a new name containing the date.
32227 It also asks whether or not you would like to delete some old folders.
32228 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
32229 explanation.
32232 By default, the name used when renaming a folder looks like
32234 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
32236 For example, the first time you run Alpine in May of 2004,
32237 the folder &quot;sent-mail&quot; might be renamed to
32239 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
32241 If this feature is set, the name used will be of the form
32243 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
32245 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
32246 month (01, 02, ..., 12).
32247 For the April, 2004 example above, it would instead be
32249 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
32251 because April is the 4th month of the year.
32252 A reason you might want to set this feature is so that the folders
32253 will sort in chronological order.
32256 &lt;End of help on this topic&gt;
32257 </BODY>
32258 </HTML>
32259 ====== h_config_save_advances =====
32260 <HTML>
32261 <HEAD>
32262 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
32263 </HEAD>
32264 <BODY>
32265 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
32267 This feature controls one aspect of the Save command.  If set, Save will
32268 (in addition to copying the current message to the designated folder) also
32269 advance to the next message.
32272 &lt;End of help on this topic&gt;
32273 </BODY>
32274 </HTML>
32275 ====== h_config_force_arrow =====
32276 <HTML>
32277 <HEAD>
32278 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
32279 </HEAD>
32280 <BODY>
32281 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
32283 This feature affects Alpine's MESSAGE INDEX display routine.
32284 If set, the normal inverse-video cursor will be
32285 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
32286 second column of the index display.
32288 This is the same index cursor you get if you turn on
32289 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
32290 line coloring will still be present if this feature is turned on and
32291 <!--#echo var="FEAT_assume-slow-link"--> is off.
32293 An alternative version of the Arrow cursor is available by including the
32294 <A HREF="h_config_index_arrow_color">ARROW</A>
32295 token in the
32296 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32298 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
32299 but that is not implemented.
32302 &lt;End of help on this topic&gt;
32303 </BODY>
32304 </HTML>
32305 ====== h_config_ignore_size =====
32306 <HTML>
32307 <HEAD>
32308 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
32309 </HEAD>
32310 <BODY>
32311 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
32313 When you have an account residing in an IMAP server, Alpine records the 
32314 size of each message as reported by the server. However, when Alpine saves 
32315 a message in such IMAP server, Alpine will compute the size of the message 
32316 independently, from the data it received. If these two numbers do not 
32317 match for a message, Alpine asks you if you still want to take the risk of 
32318 saving such message, since data corruption or loss of data could result 
32319 from this save.
32322 Sometimes the root of this problem is that the IMAP server does not 
32323 compute sizes correctly, and there will not be loss of information when 
32324 saving such message. Enabling this feature will make Alpine ignore such 
32325 error and continue saving the message without producing any warnings or 
32326 ever stopping the process, as if there had not been any error. This option 
32327 applies to all IMAP servers that you use, so if you enable this feature, 
32328 size discrepancy warnings will not be given for any IMAP server you 
32329 connect to.
32332 Example of a server where you could reproduce this problem is the Gmail 
32333 IMAP server. Another example can be found in some versions of the Exchange 
32334 server.
32337 It is recommended that this feature be disabled most of the time and only 
32338 enabled when you find a server which you can determine that has the above 
32339 mentioned defect, but be disabled again after making the save operation 
32340 succeed.
32343 &lt;End of help on this topic&gt;
32344 </BODY>
32345 </HTML>
32346 ====== h_config_force_low_speed =====
32347 <HTML>
32348 <HEAD>
32349 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
32350 </HEAD>
32351 <BODY>
32352 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
32354 UNIX Alpine only.
32356 This feature affects Alpine's display routines.  If set, the normal
32357 inverse-video cursor (used to highlight the current item in a list) will be
32358 replaced by an &quot;arrow&quot; cursor and other
32359 screen update optimizations for
32360 low-speed links (e.g. 2400 bps dialup connections) will be activated.
32361 One of the optimizations is that colored index lines (set up with Indexcolor
32362 Rules) will not be colored.
32363 If you are just turning this feature on because you like using
32364 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
32365 coloring by turning this feature off and the
32366 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
32369 &lt;End of help on this topic&gt;
32370 </BODY>
32371 </HTML>
32372 ====== h_config_show_delay_cue =====
32373 <HTML>
32374 <HEAD>
32375 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
32376 </HEAD>
32377 <BODY>
32378 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
32380 If set, this feature will cause an asterisk to appear in the upper
32381 left-hand corner of the screen whenever Alpine checks for new mail.
32382 Two asterisks whenever Alpine saves (checkpoints) the state of the current
32383 mailbox to disk.
32385 <!--chtml if pinemode="os_windows"-->
32387 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
32388 it is trying to open a network connection (e.g, to open your INBOX
32389 on an IMAP
32390 server) or read from the network connection.  A greater-than symbol,
32391 will be displayed when PC-Alpine is trying to write to the network
32392 connection (e.g, sending a command to your IMAP server).
32393 <!--chtml endif-->
32396 &lt;End of help on this topic&gt;
32397 </BODY>
32398 </HTML>
32399 ====== h_config_color_style =====
32400 <HTML>
32401 <HEAD>
32402 <TITLE>OPTION: Color Style</TITLE>
32403 </HEAD>
32404 <BODY>
32405 <H1>OPTION: Color Style</H1>
32407 UNIX Alpine only.
32409 If the terminal or terminal emulator you are using is capable of displaying
32410 colors, this option controls whether or not color will be used in Alpine.
32411 If you turn color on and things are set up correctly,
32412 you should see color appear on the screen immediately.
32413 Modern terminal emulators are usually capable of displaying colors.
32415 The available options include:
32418 <DL>
32419 <DT>no-color</DT>
32420 <DD>Don't use color.
32421 </DD>
32423 <DT>use-termdef</DT>
32424 <DD>In order to decide if your terminal is capable of color, Alpine looks in
32425 the terminal capabilities database, TERMINFO or TERMCAP, depending on
32426 how Alpine was compiled.
32427 This is a good option to choose if you switch between a color and a non-color
32428 terminal with the same Alpine configuration.
32429 Alpine will know to use color on the color terminal because it is described
32430 in the termcap entry, and Alpine will know to use black and white on the
32431 non-color terminal.
32432 The Alpine Technical Notes, distributed with the source code of Alpine
32433 have more information on configuring a TERMCAP or TERMINFO
32434 entry for color Alpine.
32435 This is usually something a system administrator does.
32436 </DD>
32438 <DT>force-ansi-8color</DT>
32439 <DD>This is probably the setting that most people should use.
32440 Because setting up a termcap entry is confusing and because the
32441 terminal capabilities database is often not correctly configured for color,
32442 this choice and the next may be easier for you to use.
32443 If your terminal emulator responds to ANSI color escape sequences, which
32444 many do, this option will cause Alpine to believe your terminal will respond
32445 to the escape sequences that produce eight different foreground and background
32446 colors.
32447 The escape sequences used to set the foreground colors are
32449   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32451 where the color_number is an ASCII digit between 0 and 7.
32452 The numbers 0 through 7 should correspond to the colors black, red, green,
32453 yellow, blue, magenta, cyan, and white.
32454 Some terminal emulators use a pre-ANSI scheme that swaps
32455 the colors blue and red and the colors yellow and cyan.
32456 This will cause the default colors to be different, but other than that
32457 things should work fine.
32458 There is also a 9th color available, the last one shown, which is the default
32459 color from the terminal emulator.
32460 When used as a background color some people refer to this color as
32461 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
32462 shown in the color swatch of the SETUP COLOR screen.
32463 The foreground transparent color is shown as
32464 the color of the &quot;TRAN&quot; text.
32465 (The transparent color will not work correctly in a PC-Alpine configuration.)
32466 The escape sequences used to set the background colors are the same
32467 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
32468 The escape sequences for foreground and background default colors (transparent)
32469 are 39m and 49m.
32471 Note: With the Tera Term terminal emulator this setting works well.
32472 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
32473 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
32474 menu, in the &quot;Window&quot; submenu.
32475 </DD>
32477 <DT>force-ansi-16color</DT>
32478 <DD>Many terminal emulators know about the same eight colors above
32479 plus eight more.
32480 This option attempts to use all 16 colors.
32481 The same escape sequences as for the eight-color terminal are used
32482 for the first eight colors.
32483 The escape sequences used to set foreground colors 8-15 are the same as
32484 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
32485 The background color sequences for colors 8-15 are the same as for 0-7
32486 except the &quot;4&quot; is replaced with &quot;10&quot;.
32487 You can tell if the 16 colors are working by turning on this option
32488 and then going into one of the color configuration screens, for example,
32489 the configuration screen for Normal Color.
32490 If you see 16 different colors to select from (plus a 17th for
32491 the transparent color), it's working.
32492 </DD>
32494 <DT>force-xterm-256color</DT>
32495 <DD>Some versions of xterm (and some other terminal emulators)
32496 have support for 256 colors.
32497 The escape sequences used to set the foreground colors are
32499   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32501 where the color_number is an ASCII digit between 0 and 255.
32502 Background colors are the same with the 38 replaced with a 48.
32503 The numbers 0 through 15 are probably similar to the 16 color version
32504 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
32505 The terminal default (transparent) color is the 257th color at the bottom.
32506 Some terminal emulators will misinterpret these escape sequences causing
32507 the terminal to blink or overstrike characters or to do something else
32508 undesirable.
32510 The PuTTY terminal emulator has an option called &quot;Allow terminal to
32511 use xterm 256-colour mode&quot; which allows PuTTY to work well with
32512 this 256-color setting.
32514 </DD>
32515 </DL>
32518 The normal default is &quot;no-color&quot;.
32521 Once you've turned on color you may set the
32522 colors of many objects on the screen individually.
32523 For example, you may add colors to the status letters on the MESSAGE
32524 INDEX page.
32525 Most categories of color that Alpine supports are configurable here.
32526 For example, &quot;Normal Color&quot;
32527 is the color used to display most of the text in Alpine, and
32528 &quot;Reverse Color&quot; is used to display highlighted text, such as the
32529 current message in the MESSAGE INDEX.
32531 Lines in the MESSAGE INDEX may also be colored.
32532 Use Setup Rules to get to the Indexcolor configuration screen.
32535 <UL>   
32536 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32537 </UL><P>
32538 &lt;End of help on this topic&gt;
32539 </BODY>
32540 </HTML>
32541 ====== h_config_disable_index_locale_dates =====
32542 <HTML>
32543 <HEAD>
32544 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
32545 </HEAD>
32546 <BODY>
32547 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
32549 This feature affects the display of dates in the MESSAGE INDEX.
32550 Normally an attempt is made to localize the dates
32551 used in the MESSAGE INDEX display to your locale.
32552 This is controlled with the
32553 LC_TIME locale setting on a UNIX system.
32554 On Windows the Regional Options control panel may be used to set the date format.
32555 At the programming level, Alpine is using the strftime routine
32556 to print the parts of a date.
32558 If this feature is set, dates are displayed in English and
32559 with the conventions of the United States.
32562 <UL>   
32563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32564 </UL><P>
32565 &lt;End of help on this topic&gt;
32566 </BODY>
32567 </HTML>
32568 ====== h_config_auto_open_unread =====
32569 <HTML>
32570 <HEAD>
32571 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
32572 </HEAD>
32573 <BODY>
32574 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
32576 This feature controls the behavior of the TAB key when traversing folders
32577 in the optional 
32578 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
32579 collection or in optional <!--#echo var="VAR_news-collections"-->.
32581 When the TAB
32582 (<A HREF="h_common_nextnew">NextNew</A>)
32583 key is pressed, and there
32584 are no more unseen messages in the current (incoming message or news)
32585 folder, Alpine will search the list of folders in the current collection for
32586 one containing New or Recent (new since the last time the folder was
32587 opened) messages.
32588 This behavior may be modified slightly with the
32589 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
32590 feature that causes Alpine to look for Unseen messages instead of Recent
32591 messages.
32592 Normally, when such a folder is found, Alpine will ask
32593 whether you wish to open the folder.  If this feature is set, Alpine will
32594 automatically open the folder without prompting.
32596 This feature also affects some other similar situations.
32597 If you have a
32598 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
32599 that is equal to one of the &quot;separate-&quot; values, and you are
32600 viewing a thread; then when you type the NextNew command and are at the
32601 end of the current thread you will automatically go to the next thread
32602 if this feature is set.
32603 By default, you would be asked if you want to view the next thread.
32604 You will also be asked at times whether or not you want to view the next
32605 thread after you delete the last message in the thread.
32606 Setting this feature will also cause that question to be skipped.
32609 <UL>   
32610 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32611 </UL><P>
32612 &lt;End of help on this topic&gt;
32613 </BODY>
32614 </HTML>
32615 ====== h_config_auto_include_reply =====
32616 <HTML>
32617 <HEAD>
32618 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
32619 </HEAD>
32620 <BODY>
32621 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
32623 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
32624 will ask whether you wish to include the original message in your reply.
32625 If this feature is set and the feature
32626 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
32627 is <EM>not</EM> set, then the original message will be included in the reply
32628 automatically, without prompting.
32630 &lt;End of help on this topic&gt;
32631 </BODY>
32632 </HTML>
32633 ====== h_config_select_in_bold =====
32634 <HTML>
32635 <HEAD>
32636 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
32637 </HEAD>
32638 <BODY>
32639 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
32641 This feature controls an aspect of Alpine's 
32642 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
32643 commands; in
32644 particular, the Select and WhereIs commands. Select and WhereIs (with the
32645 ^X subcommand) will search the current folder for messages meeting a
32646 specified criteria, and &quot;tag&quot; the resulting messages with an 
32647 &quot;X&quot; in the
32648 first column of the applicable lines in the MESSAGE INDEX.  If this feature
32649 is set, instead of using the &quot;X&quot; to denote a selected message, 
32650 Alpine will
32651 attempt to display those index lines in boldface. Whether this is
32652 preferable to the &quot;X&quot; will depend on personal taste and the type of
32653 terminal being used.
32655 <UL>   
32656 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32657 </UL><P>
32658 &lt;End of help on this topic&gt;
32659 </BODY>
32660 </HTML>
32661 ====== h_config_alt_auth =====
32662 <HTML>
32663 <HEAD>
32664 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
32665 </HEAD>
32666 <BODY>
32667 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
32669 This feature affects how Alpine connects to IMAP servers.
32670 Its utility has largely been overtaken by events,
32671 but it may still be useful in some circumstances.
32672 If you only connect to modern IMAP servers that support
32673 &quot;STARTTLS&quot; you can ignore this feature.
32676 Details:
32679 By default, Alpine will attempt to connect to an IMAP server on the
32680 normal IMAP service port (143), and if the server offers &quot;Transport Layer
32681 Security&quot; (STARTTLS) and Alpine has been compiled with encryption capability,
32682 then a secure (encrypted) session will be negotiated.
32685 With this feature enabled, before connecting on the normal IMAP port, Alpine
32686 will first attempt to connect to an alternate IMAP service port (993) used
32687 specifically for encrypted IMAP sessions via the Secure Sockets Layer
32688 (SSL) or Transport Layer Security (TLS) method.
32689 If the SSL attempt fails, Alpine will then try the default
32690 behavior described in the previous paragraph.
32693 STARTTLS negotiation on the normal port is preferred, and supersedes the use of
32694 SSL on port 993, but older servers may not provide STARTTLS support.
32695 This feature may be convenient when accessing IMAP servers that do not support
32696 STARTTLS, but do support SSL or TLS connections on port 993.
32697 However, it is important to understand that with this feature enabled,
32698 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
32699 but it will proceed to make an insecure connection if that is the only
32700 option offered by the server, or if the Alpine in question has been built
32701 without encryption capability.
32704 Note that this feature specifies a per-user (or system-wide) default
32705 behavior, but host/folder specification flags may be used to control the
32706 behavior of any specific connection.
32707 This feature interacts with some of
32708 the possible host/folder path specification flags as follows:
32711 The <SAMP>/starttls</SAMP> host flag, for example,
32714 <CENTER><SAMP>{foo.example.com/starttls}INBOX</SAMP></CENTER>
32716 will over-ride this feature for the specified host by bypassing the
32717 SSL or TLS connection attempt.
32718 Moreover, with <SAMP>/starttls</SAMP> specified,
32719 the connection attempt will fail if the
32720 service on port 143 does not offer TLS support.
32723 The <SAMP>/ssl</SAMP> host flag, for example,
32726 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
32728 will insist on an SSL or TLS connection for the specified host,
32729 and will fail if the SSL or TLS service on port 993 is not available.
32730 Alpine will not subsequently retry a connection
32731 on port 143 if <SAMP>/ssl</SAMP> is specified.
32734 <UL>   
32735 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32736 </UL><P>
32737 &lt;End of help on this topic&gt;
32738 </BODY>
32739 </HTML>
32740 ====== h_config_file_dir ======
32741 <HTML>
32742 <HEAD>
32743 <TITLE>OPTION: File Directory</TITLE>
32744 </HEAD>
32745 <BODY>
32746 <H1>OPTION: File Directory</H1>
32748 PC-Alpine only.
32750 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32751 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32752 Message Index's &quot;E&nbsp;Export&quot; command.
32755 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32756 component, Alpine assumes the file exists in the user's home directory.
32757 Under Windows operating systems, this definition isn't always clear.  This 
32758 feature allows you to explicitly set where Alpine should look for files
32759 without a leading path.
32762 NOTE: this feature's value is ignored if either 
32763 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32764 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32767 <UL>   
32768 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32769 </UL><P>
32770 &lt;End of help on this topic&gt;
32771 </BODY>
32772 </HTML>
32773 ====== h_config_quote_all_froms =====
32774 <HTML>
32775 <HEAD>
32776 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32777 </HEAD>
32778 <BODY>
32779 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32781 This feature controls an aspect of the Save command (and also the way
32782 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32783 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32784 when they are saved to another folder, including lines syntactically
32785 distinguishable from the type of message separator line commonly used on
32786 Unix systems.
32789 The default behavior is that a &quot;>&quot; will be prepended only to lines
32790 beginning with &quot;From &quot; that might otherwise be confused with a message
32791 separator line on Unix systems.  If pine is the only mail program you use,
32792 this default is reasonable.  If another program you use has trouble
32793 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32794 enable this feature.  This feature only applies to the common Unix mailbox
32795 format that uses message separator lines beginning with &quot;From &quot;.  If
32796 Alpine has been configured to use a different mailbox format (possibly
32797 incompatible with other mail programs), then this issue does not arise,
32798 and the feature is irrelevant.
32801 &lt;End of help on this topic&gt;
32802 </BODY>
32803 </HTML>
32804 ====== h_config_normal_color =====
32805 <HTML>
32806 <HEAD>
32807 <TITLE>OPTION: Normal Color</TITLE>
32808 </HEAD>
32809 <BODY>
32810 <H1>OPTION: Normal Color</H1>
32812 Sets the color Alpine normally uses.
32813 The foreground color is the color of the actual character and the
32814 background color is the color of the area behind the character.
32815 By default this color is black characters on a white background.
32817 <A HREF="h_color_setup">Descriptions of the available commands</A>
32819 Look <A HREF="h_edit_nav_cmds">here</A>
32820 to see the available Editing and Navigation commands.
32822 &lt;End of help on this topic&gt;
32823 </BODY>
32824 </HTML>
32825 ====== h_config_reverse_color =====
32826 <HTML>
32827 <HEAD>
32828 <TITLE>OPTION: Reverse Color</TITLE>
32829 </HEAD>
32830 <BODY>
32831 <H1>OPTION: Reverse Color</H1>
32833 Sets the color Alpine uses for reverse video characters.
32834 The foreground color is the color of the actual character and the
32835 background color is the color of the area behind the character.
32837 <A HREF="h_color_setup">Descriptions of the available commands</A>
32839 Look <A HREF="h_edit_nav_cmds">here</A>
32840 to see the available Editing and Navigation commands.
32842 &lt;End of help on this topic&gt;
32843 </BODY>
32844 </HTML>
32845 ====== h_config_title_color =====
32846 <HTML>
32847 <HEAD>
32848 <TITLE>OPTION: Title Color</TITLE>
32849 </HEAD>
32850 <BODY>
32851 <H1>OPTION: Title Color</H1>
32853 Sets the color Alpine uses for the titlebar (the top line on the screen).
32854 The foreground color is the color of the actual character and the
32855 background color is the color of the area behind the character.
32856 By default, the Title Color is black characters on a yellow background.
32858 The actual titlebar color may be different from the Title Color if
32859 the option
32860 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32861 is set to some value other than the default.
32862 It may also be different if the current folder is closed and the
32863 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32864 color is set to something different from the Title Color.
32866 <A HREF="h_color_setup">Descriptions of the available commands</A>
32868 Look <A HREF="h_edit_nav_cmds">here</A>
32869 to see the available Editing and Navigation commands.
32871 &lt;End of help on this topic&gt;
32872 </BODY>
32873 </HTML>
32874 ====== h_config_titleclosed_color =====
32875 <HTML>
32876 <HEAD>
32877 <TITLE>OPTION: Title Closed Color</TITLE>
32878 </HEAD>
32879 <BODY>
32880 <H1>OPTION: Title Closed Color</H1>
32882 Sets the color Alpine uses for the titlebar (the top line on the screen)
32883 when the current folder is closed.
32884 The foreground color is the color of the actual character and the
32885 background color is the color of the area behind the character.
32886 By default, the Title Color Closed Color is white characters on a red background.
32888 By setting this color to something noticeable you will be alerted to the
32889 fact that the current folder is closed, perhaps unexpectedly.
32891 &lt;End of help on this topic&gt;
32892 </BODY>
32893 </HTML>
32894 ====== h_config_status_color =====
32895 <HTML>
32896 <HEAD>
32897 <TITLE>OPTION: Status Color</TITLE>
32898 </HEAD>
32899 <BODY>
32900 <H1>OPTION: Status Color</H1>
32902 Sets the color Alpine uses for status messages written to the message
32903 line near the bottom of the screen.
32904 The foreground color is the color of the actual character and the
32905 background color is the color of the area behind the character.
32906 By default, the Status Color is the same as the Reverse Color.
32908 <A HREF="h_color_setup">Descriptions of the available commands</A>
32910 Look <A HREF="h_edit_nav_cmds">here</A>
32911 to see the available Editing and Navigation commands.
32913 &lt;End of help on this topic&gt;
32914 </BODY>
32915 </HTML>
32916 ====== h_config_index_opening_color =====
32917 <HTML>
32918 <HEAD>
32919 <TITLE>OPTION: Index Opening Color</TITLE>
32920 </HEAD>
32921 <BODY>
32922 <H1>OPTION: Index Opening Color</H1>
32924 With some setups the text of the subject is followed
32925 by the opening text of the message if there is any room available in the index line.
32926 If you have configured your
32927 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32928 to include one of the Subject tokens that causes this behavior
32929 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32930 this opening text with this option.
32931 This coloring takes place for all but the current index line, and the Opening
32932 Color appears to be in front of any color from an Index Color Rule.
32934 By default the Index Opening Color is gray characters on a white background.
32937 <A HREF="h_color_setup">Descriptions of the available commands</A>
32939 Look <A HREF="h_edit_nav_cmds">here</A>
32940 to see the available Editing and Navigation commands.
32942 &lt;End of help on this topic&gt;
32943 </BODY>
32944 </HTML>
32945 ====== h_config_index_pri_color =====
32946 <HTML>
32947 <HEAD>
32948 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32949 </HEAD>
32950 <BODY>
32951 <H1>OPTION: Index Priority Symbol Colors</H1>
32953 The X-Priority header is a non-standard header that is used in a
32954 somewhat standard way by many mail programs.
32955 Alpine expects the value of this header to be a digit with a value
32956 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32957 Alpine can be made to display an indication of this priority in
32958 messages by use of one of the tokens
32959 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32960 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32961 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32964 You may set the color used to draw these tokens by use of the colors
32965 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32966 This coloring takes place for all but the current index line, and the Priority
32967 Color appears to be in front of any color from an Index Color Rule.
32968 If the priority has a value of 1 or 2 the High Priority color will be
32969 used,
32970 and if the value is 4 or 5 the Low Priority color will be used.
32972 If you don't set these colors the index line will be colored in the same color as
32973 the bulk of the index line.
32976 <A HREF="h_color_setup">Descriptions of the available commands</A>
32978 Look <A HREF="h_edit_nav_cmds">here</A>
32979 to see the available Editing and Navigation commands.
32981 &lt;End of help on this topic&gt;
32982 </BODY>
32983 </HTML>
32984 ====== h_config_index_subject_color =====
32985 <HTML>
32986 <HEAD>
32987 <TITLE>OPTION: Index Subject Color</TITLE>
32988 </HEAD>
32989 <BODY>
32990 <H1>OPTION: Index Subject Color</H1>
32992 You may set the color used to draw the Subject part of the index line.
32993 This coloring takes place for all but the current index line, and the Subject
32994 Color appears to be in front of any color from an Index Color Rule.
32996 If you don't set this color it will be colored in the same color as
32997 the bulk of the index line.
33000 <A HREF="h_color_setup">Descriptions of the available commands</A>
33002 Look <A HREF="h_edit_nav_cmds">here</A>
33003 to see the available Editing and Navigation commands.
33005 &lt;End of help on this topic&gt;
33006 </BODY>
33007 </HTML>
33008 ====== h_config_index_from_color =====
33009 <HTML>
33010 <HEAD>
33011 <TITLE>OPTION: Index From Color</TITLE>
33012 </HEAD>
33013 <BODY>
33014 <H1>OPTION: Index From Color</H1>
33016 You may set the color used to draw the From part of the index line.
33017 This coloring takes place for all but the current index line, and the From
33018 Color appears to be in front of any color from an Index Color Rule.
33020 If you don't set this color it will be colored in the same color as
33021 the bulk of the index line.
33024 <A HREF="h_color_setup">Descriptions of the available commands</A>
33026 Look <A HREF="h_edit_nav_cmds">here</A>
33027 to see the available Editing and Navigation commands.
33029 &lt;End of help on this topic&gt;
33030 </BODY>
33031 </HTML>
33032 ====== h_config_index_arrow_color =====
33033 <HTML>
33034 <HEAD>
33035 <TITLE>OPTION: Index Arrow Color</TITLE>
33036 </HEAD>
33037 <BODY>
33038 <H1>OPTION: Index Arrow Color</H1>
33040 If you have configured your
33041 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
33042 to include the &quot;ARROW&quot; token, you may set the color of
33043 the arrow displayed with this option.
33044 If you don't set the color it will be colored in the same color as
33045 the bulk of the index line.
33048 <A HREF="h_color_setup">Descriptions of the available commands</A>
33050 Look <A HREF="h_edit_nav_cmds">here</A>
33051 to see the available Editing and Navigation commands.
33053 &lt;End of help on this topic&gt;
33054 </BODY>
33055 </HTML>
33056 ====== h_config_index_color =====
33057 <HTML>
33058 <HEAD>
33059 <TITLE>OPTION: Index Colors</TITLE>
33060 </HEAD>
33061 <BODY>
33062 <H1>OPTION: Index Colors</H1>
33064 You may add color to the single character symbols that give the status
33065 of each message in the MESSAGE INDEX.
33066 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
33067 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
33068 screen depending on whether the message is addressed to you, and whether
33069 the message is marked Important, is Deleted, is Answered, or is New.
33070 The color for each of those characters may be specified by setting the
33071 &quot;Index-to-me&quot; Symbol Color,
33072 the &quot;Index-important&quot; Symbol Color,
33073 the &quot;Index-deleted&quot; Symbol Color,
33074 the &quot;Index-answered&quot; Symbol Color,
33075 and the &quot;Index-new&quot; Symbol Color.
33076 There are also two other symbol colors called &quot;Index-recent&quot;
33077 and &quot;Index-unseen&quot;.
33078 These two colors will only be used if you have configured your
33079 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
33080 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
33082 The default colors for these symbols are:
33083 <TABLE>
33084 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
33085 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
33086 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33087 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
33088 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
33089 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33090 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33091 </TABLE>
33093 Besides coloring the message status symbols, you may also color the
33094 entire index line.
33095 This is done by using the
33096 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
33097 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
33098 When the entire line is colored that color will be &quot;behind&quot; the
33099 status symbol colors talked about in the paragraph above.
33101 You may also color
33102 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33103 in the index using the
33104 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
33105 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
33106 the Subject using
33107 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
33108 the From field using
33109 <A HREF="h_config_index_from_color">Index From Color</A>;
33110 and the
33111 <A HREF="h_config_index_opening_color">Index Opening</A> text.
33113 <A HREF="h_color_setup">Descriptions of the available commands</A>
33115 Look <A HREF="h_edit_nav_cmds">here</A>
33116 to see the available Editing and Navigation commands.
33118 &lt;End of help on this topic&gt;
33119 </BODY>
33120 </HTML>
33121 ====== h_config_metamsg_color =====
33122 <HTML>
33123 <HEAD>
33124 <TITLE>OPTION: Meta-Message Color</TITLE>
33125 </HEAD>
33126 <BODY>
33127 <H1>OPTION: Meta-Message Color</H1>
33129 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
33130 that aren't part of the message itself.
33131 For example, an attachment that isn't shown might produce a meta
33132 message something like:
33134 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
33136 If you set the
33137 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
33138 option you might see
33140 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
33142 Warnings about suspicious looking URLs in HTML will also be colored
33143 with this color.
33145 The foreground color is the color of the actual character and the
33146 background color is the color of the area behind the character.
33147 By default, the Meta-Message Color is black characters on a yellow background.
33149 <A HREF="h_color_setup">Descriptions of the available commands</A>
33151 Look <A HREF="h_edit_nav_cmds">here</A>
33152 to see the available Editing and Navigation commands.
33154 &lt;End of help on this topic&gt;
33155 </BODY>
33156 </HTML>
33157 ====== h_config_keylabel_color =====
33158 <HTML>
33159 <HEAD>
33160 <TITLE>OPTION: KeyLabel Color</TITLE>
33161 </HEAD>
33162 <BODY>
33163 <H1>OPTION: KeyLabel Color</H1>
33165 Sets the color Alpine uses for the labels of the keys in the two-line
33166 menu at the bottom of the screen.
33167 For example, some of the screens have a &quot;P PrevMsg&quot; command.
33168 This option sets the color used when displaying &quot;PrevMsg&quot;.
33169 The foreground color is the color of the actual character and the
33170 background color is the color of the area behind the character.
33171 By default, the KeyLabel Color is the same as the Normal Color.
33173 WARNING: Some terminal emulators have the property that the screen will scroll
33174 down one line whenever a character is written to the character cell in the
33175 lower right corner of the screen.
33176 Alpine can usually avoid writing a character in that corner of the screen.
33177 However, if you have defined a KeyLabel Color then Alpine does have to write
33178 a character in that cell in order to color the cell correctly.
33179 If you find that your display sometimes scrolls up a line this could be
33180 the problem.
33181 The most obvious symptom is probably that the titlebar at the top of the
33182 screen scrolls off the screen.
33183 Try setting KeyLabel Color to Default to see if that fixes the problem.
33185 <A HREF="h_color_setup">Descriptions of the available commands</A>
33187 Look <A HREF="h_edit_nav_cmds">here</A>
33188 to see the available Editing and Navigation commands.
33190 &lt;End of help on this topic&gt;
33191 </BODY>
33192 </HTML>
33193 ====== h_config_keyname_color =====
33194 <HTML>
33195 <HEAD>
33196 <TITLE>OPTION: KeyName Color</TITLE>
33197 </HEAD>
33198 <BODY>
33199 <H1>OPTION: KeyName Color</H1>
33201 Sets the color Alpine uses for the names of the keys in the two-line
33202 menu at the bottom of the screen.
33203 For example, some of the screens have a &quot;P PrevMsg&quot; command.
33204 This option sets the color used when displaying the &quot;P&quot;.
33205 The foreground color is the color of the actual character and the
33206 background color is the color of the area behind the character.
33207 By default, the KeyName Color is the same as the Reverse Color.
33209 <A HREF="h_color_setup">Descriptions of the available commands</A>
33211 Look <A HREF="h_edit_nav_cmds">here</A>
33212 to see the available Editing and Navigation commands.
33214 &lt;End of help on this topic&gt;
33215 </BODY>
33216 </HTML>
33217 ====== h_config_slctbl_color =====
33218 <HTML>
33219 <HEAD>
33220 <TITLE>OPTION: Selectable Item Color</TITLE>
33221 </HEAD>
33222 <BODY>
33223 <H1>OPTION: Selectable Item Color</H1>
33225 Sets the color Alpine uses for selectable items, such as URLs.
33226 The foreground color is the color of the actual character and the
33227 background color is the color of the area behind the character.
33228 By default, the Selectable Item Color is the same as the Normal Color,
33229 except that it is bold.
33231 <A HREF="h_color_setup">Descriptions of the available commands</A>
33233 Look <A HREF="h_edit_nav_cmds">here</A>
33234 to see the available Editing and Navigation commands.
33236 &lt;End of help on this topic&gt;
33237 </BODY>
33238 </HTML>
33239 ====== h_config_quote_color =====
33240 <HTML>
33241 <HEAD>
33242 <TITLE>OPTION: Quote Colors</TITLE>
33243 </HEAD>
33244 <BODY>
33245 <H1>OPTION: Quote Colors</H1>
33247 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
33248 screen.
33249 If a line begins with a &gt; character (or space followed by &gt;)
33250 it is considered a quote.
33251 That line will be given the Quote1 Color (first level quote).
33252 If there is a second level of quoting then the Quote2 Color will be used.
33253 Alpine considers there to be a second level of quoting if that first &gt; is
33254 followed by another &gt; (or space followed by &gt;).
33255 If there are characters other than whitespace and &gt; signs, then it isn't
33256 considered another level of quoting.
33257 Similarly, if there is a third level of quoting the Quote3 Color will be
33258 used.
33259 If there are more levels after that the Quote Colors are re-used.
33260 If you define all three colors then it would repeat like Color1, Color2, Color3,
33261 Color1, Color2, Color3, ...
33262 If you only define the first two it would be
33263 Color1, Color2, Color1, Color2, ...
33264 If you define only the Quote1 Color, then the entire quote would be that
33265 color regardless of the quoting levels.
33266 By default, the Quote1 Color is black characters on a greenish-blue background;
33267 the Quote2 Color is black characters on a dull yellow background; and
33268 the Quote3 Color is black characters on a green background.
33270 <A HREF="h_color_setup">Descriptions of the available commands</A>
33272 Look <A HREF="h_edit_nav_cmds">here</A>
33273 to see the available Editing and Navigation commands.
33275 &lt;End of help on this topic&gt;
33276 </BODY>
33277 </HTML>
33278 ====== h_config_folder_color =====
33279 <HTML>
33280 <HEAD>
33281 <TITLE>OPTION: Folder Color</TITLE>
33282 </HEAD>
33283 <BODY>
33284 <H1>OPTION: Folder Color</H1>
33286 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
33287 screen. By default, the Folder Color is the normal text color.
33290 If you set a color for this feature, other than the normal color
33291 (the default), or a color for
33292 <A HREF="h_config_directory_color">Directory Color</A>, then directories
33293 will be colored according to the color specified in the
33294 <A HREF="h_config_directory_color">Directory Color</A> option. In this
33295 case, the color will be the only indication that the colored name
33296 refers to a directory. The normal behavior is that Alpine
33297 indicates that a name refers to a directory by appending a
33298 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
33299 the folder.
33302 If a folder is a directory, then the folder name will be painted
33303 according to the color defined by this variable, and a separator
33304 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
33305 to the name. That
33306 indicator will be painted according to the color defined in the
33307 <A HREF="h_config_directory_color">Directory Color</A> option.
33310 &lt;End of help on this topic&gt;
33311 </BODY>
33312 </HTML>
33313 ====== h_config_directory_color =====
33314 <HTML>
33315 <HEAD>
33316 <TITLE>OPTION: Directory Color</TITLE>
33317 </HEAD>
33318 <BODY>
33319 <H1>OPTION: Directory Color</H1>
33321 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
33322 screen. By default, the Folder Color is the normal text color.
33324 If you set a color for this feature, other than the normal color
33325 (the default), or a color for
33326 <A HREF="h_config_folder_color">Folder Color</A>, then folders
33327 will be colored according to the color specified in the
33328 <A HREF="h_config_folder_color">Folder Color</A> option. In this
33329 case, the color will be the only indication that the colored name
33330 refers to a directory. The normal behavior is that Alpine
33331 indicates that a name refers to a directory by appending a
33332 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
33333 the folder.
33335 If a folder is a directory, then the folder name will be painted
33336 according to the color defined by the option
33337 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
33338 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
33339 after the name. That
33340 indicator will be painted according to the color defined in this
33341 option.
33343 &lt;End of help on this topic&gt;
33344 </BODY>
33345 </HTML>
33346 ====== h_config_folder_list_color =====
33347 <HTML>
33348 <HEAD>
33349 <TITLE>OPTION: Folder-List Color</TITLE>
33350 </HEAD>
33351 <BODY>
33352 <H1>OPTION: Folder-List Color</H1>
33354 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
33355 screen. By default, the Folder-List Color is the normal text color.
33357 This text refers to the informative text that Alpine displays so you
33358 can recognize each collection. The color of the content of each collection
33359 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
33360 and <A HREF="h_config_directory_color">Directory Color</A>.
33362 Unlike the options
33363 <A HREF="h_config_folder_color">Folder Color</A>
33364 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
33365 this option does not affect the way that Alpine reports folders,
33366 directories and folders that are directories.
33368 &lt;End of help on this topic&gt;
33369 </BODY>
33370 </HTML>
33371 ====== h_config_incunseen_color =====
33372 <HTML>
33373 <HEAD>
33374 <TITLE>OPTION: Incoming Unseen Color</TITLE>
33375 </HEAD>
33376 <BODY>
33377 <H1>OPTION: Incoming Unseen Color</H1>
33379 If the option
33380 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
33381 is turned on it is possible to highlight the folders that contain
33382 unseen messages by coloring them with this color.
33383 By default, this is the same as the Normal Color and no highlighting is done.
33385 Usually the &quot;current&quot; folder (the folder the cursor is on)
33386 is highlighted using reverse video.
33387 If the current folder is colored because it contains unseen messages then
33388 the color used to show that it is also the current folder is controlled
33389 by the
33390 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
33391 feature at the top of the SETUP COLOR screen.
33393 <A HREF="h_color_setup">Descriptions of the available commands</A>
33395 Look <A HREF="h_edit_nav_cmds">here</A>
33396 to see the available Editing and Navigation commands.
33398 &lt;End of help on this topic&gt;
33399 </BODY>
33400 </HTML>
33401 ====== h_config_signature_color =====
33402 <HTML>
33403 <HEAD>
33404 <TITLE>OPTION: Signature Color</TITLE>
33405 </HEAD>
33406 <BODY>
33407 <H1>OPTION: Signature Color</H1>
33409 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
33410 screen. According to USENET conventions, the signature is defined as the
33411 paragraph following the &quot;sigdashes&quot;, that is, the special line
33412 consisting of the three characters
33413 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
33414 empty line right after the sigdashes to be considered as part of the
33415 signature.
33416 By default, the Signature Color is blue characters on a white background.
33418 <A HREF="h_color_setup">Descriptions of the available commands</A>
33420 Look <A HREF="h_edit_nav_cmds">here</A>
33421 to see the available Editing and Navigation commands.
33423 &lt;End of help on this topic&gt;
33424 </BODY>
33425 </HTML>
33426 ====== h_config_prompt_color =====
33427 <HTML>
33428 <HEAD>
33429 <TITLE>OPTION: Prompt Color</TITLE>
33430 </HEAD>
33431 <BODY>
33432 <H1>OPTION: Prompt Color</H1>
33434 Sets the color Alpine uses for confirmation prompts and questions that
33435 appear in the status line near the bottom of the screen.
33436 The foreground color is the color of the actual character and the
33437 background color is the color of the area behind the character.
33438 By default, the Prompt Color is the same as the Reverse Color.
33440 <A HREF="h_color_setup">Descriptions of the available commands</A>
33442 Look <A HREF="h_edit_nav_cmds">here</A>
33443 to see the available Editing and Navigation commands.
33445 &lt;End of help on this topic&gt;
33446 </BODY>
33447 </HTML>
33448 ====== h_config_header_general_color =====
33449 <HTML>
33450 <HEAD>
33451 <TITLE>OPTION: Header General Color</TITLE>
33452 </HEAD>
33453 <BODY>
33454 <H1>OPTION: Header General Color</H1>
33456 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
33457 screen.
33458 The foreground color is the color of the actual character and the
33459 background color is the color of the area behind the character.
33460 By default, this is the same as the Normal Color.
33462 It is also possible to set the colors for specific header fields, for
33463 example the Subject, using
33464 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
33465 If both a Header General Color and a specific Viewer Header Color are set
33466 the specific color will override the general color, as you would expect.
33468 <A HREF="h_color_setup">Descriptions of the available commands</A>
33470 Look <A HREF="h_edit_nav_cmds">here</A>
33471 to see the available Editing and Navigation commands.
33473 &lt;End of help on this topic&gt;
33474 </BODY>
33475 </HTML>
33476 ====== h_config_incol =====
33477 <HTML>
33478 <HEAD>
33479 <TITLE>Index Line Color</TITLE>
33480 </HEAD>
33481 <BODY>
33482 <H1>Index Line Color</H1>
33484 This option is used to set the color of a line in the index when the
33485 message for that line matches the Pattern.
33486 This colors the whole index line, except possibly the status letters,
33487 which may be colored separately using the
33488 <A HREF="h_color_setup">Setup Kolor</A> screen.
33489 The foreground color is the color of the actual characters and the
33490 background color is the color of the area behind the characters.
33492 <A HREF="h_color_setup">Descriptions of the available commands</A>
33494 Look <A HREF="h_edit_nav_cmds">here</A>
33495 to see the available Editing and Navigation commands.
33497 &lt;End of help on this topic&gt;
33498 </BODY>
33499 </HTML>
33500 ====== h_config_usetransparent_color =====
33501 <HTML>
33502 <HEAD>
33503 <TITLE>OPTION: Use Transparent Color</TITLE>
33504 </HEAD>
33505 <BODY>
33506 <H1>OPTION: Use Transparent Color</H1>
33508 This is a special color supported by some terminal emulators.
33509 It is intended to result in the default foreground or background color
33510 from the terminal emulator.
33511 This is the color the terminal was displaying characters in before you started Alpine.
33512 The reason it is called Transparent is because you could set the foreground color
33513 to some specific color, like Red, and then set the background color to the
33514 Transparent Color. If it works as expected, the background color from the terminal
33515 window in which Alpine is running will show through but with the Red characters
33516 in the foreground.
33518 <A HREF="h_color_setup">Descriptions of the available commands</A>
33520 Look <A HREF="h_edit_nav_cmds">here</A>
33521 to see the available Editing and Navigation commands.
33523 &lt;End of help on this topic&gt;
33524 </BODY>
33525 </HTML>
33526 ====== h_config_usenormal_color =====
33527 <HTML>
33528 <HEAD>
33529 <TITLE>OPTION: Use Normal Color</TITLE>
33530 </HEAD>
33531 <BODY>
33532 <H1>OPTION: Use Normal Color</H1>
33534 When you use this color value, the actual color used will be the same
33535 as the corresponding Normal Color.
33536 For example if your Normal Color is black on white and you set both
33537 the foreground and background colors here to use the Normal Color, you'll
33538 get black on white. If you later change the Normal Color to red on blue
33539 this color will also change to red on blue.
33541 <A HREF="h_color_setup">Descriptions of the available commands</A>
33543 Look <A HREF="h_edit_nav_cmds">here</A>
33544 to see the available Editing and Navigation commands.
33546 &lt;End of help on this topic&gt;
33547 </BODY>
33548 </HTML>
33549 ====== h_config_usenone_color =====
33550 <HTML>
33551 <HEAD>
33552 <TITLE>OPTION: Use None Color</TITLE>
33553 </HEAD>
33554 <BODY>
33555 <H1>OPTION: Use None Color</H1>
33557 This is a special color that simply means to leave the color alone.
33558 It is useful for Index symbols and for Keyword Colors used in the Subject
33559 field of an index line.
33560 The most likely use is to set an explicit foreground color and then set
33561 the background color to the None Color.
33562 That will cause the symbol or keyword to be drawn in the foreground color
33563 with a background equal to whatever color the rest of the index line is already
33564 drawn in.
33565 You will see no visible effect unless you have assigned Indexcolor Rules to
33566 color index lines or you have set an actual color for the Reverse Color.
33568 <A HREF="h_color_setup">Descriptions of the available commands</A>
33570 Look <A HREF="h_edit_nav_cmds">here</A>
33571 to see the available Editing and Navigation commands.
33573 &lt;End of help on this topic&gt;
33574 </BODY>
33575 </HTML>
33576 ====== h_config_dflt_color =====
33577 <HTML>
33578 <HEAD>
33579 <TITLE>OPTION: Default Color</TITLE>
33580 </HEAD>
33581 <BODY>
33582 <H1>OPTION: Default Color</H1>
33584 Setting default will cause the color to be the default color.
33585 Unsetting default is normally done by choosing a color, but in some cases
33586 you may want to declare the current default color to be your non-default
33587 choice.
33588 For example, the default Keyname Color is the same as the Reverse Color.
33589 Whenever the Reverse Color changes the Keyname Color will also change, unless
33590 you've changed it or unset the default box.
33592 <A HREF="h_color_setup">Descriptions of the available commands</A>
33594 Look <A HREF="h_edit_nav_cmds">here</A>
33595 to see the available Editing and Navigation commands.
33597 &lt;End of help on this topic&gt;
33598 </BODY>
33599 </HTML>
33600 ====== h_config_bold_slctbl =====
33601 <HTML>
33602 <HEAD>
33603 <TITLE>OPTION: Bold</TITLE>
33604 </HEAD>
33605 <BODY>
33606 <H1>OPTION: Bold</H1>
33608 The color for this particular section may have the Bold attribute turned
33609 on or off.
33610 Setting bold will cause the characters to be bold.
33612 <A HREF="h_color_setup">Descriptions of the available commands</A>
33614 Look <A HREF="h_edit_nav_cmds">here</A>
33615 to see the available Editing and Navigation commands.
33617 &lt;End of help on this topic&gt;
33618 </BODY>
33619 </HTML>
33620 ====== h_config_kw_color =====
33621 <HTML>
33622 <HEAD>
33623 <TITLE>OPTION: Keyword Colors</TITLE>
33624 </HEAD>
33625 <BODY>
33626 <H1>OPTION: Keyword Colors</H1>
33628 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
33629 Keywords are displayed as part of the Subject by default.
33630 They are also displayed as part of the Subject if the tokens
33631 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
33632 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
33633 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
33634 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
33636 For example, you might have set up a Keyword
33637 &quot;Work&quot; using the
33638 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
33639 You could cause that Keyword to show up as a special color
33640 by setting up the Keyword Color using this option, and then including it
33641 in the MESSAGE INDEX screen using one of the tokens listed above in the
33642 <!--#echo var="VAR_index-format"-->.
33644 <A HREF="h_color_setup">Descriptions of the available commands</A>
33646 Look <A HREF="h_edit_nav_cmds">here</A>
33647 to see the available Editing and Navigation commands.
33649 &lt;End of help on this topic&gt;
33650 </BODY>
33651 </HTML>
33652 ====== h_config_customhdr_color =====
33653 <HTML>
33654 <HEAD>
33655 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
33656 </HEAD>
33657 <BODY>
33658 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
33660 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
33661 For example, you may set the color of the Subject header or the From header.
33662 The foreground color is the color of the actual character and the
33663 background color is the color of the area behind the character.
33665 In addition to setting the colors for particular headers (like the Subject)
33666 you may also set a color to be used for all headers unless overridden by a
33667 more specific Viewer Header Color.
33668 To do this use the
33669 <A HREF="h_config_header_general_color">Header General Color</A>.
33671 For Header Colors,
33672 there is an additional line on the
33673 screen labeled &quot;Pattern to match&quot;.
33674 If you leave that blank, then the whole field for that header will
33675 be colored.
33676 However, if you give a pattern to match, the coloring will only take place
33677 if there is a match for that pattern in the value of the field.
33678 For example, if you are working on a color for the Subject header and
33679 you fill in a pattern of &quot;important&quot;, then only Subjects that
33680 contain the word &quot;important&quot; will be colored.
33682 If the pattern you enter is a comma-separated list of patterns, then coloring
33683 happens if any of those patterns matches.
33685 <A HREF="h_color_setup">Descriptions of the available commands</A>
33687 Look <A HREF="h_edit_nav_cmds">here</A>
33688 to see the available Editing and Navigation commands.
33690 &lt;End of help on this topic&gt;
33691 </BODY>
33692 </HTML>
33693 ====== h_config_indextoken_color =====
33694 <HTML>
33695 <HEAD>
33696 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
33697 </HEAD>
33698 <BODY>
33699 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
33701 This option allows you to set up the color in which any token, not specified by the
33702 previous options, will be colored in the MESSAGE INDEX screen. 
33704 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
33705 a token that can be used in the index format. 
33706 The list of available tokens is <A HREF="h_index_tokens">here</A>.
33708 If you fail to enter a valid token your entry will be ignored, and you will be asked to
33709 enter a new one. Once you have entered a valid token, a line will be added to the
33710 configuration screen that you can use to set up the colors in which that token will
33711 be painted. This is done in the same way that you configure colors for other
33712 variables.
33714 <A HREF="h_color_setup">Descriptions of the available commands</A>
33716 Look <A HREF="h_edit_nav_cmds">here</A>
33717 to see the available Editing and Navigation commands.
33719 &lt;End of help on this topic&gt;
33720 </BODY>
33721 </HTML>
33722 ====== h_config_customhdr_pattern =====
33723 <HTML>
33724 <HEAD>
33725 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
33726 </HEAD>
33727 <BODY>
33728 <H1>OPTION: Viewer Header Color Pattern</H1>
33730 If you leave this blank, then the whole field for the header will
33731 be colored.
33732 If you give a pattern to match, the coloring will only take place
33733 if there is a match for that pattern in the value of the field.
33734 For example, if you are working on a color for the Subject header and
33735 you fill in a pattern of &quot;important&quot;, then only Subjects that
33736 contain the word &quot;important&quot; will be colored.
33738 For address headers (like From and To) and for the Newsgroups header,
33739 a pattern match will cause only the matched addresses or newsgroups to be
33740 colored.
33741 If there is no pattern to match, then all of the addresses or newsgroups
33742 in the relevant header will be colored.
33744 The matching pattern may be a comma-separated list of patterns to match
33745 instead of a single pattern.
33746 For example, you could use the pattern &quot;important,urgent&quot; which would
33747 cause a match if either the word &quot;important&quot; or the word
33748 &quot;urgent&quot; appeared in the value of the header.
33749 You could list several comma-separated email addresses in the Header
33750 From Color pattern so that those addresses will be colored when any of
33751 them appear in the From header.
33753 To add a new matching pattern or change the existing pattern use the 
33754 <!--chtml if pinemode="function_key"-->
33755 &quot;F4&quot;
33756 <!--chtml else-->
33757 &quot;C&quot;
33758 <!--chtml endif-->
33759 &quot;Change&quot; command that is available when the &quot;Pattern to
33760 match&quot; line is highlighted.
33762 <!--chtml if pinemode="function_key"-->
33763 &quot;F10&quot;
33764 <!--chtml else-->
33765 &quot;D&quot;
33766 <!--chtml endif-->
33767 &quot;Delete&quot; command may be used to quickly remove all patterns
33768 for a particular header.
33770 &lt;End of help on this topic&gt;
33771 </BODY>
33772 </HTML>
33773 ====== h_color_setup =====
33774 <HTML>
33775 <HEAD>
33776 <TITLE>SETUP COLOR COMMANDS</TITLE>
33777 </HEAD>
33778 <BODY>
33779 <H1>SETUP COLOR COMMANDS</H1>
33780 <!--chtml if pinemode="function_key"-->
33781 <PRE>
33782 Available Commands -- Group 1
33783 -------------------------------
33784 F1  Display this help text
33785 F2  Show other available commands
33786 F3  Exit to MAIN MENU
33787 F4  Select the highlighted foreground or background color
33788 F5  Move to previous line
33789 F6  Move to next line
33790 F7  Previous page
33791 F8  Next page
33792 F9  Add a config section for a header field
33793 F10 Restore all default colors (for all sections)
33794 F11 Print color configuration screen
33795 F12 Whereis (search for word)
33797 Available Commands -- Group 2
33798 -------------------------------
33799 F1  Display this help text
33800 F2  Show other available commands
33801 F5  Delete config section for highlighted header field
33802 F6  Shuffle the order of Header Color sections
33803 </PRE>
33804 <!--chtml else-->
33805 <PRE>
33806 General commands
33807 -------------------------------------------------
33808  ?  Display this help text     E  Exit back to MAIN MENU
33809  P  Previous Line              N  Next Line
33810  -  Previous page             Spc (space bar) Next page
33811  W  WhereIs (search for word)  %  Print color configuration screen
33813 Color Setup Commands
33814 ------------------------------------------------
33815  *  Select the highlighted foreground or background color
33816  A  Add a config section for a header field
33817  D  Delete config section for highlighted header field
33818  R  Restore all default colors (for all sections)
33819  $  Shuffle the order of Header Color sections
33820 </PRE>
33821 <!--chtml endif-->
33823 <H2>Description of the Setup Color Screen</H2>
33825 From this screen you may turn on color and set the colors of
33826 various parts of the Alpine display.
33827 For help on turning on color move your cursor into the Color Style section
33828 at the top of the Setup Color screen and ask for help.
33831 There are several sections in the Setup Color Screen.
33832 At the top are some settings that handle the style of color used
33833 with your terminal emulator (UNIX only), and some settings that
33834 control how the current indexline and the titlebar are colored.
33835 After that comes a long section called GENERAL COLORS that allows
33836 you to set the color of many elements in the Alpine screens.
33837 For example, the color of the titlebar, status messages,
33838 selectable links, quotes and signatures in messages, and so on.
33839 After that is a section called INDEX COLORS that allows you to
33840 set the colors of various pieces of the displayed index lines in
33841 the MESSAGE INDEX screen.
33842 The next section is HEADER COLORS. This is for coloring headers of
33843 messages in the MESSAGE TEXT screen in just about any way you would like.
33844 Finally, the KEYWORD COLORS section allows you to highlight
33845 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33846 in the MESSAGE INDEX screen.
33849 To change a color, highlight the color you want to change (for example,
33850 the Status Color) by moving
33851 the cursor into it.
33852 You may want to read the help text for the color to see a brief description
33853 of what you are coloring.
33854 Then press &quot;C&quot; for Change to set the color to something new.
33855 That will put you into a screen with two columns of colors, one for
33856 the foreground color and one for the background color.
33857 The foreground color is just the color you want the actual characters
33858 to be and the background color is the color of the rest of the rectangle
33859 behind the characters.
33860 Select the foreground and background colors desired by using the Next and
33861 Prev keys to highlight the color, and the * command to select it.
33863 To set a color to its default value, set the X in the Default line at
33864 the bottom of the list of colors.
33867 The HEADER COLORS section is a little bit different from the others.
33868 Besides coloring the specific fields that Alpine knows about, you may also
33869 color specific header fields when viewing a message in the MESSAGE TEXT
33870 screen.
33871 For example, you may color the Subject header a particular color.
33872 There are a few commands for use with headers.
33873 The &quot;AddHeader&quot; command adds a section to the color
33874 configuration screen that allows you to set the color for that header.
33875 You'll be asked for the name of the header field you want to color.
33876 If you wanted to color the Subject, you would answer
33877 with the word &quot;subject&quot;.
33878 Once you've added a header field, the color setting works just like the
33879 other color fields, except that there is an additional line on the
33880 configuration screen labeled &quot;Pattern to match&quot;.
33881 If you leave that blank, then the whole field for that header will always
33882 be colored.
33883 However, if you give a pattern to match, the coloring will only take place
33884 if there is a match for that pattern in the value of the field.
33885 For example, if you are working on a color for the Subject header and
33886 you fill in a pattern of &quot;important&quot;, then only Subjects that
33887 contain the word &quot;important&quot; will be colored.
33889 The &quot;DeleteHdr&quot; command removes a header section from the
33890 configuration altogether.
33891 The &quot;Shuffle&quot; command changes the order of header sections.
33892 This is only necessary if you use header sections with pattern fields.
33893 For example, if you have two Subject sections, one with one pattern and
33894 another with another pattern, and the subject for a particular message
33895 happens to match both, then the color from the first match is used.
33898 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33899 Each section will change to the default value used for that section when
33900 color is first enabled.
33901 When you restore all default colors the color settings for the Header Colors
33902 will be unset (since that's the default), but the header fields you've
33903 added will remain so that you may easily reset them.
33904 In order to get rid of them completely you'd have to use
33905 the &quot;DeleteHdr&quot; command.
33908 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33909 may be set with matching rules and that is configured separately from
33910 the rest of the color settings described here.
33911 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33912 instead of in the Setup/Kolor section.
33914 <P><UL>
33915 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33916 </UL><P>
33917 &lt;End of help on this topic&gt;
33918 </BODY>
33919 </HTML>
33920 ====== h_config_news_uses_recent ======
33921 <HTML>
33922 <HEAD>
33923 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33924 </HEAD>
33925 <BODY>
33926 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33928 This feature causes certain messages to be marked as "New" in the
33929 MESSAGE INDEX of newsgroups.
33930 This feature is set by default.
33934 When opening a newsgroup, Alpine will consult your "newsrc" file and
33935 determine the last message you have previously disposed of via the "D"
33936 key.  If this feature is set, any subsequent messages will be shown in the
33937 Index with an "N", and the first of these messages will be highlighted.
33938 Although this is only an approximation of true "New" or "Unseen"
33939 status, it provides a useful cue to distinguish more-or-less recent
33940 messages from those you have seen previously, but are not yet ready to
33941 mark deleted.
33945 Background: your "newsrc" file (used to store message status information
33946 for newsgroups) is only capable of storing a single flag, and Alpine uses
33947 this to record whether or not you are "done with" a message, as
33948 indicated by marking the message as "Deleted".  Unfortunately, this
33949 means that Alpine has no way to record exactly which messages you have
33950 previously seen, so it normally does not show the "N" status flag for
33951 any messages in a newsgroup. This feature enables a starting
33952 *approximation* of seen/unseen status that may be useful.
33954 &lt;End of help on this topic&gt;
33955 </BODY>
33956 </HTML>
33957 ====== h_config_expose_hidden_config =====
33958 <HTML>
33959 <HEAD>
33960 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33961 </HEAD>
33962 <BODY>
33963 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33965 If set, this causes configuration options and features that are normally
33966 hidden from view to be editable in the Setup/Config screen.
33969 The purpose of this feature is to allow you to change configuration
33970 features and variables that are normally hidden.
33971 This is particularly useful if you are using a remote configuration,
33972 where it is difficult to edit the contents manually, but it may also be used
33973 on a local pinerc configuration file.
33975 If set, several configuration variables and features that are normally
33976 hidden from view will show up in the Setup/Configuration screen.
33977 They will be at the bottom of the configuration screen.
33978 You can find them by searching for the words &quot;hidden configuration&quot;.
33981 Note that this is an advanced feature that should be used with care.
33982 The reason that this part of the configuration is normally hidden is because
33983 there is a significant potential for causing problems if you change these
33984 variables.
33985 If something breaks after a change try changing it back to see if that is
33986 what is causing the problem.
33987 There are also some variables that are normally hidden because they are
33988 manipulated through Alpine in other ways.
33989 For example, colors are normally set using the Setup/Kolors screen and
33990 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33991 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33992 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33993 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33994 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33995 internally by Alpine and not set directly by the user.
33997 <UL>   
33998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33999 </UL><P>
34000 &lt;End of help on this topic&gt;
34001 </BODY>
34002 </HTML>
34003 ====== h_config_disable_signature_edit =====
34004 <HTML>
34005 <HEAD>
34006 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
34007 </HEAD>
34008 <BODY>
34009 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
34011 If set, this disables the editing of signature files from within
34012 the Setup/Config screen.
34014 <UL>   
34015 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34016 </UL><P>
34017 &lt;End of help on this topic&gt;
34018 </BODY>
34019 </HTML>
34020 ====== h_config_disable_roles_templateedit =====
34021 <HTML>
34022 <HEAD>
34023 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
34024 </HEAD>
34025 <BODY>
34026 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
34028 If set, this disables the editing of template files within the
34029 Role setup screen.
34031 <UL>   
34032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34033 </UL><P>
34034 &lt;End of help on this topic&gt;
34035 </BODY>
34036 </HTML>
34037 ====== h_config_disable_roles_sigedit =====
34038 <HTML>
34039 <HEAD>
34040 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
34041 </HEAD>
34042 <BODY>
34043 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
34045 If set, this disables the editing of signature files within the
34046 Role setup screen.
34048 <UL>   
34049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34050 </UL><P>
34051 &lt;End of help on this topic&gt;
34052 </BODY>
34053 </HTML>
34054 ====== h_config_disable_roles_setup =====
34055 <HTML>
34056 <HEAD>
34057 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
34058 </HEAD>
34059 <BODY>
34060 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
34062 If set, this disables the Setup/Rules/Roles command.
34064 <UL>   
34065 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34066 </UL><P>
34067 &lt;End of help on this topic&gt;
34068 </BODY>
34069 </HTML>
34070 ====== h_config_disable_pipes_in_templates =====
34071 <HTML>
34072 <HEAD>
34073 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
34074 </HEAD>
34075 <BODY>
34076 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
34078 By default, if a template file name is followed by a vertical bar (|) then
34079 that causes the file to be executed to produce the text for the template.
34080 If this feature is set, then this is not allowed.
34082 <UL>   
34083 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34084 </UL><P>
34085 &lt;End of help on this topic&gt;
34086 </BODY>
34087 </HTML>
34088 ====== h_config_disable_pipes_in_sigs =====
34089 <HTML>
34090 <HEAD>
34091 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
34092 </HEAD>
34093 <BODY>
34094 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
34096 By default, if a signature file name is followed by a vertical bar (|) then
34097 that causes the file to be executed to produce the text for the signature.
34098 If this feature is set, then this is not allowed.
34100 <UL>   
34101 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34102 </UL><P>
34103 &lt;End of help on this topic&gt;
34104 </BODY>
34105 </HTML>
34106 ====== h_config_disable_password_cmd =====
34107 <HTML>
34108 <HEAD>
34109 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
34110 </HEAD>
34111 <BODY>
34112 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
34114 If set, then the Setup/Newpassword command is disabled.
34116 <UL>   
34117 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34118 </UL><P>
34119 &lt;End of help on this topic&gt;
34120 </BODY>
34121 </HTML>
34122 ====== h_config_disable_password_caching =====
34123 <HTML>
34124 <HEAD>
34125 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
34126 </HEAD>
34127 <BODY>
34128 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
34130 Normally, loginname/password combinations are cached in Alpine so that
34131 you do not have to enter the same password more than once in a session.
34132 A disadvantage to this approach is that the password must be stored in
34133 the memory image of the running Alpine in order that it can be re-used.
34134 In the event that Alpine crashes and produces a core dump, and that core
34135 dump is readable by others, the loginname and password could be read
34136 from the core dump.
34138 If this feature is set, then the passwords will not be cached and you
34139 will have to retype the password whenever Alpine needs it.
34140 Even with this feature set there is still some chance that the core
34141 file will contain a password, so care should be taken to make the
34142 core files unreadable.
34144 NOTE: If PASSFILE caching is enabled, this does not disable it.
34145 That is a separate and independent feature.
34146 <UL>   
34147 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34148 </UL><P>
34149 &lt;End of help on this topic&gt;
34150 </BODY>
34151 </HTML>
34152 ====== h_config_disable_password_file_saving =====
34153 <HTML>
34154 <HEAD>
34155 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
34156 </HEAD>
34157 <BODY>
34158 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
34160 <P> This feature disables caching of passwords, even if your version of Alpine allows
34161 saving passwords. For MAC OS users saving passwords is done using the Apple Key Chain, for
34162 Windows users caching passwords is done using the internal Windows Credentials, and for
34163 other users this is done by using the password file. In this feature, the phrase
34164 &quot;password file&quot; is a misnomer and represents the way in which your system
34165 stores passwords.
34168 Specifically, this feature changes the behavior of Alpine when a login name and password combination
34169 for a specific server is not found in the password file. The default behavior is that
34170 Alpine will ask the user if they wish to save this information in the password file for future
34171 use. It is assumed that if a user created a password file it is because they intend
34172 to use it, but in some instances a user might want to save some passwords and not others.
34173 In this case, enabling this feature will make Alpine not add any more passwords to the
34174 password file and will only use the passwords that it already saved. If you wish to allow
34175 Alpine to save more passwords in the password file, disable this feature.
34177 <P> Regardless of which method Alpine uses to store passwords, this is done in a secure
34178 way when compiled with OpenSSL or LibreSSL. This is very likely to be your version, and
34179 you can check this by reading the encryption features
34180 <A HREF="X-Alpine-Config:">supported</A> by Alpine.
34183 <UL>   
34184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34185 </UL><P>
34186 &lt;End of help on this topic&gt;
34187 </BODY>
34188 </HTML>
34189 ====== h_config_disable_kb_lock =====
34190 <HTML>
34191 <HEAD>
34192 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
34193 </HEAD>
34194 <BODY>
34195 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
34197 If set, then the Keyboard Lock command is removed from the MAIN MENU.
34199 <UL>   
34200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34201 </UL><P>
34202 &lt;End of help on this topic&gt;
34203 </BODY>
34204 </HTML>
34205 ====== h_config_disable_config_cmd =====
34206 <HTML>
34207 <HEAD>
34208 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
34209 </HEAD>
34210 <BODY>
34211 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
34213 If set, then the Setup/Config screen is disabled.
34215 <UL>   
34216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34217 </UL><P>
34218 &lt;End of help on this topic&gt;
34219 </BODY>
34220 </HTML>
34221 ====== h_config_allow_chg_from =====
34222 <HTML>
34223 <HEAD>
34224 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
34225 </HEAD>
34226 <BODY>
34227 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
34229 This feature affects Alpine's handling of the &quot;From:&quot; header field
34230 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
34231 option.
34233 If this feature is set then the From line can be changed just like
34234 all the other header fields that can be changed.
34235 This feature defaults to <EM>ON</EM>.
34237 Even with this feature turned ON (the default) you will not be able 
34238 to change the From header unless you add it to your list of
34239 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
34240 You may also want to change the
34241 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
34242 if you want the From header to always show up in the composer without
34243 having to type the Rich Headers command first.
34245 Note that many sites restrict the use of this feature in order to
34246 reduce the chance of falsified addresses and misdirected mail.
34247 If you want to change the value of what gets included in the From header
34248 in messages you send
34249 look <A HREF="h_config_change_your_from">here</A> for a description.
34251 <UL>   
34252 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34253 </UL><P>
34254 &lt;End of help on this topic&gt;
34255 </BODY>
34256 </HTML>
34257 ====== h_config_disable_collate =====
34258 <HTML>
34259 <HEAD>
34260 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
34261 </HEAD>
34262 <BODY>
34263 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
34265 This is a hard to understand feature that should only be used in rare cases.
34266 Normally, the C function call
34268 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
34270 is used by Alpine.
34271 If you want to try turning it off,
34272 setting this feature will turn it off.
34273 This part of the locale has to do with the sort order
34274 of characters in your locale.
34276 <UL>   
34277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34278 </UL><P>
34279 &lt;End of help on this topic&gt;
34280 </BODY>
34281 </HTML>
34282 ====== h_config_quell_attach_extra_prompt =====
34283 <HTML>
34284 <HEAD>
34285 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
34286 </HEAD>
34287 <BODY>
34288 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
34290 By default, when you attempt to view an attachment externally
34291 from the &quot;Attachment View&quot; screen, you are asked if you
34292 really want to view the selected attachment.
34295 If this feature is set, you will <B>not</B> be prompted to confirm
34296 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
34297 prompt. This feature was added for those wanting to preserve that
34298 behavior (along with 
34299 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
34302 <UL>   
34303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34304 </UL><P>
34305 &lt;End of help on this topic&gt;
34306 </BODY>
34307 </HTML>
34308 ====== h_config_quell_attach_ext_warn =====
34309 <HTML>
34310 <HEAD>
34311 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
34312 </HEAD>
34313 <BODY>
34314 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
34317 This feature suppresses the extra warning you can get when trying
34318 to view an attachment for which there is no mime-type match.  Turning
34319 on this feature will just run the program according to extension
34320 instead of first warning the user that it will run according to the
34321 file's extension.
34323 This feature can be used along side 
34324 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
34325 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
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_mailcap_params =====
34334 <HTML>
34335 <HEAD>
34336 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
34337 </HEAD>
34338 <BODY>
34339 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
34341 If set, this will allow mailcap named parameter substitution to occur
34342 in mailcap entries.
34343 By default, this is turned off to prevent security problems that may occur
34344 with some incorrect mailcap configurations.
34345 For more information, see RFC1524 and look for "named parameters" in the
34346 text of the RFC.
34348 <UL>   
34349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34350 </UL><P>
34351 &lt;End of help on this topic&gt;
34352 </BODY>
34353 </HTML>
34354 ====== h_config_disable_shared =====
34355 <HTML>
34356 <HEAD>
34357 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
34358 </HEAD>
34359 <BODY>
34360 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
34362 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
34363 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
34364 will be disabled.
34365 The reason this feature exists is because there are some implementations
34366 of system password lookup routines that are very slow when presented with
34367 a long loginname that does not exist.
34368 This feature could be set to prevent the delay at startup time when the
34369 names above are searched for in the password file.
34371 <UL>   
34372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34373 </UL><P>
34374 &lt;End of help on this topic&gt;
34375 </BODY>
34376 </HTML>
34377 ====== h_config_hide_nntp_path =====
34378 <HTML>
34379 <HEAD>
34380 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
34381 </HEAD>
34382 <BODY>
34383 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
34385 Normally the Path header that Alpine generates when posting to a newsgroup
34386 contains the name of the computer from which the message is being sent and
34387 the user name.
34388 Some believe that this information is used by spammers.
34389 If this feature is set, that information will be replaced with the text
34391 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
34393 instead.
34395 It should be noted that many servers being connected to will still reveal
34396 the information that this feature attempts to protect.
34398 <UL>   
34399 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34400 </UL><P>
34401 &lt;End of help on this topic&gt;
34402 </BODY>
34403 </HTML>
34404 ====== h_config_no_bezerk_zone =====
34405 <HTML>
34406 <HEAD>
34407 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
34408 </HEAD>
34409 <BODY>
34410 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
34412 POSIX mandates a timezone in UNIX mailbox format folder delimiters
34413 (the line that begins with From <SPACE>).
34414 Some versions of Berkeley mail have trouble with this, and don't recognize
34415 the line as a message delimiter.
34416 If this feature is set, the timezone will be left off the delimiter line.
34418 <UL>   
34419 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34420 </UL><P>
34421 &lt;End of help on this topic&gt;
34422 </BODY>
34423 </HTML>
34424 ====== h_config_quell_domain_warn =====
34425 <HTML>
34426 <HEAD>
34427 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
34428 </HEAD>
34429 <BODY>
34430 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
34432 When your configuration is set up so that your domain name contains no dots,
34433 it is usually a configuration error.
34434 By default, Alpine will warn you about this when you start it up.
34435 You will see a warning message that looks like
34438 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
34441 If this feature is set, the warning is turned off.
34443 <UL>   
34444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34445 </UL><P>
34446 &lt;End of help on this topic&gt;
34447 </BODY>
34448 </HTML>
34449 ====== h_config_quell_imap_env =====
34450 <HTML>
34451 <HEAD>
34452 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
34453 </HEAD>
34454 <BODY>
34455 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
34457 In the MESSAGE INDEX screen, if the open folder is being accessed
34458 using IMAP, Alpine normally tries to paint the index lines on the screen
34459 as soon as the information arrives from the IMAP server.
34460 This means that the index information makes it onto the screen more quickly
34461 than it otherwise would.
34462 This sometimes results in behavior that bothers some users.
34463 For example, when paging to a new page of the index, it may be possible for
34464 the lines to be painted on the screen in a random order, rather than from
34465 top to bottom.
34468 Setting this feature causes Alpine to wait for all of the information
34469 to be gathered before it paints the index screen.
34470 Once it collects all of the information, the screen will be painted quickly
34471 from top to bottom.
34473 <UL>   
34474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34475 </UL><P>
34476 &lt;End of help on this topic&gt;
34477 </BODY>
34478 </HTML>
34479 ====== h_config_quell_news_env =====
34480 <HTML>
34481 <HEAD>
34482 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
34483 </HEAD>
34484 <BODY>
34485 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
34487 In the MESSAGE INDEX screen, if the open folder is being accessed
34488 using NNTP (News), Alpine normally tries to paint the index lines on the screen
34489 as soon as the information arrives from the NNTP server.
34490 This means that the index information makes it onto the screen more quickly
34491 than it otherwise would.
34492 This sometimes results in behavior that bothers some users.
34493 For example, when paging to a new page of the index, it may be possible for
34494 the lines to be painted on the screen in a random order, rather than from
34495 top to bottom.
34498 Setting this feature causes Alpine to wait for all of the information
34499 to be gathered before it paints the index screen.
34500 Once it collects all of the information, the screen will be painted quickly
34501 from top to bottom.
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_quell_content_id =====
34510 <HTML>
34511 <HEAD>
34512 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
34513 </HEAD>
34514 <BODY>
34515 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
34517 This feature changes the behavior of Alpine when sending messages.
34518 It is intended to work around a bug in Microsoft's Outlook XP mail user
34519 agent.
34520 As of this writing, Microsoft has acknowledged the bug but
34521 has not added it to the Knowledge Base.
34522 We have been told that there will be a post-SP1 hotfix for Outlook XP.
34523 This particular bug has bug fix number OfficeQFE:4781.
34524 The nature of the bug is that messages with attachments that
34525 contain a Content-ID header (which standard Alpine attachments do)
34526 do not show the attachment indicator (a paperclip) when viewed with
34527 Outlook XP.
34528 So the user has no indication that the message contains an attachment.
34531 If this feature is set then Alpine will remove most Content-ID headers
34532 before sending a message.
34533 If an attachment is of type MESSAGE, then the existing Content-ID headers
34534 inside the message will be left intact.
34535 This would only happen with Alpine if a message was forwarded as an attachment
34536 or if a message with a message attached was forwarded.
34537 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
34538 the Content-ID headers of the alternative parts will not be removed.
34541 Because the Content-ID header is a standard part of MIME it is possible
34542 that setting this feature will break something.
34543 For example, if an attachment has a Content-ID header that is necessary
34544 for the correct functioning of that attachment, it is possible that Alpine
34545 may remove that header when the attachment is forwarded.
34546 However, it seems fairly safe at this time.
34549 <UL>   
34550 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34551 </UL><P>
34552 &lt;End of help on this topic&gt;
34553 </BODY>
34554 </HTML>
34555 ====== h_config_winpos_in_config =====
34556 <HTML>
34557 <HEAD>
34558 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
34559 </HEAD>
34560 <BODY>
34561 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
34563 PC-Alpine only.
34566 Normally, PC-Alpine will store its window size and position in the
34567 Windows Registry.
34568 This is convenient if you want to use the same remote
34569 configuration from more than one PC.
34570 If you use multiple configuration files to start PC-Alpine, you may want
34571 to store the window size and position in the configuration file instead
34572 of in the Registry.
34573 Setting this feature causes the value to be stored in 
34574 <A HREF="h_config_window_position">Window-Position</A>.
34577 <UL>   
34578 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34579 </UL><P>
34580 &lt;End of help on this topic&gt;
34581 </BODY>
34582 </HTML>
34583 ====== h_config_quell_ssl_largeblocks =====
34584 <HTML>
34585 <HEAD>
34586 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
34587 </HEAD>
34588 <BODY>
34589 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
34591 PC-Alpine only.
34593 This feature changes the behavior of fetching messages
34594 and attachments so that the message data is fetched in chunks no larger
34595 than 12K bytes.
34596 This works around a bug in Microsoft's SSL/TLS support.
34597 Some versions of Microsoft SSL are not able to read full-sized (16K)
34598 SSL/TLS packets.
34599 Some servers will send such packets and this will
34600 cause PC-Alpine to crash with the error
34603 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
34606 Microsoft is aware of the problem and has developed a hotfix for it, it is
34607 discussed in article 300562 in the Microsoft Knowledge Base.
34609 <UL>   
34610 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34611 </UL><P>
34612 &lt;End of help on this topic&gt;
34613 </BODY>
34614 </HTML>
34615 ====== h_config_quell_partial =====
34616 <HTML>
34617 <HEAD>
34618 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
34619 </HEAD>
34620 <BODY>
34621 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
34623 Partial fetching is a feature of the IMAP protocol.
34624 By default, Alpine
34625 will use partial fetching when copying the contents of a message or attachment
34626 from the IMAP server to Alpine.
34627 This means that the fetch will be done in many
34628 small chunks instead of one big chunk. The main benefit of this approach is
34629 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
34630 to stop the fetch early. In some cases partial fetching may cause a performance
34631 problem so that the fetching of data takes significantly longer when partial
34632 fetching is used. Turning on this feature will turn off partial fetching.
34634 <UL>   
34635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34636 </UL><P>
34637 &lt;End of help on this topic&gt;
34638 </BODY>
34639 </HTML>
34640 ====== h_config_quell_personal_name_prompt =====
34641 <HTML>
34642 <HEAD>
34643 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
34644 </HEAD>
34645 <BODY>
34646 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
34648 PC-Alpine only.  This feature quells the prompting for a 
34649 <A HREF="h_config_pers_name">personal name</A>.  This
34650 prompt normally happens before composing a message, and only happens when
34651 there is no personal name already set.
34653 <UL>   
34654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34655 </UL><P>
34656 &lt;End of help on this topic&gt;
34657 </BODY>
34658 </HTML>
34659 ====== h_config_quell_user_id_prompt =====
34660 <HTML>
34661 <HEAD>
34662 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
34663 </HEAD>
34664 <BODY>
34665 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
34667 PC-Alpine only.  This feature quells the prompting for a 
34668 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
34669 if the information can be obtained from the login name used
34670 to open the INBOX.  Normally, this prompt happens before composing
34671 a message, and only happens when there is no user-id already set
34672 in the configuration.
34674 With this feature set, composing a message is only possible after
34675 establishing a connection to the INBOX.
34677 <UL>   
34678 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34679 </UL><P>
34680 &lt;End of help on this topic&gt;
34681 </BODY>
34682 </HTML>
34683 ====== h_config_save_aggregates =====
34684 <HTML>
34685 <HEAD>
34686 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
34687 </HEAD>
34688 <BODY>
34689 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
34691 This feature will optimize an aggregate copy operation, if
34692 possible, by issuing a single IMAP <EM>COPY</EM> command with a
34693 list of the messages to be copied.
34694 This feature is set by default.
34695 This may reduce network traffic and elapsed time for the Save.
34696 <EM>However, many IMAP servers (including the UW IMAP server) do
34697 not preserve the order of messages when this optimization is applied.</EM>
34698 If this feature is not set, 
34699 Alpine will copy each message individually and the order of the messages
34700 will be preserved.
34702 <UL>   
34703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34704 </UL><P>
34705 &lt;End of help on this topic&gt;
34706 </BODY>
34707 </HTML>
34708 ====== h_config_use_system_translation =====
34709 <HTML>
34710 <HEAD>
34711 <TITLE>FEATURE: Use System Translation</TITLE>
34712 </HEAD>
34713 <BODY>
34714 <H1>FEATURE: Use System Translation</H1>
34716 UNIX Alpine only.
34718 Alpine normally uses its own internal software to convert between the multi-byte
34719 representation of characters and the Unicode representation of those
34720 same characters.
34721 It converts from the multi-byte characters your keyboard produces to Unicode,
34722 and from Unicode to the multi-byte characters your display expects.
34723 Alpine also uses its own internal software to decide how much space on
34724 the screen a particular Unicode character will occupy.
34727 Setting this feature tells Alpine to use the system-supplied routines to
34728 perform these tasks instead.
34729 In particular there are three tasks and three system routines that will
34730 be used for these tasks.
34733 To convert from multi-byte to Unicode the routine
34736 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
34739 is used.
34740 To convert from Unicode to multi-byte the routine
34743 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
34746 is used.
34747 And to find the screen width a particular Unicode character will
34748 occupy the routine used is
34751 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34754 This feature has been only lightly tested.
34755 The internal routines should normally be used unless you run into
34756 a problem that you think may be solved by using the system routines.
34757 Note that your environment needs to be set up for these
34758 routines to work correctly.
34759 In particular, the LANG or LC_CTYPE variable in your environment will
34760 need to be set.
34763 <UL>   
34764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34765 </UL><P>
34766 &lt;End of help on this topic&gt;
34767 </BODY>
34768 </HTML>
34769 ====== h_config_suspend_spawns =====
34770 <HTML>
34771 <HEAD>
34772 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34773 </HEAD>
34774 <BODY>
34775 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34777 This feature affects Alpine's behavior when process suspension is enabled
34778 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34779 temporarily interact with the operating system command &quot;shell&quot; 
34780 without
34781 quitting Alpine, and then subsequently resume the still-active Alpine session.
34784 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34785 is set and subsequently the Ctrl-Z key
34786 is pressed, Alpine will normally suspend itself and return temporary control
34787 to Alpine's parent shell process.  However, if this feature is set, Alpine
34788 will instead create an inferior subshell process.  This is useful when the
34789 parent process is not intended to be used interactively.  Examples include
34790 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34791 or via a menu system.<P>
34793 Note that one typically resumes a suspended Alpine by entering the Unix
34794 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34795 enter the &quot;exit&quot; command instead.
34797 <UL>   
34798 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34799 </UL><P>
34800 &lt;End of help on this topic&gt;
34801 </BODY>
34802 </HTML>
34803 ====== h_config_8bit_smtp =====
34804 <HTML>
34805 <HEAD>
34806 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34807 </HEAD>
34808 <BODY>
34809 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34811 This feature affects Alpine's behavior when sending mail.
34812 By default, this feature is set.
34813 Internet standards
34814 require that all electronic mail messages traversing the global Internet
34815 consist of 7bit ASCII characters unless a pair of cooperating mail 
34816 transfer agents explicitly agree to allow 8bit messages.  In general, 
34817 then, exchanging messages in non-ASCII characters requires MIME encoding.
34819 However, there are now Internet standards that allow for unencoded 8bit
34820 exchange of messages between cooperating systems.  When this feature is set
34821 Alpine will try to negotiate unencoded 8bit transmission during the
34822 sending process.  Should the negotiation fail, Alpine will fall back to its
34823 ordinary encoding rules. 
34825 Note, this feature relies on your system's mail transport agent or
34826 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34827 having the negotiation mechanism introduced in
34828 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34829 &quot;8BITMIME&quot;. 
34831 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34832 it is possible that this feature might cause problems for some servers. 
34833 <P><UL>
34834 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34835 </UL>
34836 <P>&lt;End of help on this topic&gt;
34837 </BODY>
34838 </HTML>
34839 ====== h_config_8bit_nntp =====
34840 <HTML>
34841 <HEAD>
34842 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34843 </HEAD>
34844 <BODY>
34845 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34847 This feature affects Alpine's behavior when posting news.  
34851 The Internet standard for exchanging USENET news messages (RFC-1036)
34852 specifies that USENET messages should conform to Internet mail standards
34853 and contain only 7bit characters, but much of the news transport software
34854 in use today is capable of successfully sending messages containing 8bit
34855 characters.  Hence, many people believe that it is appropriate to send 8bit
34856 news messages without any MIME encoding.
34860 Moreover, there is no Internet standard for explicitly negotiating 8bit
34861 transfer, as there is for Internet email.  Therefore, Alpine provides the
34862 option of posting unencoded 8bit news messages, though not as the default.
34863 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34864 postings that contain 8bit characters. 
34868 Note, articles may cross a path or pass through news transport software
34869 that is unsafe or even hostile to 8bit characters.  At best this will only
34870 cause the posting to become garbled.  The safest way to transmit 8bit
34871 characters is to leave Alpine's MIME encoding turned on, but recipients
34872 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34873 messages.
34875 &lt;End of help on this topic&gt;
34876 </BODY>
34877 </HTML>
34878 ====== h_config_mark_for_cc =====
34879 <HTML>
34880 <HEAD>
34881 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34882 </HEAD>
34883 <BODY>
34884 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34886 This feature affects Alpine's MESSAGE INDEX display.
34887 By default, a '+' is displayed in the first column if the
34888 message is addressed directly to you.
34889 When this feature is set and the message is not addressed to you, then a
34890 '-' character is displayed if the message is instead Cc'd directly
34891 to you.
34894 <UL>   
34895 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34896 </UL><P>
34897 &lt;End of help on this topic&gt;
34898 </BODY>
34899 </HTML>
34900 ====== h_config_tab_uses_unseen =====
34901 <HTML>
34902 <HEAD>
34903 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34904 </HEAD>
34905 <BODY>
34906 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34908 This feature affects Alpine's behavior when using the TAB
34909 <A HREF="h_common_nextnew">NextNew Command</A>
34910 to move from one folder to the next.
34911 Alpine's usual behavior is to search for folders
34912 with <EM>Recent</EM> messages in them.
34913 Recent messages are messages that have arrived since the last time the
34914 folder was opened.
34917 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34918 messages instead of Recent messages.
34919 Unseen messages remain Unseen until you view them (or flag then as Seen with
34920 the <A HREF="h_common_flag">Flag Command</A>).
34921 Setting this feature allows you to locate messages you have not read
34922 instead of only recently received messages.
34923 When this feature is set, the feature
34924 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34925 will have no effect, so the checking may be slower.
34928 Another reason why you might want to use this feature is that Alpine sometimes
34929 opens folders implicitly behind the scenes, and this clears the
34930 Recent status of all messages in the folder.
34931 One example where this happens is when Saving or filtering a
34932 message to another folder.
34933 If that message has some <A HREF="h_config_keywords">keywords</A>
34934 set, then because of some shortcomings
34935 in the IMAP specification, the best way to ensure that those keywords are
34936 still set in the saved copy of the message is to open the folder and
34937 set the keywords explicitly.
34938 Because this clears the Recent status of all messages in that folder the
34939 folder will not be found by the NextNew command unless this feature is set.
34942 &lt;End of help on this topic&gt;
34943 </BODY>
34944 </HTML>
34945 ====== h_config_tab_new_only =====
34946 <HTML>
34947 <HEAD>
34948 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34949 </HEAD>
34950 <BODY>
34951 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34953 This feature affects Alpine's behavior when using the TAB key to move from
34954 one message to the next.  Alpine's usual behavior is to select the next
34955 unread message or message flagged as "Important".
34959 Setting this feature causes Alpine to skip the messages flagged as important,
34960 and select unread messages exclusively.  Tab behavior when there are no
34961 new messages left to select remains unchanged.
34963 &lt;End of help on this topic&gt;
34964 </BODY>
34965 </HTML>
34966 ====== h_config_warn_if_subj_blank =====
34967 <HTML>
34968 <HEAD>
34969 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34970 </HEAD>
34971 <BODY>
34972 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34974 This feature affects Alpine's behavior when you send a message being
34975 composed.
34976 If this option is set, Alpine will check to see if the message about to be sent
34977 has a subject or not.
34978 If not, you will be asked if you want to send the message anyway.
34981 <UL>   
34982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34983 </UL><P>
34984 &lt;End of help on this topic&gt;
34985 </BODY>
34986 </HTML>
34987 ====== h_config_warn_if_fcc_blank =====
34988 <HTML>
34989 <HEAD>
34990 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34991 </HEAD>
34992 <BODY>
34993 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34995 This feature affects Alpine's behavior when you send a message being
34996 composed.
34997 If this option is set, Alpine will check to see if the message about to be sent
34998 has an Fcc or not.
34999 If not, you will be asked if you want to send the message anyway.
35002 <UL>   
35003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35004 </UL><P>
35005 &lt;End of help on this topic&gt;
35006 </BODY>
35007 </HTML>
35008 ====== h_config_warn_if_no_to_or_cc =====
35009 <HTML>
35010 <HEAD>
35011 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
35012 </HEAD>
35013 <BODY>
35014 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
35016 This feature affects Alpine's behavior when you send a message being
35017 composed.
35018 If this option is set, Alpine will check to see if the message about to be sent
35019 has either a To address, a Cc address, or a Newsgroup.
35020 If none of these is set,
35021 you will be asked if you want to send the message anyway.
35024 This feature is closely related to
35025 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
35026 Alpine will normally ask if you want to copy a message only to the Fcc.
35027 This feature also applies to cases where there is a Bcc but still no To, Cc,
35028 or Newsgroup.
35029 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
35030 message with only an Fcc, then you won't be asked about sending with
35031 a blank To and Cc and Newsgroups header even if this feature is set.
35032 Similarly, if you have already been asked if you want to send to the Fcc
35033 only and you have answered Yes, then you won't be asked again about sending with
35034 blank To, Cc, and Newsgroups headers even if this feature is set.
35037 <UL>   
35038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35039 </UL><P>
35040 &lt;End of help on this topic&gt;
35041 </BODY>
35042 </HTML>
35043 ====== h_config_quell_dead_letter =====
35044 <HTML>
35045 <HEAD>
35046 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
35047 </HEAD>
35048 <BODY>
35049 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
35051 This feature affects Alpine's behavior when you cancel a message being
35052 composed.  Alpine's usual behavior is to write the canceled message to
35053 a file named 
35054 <!--chtml if pinemode="os_windows"-->
35055 &quot;DEADLETR&quot;,
35056 <!--chtml else-->
35057 &quot;dead.letter&quot; in your home directory,
35058 <!--chtml endif-->
35059 overwriting any previous message. Under
35060 some conditions (some routine), this can introduce a noticeable delay.
35061 Setting this feature will cause Alpine NOT to write canceled compositions
35062 into the file.
35064 NOTE: Enabling this feature means NO record of canceled messages is
35065 maintained.
35067 This feature affects the newer option
35068 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
35069 number of dead letter files to keep around.
35070 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
35072 <UL>   
35073 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35074 </UL><P>
35075 &lt;End of help on this topic&gt;
35076 </BODY>
35077 </HTML>
35078 ====== h_config_quell_beeps =====
35079 <HTML>
35080 <HEAD>
35081 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
35082 </HEAD>
35083 <BODY>
35084 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
35086 This feature affects Alpine's behavior when it displays status message
35087 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
35088 will not affect the display of such messages, but will cause those that
35089 emit a beep to become silent.
35092 <UL>   
35093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35094 </UL><P>
35095 &lt;End of help on this topic&gt;
35096 </BODY>
35097 </HTML>
35098 ====== h_config_suppress_user_agent =====
35099 <HTML>
35100 <HEAD>
35101 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
35102 </HEAD>
35103 <BODY>
35104 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
35106 If this feature is set then Alpine will not generate a
35107 <CODE>User-Agent</CODE> header in outgoing messages.
35109 <UL>   
35110 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35111 </UL><P>
35112 &lt;End of help on this topic&gt;
35113 </BODY>
35114 </HTML>
35115 ====== h_config_quell_lock_failure_warnings =====
35116 <HTML>
35117 <HEAD>
35118 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
35119 </HEAD>
35120 <BODY>
35121 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
35123 This feature affects Alpine's behavior when it encounters a problem
35124 acquiring a mail folder lock.  Typically, a secondary file associated
35125 with the mail folder being opened is created as part of the locking
35126 process.  On some systems, such file creation has been administratively
35127 precluded by the system configuration.
35129 Alpine issues a warning when such failures occur, which can become bothersome
35130 if the system is configured to disallow such actions.  Setting this
35131 feature causes Alpine to remain silent when this part of lock creation fails.
35133 WARNING: systems that have been configured in a way that precludes locking
35134 introduce some risk of mail folder corruption when more than one program
35135 attempts to modify the mail folder.  This is most likely to occur to one's
35136 INBOX or other incoming message folder. 
35138 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
35140 <UL>   
35141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35142 </UL><P>
35143 &lt;End of help on this topic&gt;
35144 </BODY>
35145 </HTML>
35146 ====== h_config_enable_role_take ======
35147 <HTML>
35148 <HEAD>
35149 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
35150 </HEAD>
35151 <BODY>
35152 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
35154 Normally, the Take command takes addresses from a message and helps you
35155 put them into your Address Book.
35156 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
35157 you may find it useful
35158 to be able to Take information from a message's headers and put it into
35159 a new Rule.
35160 When this feature is set, you will be given an extra prompt that gives
35161 you the choice to Take into the Address Book or Take into a rule.
35162 <P><UL>
35163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35164 </UL>
35166 &lt;End of help on this topic&gt;
35167 </BODY>
35168 </HTML>
35169 ====== h_config_enable_take_export ======
35170 <HTML>
35171 <HEAD>
35172 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
35173 </HEAD>
35174 <BODY>
35175 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
35177 Normally, the Take command takes addresses from a message and helps you
35178 put them into your Address Book.
35179 When this feature is set, you will be given an extra prompt that gives you
35180 the choice to Take addresses into a file instead of your Address
35181 Book.
35182 Only the user@domain_name part of the address is put in the file.
35183 <P><UL>
35184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35185 </UL>
35187 &lt;End of help on this topic&gt;
35188 </BODY>
35189 </HTML>
35190 ====== h_config_quell_folder_internal_msg ======
35191 <HTML>
35192 <HEAD>
35193 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
35194 </HEAD>
35195 <BODY>
35196 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
35198 This feature determines whether or not Alpine will create 
35199 &quot;pseudo messages&quot; in folders that are in standard Unix or 
35200 MMDF format. <P> 
35202 Alpine will normally create these pseudo messages when they are not already
35203 present in a standard Unix or MMDF folder.  Their purpose is to record
35204 certain mailbox state data needed for correct IMAP and POP server
35205 operation, and also for Alpine to be able to mark messages as Answered when
35206 the Reply has been postponed.<P>
35208 Sites that do not use IMAP/POP for remote mail access, and that need to
35209 support mail tools that are adversely affected by the presence of the
35210 pseudo-messages (e.g. some mail notification tools) may enable this
35211 feature to tell Alpine not to create them.  Note that Alpine's 
35212 &quot;Answered&quot; flag
35213 capability will be adversely affected if this is done.<P>
35215 Note too that, even if this feature is enabled, Alpine will not remove
35216 pseudo-messages when it encounters them (e.g. those created by UW's imapd
35217 or ipopd servers.) This feature has no effect on folders that are not in
35218 standard Unix or MMDF format, as pseudo-messages are not needed in the
35219 other formats to record mailbox state information.
35220 <P><UL>
35221 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35222 </UL>
35224 &lt;End of help on this topic&gt;
35225 </BODY>
35226 </HTML>
35227 ====== h_config_mulnews_as_typed ======
35228 <HTML>
35229 <HEAD>
35230 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
35231 </HEAD>
35232 <BODY>
35233 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
35235 This feature will be of little use to most users.
35236 It has no effect unless the feature
35237 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
35238 is set.
35240 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
35241 then the setting of this feature may have an effect on the names of the
35242 newsrc files used.
35243 Normally, the name of the news server will be canonicalized before it is
35244 used in the newsrc file name.
35245 For example, if you type the news server name
35248 <CENTER><SAMP>servername</SAMP></CENTER>
35251 it is likely that the canonical name will be something like
35254 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
35257 Or it may be the case that
35260 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
35263 is really an alias (a DNS CNAME) for
35266 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
35269 If this feature is not set, then the canonicalized names will be used.
35270 If this feature is set, then the name you typed in (or put in your
35271 configuration) will be used.
35273 <P><UL>
35274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35275 </UL>
35277 &lt;End of help on this topic&gt;
35278 </BODY>
35279 </HTML>
35280 ====== h_config_quell_empty_dirs ======
35281 <HTML>
35282 <HEAD>
35283 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
35284 </HEAD>
35285 <BODY>
35286 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
35288 This feature causes Alpine to remove from the display any directories
35289 that do not contain at least one file or directory.  This can be useful
35290 to prevent overly cluttered folder lists when a collection is stored on
35291 a server that treats all names as both a folder and a directory.
35294 Note, enabling this feature can cause surprising behavior!  For example,
35295 you can still use Add to create a directory, but unless you immediately
35296 enter that directory and create a folder, that newly created directory
35297 may not be displayed next time you enter the folder list.
35300 The description above is not quite correct.
35301 Only directories which potentially may hold messages are hidden if empty.
35302 That is, a directory which is really just a directory and is not selectable
35303 as a folder will not be hidden.
35304 Such directories can occur on servers that treat most names as both a folder
35305 and a directory.
35306 These directories are typically created implicitly when a folder is created
35307 inside a directory that does not yet exist.
35310 <UL>   
35311 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35312 </UL><P>
35313 &lt;End of help on this topic&gt;
35314 </BODY>
35315 </HTML>
35316 ====== h_config_termcap_wins =====
35317 <HTML>
35318 <HEAD>
35319 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
35320 </HEAD>
35321 <BODY>
35322 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
35324 This feature may affect Alpine's low-level input routines.  Termcap (or
35325 terminfo, depending on how your copy of Alpine was compiled and linked)
35326 is the name of the database that describes terminal capabilities.  In
35327 particular, it describes the sequences of characters that various keys
35328 will emit.
35331 An example would be the Up Arrow key on the keyboard.  Up
35332 Arrow is not a distinct character on most Unix systems.  When you press
35333 the Up Arrow key a short sequence of characters are produced.  This
35334 sequence is supposed to be described in the termcap database by the
35335 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
35336 are using terminfo instead of termcap).
35339 By default, Alpine defines some terminal
35340 escape sequences that are commonly used.  For example, the sequence
35341 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
35342 &quot;ESC&nbsp;[&nbsp;A&quot;
35343 is also recognized as an Up Arrow key.  These are chosen because common
35344 terminals like VT100's or ANSI standard terminals produce these
35345 sequences when you press the Up Arrow key.
35348 If your system's termcap
35349 (terminfo) database assigns some other function to the sequence
35350 &quot;ESC&nbsp;O&nbsp;A&quot;
35351 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
35352 database assigns a sequence that doesn't begin with an escape
35353 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
35354 This usually works fine
35355 because most terminals emit the escape sequences that Alpine has defined
35356 by default.  We have also found that it is usually better to have these
35357 defaults take precedence over the definitions contained in the database
35358 because the defaults are more likely to be correct than the database.
35361 There are some terminals where this breaks down.  If you want Alpine to
35362 believe the definitions given in your termcap (terminfo) database in
35363 preference to the defaults the Alpine itself sets up, then you may turn
35364 this feature on.  Then, sequences of characters that are defined in
35365 both termcap (terminfo) and in Alpine's set of defaults will be
35366 interpreted the way that termcap (terminfo) says they should be
35367 interpreted.  Also, if your terminal capabilities database assigns a
35368 sequence that doesn't begin with escape, it will not be ignored.
35371 <UL>   
35372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35373 </UL><P>
35374 &lt;End of help on this topic&gt;
35375 </BODY>
35376 </HTML>
35377 ====== h_config_cruise_mode =====
35378 <HTML>
35379 <HEAD>
35380 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
35381 </HEAD>
35382 <BODY>
35383 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
35385 This feature affects Alpine's behavior when you hit the
35386 &quot;Space&nbsp;Bar&quot; at
35387 the end of a displayed message.  Typically, Alpine complains that the end
35388 of the text has already been reached.  Setting this feature causes such
35389 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
35390 taking you to the next &quot;interesting&quot; message,
35391 or scanning ahead to the 
35392 next incoming folder with &quot;interesting&quot; messages.
35395 <UL>   
35396 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35397 </UL><P>
35398 &lt;End of help on this topic&gt;
35399 </BODY>
35400 </HTML>
35401 ====== h_config_cruise_mode_delete =====
35402 <HTML>
35403 <HEAD>
35404 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
35405 </HEAD>
35406 <BODY>
35407 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
35409 This feature modifies the behavior of Alpine's 
35410 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
35411 Setting this feature causes Alpine to implicitly delete read
35412 messages when it moves on to display the next &quot;interesting&quot; message.
35414 NOTE: Beware when enabling this feature AND the 
35415 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
35416 feature.
35418 <UL>   
35419 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35420 </UL><P>
35421 &lt;End of help on this topic&gt;
35422 </BODY>
35423 </HTML>
35424 ====== h_config_slash_coll_entire =====
35425 <HTML>
35426 <HEAD>
35427 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
35428 </HEAD>
35429 <BODY>
35430 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
35432 The slash (/) command is available from the MESSAGE INDEX screen when
35433 the folder is sorted by either Threads or OrderedSubject, and the
35434 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
35435 is set to something other than &quot;none&quot;.
35436 Normally, the slash command Collapses or Expands the subthread that
35437 starts at the currently highlighted message, if any.
35438 If this option is set, then the slash command Collapses or Expands the
35439 <EM>entire</EM> current thread instead of just the subthread.
35440 The current thread is simply the top-level thread that contains the
35441 current message.
35444 <UL>   
35445 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35446 </UL><P>
35447 &lt;End of help on this topic&gt;
35448 </BODY>
35449 </HTML>
35450 ====== h_config_color_thrd_import =====
35451 <HTML>
35452 <HEAD>
35453 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
35454 </HEAD>
35455 <BODY>
35456 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
35458 This option affects only the THREAD INDEX screen.
35459 Whether or not you ever see a THREAD INDEX screen depends on the setting
35460 of the configuration option
35461 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
35462 and on the sort order of the index.
35465 If a message within a thread is flagged as Important
35466 and this option is set, then
35467 the entire line in the THREAD INDEX will be colored the color of the
35468 Index-important Symbol, which can be set using the
35469 <A HREF="h_color_setup">Setup Kolor</A> screen.
35472 <UL>   
35473 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35474 </UL><P>
35475 &lt;End of help on this topic&gt;
35476 </BODY>
35477 </HTML>
35478 ====== h_config_allow_goto =====
35479 <HTML>
35480 <HEAD>        
35481 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
35482 </HEAD>
35483 <BODY>
35484 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
35486 This feature modifies the behavior of Alpine's file browser.  Setting this
35487 feature causes Alpine to offer the "G Goto" command in the file browser.
35488 That is the default.
35492 The Goto command allows you to explicitly type in the desired directory.
35494 &lt;End of help on this topic&gt;
35495 </BODY></HTML>
35496 ====== h_config_add_ldap =====
35497 <HTML>
35498 <HEAD>
35499 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
35500 </HEAD>
35501 <BODY>
35502 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
35504 If both the Directory option
35505 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
35506 and this feature are set,
35507 then when an implicit directory lookup is done from the
35508 composer you will automatically be prompted to add the result of the
35509 directory lookup to your address book.
35511 <UL>   
35512 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35513 </UL><P>
35514 &lt;End of help on this topic&gt;
35515 </BODY>
35516 </HTML>
35517 ===== h_patterns_compat_behavior =====
35518 <HTML>
35519 <HEAD>
35520 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
35521 </HEAD>
35522 <BODY>
35523 <H1>Rules Behavior Changes in Pine 4.50</H1>
35525 In Alpine, Rules that contain unrecognized elements
35526 are ignored.
35527 In most cases, the unrecognized elements will be something that was
35528 added as a new Rules feature in a later version of Alpine.
35529 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
35530 ignore rules that contained unrecognized elements.
35531 For example, a new element of Rules that was added in Pine 4.50 is
35532 Age interval.
35533 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
35534 all messages older than a week red.
35535 Now, if you run Pine 4.44 using that same configuration file, it will not
35536 recognize the Age interval and so will just ignore it.
35537 That means that all messages will match that rule so all messages will
35538 be colored red when using Pine version 4.44.
35541 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
35542 However, since the behavior still exists in versions prior to Pine 4.50 and
35543 since Filtering is a potentially destructive operation, another measure
35544 was taken to attempt to avoid unintentional Filtering of messages.
35545 The first time that you run Alpine or a Pine that is version 4.50 or greater,
35546 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
35547 will be copied to a new Filters configuration variable
35548 with a different name (&quot;Patterns-Filters2&quot;).
35549 From then on, Alpine will continue to use the new
35550 variable.
35551 Of course, Pine version 4.44 or lower will continue to use the old
35552 variable.
35553 That means that if you are using Alpine
35554 and also using a version of Pine that is older than 4.50, they will not
35555 share the configuration information about Filters.
35556 If you make a change in one version you won't see it in the other version.
35559 Since Scoring can be used to trigger Filtering, the same thing has been
35560 done for Score rules.
35561 The old configuration variable name is (&quot;Patterns-Scores&quot;)
35562 and the new name is (&quot;Patterns-Scores2&quot;).
35563 The same is not true of Role, Indexcolor, and Other rules that are
35564 thought to be less harmful when a mistake is made.
35567 &lt;End of help on this topic&gt;
35568 </BODY>
35569 </HTML>
35570 ======= h_config_filt_opts_sentdate =======
35571 <HTML>
35572 <HEAD>
35573 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
35574 </HEAD>
35575 <BODY>
35576 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
35578 By default, the Age interval of a Pattern uses a message's time of
35579 arrival to compute the age of the message.
35580 If this feature is set, the date in the message's Date header will
35581 be used instead.
35583 &lt;End of help on this topic&gt;
35584 </BODY>
35585 </HTML>
35586 ======= h_config_filt_opts_notdel =======
35587 <HTML>
35588 <HEAD>
35589 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
35590 </HEAD>
35591 <BODY>
35592 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
35594 If this option is set then a message will be moved into the
35595 specified folder only if it is not marked for deletion.
35596 This is useful if you have multiple Alpine sessions running
35597 simultaneously and you don't want messages to be filtered into a
35598 folder more than once.
35599 It is also useful if you want to filter
35600 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
35601 This method is not foolproof.
35602 There may be cases where a message
35603 gets marked deleted and so it is never filtered into the folder.
35604 For example, if you deleted it in another Alpine session or another mail
35605 program that didn't use the filtering rule.
35607 This option has no effect if the Filter Action is not set to Move.
35609 &lt;End of help on this topic&gt;
35610 </BODY>
35611 </HTML>
35612 ======= h_config_filt_opts_nonterm =======
35613 <HTML>
35614 <HEAD>
35615 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
35616 </HEAD>
35617 <BODY>
35618 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
35620 If this option is set then this is a non-terminating rule.
35621 Usually, for each message, Alpine searches through the Filter Rules until
35622 a match is found and then it performs the action associated with that rule.
35623 Rules following the match are not considered.
35624 If this option is set then the search for matches will continue at the next
35625 rule.
35627 If a non-terminating rule matches then the actions associated with
35628 that rule, except for any implied deletion of the message, are performed
35629 before the match for the next rule is checked.
35630 For example, if the non-terminating rule sets the Important status, then that
35631 status will be set when the next rule is considered.
35632 However, if the non-terminating rule Moves the message, the message will
35633 actually be copied instead of copied and deleted so that it is still there
35634 for the next rule.
35635 A moved message is deleted after all the relevant rules have been checked.
35636 The name of the &quot;Move&quot; action is confusing in this case because
35637 a single message can be moved to more than one folder.
35638 It turns the Move into a Copy instead, but it is still followed by a deletion
35639 at the end.
35641 This option may be useful if you want to have a single message filtered to
35642 two different folders because it matches two different Patterns.
35643 For example, suppose you normally filter messages to a particular mailing
35644 list into one folder, and messages addressed directly to you into a second
35645 folder.
35646 If a message is sent to both you and the list (and you can tell that by
35647 looking at the headers of the message) this option may give you a convenient
35648 way to capture a copy to each folder.
35649 (It may also cause you to capture two copies to each folder,
35650 depending on whether your mail system delivers one or two copies of the
35651 message to you and on how the list works.)
35653 &lt;End of help on this topic&gt;
35654 </BODY>
35655 </HTML>
35656 ====== h_command_external_browser =====
35657 <HTML>
35658 <HEAD>
35659 <TITLE>The External Browser Command</TITLE>
35660 </HEAD>
35661 <BODY>
35662 <H1>The External Browser Command</H1>
35665 A new command was added to Alpine that allows users to send HTML messages to be displayed
35666 by a web browser. This is helpful when a user wants to see images in the context of the
35667 message, or get a better display of the message than Alpine provides.
35670 The simplest way to use this command is to do as follows. While reading a message,
35671 press the &quot;V&quot; to go to the <A href="h_attachment_screen">ATTACHMENT SCREEN</A>.
35672 In that screen move the cursor until it is on top of a TEXT/HTML attachment and press the
35673 &quot;X&quot; key. This will make Alpine launch the browser you have configured for
35674 in the <a href="h_config_browser"><!--#echo var="VAR_url-viewers"--></a> variable, and
35675 you should be able to read the message in your browser, as well as in Alpine.
35677 <P> If the message you sent to your browser has inline images, then the images attached to
35678 the message that are necessary for the display of the message are also sent to the browser
35679 for its display.
35681 <P> The text that follows will explain more details about this command, and is only
35682 recommended for more advanced users.
35684 <h1><CENTER>Displaying Images</CENTER></h1>
35686 <P> First, we will talk about displaying images in an HTML file. Typically, HTML images
35687 are displayed as the result of some specific code of the form
35688 <center>
35689 <PRE>
35690 &lt;img src=&quot;...&quot;&gt;,
35691 </PRE>
35692 </center>
35693 where the text between the quotes tells Alpine how to find the image.
35694 If the source of the image is internal to the message, Alpine passes that image to the
35695 browser. Otherwise Alpine erases the link to the image. This is done so that
35696 you can be protected from a bad use of external images. Images can be used to track
35697 that you read the message, or your location, devices you own, etc.. Since Alpine does
35698 not open images in any messages, your
35699 privacy is always protected this way. Therefore, when you do not pass the links to
35700 external images to a browser, your privacy is being protected. However, doing this
35701 might make the message not be displayed correctly, since when the message was
35702 created the images were part of the formatted message, and not having images might make
35703 this formatting look awkward.
35705 <P> If you would like that Alpine display all images, regardless of their source, and
35706 regardless of the sender, then you need to disable the feature <a
35707 href="h_external_loads_inline_images_only"><!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>.
35708 The message will display as intended, but you will leak information to the sender of the
35709 message, as well as to your internet service provider, which could be your employer, or
35710 school, etc.
35712 <P> Alpine provides an alternative mechanism to either send all links to the images to the
35713 external browser or to send only those that are attached to the message you are trying to
35714 display. In order to use this mechanism you must first enable
35715 <a href="h_config_enable_view_attach"><!--#echo var="FEAT_enable-msg-view-attachments"--></a>.
35716 This allows Alpine to add direct links to each attachments. If you want to send an HTML
35717 attachment to an external browser, you would place the cursor over the attachment and press
35718 the &quot;Return&quot; or &quot;Enter&quot; key to open the attachment. When you do that
35719 you will see a prompt and menu which says
35721 <pre>
35722 View selected Attachment  ?
35723 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X External
35724 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No
35725 </pre>
35727 <P>In order to send this message to an external browser, you would press the &quot;X&quot;
35728 key. This will change the prompt and menu to
35730 <pre>
35731 View selected Attachment using external viewer including inline images only ?
35732 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X No eXternal
35733 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I All images
35734 </pre>
35736 <P>This is telling you that if you answer &quot;Yes&quot; to this question, and external
35737 browser will be used to send this messages, and only inline images, that is, those attached
35738 in the message will be sent to the browser. If you would like to send all images in
35739 this case, the menu tells you that you must press the &quot;I&quot; key. Pressing
35740 that key changes the prompt and menu to
35742 <pre>
35743 View selected Attachment using external viewer including all images ?
35744 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X No eXternal
35745 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I Inline imgs
35746 </pre>
35748 <P>and as you can see the prompt says that if you press &quot;Yes&quot; then the message
35749 will be sent to the browser including the source of all images, including those in
35750 external servers. Notice that the &quot;X&quot; command now is a toggle. If you
35751 were to press it now, you would return to the original prompt,
35753 <pre>
35754 View selected Attachment  ?
35755 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X External
35756 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No
35757 </pre>
35759 <P>which means that if you answer &quot;Yes&quot; at this time your message would not
35760 be sent to your external browser for display, unless you have configured a mailcap
35761 entry to display HTML files.
35763 <P> One of the lessons of this discussion is that if you never press the &quot;X&quot;
35764 command in the ATTACHMENT SCREEN, and you never press the &quot;X&quot; command when
35765 launching a viewer for an attachment in the MESSAGE TEXT screen, you will never use this
35766 mechanism, and Alpine will resort to your already configured mechanisms to open HTML
35767 text.This means you can live your life without worrying that Alpine will do anything
35768 different because of this new feature. You do not have to use it, but if you do, you should
35769 know the risks and advantages and decide when and how to use it.
35771 <h1><CENTER>Saving HTML Messages to Disk</CENTER></h1>
35774 No matter what your reason to send a message to an external web browser is, Alpine must
35775 write your message to a file (and also all related inline images), and point your browser
35776 to open that file. Alpine saves all your messages and auxiliary images in a subdirectory
35777 of the ~/.alpine-html directory in unix-like Alpine, or the alpine-html folder in your home
35778 directory in PC-Alpine. If Alpine cannot access these directories, or create folders
35779 in them, then the full mechanism described above will fail, and you will not be able
35780 to send messages to an external browser for display.
35783 Unfortunately browsers do not remove the file that Alpine created, nor the images
35784 that Alpine saved in order to display this message, so if you use this mechanism often
35785 you will create many directories and files which the browser will not remove. Alpine
35786 will remove these files when you exit Alpine. Any temporary directory that Alpine
35787 created that has existed for longer than 10 minutes will be automatically erased.
35788 Alpine also erases these directories upon exiting.
35791 When Alpine creates a directory to house the files associated to a message that will
35792 pass to an external browser, it tries to delete that directory later on, according to
35793 the discussion above. What this means is that you should consider the contents of the
35794 ~/.alpine-html directory in unix-like Alpine and the alpine-html folder in PC-Alpine
35795 as temporary, and not rely on their existence. If you attempt to save files in one of
35796 these directories, chances are your data will be deleted by Alpine. Since deleting is
35797 a destructive action,
35798 every session of Alpine that you have open will only attempt to remove the directories
35799 it created, with their content in them. If this operation fails, Alpine will not try
35800 to investigate, nor will report to you, why the operation failed. Therefore, users
35801 should periodically check their html directory to see if there is content there that
35802 they wish to delete.
35805 <UL>
35806 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35807 </UL><P>
35808 &lt;End of help on this topic&gt;
35809 </BODY>
35810 </HTML>
35811 ===== h_mainhelp_smime ======
35812 <HTML>
35813 <HEAD>
35814 <TITLE>S/MIME Overview</TITLE>
35815 </HEAD>
35816 <BODY>
35817 <H1>S/MIME Overview</H1>
35819 S/MIME is a standard for the public key encryption and signing of email.
35820 UNIX Alpine contains a basic implementation of S/MIME based on
35821 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
35822 same support can be provided using the 
35823 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
35824 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
35825 To check if this version of Alpine supports S/MIME look at
35826 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
35827 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
35829 Some limitations:
35830 <UL>
35831    <LI> There is no provision for checking for CRLs
35832         (Certificate Revocation Lists) in Alpine.
35833    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
35834    <LI> There is no mechanism available for feeding either an entire incoming
35835         or an entire outgoing message to an external
35836         filter and using that external filter to do S/MIME or PGP processing.
35837    <LI> Because the implementation currently uses OpenSSL, there is only a very
35838         limited integration with the Mac OS Keychain (the storing and access of
35839         public certificates).
35840 </UL>
35842 The S/MIME configuration screen is reached by going to the Main Menu and typing
35843 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
35846 <H2>S/MIME BASICS</H2>
35848 In order to digitally sign messages you send you must have a public/private key-pair.
35849 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
35850 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
35851 users or a company which provides certificates for its workers.
35852 These certificates are bound to an email address, so the identity being verified is the
35853 email address not a person's name.
35855 Mail is signed by using the sender's private key, which only the owner of the private key
35856 has access to.
35857 The signature is verified using the signer's public key, which anyone can
35858 have access to.
35859 With Alpine, the first time you receive a signed message the public key of the
35860 sender will be stored for future use.
35863 Mail is encrypted using the recipient's public key and decrypted by
35864 the recipient with their private key.
35867 You need a key of your own in order to sign outgoing messages and to have others
35868 encrypt messages sent to you.
35869 You do not need a key of your own to verify signed messages sent by others or to
35870 encrypt messages sent to others.
35872 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
35874 By default UNIX Alpine stores the certificates it uses in a directory in your
35875 home directory.
35876 The directory name is
35878 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
35880 For PC-Alpine, the equivalent directory is called 
35881 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
35882 and is also located under your home directory.
35884 Within that directory are three subdirectories.
35885 Each of the three subdirectories contains files with PEM-encoded contents,
35886 the default format for OpenSSL.
35887 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
35888 The files within that directory have names that are email addresses with the
35889 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
35890 An example filename is
35892 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35894 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
35895 your private key.
35896 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
35897 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
35898 Authorities that you want to trust but that aren't contained in the set of system CAs.
35899 Those files may have arbitrary names as long as they end with the
35900 suffix &quot;<SAMP>.crt</SAMP>&quot;.
35902 <H2>HOW TO SIGN AND ENCRYPT</H2>
35904 If you have a certificate you may sign outgoing messages.
35905 After typing the Ctrl-X command to send a message you will see the prompt
35907 <CENTER><SAMP>Send message?</SAMP></CENTER>
35909 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
35910 Typing the &quot;G&quot; command will change the prompt to
35912 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35914 Typing the &quot;E&quot; command will change the prompt to
35916 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35918 You may even type both to get
35920 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35923 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35925 The reading of a signed message should not require any special action on
35926 your part.
35927 There should be an editorial addition at the start of the message which
35928 says either
35930 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35934 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35936 If an encrypted message is sent to you the encrypted text will not
35937 be shown.
35938 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35939 you are viewing the message) and supply your passphrase when asked.
35941 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35942 which gives you some information about the certificate used to sign or encrypt the message.
35944 <H2>MISCELLANEOUS</H2>
35946 If you have access to a private certificate in the PKCS12 format, which 
35947 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35948 use the following commands to generate private keys, public and certificate
35949 authorities certificates. In the examples below, we assume that the 
35950 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35951 that your email address is &quot;your@address.com&quot;.
35954 In order to create a private key use the command
35956 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35958 In order to create a public certificate use the command
35960 <CENTER><SAMP>
35961 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35962 </SAMP></CENTER>
35964 In order to create a certificate authority certificate use the command
35966 <CENTER><SAMP>
35967 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35968 </SAMP></CENTER>
35970 <P> If the previous command produces an empty file, it means that the 
35971 certificate authority was not included in the .p12 file, so you will have 
35972 to get it from some other sources. You will need these certificates, so 
35973 that you can validate correctly signatures.
35976 After you have exported these certificates and keys, you can  use the import 
35977 command in Alpine, from the S/MIME configuration screen,
35978 to import these certificates into Alpine. They will be available for use
35979 as soon as you import them.
35981 &lt;End of help on this topic&gt;
35982 </BODY>
35983 </HTML>
35984 ====== h_config_smime_pubcertdir =====
35985 <HTML>
35986 <HEAD>
35987 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35988 </HEAD>
35989 <BODY>
35990 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35993 If the option
35994 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35995 is set then this option will have no effect.
35997 Normally, Public Certificates for use with S/MIME will be stored in the directory
35998 which is the value of this option.
35999 Those certificates will be stored in PEM format, one certificate per file.
36000 The name of the file for the certificate corresponding to
36002 <CENTER><SAMP>emailaddress</SAMP></CENTER>
36004 should be
36006 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
36008 For example, a file for user@example.com would be in the file
36010 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
36012 in this directory.
36014 Use the Setup/SMIME screen to modify this variable.
36016 Typically, the public certificates that you have will come from S/MIME signed
36017 messages that are sent to you.
36018 Alpine will extract the public certificate from the signed message and store
36019 it in the certificates directory.
36020 These PEM format public certificates look something like:
36021 <PRE>
36022 -----BEGIN CERTIFICATE-----
36023 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
36024 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
36025 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
36027 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
36028 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
36029 -----END CERTIFICATE-----
36030 </PRE>
36032 <UL>   
36033 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36034 </UL><P>
36036 <UL>   
36037 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36038 </UL><P>
36039 &lt;End of help on this topic&gt;
36040 </BODY>
36041 </HTML>
36042 ====== h_config_smime_pubcertcon =====
36043 <HTML>
36044 <HEAD>
36045 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
36046 </HEAD>
36047 <BODY>
36048 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
36051 If this option is set it will be used instead of
36052 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
36054 This option gives you a way to store certificates remotely on an IMAP server
36055 instead of storing the certificates one per file locally.
36056 In order to do that you just give this option a remote folder name for a folder
36057 which does not yet exist.
36058 The name is similar to the name you might use for a remote configuration file.
36059 A remote folder name might look something like:
36061 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
36064 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36065 about the syntax of folder names.
36067 Use the Setup/SMIME screen to modify this variable.
36069 <UL>   
36070 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36071 </UL><P>
36073 <UL>   
36074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36075 </UL><P>
36076 &lt;End of help on this topic&gt;
36077 </BODY>
36078 </HTML>
36079 ====== h_config_smime_privkeydir =====
36080 <HTML>
36081 <HEAD>
36082 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
36083 </HEAD>
36084 <BODY>
36085 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
36088 In order to sign outgoing S/MIME messages you will need a
36089 personal digital ID certificate.
36090 You will usually get such a certificate from a certificate authority such as
36091 Thawte or CAcert.
36092 (In order to encrypt outgoing messages you don't need a personal digital ID, you
36093 need the public certificate of the recipient instead.)
36094 If the option
36095 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
36096 is set then this option will have no effect.
36098 Normally, Private Keys for use with S/MIME will be stored in the directory
36099 which is the value of this option.
36100 Those certificates will be stored in PEM format, one certificate per file.
36101 The name of the file for the certificate corresponding to your
36103 <CENTER><SAMP>emailaddress</SAMP></CENTER>
36105 should be
36107 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
36109 For example, if your address is user@example.com the name of the file would be
36111 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
36113 in this directory.
36115 Use the Setup/SMIME screen to modify this variable.
36117 Typically, the private key that you have will come from a Certificate
36118 Authority.
36119 The private key should be stored in a PEM format file that
36120 looks something like:
36121 <PRE>
36122 -----BEGIN RSA PRIVATE KEY-----
36123 Proc-Type: 4,ENCRYPTED
36124 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
36126 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
36127 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
36128 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
36130 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
36131 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
36132 -----END RSA PRIVATE KEY-----
36133 </PRE>
36135 <UL>   
36136 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36137 </UL><P>
36139 <UL>   
36140 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36141 </UL><P>
36142 &lt;End of help on this topic&gt;
36143 </BODY>
36144 </HTML>
36145 ====== h_config_smime_privkeycon =====
36146 <HTML>
36147 <HEAD>
36148 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
36149 </HEAD>
36150 <BODY>
36151 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
36154 If this option is set it will be used instead of
36155 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36157 This option gives you a way to store keys remotely on an IMAP server
36158 instead of storing the keys one per file locally.
36159 In order to do that you just give this option a remote folder name for a folder
36160 which does not yet exist.
36161 The name is similar to the name you might use for a remote configuration file.
36162 A remote folder name might look something like:
36164 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
36167 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36168 about the syntax of folder names.
36170 Use the Setup/SMIME screen to modify this variable.
36172 <UL>   
36173 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36174 </UL><P>
36176 <UL>   
36177 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36178 </UL><P>
36179 &lt;End of help on this topic&gt;
36180 </BODY>
36181 </HTML>
36182 ====== h_config_smime_cacertdir =====
36183 <HTML>
36184 <HEAD>
36185 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
36186 </HEAD>
36187 <BODY>
36188 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
36191 If the option
36192 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
36193 is set then this option will have no effect.
36195 CACert is a shorthand name for certification authority certificate.
36196 Normally Alpine will use the CACerts that are located in the standard system
36197 location for CACerts.
36198 It may be the case that one of your correspondents has a Digital ID which has
36199 been signed by a certificate authority that is not in the regular set of system certificate
36200 authorities.
36201 You may supplement the system list by adding further certificates of your own.
36202 These should  be stored in the directory
36203 which is the value of this option.
36204 The certificates will be stored in PEM format, one certificate per file.
36205 The names of the files can be anything ending in &quot;.crt&quot;.
36207 Use the Setup/SMIME screen to modify this variable.
36209 These PEM format CA certificates look very similar to your public
36210 certificates for particular email addresses
36211 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
36213 <UL>   
36214 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36215 </UL><P>
36217 <UL>   
36218 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36219 </UL><P>
36220 &lt;End of help on this topic&gt;
36221 </BODY>
36222 </HTML>
36223 ====== h_config_smime_cacertcon =====
36224 <HTML>
36225 <HEAD>
36226 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
36227 </HEAD>
36228 <BODY>
36229 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
36232 If this option is set it will be used instead of
36233 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
36235 This option gives you a way to store certificates remotely on an IMAP server
36236 instead of storing the certificates one per file locally.
36237 In order to do that you just give this option a remote folder name for a folder
36238 which does not yet exist.
36239 The name is similar to the name you might use for a remote configuration file.
36240 A remote folder name might look something like:
36242 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
36245 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36246 about the syntax of folder names.
36248 Use the Setup/SMIME screen to modify this variable.
36250 <UL>   
36251 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36252 </UL><P>
36254 <UL>   
36255 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36256 </UL><P>
36257 &lt;End of help on this topic&gt;
36258 </BODY>
36259 </HTML>
36260 ========== h_config_smime_sign_by_default ==========
36261 <HTML>
36262 <HEAD>
36263 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
36264 </HEAD>
36265 <BODY>
36266 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
36269 This feature only has an effect if your version of Alpine includes
36270 support for S/MIME.
36271 It affects Alpine's behavior when you send a message.
36272 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
36274 Only the default value is affected.
36275 In any case, you may still toggle the Signing option on or off before sending
36276 with the &quot;G Sign&quot; command (provided you have a personal digital ID
36277 certificate).
36279 <UL>   
36280 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36281 </UL><P>
36284 <UL>   
36285 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36286 </UL><P>
36287 &lt;End of help on this topic&gt;
36288 </BODY>
36289 </HTML>
36290 ========== h_config_smime_use_cert_store ==========
36291 <HTML>
36292 <HEAD>
36293 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
36294 </HEAD>
36295 <BODY>
36296 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
36299 This feature only has an effect if your version of Alpine includes
36300 support for S/MIME.
36301 It affects Alpine's behavior when you validate a message, and should
36302 not be disabled, unless you are performing a test.
36304 There are two important aspects of validation: validation of the message
36305 (that is, the message was not modified after it was sent) 
36306 as well as validation of the identity of the sender. This option has to 
36307 do with the latter. 
36309 In order to validate that the message came from the sender in the message
36310 and not an impersonator, Alpine can 
36311 either use the certificates that come in the message, or the ones that 
36312 you have personally stored. If this feature is enabled (the default) then 
36313 Alpine will use certificates that you have already saved in your store 
36314 and not those that come in the message to validate the sender of the 
36315 message. In particular, the first time that you receive a signed message
36316 from a sender, and their certificate does not validate against your
36317 store, then you will be asked if you wish to save such certificate. If
36318 you do not wish to save the certificate, then Alpine will fail to validate
36319 the signature of the message. Otherwise, Alpine will proceed to validate
36320 the signature of the message. This behavior helps you prevent against impersonation, because 
36321 it is assumed that you trust the certificates that you have saved, and 
36322 might not trust those that came with the message that you are validating.
36324 <UL>   
36325 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36326 </UL><P>
36329 <UL>   
36330 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36331 </UL><P>
36332 &lt;End of help on this topic&gt;
36333 </BODY>
36334 </HTML>
36335 ========== h_config_smime_pubcerts_in_keychain ==========
36336 <HTML>
36337 <HEAD>
36338 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
36339 </HEAD>
36340 <BODY>
36341 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
36344 If this feature is set the Mac OS X default keychain will be used as the place
36345 to store public certificates instead of a
36346 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
36347 or a
36348 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
36350 <UL>   
36351 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36352 </UL><P>
36354 <UL>   
36355 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36356 </UL><P>
36357 &lt;End of help on this topic&gt;
36358 </BODY>
36359 </HTML>
36360 ========== h_config_smime_dont_do_smime ==========
36361 <HTML>
36362 <HEAD>
36363 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
36364 </HEAD>
36365 <BODY>
36366 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
36369 Setting this feature turns off all of Alpine's S/MIME support.
36370 You might want to set this if you are having trouble due to the S/MIME support.
36372 <UL>   
36373 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36374 </UL><P>
36377 <UL>   
36378 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36379 </UL><P>
36380 &lt;End of help on this topic&gt;
36381 </BODY>
36382 </HTML>
36383 ========== h_config_smime_encrypt_by_default ==========
36384 <HTML>
36385 <HEAD>
36386 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
36387 </HEAD>
36388 <BODY>
36389 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
36392 This feature only has an effect if your version of Alpine includes
36393 support for S/MIME.
36394 It affects Alpine's behavior when you send a message.
36395 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
36397 Only the default value is affected.
36398 In any case, you may still toggle the Encrypt option on or off before sending
36399 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
36400 for the recipient).
36402 <UL>   
36403 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36404 </UL><P>
36407 <UL>   
36408 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36409 </UL><P>
36410 &lt;End of help on this topic&gt;
36411 </BODY>
36412 </HTML>
36413 ========== h_config_smime_remember_passphrase ==========
36414 <HTML>
36415 <HEAD>
36416 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
36417 </HEAD>
36418 <BODY>
36419 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
36422 This feature only has an effect if your version of Alpine includes
36423 support for S/MIME.
36424 If this option is set, you will only have to enter your passphrase for your private key
36425 once during an Alpine session.
36427 <UL>   
36428 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36429 </UL><P>
36432 <UL>   
36433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36434 </UL><P>
36435 &lt;End of help on this topic&gt;
36436 </BODY>
36437 </HTML>
36438 ====== h_config_smime_transfer_pub_to_con =====
36439 <HTML>
36440 <HEAD>
36441 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
36442 </HEAD>
36443 <BODY>
36444 <H1>S/MIME: Transfer Public Certs to Container</H1>
36447 The Transfer command will copy the public certificates in your configured
36448 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
36449 to the container in your configured
36450 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
36451 This might be useful if you decide to switch from using a cert directory to a cert
36452 container.
36454 Warning: Any previous contents in the container will be lost.
36456 <UL>   
36457 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36458 </UL><P>
36460 <UL>   
36461 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36462 </UL><P>
36463 &lt;End of help on this topic&gt;
36464 </BODY>
36465 </HTML>
36466 ====== h_config_smime_transfer_pub_to_dir =====
36467 <HTML>
36468 <HEAD>
36469 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
36470 </HEAD>
36471 <BODY>
36472 <H1>S/MIME: Transfer Public Certs to Directory</H1>
36475 The Transfer command will copy the public certificates in your configured
36476 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36477 to the directory in your configured
36478 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
36479 This might be useful if you decide to switch from using a cert container to a cert
36480 directory.
36482 <UL>   
36483 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36484 </UL><P>
36486 <UL>   
36487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36488 </UL><P>
36489 &lt;End of help on this topic&gt;
36490 </BODY>
36491 </HTML>
36492 ====== h_config_smime_transfer_priv_to_con =====
36493 <HTML>
36494 <HEAD>
36495 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
36496 </HEAD>
36497 <BODY>
36498 <H1>S/MIME: Transfer Private Keys to Container</H1>
36501 The Transfer command will copy the private keys in your configured
36502 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36503 to the container in your configured
36504 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
36505 This might be useful if you decide to switch from using a key directory to a key
36506 container.
36508 Warning: Any previous contents in the container will be lost.
36510 <UL>   
36511 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36512 </UL><P>
36514 <UL>   
36515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36516 </UL><P>
36517 &lt;End of help on this topic&gt;
36518 </BODY>
36519 </HTML>
36520 ====== h_config_smime_transfer_priv_to_dir =====
36521 <HTML>
36522 <HEAD>
36523 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
36524 </HEAD>
36525 <BODY>
36526 <H1>S/MIME: Transfer Private Keys to Directory</H1>
36529 The Transfer command will copy the private keys in your configured
36530 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
36531 to the directory in your configured
36532 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36533 This might be useful if you decide to switch from using a key container to a key
36534 directory.
36536 <UL>   
36537 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36538 </UL><P>
36540 <UL>   
36541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36542 </UL><P>
36543 &lt;End of help on this topic&gt;
36544 </BODY>
36545 </HTML>
36546 ====== h_config_smime_transfer_cacert_to_con =====
36547 <HTML>
36548 <HEAD>
36549 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
36550 </HEAD>
36551 <BODY>
36552 <H1>S/MIME: Transfer CA Certs to Container</H1>
36555 The Transfer command will copy the CA certificates in your configured
36556 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
36557 to the container in your configured
36558 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36559 This might be useful if you decide to switch from using a CA cert directory to a CA cert
36560 container.
36562 Warning: Any previous contents in the container will be lost.
36564 <UL>   
36565 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36566 </UL><P>
36568 <UL>   
36569 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36570 </UL><P>
36571 &lt;End of help on this topic&gt;
36572 </BODY>
36573 </HTML>
36574 ====== h_config_smime_transfer_cacert_to_dir =====
36575 <HTML>
36576 <HEAD>
36577 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
36578 </HEAD>
36579 <BODY>
36580 <H1>S/MIME: Transfer CA Certs to Directory</H1>
36583 The Transfer command will copy the CA certificates in your configured
36584 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36585 to the directory in your configured
36586 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
36587 This might be useful if you decide to switch from using a CA cert container to a CA cert
36588 directory.
36590 <UL>   
36591 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36592 </UL><P>
36594 <UL>   
36595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36596 </UL><P>
36597 &lt;End of help on this topic&gt;
36598 </BODY>
36599 </HTML>
36600 ====== h_config_smime_transfer_pubcon_to_key =====
36601 <HTML>
36602 <HEAD>
36603 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36604 </HEAD>
36605 <BODY>
36606 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36608 Mac OS X Alpine only.
36610 The Transfer command will copy the public certificates in your configured
36611 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36612 to your default Mac OS X Keychain.
36613 This might be useful if you decide to switch from using a cert container to using
36614 the Keychain to store your public certs, which you may do by using the
36615 feature
36616 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
36618 <UL>   
36619 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36620 </UL><P>
36622 <UL>   
36623 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36624 </UL><P>
36625 &lt;End of help on this topic&gt;
36626 </BODY>
36627 </HTML>
36628 ====== h_config_smime_transfer_pubkey_to_con =====
36629 <HTML>
36630 <HEAD>
36631 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36632 </HEAD>
36633 <BODY>
36634 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36637 The Transfer command will copy the public certificates in your configured
36638 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36639 to your default Mac OS X Keychain.
36640 This might be useful if you decide to switch from using a cert container to using
36641 the Keychain to store your public certs.
36643 <UL>   
36644 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36645 </UL><P>
36647 <UL>   
36648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36649 </UL><P>
36650 &lt;End of help on this topic&gt;
36651 </BODY>
36652 </HTML>
36653 ====== h_config_smime_public_certificates =====
36654 <HTML>
36655 <HEAD>
36656 <TITLE>S/MIME: Manage Public Certificates</TITLE>
36657 </HEAD>
36658 <BODY>
36659 <H1>S/MIME: Manage Public Certificates</H1>
36662 This menu item allows you to manage your public certificates, this
36663 may include your own public certificate, but it normally includes
36664 certificates of people you correspond with. These certificates are
36665 saved by Alpine automatically when they are found in signed messages
36666 that you receive. This interface allows you to manage them, by
36667 giving you the option to delete them, or trust them (in the case
36668 of self-signed certificates).
36671 Please note that Alpine will not validate a message that was sent to you
36672 using a self-signed certificate, unless you decide to trust that certificate.
36673 Internally, a certificate is trusted by copying it to the
36674 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
36675 collection. If you decide that you want to stop trusting a self-signed
36676 certificate, you must delete such certificate from such collection.
36678 The <B>I</B> Import command available in this screen allows you to 
36679 import a command to this collection.
36681 <UL>   
36682 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36683 </UL><P>
36685 <UL>   
36686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36687 </UL><P>
36688 &lt;End of help on this topic&gt;
36689 </BODY>
36690 </HTML>
36691 ====== h_config_smime_private_keys =====
36692 <HTML>
36693 <HEAD>
36694 <TITLE>S/MIME: Manage Private Keys</TITLE>
36695 </HEAD>
36696 <BODY>
36697 <H1>S/MIME: Manage Private Keys</H1>
36700 This option allows you to manage your private key. Normally a person has only
36701 one key, in the same way that a person only has one valid passport, or ID card,
36702 at any given time. This option allows you to manage private keys. You can
36703 delete them or import them. Additionally, you can view information
36704 about your public certificate, such as the issuer and the dates of validity
36705 of such certificate, among others.
36708 If you have more than one e-mail address for which you want to use the 
36709 same private key, you must add all those addresses to the private key at 
36710 the moment that the key is generated. When you receive a signed message using 
36711 a key generated for several e-mail addresses, Alpine will save a 
36712 certificate for each e-mail address included in such certificate.
36714 The <B>I</B> Import command available in this screen allows you to 
36715 import a command to this collection.
36717 <UL>   
36718 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36719 </UL><P>
36721 <UL>   
36722 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36723 </UL><P>
36724 &lt;End of help on this topic&gt;
36725 </BODY>
36726 </HTML>
36727 ====== h_config_smime_certificate_authorities =====
36728 <HTML>
36729 <HEAD>
36730 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
36731 </HEAD>
36732 <BODY>
36733 <H1>S/MIME: Manage Certificate Authorities</H1>
36736 This collection contains certificates that are needed to validate the 
36737 certificate of another person, and therefore contains certificates that 
36738 you trust. Typically a certificate is signed by another entity, called a 
36739 certificate authority. This option allows you to manage which certificates 
36740 you trust, allowing you to import them and to delete them or view information
36741 about each certificate, such as the issuer and the dates of validity
36742 of such certificate.
36744 The <B>I</B> Import command available in this screen allows you to 
36745 import a command to this collection.
36747 <UL>   
36748 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36749 </UL><P>
36751 <UL>   
36752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36753 </UL><P>
36754 &lt;End of help on this topic&gt;
36755 </BODY>
36756 </HTML>
36757 ====== h_config_smime_password_file_certificates =====
36758 <HTML>
36759 <HEAD>
36760 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
36761 </HEAD>
36762 <BODY>
36763 <H1>S/MIME: Manage Password File Certificates</H1>
36766 This option allows you to manage the certificates that are used to
36767 encrypt and decrypt your password file. This is useful in case you
36768 want to change the certificates used to encrypt your password file.
36770 Depending on the version of Alpine that you used for the first time
36771 to set this up, you might have had to enter a password to enter this
36772 screen. In the case that you did not enter a password to enter this
36773 screen, you should know two things that are important:
36774 <UL>
36775 <LI> If anyone takes control of your computer (for example, if you 
36776 left it unattended) then that person can add a password to your
36777 password file and make it unreadable to you in the future.
36778 <LI> If anyone can access your computer (this includes remote access)
36779 then that person can steal your password file and decrypt it without
36780 your help. This gives access to that person to the same services you
36781 have access and such person can use your name to access that service.
36782 In particular, that person can try to hack into your service provider
36783 with your name on it, or that person could try to send spam with
36784 your name.
36785 </UL>
36786 <P> Needless to say, this is not advisable. You should keep your
36787 password file protected. In order to do so, all you need to do is use
36788 the &quot;Create Key&quot; command to create a key. Once you do this,
36789 Alpine will use that key, encrypted with the password used to create that
36790 key, to protect your password file.
36792 In this screen you can import a new key to encrypt your password file, 
36793 and read cryptographic information on your current key.
36795 To import a new key press &quot;RETURN&quot; and enter the location of
36796 the new key. You will be asked to enter the password of the new key. If
36797 this part of the process is successful, Alpine will search for the 
36798 certificate that matches that key. If your key is named 
36799 &quot;your_email@address.com.key&quot;, then Alpine will look for your
36800 certificate in the same directory in the file named
36801 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
36802 as part of your key (that is, it will look to see if your certificate
36803 is in the file &quot;your_email@address.com.key&quot;), if all of this
36804 fails, Alpine will ask you to enter the location of the certificate
36805 that matches the key you unlocked. If a certificate is found, it will be 
36806 used, and in this case, the password file will be read, decrypted with the 
36807 old key and encrypted with the new key. Once this is done, the new key and 
36808 certificates are saved, and the old keys are permanently deleted.
36810 Alpine does not create a backup of your password file, or your old keys
36811 that will be replaced. If you need to keep old copies, you will have to do
36812 this operation outside Alpine.
36814 Observe that you can use this screen to remove the password for the key.
36815 As explained earlier, this is not advisable, but you can always restore the
36816 password to encrypt your password file by creating a new key.
36818 Be safe and keep your password file encrypted with a password.
36819 <UL>   
36820 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36821 </UL><P>
36823 <UL>   
36824 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36825 </UL><P>
36826 &lt;End of help on this topic&gt;
36827 </BODY>
36828 </HTML>
36829 ====== h_certificate_information =====
36830 <HTML>
36831 <HEAD>
36832 <TITLE>S/MIME: Certificate Information Screen</TITLE>
36833 </HEAD>
36834 <BODY>
36835 <H1>S/MIME: Certificate Information Screen</H1>
36838 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
36839 such as its owner, e-mail address, issuer, and interval of validity, 
36840 among others.
36842 In the case of public certificates, this screen shows you if there was a
36843 failure when attempting to validate such message. If the certificate is
36844 self-signed, then the <B>T</B> Trust command will be available, which
36845 you can use to trust such certificate and make Alpine not fail validating 
36846 signatures signed with such certificate.
36848 You can also mark a certificate deleted, with the <B>D</B> command, or 
36849 remove the deleted mark with the <B>U</B> undelete command.
36851 In the case of your private key, Alpine shows you the information
36852 from your public key. Additionally, Alpine allows you to see public
36853 and private information about your key, with the <B>B</B> and
36854 <B>R</B> commands respectively.
36855 <UL>   
36856 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36857 </UL><P>
36859 <UL>   
36860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36861 </UL><P>
36862 &lt;End of help on this topic&gt;
36863 </BODY>
36864 </HTML>
36865 ====== h_config_smime_manage_public_menu =====
36866 <HTML>
36867 <HEAD>
36868 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
36869 </HEAD>
36870 <BODY>
36871 <H1>S/MIME: Commands that Manage Public Certificates</H1>
36874 This screen allows you to manage your public certificates. 
36876 The format of this screen is as follows. There are five fields: The 
36877 leftmost field is normally empty, but it could contain the letter 
36878 &quot;D&quot; to indicate that that certificate has been marked for 
36879 deletion. The next field is the e-mail address of the owner of the 
36880 certificate, shown in its entirety. The third and fourth field are the 
36881 first and last day validity for that certificate, respectively. The date
36882 is displayed in the user's locale unless the option 
36883 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
36884 is set. In this case, the month, day and year are represented by two
36885 digits, and the format used is mm/dd/yy. Finally, the fifth 
36886 field is what can be displayed of the MD5 hash of the certificate. You can 
36887 use any of the last three fields to distinguish between two certificates 
36888 for the same owner.
36890 Available commands in this screen and a short description of what they 
36891 do follows.
36892 <UL>
36893 <LI> <B>I</B> Imports a public certificate to this collection.
36894 <LI> <B>V</B> View information about a certificate such as the name of the person the
36895 certificate was issued to, its dates of validity, and validity status.
36896 <LI> <B>D</B> Marks a certificate deleted.
36897 <LI> <B>U</B> Removes the deletion mark on a certificate.
36898 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36899 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
36900 trust a certificate by copying it to the collection of trusted certificates.
36901 </UL>
36903 All commands provide feedback to let you know about their success or failure.
36905 <UL>   
36906 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36907 </UL><P>
36909 <UL>   
36910 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36911 </UL><P>
36912 &lt;End of help on this topic&gt;
36913 </BODY>
36914 </HTML>
36915 ====== h_config_smime_manage_private_menu =====
36916 <HTML>
36917 <HEAD>
36918 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36919 </HEAD>
36920 <BODY>
36921 <H1>S/MIME: Commands that Manage Private Keys</H1>
36924 This screen allows you to manage your private key.
36926 The format of this screen is as follows. There are five fields: The 
36927 leftmost field is normally empty, but it could contain the letter 
36928 &quot;D&quot; to indicate that that certificate has been marked for 
36929 deletion. The next field is the e-mail address of the owner of the 
36930 certificate, shown in its entirety. The third field is the first day of 
36931 validity for that certificate; the fourth field in the last day that that 
36932 certificate is valid, and the fifth field is what can be displayed of the 
36933 MD5 hash of the public certificate corresponding to this private key. You 
36934 can use any of the last three fields to distinguish between two 
36935 certificates for the same owner.
36937 Available commands and a short description of what they do follows.
36938 <UL>
36939 <LI> <B>I</B> Imports a new public key to this collection.
36940 <LI> <B>V</B> View information about the public certificate corresponding to this
36941 key.
36942 <LI> <B>D</B> Marks a key to be deleted.
36943 <LI> <B>U</B> Removes the deletion mark on a key.
36944 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36945 Note that expunging a private key does not remove the public key, which must
36946 be removed separately.
36947 </UL>
36949 All commands provide feedback to let you know about their success or failure.
36951 <UL>   
36952 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36953 </UL><P>
36955 <UL>   
36956 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36957 </UL><P>
36958 &lt;End of help on this topic&gt;
36959 </BODY>
36960 </HTML>
36961 ====== h_config_smime_manage_cacerts_menu =====
36962 <HTML>
36963 <HEAD>
36964 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36965 </HEAD>
36966 <BODY>
36967 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36970 This screen allows you to manage your collection of certificates that you
36971 trust. 
36973 The format of this screen is as follows. There are five fields: The 
36974 leftmost field is normally empty, but it could contain the letter 
36975 &quot;D&quot; to indicate that that certificate has been marked for 
36976 deletion. The next field is the e-mail address of the owner of the 
36977 certificate, shown in its entirety. The third field is the first day of 
36978 validity for that certificate; the fourth field in the last day that that 
36979 certificate is valid, and the fifth field is what can be displayed of the 
36980 MD5 hash of the certificate. You can use any of the last three fields to 
36981 distinguish between two certificates for the same owner.
36983 Available commands and a short description of what they do follows.
36984 <UL>
36985 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36986 done by reading the certificate and validating it. Once a certificate
36987 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36988 to the certificate, if necessary.
36989 <LI> <B>V</B> View information about this certificate, such as its issuer 
36990 and validity dates.
36991 <LI> <B>D</B> Marks a certificate to be deleted.
36992 <LI> <B>U</B> Removes the deletion mark on a certificate.
36993 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36994 </UL>
36996 All commands provide feedback to let you know about their success or failure.
36998 <UL>
36999 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37000 </UL><P>
37002 <UL>   
37003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37004 </UL><P>
37005 &lt;End of help on this topic&gt;
37006 </BODY>
37007 </HTML>
37008 ====== h_config_lame_list_mode =====
37009 <HTML>
37010 <HEAD>
37011 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
37012 </HEAD>
37013 <BODY>
37014 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
37016 This feature modifies the method Alpine uses to ask your IMAP
37017 server for folder names to display in the FOLDER LIST screen.
37018 It is intended to compensate for a small set of IMAP servers that
37019 are programmed to ignore a part of the request, and thus respond
37020 to Alpine's query with nonsensical results.
37023 If you find that Alpine is erroneously displaying blank folder lists,
37024 try enabling this feature.
37027 NOTE: Enabling this feature has consequences for the Goto and Save
37028 commands.  Many servers allow access to folders outside the area
37029 reserved for your personal folders via some reserved character,
37030 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
37031 allows, at the Goto and Save prompts, quick access to folders
37032 outside your personal folder collection without requiring a specific
37033 collection definition.  This behavior will generally not be available
37034 when this feature is enabled.
37037 <UL>   
37038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37039 </UL><P>
37040 &lt;End of help on this topic&gt;
37041 </BODY>
37042 </HTML>
37043 ====== h_config_enable_mulnewsrcs =====
37044 <HTML>
37045 <HEAD>
37046 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
37047 </HEAD>
37048 <BODY>
37049 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
37051 This feature makes it so Alpine can use multiple newsrcs based on
37052 the news server being connected to, which allows for separate lists
37053 of subscribed-to newsgroups. When this feature is not set, there is only
37054 one list of newsgroups.
37056 Under this feature, the name of a newsrc is based on the news server.
37057 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
37058 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
37059 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
37060 Setting this feature for the first time will allow for the option of using
37061 your old newsrc the next time you read news.
37063 If this feature is set, then the feature
37064 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
37065 also may affect the name of the newsrc file that is used.
37067 <UL>   
37068 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37069 </UL><P>
37070 &lt;End of help on this topic&gt;
37071 </BODY>
37072 </HTML>
37073 ======= h_ab_export_vcard =======
37074 <HTML>
37075 <HEAD>
37076 <TITLE>Address Book Export Format</TITLE>
37077 </HEAD>
37078 <BODY>
37079 <H1>Address Book Export Format</H1>
37081 You are exporting address book data from Alpine to a file outside of Alpine.
37082 You are being asked to choose the format of the export.
37083 Here are the choices:
37085 <DL>
37086 <DT><EM>A</EM>ddress List</DT>
37087 <DD>
37088 The addresses from the address book entries you are saving
37089 from will be saved one address per line.
37090 Address book lists (those with more than one address) will have
37091 all of their addresses saved separately.
37092 </DD>
37094 <DT><EM>V</EM>Card</DT>
37095 <DD>
37096 The entries will be saved in
37097 <A HREF="h_whatis_vcard">vCard</A> format.
37098 </DD>
37100 <DT><EM>T</EM>ab Separated</DT>
37101 <DD>
37102 The entries will be saved in tab-separated columns.
37103 There will be just 4 columns of data that correspond to Alpine's
37104 Nickname field, Full Name field, Address field, and Comment field.
37105 It might prove useful to Select only the Simple, non-List address book
37106 entries before Saving.
37107 </DD>
37109 <DT><EM>^C</EM> Cancel</DT>
37110 <DD>
37111 Cancel out of the Save.
37112 </DD>
37114 </DL>
37118 &lt;End of help on this topic&gt;
37119 </BODY>
37120 </HTML>
37121 ====== h_config_predict_nntp_server =====
37122 <HTML>
37123 <HEAD>
37124 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
37125 </HEAD>
37126 <BODY>
37127 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
37129 This feature allows Alpine to assume that the open NNTP server at the
37130 time of composition is the NNTP server to which the message should be
37131 posted.  This is especially recommended when there are multiple News
37132 collections.  If this feature is not set, Alpine will try to post to the first server in
37133 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
37134 this feature also negates the need to add News collection servers to
37135 the <!--#echo var="VAR_nntp-server"--> variable.
37137 This feature can be especially handy when used in conjunction with
37138 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
37140 <UL>   
37141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37142 </UL><P>
37143 &lt;End of help on this topic&gt;
37144 </BODY>
37145 </HTML>
37146 ====== h_config_nntp_search_uses_overview =====
37147 <HTML>
37148 <HEAD>
37149 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
37150 </HEAD>
37151 <BODY>
37152 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
37154 This feature should probably be turned on unless it causes trouble.
37155 The results of the NNTP overview command (XOVER) may be used to help
37156 with some searches in news groups.
37157 It should result in quicker response time.
37158 Turning this feature on apparently causes search results which are
37159 different from what you would get with the feature turned off on some
37160 servers.
37162 <UL>   
37163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37164 </UL><P>
37165 &lt;End of help on this topic&gt;
37166 </BODY>
37167 </HTML>
37168 ====== h_config_thread_sorts_by_arrival =====
37169 <HTML>
37170 <HEAD>
37171 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
37172 </HEAD>
37173 <BODY>
37174 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
37176 This feature affects how a threading sort arranges threads.  The default way
37177 to arrange threads is by the date of the earliest message in the thread.
37178 This feature arranges threads by the last message to arrive in a thread.
37180 This feature causes old threads that get recent messages to sort to the bottom,
37181 where previously a message arrival to a thread would not rearrange the order of
37182 that thread.
37184 <UL>   
37185 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37186 </UL><P>
37187 &lt;End of help on this topic&gt;
37188 </BODY>
37189 </HTML>
37190 ====== h_config_textplain_int =====
37191 <HTML>
37192 <HEAD>
37193 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
37194 </HEAD>
37195 <BODY>
37196 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
37198 This feature modifies the method Alpine uses to display Text/Plain
37199 MIME attachments from the Attachment Index screen.  Normally, the
37200 &quot;View&quot; command searches for any externally defined (usually
37201 via the
37202 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
37203 and displays the selected text within that viewer.
37206 Enabling this feature causes Alpine to ignore any external viewer
37207 settings and always display text with Alpine's internal viewer.
37210 <UL>   
37211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37212 </UL><P>
37213 &lt;End of help on this topic&gt;
37214 </BODY>
37215 </HTML>
37216 ====== h_config_wp_columns =====
37217 <HTML>
37218 <HEAD>
37219 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
37220 </HEAD>
37221 <BODY>
37222 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
37224 Web Alpine only.
37226 This configuration setting specifies the number of horizontal characters
37227 used to format various WebAlpine pages.  Smaller values will tend to reduce
37228 the amount of horizontal scrolling required to view pages within narrow
37229 browsers, such as those found on PDAs, and larger values will tend to 
37230 spread more information across the page.
37233 The Message List page uses the width to determine how many characters
37234 to assign each field.  Note, a smaller value may result in a disproportionate
37235 amount of blank space between fields on each line.  Similarly, a large
37236 value may result in cramped fields or horizontal scrolling.
37239 The Message View page uses this value to determine when to wrap lines
37240 in displayed message text.  Note, a smaller value may result in jagged
37241 right margins or confusing quoting.  A larger value may cause lines of text to
37242 run beyond the browser's right edge, requiring horizontal scrolling.
37245 <UL>   
37246 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37247 </UL><P>
37248 &lt;End of help on this topic&gt;
37249 </BODY>
37250 </HTML>
37251 ====== h_config_wp_state =====
37252 <HTML>
37253 <HEAD>
37254 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
37255 </HEAD>
37256 <BODY>
37257 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
37259 Web Alpine only.
37261 Various aspects of cross-session state.
37264 <UL>   
37265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37266 </UL><P>
37267 &lt;End of help on this topic&gt;
37268 </BODY>
37269 </HTML>
37270 ====== h_config_wp_aggstate =====
37271 <HTML>
37272 <HEAD>
37273 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
37274 </HEAD>
37275 <BODY>
37276 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
37278 Web Alpine only.
37280 Aggregate operations tab state.
37283 <UL>   
37284 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37285 </UL><P>
37286 &lt;End of help on this topic&gt;
37287 </BODY>
37288 </HTML>
37289 ====== h_config_wp_indexlines =====
37290 <HTML>
37291 <HEAD>
37292 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
37293 </HEAD>
37294 <BODY>
37295 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
37297 Web Alpine only.
37299 Number of index lines in table.
37302 <UL>   
37303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37304 </UL><P>
37305 &lt;End of help on this topic&gt;
37306 </BODY>
37307 </HTML>
37308 ====== h_config_wp_indexheight =====
37309 <HTML>
37310 <HEAD>
37311 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
37312 </HEAD>
37313 <BODY>
37314 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
37316 Web Alpine only.
37318 Index table row height.
37321 <UL>   
37322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37323 </UL><P>
37324 &lt;End of help on this topic&gt;
37325 </BODY>
37326 </HTML>
37327 ====== h_config_rss_news =====
37328 <HTML>
37329 <HEAD>
37330 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
37331 </HEAD>
37332 <BODY>
37333 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
37335 Web Alpine only.
37337 RSS News feed.
37340 <UL>   
37341 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37342 </UL><P>
37343 &lt;End of help on this topic&gt;
37344 </BODY>
37345 </HTML>
37346 ====== h_config_rss_weather =====
37347 <HTML>
37348 <HEAD>
37349 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
37350 </HEAD>
37351 <BODY>
37352 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
37354 Web Alpine only.
37356 RSS Weather feed.
37359 <UL>   
37360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37361 </UL><P>
37362 &lt;End of help on this topic&gt;
37363 </BODY>
37364 </HTML>
37365 ====== h_config_send_confirms_only_expanded =====
37366 <HTML>
37367 <HEAD>
37368 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
37369 </HEAD>
37370 <BODY>
37371 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
37373 This Web Alpine option specifies whether or not a Send confirmations
37374 happens when a composed message is readied for sending or not.  The
37375 default behavior is to not confirm that the nicknames were expanded to
37376 the intended addresses.
37379 <UL>   
37380 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37381 </UL><P>
37382 &lt;End of help on this topic&gt;
37383 </BODY>
37384 </HTML>
37385 ====== h_config_enable_jump_command =====
37386 <HTML>
37387 <HEAD>
37388 <TITLE>FEATURE: enable-jump-command</TITLE>
37389 </HEAD>
37390 <BODY>
37391 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
37393 This Web Alpine option specifies whether or not a Jump command is
37394 offered in the Message List and Message View pages.  The command is
37395 implemented as an input field in the left column of the List and View
37396 screens. 
37399 When enabled and a number is entered in the input field while the
37400 Message List is displayed, the Message List is reframed with the
37401 specified message.  While viewing a message, the message associated
37402 with the specified message number is displayed.
37405 <UL>   
37406 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37407 </UL><P>
37408 &lt;End of help on this topic&gt;
37409 </BODY>
37410 </HTML>
37411 ====== h_config_enable_newmail_sound =====
37412 <HTML>
37413 <HEAD>
37414 <TITLE>FEATURE: enable-newmail-sound</TITLE>
37415 </HEAD>
37416 <BODY>
37417 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
37419 This Web Alpine option specifies whether or not a sound file is sent
37420 to the web browser along with the newmail notification message.
37424 <UL>   
37425 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37426 </UL><P>
37427 &lt;End of help on this topic&gt;
37428 </BODY>
37429 </HTML>
37430 ====== h_config_render_html_internally =====
37431 <HTML>
37432 <HEAD>
37433 <TITLE>FEATURE: render-html-internally</TITLE>
37434 </HEAD>
37435 <BODY>
37436 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
37438 By default, Web Alpine will pass cleansed HTML text you receive in messages 
37439 to the browser for display (rendering).  This feature causes Web Alpine to convert 
37440 the HTML text into plain text in the same way Unix and PC-Alpine do.
37444 <UL>   
37445 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37446 </UL><P>
37447 &lt;End of help on this topic&gt;
37448 </BODY>
37449 </HTML>
37450 ====== h_config_role_undo =====
37451 Yes, remember changes and exit back to list of roles; No, discard changes
37452 made in this screen; ^C, cancel exit and stay in this config screen.
37453 ====== h_exit_editor =====
37454 S, save changes and exit from the editor; D, do not save changes but
37455 do exit from the editor; or ^C, cancel exit and stay in the editor.
37456 ====== h_config_undo =====
37457 Yes, save changes and exit; No, exit without saving any changes made since
37458 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
37459 ====== h_os_index_whereis =====
37460 Enter ^V or ^Y to go immediately to the last or first message in the index.
37461 Or, enter the match string followed by RETURN.
37462 ====== h_os_index_whereis_agg =====
37463 Enter ^V or ^Y to go immediately to the last or first message in the index,
37464 Or, enter the match string followed by RETURN (or ^X to select all matches).
37465 =========== h_oe_add_full ==================
37466 Type the full name of the person being added and press the RETURN key.
37467 Press ^C to cancel addition.
37468 =========== h_oe_add_nick ==================
37469 Type a short nickname and press RETURN.  A nickname is a short easy-to-
37470 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
37471 ========== h_oe_add_addr ================
37472 Type the e-mail address and press RETURN.
37473 Press ^C to cancel addition.
37474 ========== h_oe_crlst_full ==============
37475 Type a long name or description for the list that you are creating and
37476 press RETURN.  Press ^C to cancel creation of list.
37477 =========== h_oe_crlst_nick =============
37478 Type a nickname (short, easy-to-remember name or single word) for the list
37479 you are creating and press RETURN.  Press ^C to cancel.
37480 ========== h_oe_crlst_addr ==============
37481 Type an e-mail address, or a nickname already in the address book that you
37482 want to be part of this list and press RETURN.
37483 ========== h_oe_adlst_addr =============
37484 Type an e-mail address or a nickname already in the address book that you
37485 want to add to this list and press RETURN.
37486 ========== h_oe_editab_nick ============
37487 Change the nickname using the arrow keys and delete key.  Press RETURN
37488 when done.  Press ^C to cancel editing and leave the nickname as it was.
37489 ========== h_oe_editab_full ============
37490 Change the full name using the arrow keys and delete key.  Press RETURN
37491 when done.  Press ^C to cancel editing and leave the full name as it was.
37492 ========== h_oe_editab_addr ============
37493 Change the address using the arrow keys and delete key.  Press RETURN
37494 when done.  Press ^C to cancel editing and leave the address as it was.
37495 ========== h_oe_editab_fcc ============
37496 Change the fcc using the arrow keys and delete key.  Press RETURN when
37497 done.  Press ^C to cancel editing and leave the fcc as it was.
37498 ========== h_oe_editab_comment ============
37499 Change the comment field using the arrow keys and delete key.  Press RETURN
37500 when done.  Press ^C to cancel editing and leave the comment as it was.
37501 ====== h_ab_forward =====
37502 Yes, expand nicknames and qualify local names with your current domain name;
37503 No, leave nicknames and local names as is;  ^C, cancel.
37504 ========== h_ab_export ==========
37505 Type the name of a file to write the addresses into and
37506 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
37507 ========== h_ab_edit_a_field ==========
37508 Edit any of the fields of the currently selected entry by typing one of the
37509 letters at the bottom of the screen.  Press ^C to cancel edit.
37510 ====== h_ab_del_data_revert =====
37511 Press B to completely delete addrbook and revert to default, C to delete config
37512 and revert while leaving data, or D to only delete data (make it empty).
37513 ====== h_ab_del_data_modify =====
37514 Press B to completely delete addrbook, C to delete configuration while leaving
37515 data, or D to delete data (make it empty) but leave config. ^C to cancel.
37516 ====== h_ab_del_config_modify =====
37517 Yes, remove this address book from my configuration.
37518 No, make no changes now.
37519 ====== h_ab_del_config_revert =====
37520 Yes, remove this address book from my config and revert to default.
37521 No, make no changes now.
37522 ====== h_ab_del_default =====
37523 Yes, remove this default address book from my configuration.
37524 No, make no changes now.
37525 ====== h_ab_really_delete =====
37526 Yes, delete the actual contents of the address book, not just the 
37527 configuration.  No, don't delete the data after all, cancel and start over.
37528 ====== h_ab_del_ignore =====
37529 Press I to ignore all the default address books for this category.  Press R to
37530 remove this one address book and add the others to your personal list.
37531 ====== h_ab_del_dir_ignore =====
37532 Press I to ignore all the default directory servers for this category.
37533 Press R to remove this one server and add the others to your personal list.
37534 ====== h_ab_copy_dups =====
37535 Yes, overwrite the existing entry.
37536 No, skip duplicates but save the rest. Press ^C to cancel.
37537 ====== h_confirm_cancel =====
37538 Type C to Confirm that you want to abandon the message you are composing.
37539 Type N or ^C to cancel out of the cancel and keep composing.
37540 ====== h_ab_text_or_vcard =====
37541 Text, start composer with displayed text already included.
37542 VCard, start composer with address book entry attached as a vCard. ^C cancels.
37543 ====== h_ab_backup_or_ldap =====
37544 Backup, copy email address from entry and allow editing of it.
37545 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
37546 ====== h_ldap_text_or_vcard =====
37547 Text: export displayed text for selected entry. Address: export only the
37548 email address. VCard: export entry in vCard format. ^C cancels.
37549 ====== h_ab_save_exp =====
37550 Save, save entry or entries to an address book.
37551 Export, save to file outside of pine. ^C cancels save.
37552 ====== h_ab_add =====
37553 A, add a brand new entry to this address book.
37554 E, edit the entry that is currently highlighted. ^C to cancel.
37555 ====== h_ab_shuf =====
37556 U, swap order of highlighted address book and the one above it.
37557 D, swap order of highlighted address book and the one below it. ^C to cancel.
37558 ====== h_ab_shuf_up =====
37559 U, swap order of highlighted address book and the one above it.
37560 Press ^C to cancel.
37561 ====== h_ab_shuf_down =====
37562 D, swap order of highlighted address book and the one below it.
37563 Press ^C to cancel.
37564 ====== h_folder_prop =====
37565 Count is # of messages in the folder, Unseen means messages that have not
37566 been read, New means messages that were Recently added to the folder.
37567 ====== h_role_shuf =====
37568 U, swap order of highlighted rule and the one above it.
37569 D, swap order of highlighted rule and the one below it. ^C to cancel.
37570 ====== h_role_shuf_up =====
37571 U, swap order of highlighted rule and the one above it.
37572 Press ^C to cancel.
37573 ====== h_role_shuf_down =====
37574 D, swap order of highlighted rule and the one below it.
37575 Press ^C to cancel.
37576 ====== h_incoming_shuf =====
37577 B, swap order of highlighted directory and the one before it.
37578 F, swap order of highlighted directory and the one after it. ^C to cancel.
37579 ====== h_incoming_shuf_up =====
37580 B, swap order of highlighted directory and the one before it.
37581 Press ^C to cancel.
37582 ====== h_incoming_shuf_down =====
37583 F, swap order of highlighted directory and the one after it.
37584 Press ^C to cancel.
37585 ====== h_dir_shuf =====
37586 U, swap order of highlighted directory and the one above it.
37587 D, swap order of highlighted directory and the one below it. ^C to cancel.
37588 ====== h_dir_shuf_up =====
37589 U, swap order of highlighted directory and the one above it.
37590 Press ^C to cancel.
37591 ====== h_dir_shuf_down =====
37592 D, swap order of highlighted directory and the one below it.
37593 Press ^C to cancel.
37594 ====== h_hdrcolor_shuf =====
37595 U, swap order of highlighted Header Color and the one above it.
37596 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
37597 ====== h_hdrcolor_shuf_up =====
37598 U, swap order of highlighted Header Color and the one above it.
37599 Press ^C to cancel.
37600 ====== h_hdrcolor_shuf_down =====
37601 D, swap order of highlighted Header Color and the one below it.
37602 Press ^C to cancel.
37603 ========== h_oe_editab_al ============
37604 Change the address using the arrow keys and delete key.  Press RETURN
37605 when done.  Press ^C to cancel editing and leave the address as it was.
37606 ========== h_dir_comp_search ===============
37607 Type a string to look for just like you would in the composer. Your configured
37608 rules for the servers with the implicit flag set will be used.
37609 ========== h_oe_searchab ===============
37610 Type the word or name you want to search for and press RETURN.  If you press
37611 RETURN without entering anything the word in [] will be searched for.
37612 ========== h_oe_chooseabook ==========
37613 Choose the address book you want to save the new entry in.
37614 Use ^N or ^P to change address books.  ^C to cancel.
37615 ========== h_oe_takeaddr ==========
37616 Edit the e-mail address using the arrow and delete keys.  Press RETURN
37617 when done.  Press ^C to cancel adding this entry to the address book.
37618 ========== h_oe_take_replace ==========
37619 Press R to replace the old entry with this new data.  You will still have
37620 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
37621 ========== h_oe_take_replace_or_add ==========
37622 Press R to replace the old entry.  Press A to add the selected addresses to
37623 the old existing list.  N to enter another nickname. ^C to cancel now.
37624 ========== h_oe_takename ==========
37625 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
37626 when done.  Press ^C to cancel adding this entry to the address book.
37627 ========== h_oe_takenick ==========
37628 Type a nickname (short easy-to-remember name, initials or single word) for this
37629 entry in the address book and press RETURN.  Press ^C to cancel addition.
37630 ========== h_oe_jump ==========
37631 Type the message number you want to jump to and press RETURN.  The word "end"
37632 represents the last message. Press ^C to cancel jumping to another message.
37633 ========== h_oe_jump_thd ==========
37634 Type the thread number you want to jump to and press RETURN.  The word "end"
37635 represents the last thread. Press ^C to cancel jumping to another thread.
37636 ========== h_oe_debuglevel ==========
37637 Higher number shows more debugging details.
37638 Press ^C if you want to cancel the change.
37639 ========== h_oe_broach ==========
37640 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
37641 to go to the previous/next collections in the list.  Press ^C to cancel goto.
37642 ========== h_oe_foldsearch ==========
37643 Type the text you want to search for in foldernames and press RETURN.  If you
37644 press RETURN without entering anything, any text in [] will be searched for.
37645 ========== h_oe_foldrename ==========
37646 Change the old name of the folder to the new name using the arrow and
37647 delete keys and press RETURN.  Press ^C to cancel rename.
37648 ========== h_oe_login ==========
37649 Enter your login name for the host you are opening the mailbox on.  Just press
37650 RETURN to use your login from this host as is, or edit it with delete key.
37651 ========== h_oe_passwd ==========
37652 Type your password for the host and login shown as part of the prompt.
37653 Press ^C to cancel opening folder.
37654 ========== h_oe_choosep ==========
37655 Enter the number associated with the printer you want to select.  Press ^C to
37656 cancel the printer selection.  The current selection is highlighted.
37657 ========== h_oe_customp ==========
37658 Type the name of the Unix print command and press RETURN.  Press ^C to
37659 cancel the printer selection.
37660 ========== h_oe_searchview ==========
37661 Type the word or name you want to search for and press RETURN.  If you press
37662 RETURN without entering anything the word in [] will be searched for.
37663 ========== h_oe_keylock ==========
37664 The keyboard is in use and locked by another user.  Only that user can
37665 unlock this keyboard by typing the password.
37666 ========== h_wt_expire ==========
37667 At the beginning of each month Alpine offers to rename your current sent-mail
37668 folder to one named for the month so you have a sent-mail folder for each month
37669 ========== h_wt_delete_old ==========
37670 It is the beginning of the month, and we need to conserve disk
37671 space.  Please delete any sent-mail that you do not need.
37672 ========== h_select_sort ==========
37673 Select the order for sorting the index by typing the capitalized letter.
37674 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
37675 ========== h_no_F_arg ============
37676 Enter name of file to be opened.
37678 ========== h_sticky_personal_name ==========
37679 Type in your name as you want it to appear on outgoing email.  This entry
37680 will be saved into your Alpine configuration file.
37681 ========== h_sticky_inbox ============
37682 INBOX syntax is usually {complete.machine.name}INBOX
37683 This entry will be saved in your Alpine configuration file.
37684 ========== h_sticky_smtp ============
37685 The name of the computer on your campus that relays your outgoing email
37686 to the Internet.  This entry will be saved in your Alpine configuration file.
37687 ========== h_sticky_user_id ==========
37688 The username or login-id part of your email address.  This entry will be
37689 saved in your Alpine configuration file.
37690 ========== h_sticky_domain ==========
37691 The domain part of your email address, NOT the name of your PC.  This
37692 entry will be saved in your Alpine configuration file.
37693 ========== h_bounce =========
37694 Enter the address or nickname of the intended recipient.  Alpine will resend
37695 the message, which will retain the original author's From: address.
37696 ========== h_incoming_add_folder_nickname =========
37697 Enter an (optional) nickname that will be used in lieu of the actual
37698 host and folder names in the FOLDER LIST display.
37699 ========== h_anon_forward ==========
37700 Enter the address of your intended recipient, or ^C to cancel.
37701 Example: jsmith@somewhere.edu
37702 ========== h_news_subscribe ==========
37703 Enter the name of the newsgroup to which you wish to subscribe,
37704 or ^C to cancel.  Example: comp.mail.pine
37705 ========== h_pipe_msg ==========
37706 Enter the name of the Unix command to which you wish to send this
37707 message, or ^C to cancel.
37708 ========== h_pipe_attach ==========
37709 Enter the name of the Unix command to which you wish to send this
37710 attachment, or ^C to cancel.
37711 ========== h_select_by_num ==========
37712 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
37713 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
37714 ========== h_select_by_gm_content ==========
37715 Enter your search key in the same way that you would enter a search
37716 key in the web interface for Gmail.
37717 ========== h_select_by_thrdnum ==========
37718 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
37719 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
37720 ========== h_select_txt_from ==========
37721 Messages with From: headers containing the entered string will be selected.
37722 ^C to cancel. ^G again to see original options.
37723 ========== h_select_txt_not_from ==========
37724 Messages without From: headers containing the entered string will be selected.
37725 ^C to cancel. ^G again to see original options.
37726 ========== h_select_txt_to ==========
37727 Messages with To: headers containing the entered string will be selected.
37728 ^C to cancel. ^G again to see original options.
37729 ========== h_select_txt_not_to ==========
37730 Messages without To: headers containing the entered string will be selected.
37731 ^C to cancel. ^G again to see original options.
37732 ========== h_select_txt_cc ==========
37733 Messages with Cc: headers containing the entered string will be selected.
37734 ^C to cancel. ^G again to see original options.
37735 ========== h_select_txt_not_cc ==========
37736 Messages without Cc: headers containing the entered string will be selected.
37737 ^C to cancel. ^G again to see original options.
37738 ========== h_select_txt_subj ==========
37739 Messages with Subject: headers containing the entered string will be selected.
37740 ^C to cancel.  ^X enters Subject: line of current message.
37741 ========== h_select_txt_not_subj ==========
37742 Messages without Subject headers containing the entered string will be selected.
37743 ^C to cancel.  ^X enters Subject: line of current message.
37744 ========== h_select_txt_all ==========
37745 All messages containing the entered string will be selected.  Headers and body,
37746 but not encoded attachments, will be compared.  Enter ^C to cancel.
37747 ========== h_select_txt_not_all ==========
37748 All messages that don't contain the entered string will be selected.  Headers
37749 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
37750 ========== h_select_txt_body ==========
37751 All messages containing the entered string will be selected. Body text, but
37752 not headers or encoded attachments, will be compared. ^C to cancel.
37753 ========== h_select_txt_not_body ==========
37754 All messages that don't contain the entered string will be selected. Body
37755 text, but not headers or encoded attachments, will be compared. ^C to cancel.
37756 ========== h_select_txt_recip ==========
37757 Messages with Cc: or To: headers containing the entered string will be selected.
37758 ^C to cancel. ^G again to see original options.
37759 ========== h_select_txt_not_recip ==========
37760 Messages without Cc: or To: headers containing the string will be selected.
37761 ^C to cancel. ^G again to see original options.
37762 ========== h_select_txt_partic ==========
37763 Messages with Cc, To, or From headers containing the string will be selected.
37764 ^C to cancel. ^G again to see original options.
37765 ========== h_select_txt_not_partic ==========
37766 Messages without Cc, To, or From headers containing the string will be selected.
37767 ^C to cancel. ^G again to see original options.
37768 ========== h_select_date ==========
37769 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
37770 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
37771 ========== h_attach_index_whereis ==========
37772 Enter some text that appears in the Attachment Index entry for the desired
37773 attachment.  The first attachment containing that text will be highlighted.
37774 ========== h_kb_lock ==========
37775 Keystrokes entered here (up to a RETURN) comprise a password that must
37776 be entered again later in order to unlock the keyboard.
37777 ========== h_compose_default ==========
37778 N, compose a new message. R, set a role.
37779 ^C to cancel.
37780 ========== h_untranslatable ==========
37781 Send using UTF-8 character set; Send but replace untranslatable characters
37782 with question marks; return to the composer; or cancel message altogether.
37783 ========== h_compose_intrptd ==========
37784 N, compose a new msg. I, continue interrupted msg. R, set a role.
37785 ^C to cancel.
37786 ========== h_compose_postponed ==========
37787 N, compose a new message. P, continue postponed msg. R, set a role.
37788 ^C to cancel.
37789 ========== h_compose_intrptd_postponed ==========
37790 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37791 R, set a role. ^C to cancel.
37792 ========== h_compose_form ==========
37793 N, compose a new message. F, use form letter. R, set a role.
37794 ^C to cancel.
37795 ========== h_compose_intrptd_form ==========
37796 N, compose a new msg. I, continue interrupted msg. F, use form letter.
37797 R, set a role. ^C to cancel.
37798 ========== h_compose_postponed_form ==========
37799 N, compose a new message. P, continue postponed msg. F, use form letter.
37800 R, set a role. ^C to cancel.
37801 ========== h_compose_intrptd_postponed_form ==========
37802 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37803 F, use form letter. R, set a role. ^C to cancel.
37804 ========== h_config_context_del_except ==========
37805 If you delete the last exceptional collection you can only add it back by
37806 manually editing the exceptions config file.
37807 ========== h_config_whereis ==========
37808 To move quickly to a particular line, enter a search string or
37809 ^C to cancel.
37810 ========== h_config_edit_scorei ==========
37811 Enter interval in the form (min,max). -INF and INF may be used to represent
37812 -infinity and infinity. ^C to cancel change. RETURN to accept change.
37813 ========== h_config_add ==========
37814 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
37815 pressing RETURN sets the Empty Value (this turns off any global default).
37816 ========== h_config_add_custom_color ==========
37817 Enter a header fieldname. For example, "subject" or "from".
37819 ========== h_config_add_pat_hdr ==========
37820 Enter a header fieldname. For example, "reply-to" or "organization" or
37821 any fieldname you want that isn't included already.
37822 ========== h_config_print_opt_choice ==========
37823 You may edit either the initialization string (characters printed before
37824 printing starts) or the trailer string.  Choose one or ^C to cancel.
37825 ========== h_config_print_init ==========
37826 Enter a C-style string for this.  You may use common backslash escapes like
37827 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
37828 ========== h_config_change ==========
37829 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
37830 delete current (highlighted) character, etc.  Enter ^C to cancel change.
37831 ========== h_config_replace_add ==========
37832 Replace ignores the current default, Add places the current default in your
37833 editing buffer as if you had typed it in.
37834 ========== h_config_insert_after ==========
37835 Enter a nickname for this print command.  (InsertBefore puts the new item
37836 before the current line, InsertAfter puts it after the current line.)
37837 ========== h_config_print_cmd ==========
37838 Enter command to be executed for the printer.  Use normal editing keys
37839 to modify, ^C to cancel, carriage return to accept current value.
37840 ========== h_config_role_del ==========
37841 Answering Yes will remove this rule completely from your rules list.
37842 ========== h_config_role_addfile ==========
37843 Type the name of a file to add to your configuration. You don't need to
37844 use a file, you may add rules directly (with Add) without using a file.
37845 ========== h_config_role_delfile ==========
37846 Answering Yes will remove this rule file completely from your rules list.
37847 The rules data file itself will not be removed.
37848 ========== h_config_print_del ==========
37849 Answering Yes will remove this printer completely from your printer list.
37850 ========== h_config_print_name_cmd ==========
37851 You may edit the Nickname of this printer, the Command to be executed when
37852 printing, or change the Options associated with this printer.
37853 ========== h_send_check_fcc ==========
37854 Yes, send message without an Fcc.
37855 No, return to composer.
37856 ========== h_send_check_subj ==========
37857 Yes, send message without a Subject.
37858 No, return to composer.
37859 ========== h_send_check_to_cc ==========
37860 Yes, send message without a To address, or a Cc address, or a Newsgroup.
37861 No, return to composer.
37862 ========== h_send_fcc_only ==========
37863 Yes, copy message to Fcc only and send to NO recipients.
37864 No, return to composer.
37865 ========== h_send_prompt ==========
37866 Yes, send the message.
37867 No or ^C, return to composer.
37868 ========== h_send_prompt_flowed ==========
37869 Yes, send the message.  No or ^C, return to composer.
37870 What's Flowed? See Do Not Send Flowed Text in config screen.
37871 ========== h_send_prompt_dsn ==========
37872 Yes, send the message.  No or ^C, return to composer.
37873 What's DSNOpts? See Enable Delivery Status Notification in config screen.
37874 ========== h_send_prompt_dsn_flowed ==========
37875 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
37876 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
37877 ========== h_role_confirm ==========
37878 Yes, use displayed role. No, compose without a role.
37879 ^C, cancel the message. ^T, select a role from your other eligible roles.
37880 ========== h_norole_confirm ==========
37881 Return, compose without a role.
37882 ^C, cancel the message. ^T, select a role from your eligible roles.
37883 ========== h_custom_print ==========
37884 Enter a Unix command that accepts its data on standard input.
37885 Alpine will display any information the command sends to standard output.
37886 ========== h_convert_abooks_and_sigs ==========
37887 You will be given the opportunity to convert address books and signature files
37888 to remote configurations.
37889 ========== h_convert_abooks ==========
37890 You will be given the opportunity to convert address books to remote
37891 configurations.
37892 ========== h_flag_keyword ==========
37893 Enter the name of the keyword you want to add for this folder.
37894 No spaces, parentheses, braces, percents or asterisks are allowed.
37895 ========== h_select_keyword ==========
37896 Enter the keyword you want to match, or use ^T to select a keyword from a list
37897 of possible keywords for this folder. Use ! to look for non-matches instead.
37898 ========== h_type_keyword ==========
37899 Enter the keyword you want to add. You may add a nickname in the next step.
37900 No spaces, parentheses, braces, percents or asterisks are allowed.
37901 ========== h_type_keyword_nickname ==========
37902 Enter an optional nickname for the keyword you want to add.
37903 Type Carriage return to use the keyword name instead of a nickname.
37904 ========== h_convert_sigs ==========
37905 You will be given the opportunity to convert signature files to remote
37906 configurations.
37907 ========== h_convert_abook ==========
37908 Yes is fairly safe. You will be ADDing a remote address book that is a copy
37909 of the current address book. The current abook won't be removed automatically.
37910 ========== h_convert_sig ==========
37911 Answering Yes copies the contents of the signature file into your Alpine
37912 configuration file. After that, the contents of the file will not be used.
37913 ========== h_save_addman ==========
37914 Enter the simple name of the folder you want to add. Carriage return to
37915 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37916 ========== h_reopen_folder ==========
37917 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37918 No leaves the folder index as it was without discovering new mail.
37919 ========== h_convert_pinerc_server ==========
37920 This is the name of the host (computer) where the remote Alpine configuration
37921 will be stored. This should be an IMAP server that you have permission to use.
37922 ========== h_convert_pinerc_folder ==========
37923 Enter the correct remote folder name. This folder is special and should
37924 contain only configuration data. It shouldn't contain other mail messages.
37925 ========== h_role_compose ==========
37926 Compose a New message, Reply to current message, Forward current message, or
37927 Bounce message. Then you will be asked to choose one of your Roles to be used.
37928 ========== h_role_aggregate ==========
37929 Compose a reply, or forward, or bounce the selected messages. Then you 
37930 will be asked to choose one of your Roles to be used for this operation.
37931 ========== h_save_size_changed ==========
37932 The reported size of a message is not the same as the actual size. Answer Yes
37933 to continue and hope for the best or No to Cancel the entire Save.
37934 ========== h_select_by_larger_size ==========
37935 Enter a number or ^C to cancel. All messages greater than this many characters
37936 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37937 ========== h_select_by_smaller_size ==========
37938 Enter a number or ^C to cancel. All messages less than this many characters
37939 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37940 ========== h_preserve_field ==========
37941 Use 'p' to toggle between preserving or not preserving the original To:
37942 and Cc: fields of the message. Enter ^C to cancel message.