* clear out some warnings by gcc 9.3.1.
[alpine.git] / pith / pine.hlp
blob81ea56095631dedc8c1a84b213df13aca12a9148
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 506 2020-09-19 15:50:17
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 Alpine is a free email program. Your use of Alpine is subject to the terms of the <A 
175 href="h_apache_license">Apache License 2.0</A>.
178 Alpine's privacy policy is a living, online only, document, which can be found at
179 <A href="h_privacy_policy">http://alpine.x10host.com/privacy.html</A>.
180 By following the previous link,  Alpine
181 will connect to an external server, and will download it and display
182 it for you. Please take some time to read it and understand it.
183 Since the Privacy Policy could be ammended to take into consideration
184 new additions to Alpine, please check it periodically.
187 This is a development version of Alpine. These enhancements are
188 released after the release of version 2.23. Please report any
189 problems you find with this release.
191 <P> Additions include:
193 <UL>
194 <LI> Expansion of the configuration screen for XOAUTH2 to include
195      username, authorization flow, and tenant.
197 <LI> XOAUTH2: automatic renew of access token and connection to a server
198      within 60 seconds of expiration of the access token.
200 <LI> If a user has more than one client-id for a service, Alpine tries to
201      asks the user which client-id to use and associates that client-id to
202      the credentials in the XOAUTH2 configuration screen.
203      <A HREF="h_xoauth2_config_screen">Learn more</A>.
205 <LI> Addition of Yandex.com to the list of services that Alpine can use XOAUTH2 to
206      authenticate for reading and sending email.
208 <LI> Addition of a link to the Apache License 2.0 (see above). This is 
209      available from the Release Notes as well as the welcome screen.
211 <LI> Modifications to protect the privacy of users:
212 <UL>
213 <LI> Alpine does not generate Sender or X-X-Sender by default
214      by enabling  <a href="h_config_disable_sender"><!--#echo var="FEAT_disable-sender"--></a>
215      as the default.
216 <LI> Alpine does not disclose User Agent by default by enabling
217      <A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A>
218      by default.
219 <LI> Alpine uses the domain in the From: header of a message
220      to generate a message-id and suppresses all information
221      about Alpine, version, revision, and time of generation
222      of the message-id from this header. This information is
223      replaced by a random string.
224 </UL>
226 <LI> Unix Alpine displays configure options and flags when 
227      invoked as &quot;alpine -v&quot;. Suggested by Matt Ackeret.
229 <LI> Alpine will ding the terminal bell when asking  about quitting
230      when new mail arrives. This is consistent with Alpine dinging the
231      bell when new mail arrives. The bell will not ding if it is disabled
232      for status messages. Suggested by Chime Hart.
234 <LI> When messages are selected, pressing the &quot;;&quot; command to broaden or narrow
235      a search, now offers the possibility to completely replace the search, and
236      is almost equivalent to being a shortcut to &quot;unselect all messages, and select
237      again&quot;. The difference is that cancelling this command will not unselect
238      all currently selected messages. Suggested by Holger Trapp.
240 <LI> Alpine will not write debug files unless started with the option -d, 
241      so for example &quot;alpine -d 2&quot; will generate a debug file at level 2, 
242      but just issuing the alpine command will not write any debug to a file.
244 <LI> Experimental: Attempt to implement the Encryption Range in Windows. It works
245      in Windows 10, and it should work in Windows 8.1. It needs testing in
246      Windows 7 and Windows Vista.
248 <LI> Addition of variables <A HREF="h_config_user_certs_path"><!--#echo var="VAR_user-certs-path"--></A>
249      and <A HREF="h_config_user_certs_file"><!--#echo var="VAR_user-certs-file"--></A>
250      which allow a user to specify locations for certificates that the user
251      trusts.
253 <LI> Ignore non-empty initial challenge in the GSSAPI authenticator. Based
254      on a patch written by Jarek Polok, but submitted by Ignacio Reguero.
256 <LI> When a server expires a refresh token, Alpine needs to cancel it
257     internally. Alpine will attempt to get a new one when it  reopens the
258     folder after it cancels it.
259 </UL>
262 Bugs addressed:
264 <UL>
265 <LI> When Alpine starts a PREAUTH connection, it might still ask the user
266      to login. Reported by Frank Tobin.
268 <LI> Crash while resizing the screen when viewing a calendar event.
270 <LI> When Alpine opens a folder in a server whose address is given numerically
271      it might crash due to an incorrect freeing of memory. Reported by Wang Kang.
273 <LI> Crash when Alpine frees memory on a system where LC_CTYPE is not 
274      configured, and the user calls the file browser to attach files to
275      a message. Reported by Luis Gerardo Tejero.
277 <LI> Invalid signatures created by Alpine, when built with recent
278      releases of the Openssl-1.1.1 series (but not in the Openssl-1.0.1 series).
279      Fix contributed by Bernd Edlinger.
281 <LI> After returning from the directory side of a dual-folder, sometimes 
282      Alpine would return to the first folder in the parent directory or to 
283      the dual-folder. The fix is to return to the original dual-folder as 
284      intended. Reported by Holger Trapp.
286 <LI> When an attachment is deleted and the original message is saved, Alpine
287      might write only a part of the name of the file deleted. Reported by Holger
288      Trapp.
290 <LI> URLs that are surrounded by white space are not cleaned by Alpine before
291      passing them to the browser, resulting in no display of the URL when Alpine
292      tries to open it. Reported by Gregory Heytings.
294 <LI>  When Alpine is built without smime, password file functionality might
295       fail. Reported by Andres Fehr.
297 <LI> Crash in PC-Alpine when using the eXternal command.
299 <LI> Fix in Macs that made Alpine abort a ssh connection to an imap server.
300      Reported and assisted by Wang Kang.
301 </UL>
304 Version 2.23 has new additions and addresses bugs found in previous releases.
307 Additions include:
309 <UL>
310 <LI> Implementation of XOAUTH2 authentication support for Outlook.
311      Based on documentation suggested by Andrew C Aitchison.
313 <LI> Add support for the OAUTHBEARER authentication method in Gmail. Thanks to
314      Alexander Perlis for suggesting it and explaining how the method works.
316 <LI> Creation of Alpine's Privacy Policy. This is presented as a link to
317     an online document from the Release Notes (Link at the top of this
318     document.) Upon user request, Alpine downloads and displays this
319     document. Links to the privacy policy are also displayed when a user
320     starts Alpine for the first time, or when a user starts a new version
321     of Alpine. There is no default exit greeting command for these
322     screens, and to exit the user must press "E", instead of the old
323     default, which was the RETURN command. The RETURN command will open
324     the handle on which the cursor is on, which by default is the Privacy
325     Policy.
327 <LI> Support for the SASL-IR IMAP extension that avoids a round trip during
328      authentication. Similar support added for the SMTP, NNTP and POP3 
329      protocols. Thanks to Geoffrey Bodwin for a report that lead to this
330      implementation.
332 <LI> Alpine can pass an HTML message to an external web browser, by using the
333      &quot;External&quot; command in the <a href="h_attachment_screen">ATTACHMENT INDEX</a>
334      screen. <A href="h_command_external_browser">Learn more</A>.
336 <LI> New configuration variable
337      <a href="h_external_loads_inline_images_only"><!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>
338      that controls if Alpine will keep the source link to all the images in the
339      HTML message, or will only pass a link to inline images included in the message. For your
340      privacy and security this feature is enabled by default.
342 <LI> When reading an email and a user selects an email address to which to compose
343      a message from the message, the user will be able to select a role to compose
344      that message.
346 <LI> New variable system-certs-path that allows users to indicate the 
347      location of the directory where certificates are located. In PC-Alpine 
348      this must be C:\\libressl\\ssl\\certs. The C: drive can be replaced 
349      by the name of the drive where the binary and DLL files are located.
351 <LI> New variable system-certs-file that allows users to configure the
352      location of a container of certificate authority (CA) certificates
353      to be used to validate certificates of remote servers.
355 <LI> Remove sleep of 5 seconds for mailcap programs that use the terminal
356      to display content. Suggested by Carl Edquist. In addition, remove the
357      configurable process table command and its corresponding sleep time.
358 </UL>
361 Bugs addressed:
363 <UL>
364  <LI> Security Bug: Alpine can be configured to start a secure connection using /tls
365       on an insecure connection. However, if the connection is PREAUTH, Alpine
366       will not upgrade the connection to a secure connection, because a client
367       must not issue a STARTTLS to a server that supports it in authenticated
368       state. This makes Alpine continue to use an insecure connection with the
369       server, exposing user data. Reported by Damian Poddebniak and Fabian
370       Ising from Münster University of Applied Sciences.
372    <LI> Selecting by subject might not copy the subject of the current message
373      to the selection text correctly. Reported by Iosif Fettich.
375    <LI> Alpine does not set the return path correctly when using a role while bouncing
376     a message. Reported by Dr. C. Griewatsch.
378 <LI>Bug in PC-Alpine that made Alpine go into an infinite loop and
379     consume CPU when it was iconized. Reported by Holger Schieferdecker in
380     comp.mail.pine.
382 <LI>Crash in Alpine when attempting to reply to a multipart/alternative 
383     message that is malformed, and the option to include attachments in
384     reply is enabled. Reported and patched by Peter Tirsek.
386 <LI>Bug that makes Alpine split encoded words in the subject of a message
387     in the middle of a utf-8 character into two encoded words, breaking the
388     encoding. Reported by Jean Chevalier.
390 <LI> Alpine would not redraw the screen when a check for new mail in an
391     incoming folder failed due to a failure while validating the server 
392     certificate, and the user did not allow the connection to proceed.
394 <LI> Crash in Alpine while resizing the screen when using any of the tokens
395     SUBJKEYTEXT, SUBJECTTEXT, or SUBJKEYINITTEXT in the index format, and 
396     the screen was resized. Reported by Iggy Mogo.
398 <LI> When Alpine is trying to authenticate to Gmail, using the XOAUTH2 method,
399     it does not display the url the user needs to open, in order to authorize
400     Alpine to access Gmail using XOAUTH2 when Alpine still has not created
401     a screen. Reported by Baron Fujimoto.
403 <LI> When an html anchor does not quote the link in the href parameter,
404     alpine does not link to it.
406 <LI> Attempt to fix a bug that breaks scrolling of a message in Alpine when
407      the screen is resized. Reported in the Debian bug system at
408      <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=956361">https://bugs.debian.org/cgi-bin/bugreport.cgie?bug=956361</A>.
409 </UL>
412 Version 2.22 addresses bugs found in previous releases and has several
413 additions as well.
416 Additions include:
418 <UL>
419 <LI> Support for <A HREF="h_xoauth2">XOAUTH2</A> authentication method in Gmail.
421 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
423 <LI> NTLM authentication support with the ntlm library, in Unix systems.
424 Based on code provided by Maciej W. Rozycki.
426 <LI> Add /tls1_3 flag for servers that support it. Read more information
427 in the secure protocols <A HREF="h_network_encryption_security">help</A>.
429 <LI> To increase user's privacy, remove phone-home code that would prompt 
430 users to send an email message upon starting Alpine for the first time for 
431 purposes of counting. Your use of Alpine does not disclose information about 
432 you or your use of Alpine to the developers of Alpine.
434 <LI> New variable 
435 <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> 
436 that allows users to configure versions of the SSL/TLS protocol that Alpine is 
437 restricted to try when establishing a secure connection SSL/TLS to a remote 
438 server. The default can be set at compilation time.
440 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
441 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
443 <LI> Improvements to the configure stage of compilation. Some of
444 these contributed by Helmut Grohne. See
445 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
447 <LI> Add &quot;remove password&quot; command to the management screen for the 
448 password file encryption key. This allows users to use their password file
449 without entering a master password.
451 <LI> Add the &quot;g&quot; option to the select command that works in IMAP 
452 servers that implement the X-GM-EXT-1 capability (such as the one offered 
453 by Gmail.) This allows users to do selection in Alpine as if they were 
454 doing a search in the web interface for Gmail.
456 <LI> New variable close-connection-timeout, which tells Alpine to close
457 a connection that is having problems being kept alive after the number
458 of seconds configured in this variable, if the connection has not
459 recovered. The default is 0, which means to keep the connection alive
460 and wait for the connection to recover.
462 <LI> When a message is of type multipart/mixed, and its first part is
463 multipart/signed, Alpine will include the text of the original message
464 in a reply message, instead of including a multipart attachment.
465 Suggested by Barry Landy.
467 <LI> S/MIME: Some clients do not transform messages to canonical form when 
468 signing first and encrypting second, which makes Alpine fail to parse the 
469 signed data after encryption. Reported by Holger Trapp.
471 <LI> Add /auth=XYZ to the way to define a server. This allows users to  
472 select the method to authenticate to an IMAP, SMTP or POP3 server.
473 Examples are /auth=plain, or /auth=gssapi, etc.
475 <LI> Add backward search in the index screen. Based on patch by Astyanax Foo, 
476 submitted in 2009, but resubmitted by Erich Eckner on 2019.
478 <LI> SMIME: When Alpine is set to validate a message using the user's store, and
479      user agrees to save a certificate of another user, use the saved 
480      certificate immediately to verify the smime message. Reported by 
481      Stefan Mueller.
483 <LI> Do not use a delay when printing messages to screen when the initial
484      keystroke sequence of commands is active. Based on a report from Holger
485      Trapp.
487 <LI> In PC-Alpine, when the decoded name of an attachment does not agree
488      with its encoded name, Alpine will offer to save the file using the
489      UTF8 encoded name.
490 </UL>
493 Bugs that have been addressed include:
494 <UL>
495    <LI> Width of characters is not always determined correctly when wcwidth
496         is used. Revert to using code for the Windows operating system. 
497         Reported by Andrew Ho.
499    <LI> The call realpath(..., NULL) gives an error in Solaris, which means that
500         we need to allocate memory for storing the resolved path. Reported by
501         Fabian Schmidt.
503    <LI> Crash when attempting to bounce a message due to lack of space in
504         allocated space for key menu array. Reported by David Sewell.
506    <LI> Crash when a CA certificate failed to load, and user attempted to
507         view certificate information of other certificate authorities.
509    <LI> Crash in the S/MIME configuration screen when a user turned off S/MIME, and
510         then re-enabled it. Also crash when attempting to enter the S/MIME 
511         configuration screen if S/MIME was turned off.
513    <LI> Deactivate some color code from Pico (as standalone editor in the
514         windows version) until I find a way to activate it again. This is 
515         not critical and it is not something that PC-Pico must have (some 
516         of it already exists in other ways, like color support, what does 
517         not exist is the more complex code that Unix-Pico has with color 
518         codes for specific colors.)
520    <LI> When a message is multipart, and the first part is flowed text, 
521         then forwarding the message will set the first part to be flowed, 
522         and sent that way even when the option Do Not Send Flowed Text is 
523         enabled. Reported by Holger Trapp.
525    <LI> When a message/rfc822 part of a message is encoded with
526         Content-Transfer-Encoding: QUOTED-PRINTABLE, Alpine will stop 
527         processing that message. Later this causes Alpine to crash because 
528         when it displays messages, it assumes that both header and body 
529         parts are processed. Reported by Mark Crispin in 2010, in the 
530         Alpine-info list (message with subject "crash bug in 
531         alpine/mailpart.c:format_msg_att()") with no example, and reported 
532         now by Holger Trapp, with an example.
534    <LI> In addition to the previous report, Alpine encodes message/rfc822
535         messages as QUOTED-PRINTABLE, in contradiction with RFC 2045, 
536         when it receives a report that its encoding is 8bit. We preserve 
537         the encoding reported by the IMAP server, and do not encode in 
538         QUOTED-PRINTABLE.
540    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
541         build when using Visual Studio 2017. Fix contributed by 
542         Ulf-Dietrich Braunmann.
544    <LI> When the locale is not set up to UTF-8, alpine might determine the 
545         width of a character incorrectly. Reported by Alexandre Fedotov.
547    <LI> In some rare cases, when attachments are deleted before saving 
548         emails, the filenames will be displayed in RFC1522 representation, 
549         instead of in decoded form. Reported and patched by Wang Kang.
551    <LI> When colors are edited from the main setup configuration screen, some
552         color settings are not updated until Alpine is restarted. Reported by
553         Andrew Hill.
555    <LI> If the first part of a message is multipart/alternative, and the 
556         first part of this is also a multipart type, then Alpine might 
557         fail to select the first text part when replying to a message. 
558         Reported by Lucio Chiappetti.
560    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
561         Reported and patched by Kyle George.
563    <LI> If the directory where Alpine saves the certificates is empty,
564         alpine would not create a self-signed certificate to encrypt the 
565         password file.
567    <LI> S/MIME: The list of public certificates is freed before it is 
568         reused when a signature fails to verify. This causes Alpine to 
569         crash. Patch submitted by Linus Torvalds.
571    <LI> S/MIME: A message could fail to verify its signature even if the
572         certificate was saved when the message was open. Based on a report 
573         by David Woodhouse to the RedHat bugzilla system.
575    <LI> When there are time changes in the clock, Alpine might go to sleep
576         for big amounts of time while displaying messages in the screen. 
577         Reset sleep time to 5 seconds in case it finds it needs to sleep 
578         more than 5 seconds or a negative amount of time.
580    <LI> Restore recognition of empty directories. It was deleted by mistake
581         when added support for internationalization in folders. Based on a 
582         report by Michael Rutter.
584    <LI> Alpine stops parsing the mailcap file when it finds an invalid entry.
585         Reported by Matt Roberds to the Debian bug system at 
586         <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370">https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370</A>.
588    <LI> Crash with error "Lock when already locked" when an attempt to check
589         for new mail on a locked stream that is being used for a save 
590         operation. Reported by Carlos E.R.
592    <LI> Alpine removes trailing spaces from passwords, making a longin attempt
593         fail. Reported by R. Lyons.
595    <LI> Alpine crashes when opening a remote imap folder and computing scores.
596         Reported by Paul DeStefano.
598    <LI> When more than one server was given in the server-name configuration
599         option of rldap servers, none of them worked. Reported by Robert Wolf.
600 </UL>
603 Version 2.21 addresses bugs found in previous releases and has several 
604 additions as well.
607 Additions include:
608 <UL>
609   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
610        user to choose the dictionary used to spell check, in case the user 
611        communicates in more than one language. Examples of values for the 
612        variable are "en_US" or "de_DE", etc. Only the first 10 
613        dictionaries are offered.
615   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
616        Based on a contribution by Wang Kang.
618   <LI> Colors configured in Alpine are inherited in the composer.
620   <LI> When Alpine is compiled with password file and SMIME support 
621        the password file is encrypted using a private key/public 
622        certificate pair. If one such pair cannot be found, one will be 
623        created. <A HREF="h_password_file_support">Learn more</A>.
625   <LI> Alpine builds with any version of OpenSSL greater than or equal
626        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
627        LibreSSL.
629   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
630        format, which removes text in the SUBJECT between &quot;[&quot; and 
631        &quot;]&quot;.
633   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
634        but it differns in that it gives the time in which the message was
635        sent for messages that are less than a week old. it uses a 24 hour
636        format.
638   <LI> Alpine will include attachments when forwarding some 
639        multipart/alternative messages for which it did not use to include 
640        attachments.
642   <LI> New configuration option 
643        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
644        which adds more ways to control features and variables when you
645        start to reply to a message.
647   <LI> Added support for RFC 2971 - IMAP ID extension.
649   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
650        that allows users to ignore errors in the computation of the size
651        of a message from defective servers.
653   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
654        clients such as Thunderbird do not validate signatures that use sha1 digest.
656   <LI> Add the configuration variable "default-directories", which is called
657        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
658        variable saves a list of directories that are readily accessible 
659        for save or export of attachments. This makes it easier to save 
660        attachments in directories that are hard to navigate to, or that 
661        are accessed frequently.
663   <LI> When a filename is attached and its name is encoded, the save 
664        attachment command will offer to save the file in the encoded form. 
665        This might work for some users, but the save command will have a 
666        subcommand ^N to decode the file name and save the file with the 
667        decoded name.
669   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
670        as well as autocompletes automatically when only one possibility exists 
671        for the ^J attach command.
673   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
674        the html OL tag.
676   <LI> Ignore message from smtp server after a successful authentication
677        challenge.
679   <LI> When a message is saved in the Form Letter folder, add the ability
680        to save the role being used to compose such message so that settings
681        such as the SMTP server set in the role can be used when sending
682        such form message. Suggested and patched by Frank Doepper.
684   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
685        SSLCERTSDIR is not found.
687   <LI> When Alpine sends an attachment, it will set the boundary attribute
688        in lower case, as some SMTP servers, such as those of libero.it 
689        reject messages if the boundary attribute is in uppercase.
691   <LI> Add the ability to change the private key and certificates used
692        to encrypt a password file in the SMIME setup configuration screen.
693        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
695   <LI> SMIME: The ctrl-E command that gives information on the certificate
696        is only available for messages that have a signed or encrypted 
697        part.
699   <LI> SMIME: If a message contains a RFC822 attachment that is
700        signed/decrypted add the ability to view its SMIME information.
702   <LI> SMIME: Certificate information in the S/MIME screen is available 
703        for certificates stored in a container.
705   <LI> SMIME: Offer the common name of the person, instead of the name of
706        file containing the certificate, as the name to be displayed in the 
707        certificate management screen for certificate authorities. 
708        Suggested by Matthias Rieber.
710   <LI> SMIME: Management of several alternate name (SAN) certificates is 
711        improved. When importing a SAN certificate, also import a certificate
712        for the filename, besides for the e-mail addresses in the
713        certificate. Suggested by Matthias Rieber.
715   <LI> SMIME: add full year when displaying information about a certificate
716        in the certificate management screen. Suggested by Matthias Rieber.
718   <LI> SMIME: sort certificates by some type of alphabetical order in the
719        displayed name.
721   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
722        certificates included in signatures, when the option "Validate 
723        Using Certificate Store Only" is enabled. If the user does not wish 
724        to save it, validation will fail.
726   <LI> HTML: Add support for decoding entities in hexadecimal notation.
727        Suggested by Tulip&aacute;nt Gergely.
729   <LI> The &quot;#&quot; command, when used as part of an aggregate
730        operation will allow users to select the role used in either 
731        replying, forwarding or replying to the group of selected messages, 
732        Suggested by Hisashi T Fujinaka.
734   <LI> If the charset of a message can not be determined, use the value set
735        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
737   <LI> Resizing setup screen will redraw screen.
739   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
740        in the width ambiguous zone, it will use other means to determine
741        the width, such as call wcwidth.
743   <LI> Pico: Code reorganization in the search command to make it easier to
744        add subcommands of the search command.
746   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
747        subcommand of the search command to bring this choice into view.
749   <LI> Pico: Add the ability to search for strings in the beginning or end
750        of a line. Use the Ctrl-^ subcommand of the search command to bring 
751        this choice into view.
753   <LI> For a multipart/alternative message, the Take Address command will 
754        work on the part that is being read.
756   <LI> When sending a message, allow for 512 characters of consecutive 
757        non-white space before folding the subject line.
759   <LI> Make sure titlebar (the line at the top of the screen) always 
760        contains the name of the folder/newsgroup that is open, if this 
761        fits in the title.
763   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
764        will also scramble the name, version and operating system in the 
765        message-id header. Based on a contribution by Dennis Davis, which 
766        is itself based on a contribution by Mark Hills.
768   <LI> Change in logic in imap_set_password function to make Alpine ask if
769        a user wants to save a password before reading the password file.
771   <LI> When exporting all parts of a message, if two attachments have the same
772        name, do not overwrite a file more than once, but instead add a counter
773        number to the filename to make a new file that does not exist in the file
774        system.
776   <LI> Add the Control-R subcommand to the save command for attachments. 
777        This subcommand toggles if the saving will be done in binary mode 
778        for text attachments. When a user saves an attachment using binary
779        mode it will be saved as it was sent, otherwise the attachment will
780        be transformed to UTF-8 for further transformation through internal
781        and user defined filters for saving.
783   <LI> Add command line argument -smimedir, which allows users to specify
784        the default path for a directory that contains the public, private, 
785        and ca directories. This is useful in case a user has a backup of 
786        old certificates that cannot be installed in the ~/.alpine-smime 
787        dir.
789   <LI> Reimplementation of the code that allows the .pinerc file to be a
790        symbolic link by Kyle George from tcpsoft.com to use realpath.
792   <LI> When saving an attachment, the "^T" command leads to a screen where the
793        "A" command can be used to add a file. A directory can be added by
794        pressing "^X" after the "A" command. Added after a suggestion by
795        Stefan Goessling.
797   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
798        scroll through the history of directories used to save attachments, 
799        while preserving the given name of the file. Suggested by Peter 
800        Koellner.
802   <LI> SMIME: Turn off automatic signing and encrypting of a message when
803        bouncing. Suggested after a discussion with Matthias Rieber.
805   <LI> When messages are selected, warn the user if a message that is not
806        selected will be bounced, or if not all selected messages will be 
807        bounced. Suggested by Ulf-Dietrich Braumann.
809   <LI> The bounce command adds a subcommand to choose a role.
811   <LI> When selecting messages by number, the &quot;.&quot; character can 
812        be used to specify the message on which the cursor is on.
814   <LI> When Alpine opens an attachment, it sometimes changes the extension 
815        of the file that is being opened and replaces it by another for the 
816        same mime type. If Alpine finds that the extension of the file 
817        corresponds with the mime type, according to the mime-types file, 
818        then it will keep it, and no substitution will be made.
820   <LI> Set no restrictions on the length of encoded subjects, but encode
821        words in length of no more than 75 characters.
822 </UL>
826 Bugs that have been addressed include:
827 <UL>
828   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
829        Alpine will use the function ASN1_TIME_print to determine the date 
830        of validity. Reported by Ben Stienstra.
832   <LI> SMIME: Crash when attempting to unlock the password file and an
833        incorrect password is entered.
835   <LI> SMIME: Crash when checking the signature of a message that contains
836        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
837        Krellner.
839   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
841   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
842        remote containers. Reported by Matthias Rieber.
844   <LI> SMIME: certificates included in messages were not being transferred
845        to a remote container.
847   <LI> SMIME: Crash if public certificates are located in an inaccessible
848        remote server and the private key is not available.
850   <LI> SMIME: Alpine does not remove temporary files created when adding a 
851        CA certificate to a container. Reported by Holger Trapp.
853   <LI> SMIME: When reading a local certificate, Alpine converts the name 
854        of the certificate to lowercase, which may make Alpine not be able 
855        to read such certificate. Reported by Dennis Davis.
857   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
858        entering a password to read an encrypted message will make Alpine 
859        forget the key and not ask the password to unlock it again in case 
860        it is necessary to unlock it again. Reported by Ulf-Dietrich 
861        Braumann.
863   <LI> Alpine would use freed memory while trying to compute the color
864        of the titlebar. This happened when trying to continue a postponed 
865        message.
867   <LI> Alpine failed to read an encrypted password file if too many
868        passwords were saved in the password file.
870   <LI> When selecting messages while in Threaded Index Screen, some 
871        messages other than top of threads could appear in the index, making
872        Alpine display messages &quot;out of the screen.&quot;
874   <LI> The index format would be chopped at the position of an unrecognized 
875        token, instead of skipping the token as intended.
877   <LI> Work in progress: Avoid calling non-safe functions when Alpine
878        receives a signal. See bug report 
879        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
881   <LI> Crash when attempting to read a message after a bounce command. 
882        In order to produce a crash one needed to use the ^T subcommand and 
883        do a search in a LDAP directory. The crash is produced by changes 
884        to the text in the title bar. Reported by Heinrich Mislik in the 
885        Alpine-info list.
887   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
888        making Alpine not display the correct character at the position 
889        that wrapping is done. Reported by Wang Kang.
891   <LI> Pico: Searching for a string that is too long causes Pico to crash
892        in the next search.
894   <LI> Fix vulnerability in regex library. This only affects those who use
895        this library, such as the windows version of Alpine. See 
896        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
897        for more details.
899   <LI> Alpine would not set include and lib paths for OpenSSL if this was
900        installed in /usr/local/ssl.
902   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
903        contents when saving its configuration.
905   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
906        the name. Reported by Andreas Fehr.
908   <LI> When opening an INBOX folder in a context different from the 
909        incoming folders collection, from the command line, Alpine would 
910        open the INBOX folder from the incoming folders collection.
912   <LI> Mismatch in size of UCS and CELL caused a corruption in the
913        content of a pointer, which made the speller in PC-Alpine get the 
914        content of a word incorrectly.
916   <LI> Skip testing openssl compatibility version when cross-compilation
917        is detected. Fix contributed by Antti Sepp&auml;l&auml;
919   <LI> Alpine fails to remove temporary files used during a display or sending
920        filter. Fix contributed by Phil Brooke.
922   <LI> When the index is in zoomed state, adding new messages to the 
923        selection would not show those messages if those messages are on 
924        top of the current message in the top of the screen. Reported by
925        Ulf-Dietrich Braumann. In addition, when the user scrolls through
926        the index, this scroll smoothly, without jumping pages. Reported
927        by Holger Trapp.
929   <LI> Crash when reviewing history of saving attachments.
931   <LI> Crash when canceling a goto command on a local collection that has
932        not been expanded and attempting to expand such collection.
934   <LI> Crash in Pico when forwarding messages that contain a direction mark
935        at the end of a line. Reported by James Mingo.
937   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
938 </UL>
942 Version 2.20 addresses bugs found in previous releases and has several 
943 additions as well.
946 Additions include:
949 <UL>
950   <LI> Upgrade UW-IMAP to Panda IMAP from 
951        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
952   <LI> S/MIME: Add screen to manage certificates.
953   <LI> S/MIME: Signatures are validated using the user's certificates instead
954        of the ones included in the message. Behavior can be disabled by
955        disabling the option <A href="h_config_smime_use_cert_store">
956         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
957        by default.
958   <LI> S/MIME: sign messages using intermediate certificates when needed 
959        and possible.
960   <LI> S/MIME: validation of certificates for servers that modify signed 
961        content.
962   <LI> S/MIME: signed and encrypted messages will be signed first and 
963        encrypted second, so that they can be decoded by other clients.
964   <LI> S/MIME: add the sender certificate to the list of certificates in
965        encrypted messages to make it possible for the sender to decrypt
966        the message they sent.
967   <LI> S/MIME: When transferring certificates to a local container, create 
968        container with default names PublicContainer, PrivateContainer and 
969        CAContainer, as appropriate for these files, unless the user has 
970        provided some other names.
971   <LI> S/MIME: Forwarding a message will include the signed part as part
972        of the text and not as a multipart message, just as the reply
973        command does.
974   <LI> HTML: Style tag in body of html message causes Alpine to not write
975        its content until a new &lt;/style&gt;
976   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
977        the same inline tag; the same is valid for the &lt;HR&gt; tag.
978   <LI> Add support to selective expunge through a subcommand of the 
979        select-apply commands. Read more in the <A 
980        HREF="h_index_cmd_expunge">help</A> for the expunge command.
981   <LI> Pico: New subcommand of the search command, allows to reverse the
982        direction of search.
983   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
984        the key and certificate used to encrypt the password file are saved 
985        in the ~/.alpine-smime/.pwd directory, or in the directory specified
986        by the -pwdcertdir command line option. 
987        <A HREF="h_password_file_support">Learn more</A>.
988   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
989        server to use different ways to connect using ssl, for 
990        example {server.com/tls1} will attempt to connect to 
991        server.com at the ssl imap port (port 993) and establish a 
992        connection using TLSv1. These flags can be used in 
993        conjunction with the /ssl flag, the ssl flag is redundant. 
994        Conversely, however, the /ssl flag does not imply any of 
995        these flags; the /ssl flag means SSLv3 or, if not available, 
996        SSLv2 in the SSL port.
997   <LI> Alpine does not attempt to automatically reopen a collection 
998        that was not opened due to cancellation by the user. 
999        Instead, the user must try to open it explicitly.
1000   <LI> Alpine searches for a certificate that matches an email address in
1001        all addresses in a certificate (instead of just the first 
1002        one) but when it tries to unlock the certificate, it asks 
1003        for the password for the first email address in that 
1004        certificate.
1005   <LI> Style tag in body of html message causes Alpine to not write its content
1006        until a new &lt;/style&gt;
1007   <LI> Experimental: Write the content-type of a message in 
1008        lowercase, as some non-compliant servers do not understand 
1009        uppercase content-type, such as those of GMX.de.
1010   <LI> Experimental: Do not send the RSET command before attempting
1011        to send a message, as this causes a delay in some evily managed
1012        servers.
1013   <LI> Opening a folder updates recent count in maildrops (this 
1014        already works for other types of folders)
1015   <LI> Automatically redraw screen after opening an attachment 
1016        instead of simply clearing it.
1017   <LI> Pico: Justification works without need of a predefined quote 
1018        string. This allows justification of blocks of text that are 
1019        indented with spaces.
1020   <LI> Decode the name of attachment names, so they can be written as part   
1021        of the description of the part. 
1022   <LI> Check bounds and tie strings off to improve security. Contributed 
1023        by James Jerkins.
1024   <LI> Replace tabs by spaces in From and Subject fields to control for
1025        size in screen of these fields. Change only in index screen display.
1026   <LI> Aggregate operations allows bouncing a list of messages using a role.
1027        Suggested by Ulf-Dietrich Braumann.
1028   <LI> Disable saving new passwords to the password file. Implemented
1029        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
1030   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
1031      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
1032      Charles M. Register.
1033 </UL>
1037 Bugs that have been addressed include:
1038 <UL>
1039   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
1040        in personal names. Reported by Lev Gorenstein.
1041   <LI> When writing the .pinerc file, lines were truncated if they were longer
1042        than 10,000 characters. This could cause data corruption, so now lines
1043        are allowed to be of any length.
1044   <LI> S/MIME: signed messages that contained an attachment would not validate.
1045   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
1046        validate. Thanks to Andreas Schamanek for testing, debugging and 
1047        advising during the process of fixing this problem.
1048   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
1049        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
1050        and Stefan Mueller.
1051   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
1052        home directory.
1053   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
1054        SMIME making it not possible to sign or encrypt messages.
1055   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
1056        information that is not part of the body, and hence making the body
1057        of the message seem wrong.
1058   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
1059        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
1060        enabled, the message contains 8bit characters and the smtp server 
1061        supports 8bit sending.
1062   <LI> When replying to several messages, subject will be decoded first,
1063        and then stripped from re/fwd before they are compared to determine
1064        the subject of the replied message.
1065   <LI> Crash when tcp connection to NNTP server was lost after connection
1066        had been established, but lost immediately afterwards.
1067   <LI> Crash with message &quot;lock when already locked&quot;, when painting
1068        an index was based on scores that needed information from a remote
1069        addressbook in the same server as the folder opened. Reported by
1070        Peter Koellner.
1071   <LI> Crash in message/rfc822 attachments encoded in base64.
1072   <LI> Postponed messages whose content-type is text/html, text/enriched and
1073        text/richtext are sent with that content-type, even though, after
1074        resuming composition, Alpine had changed its type to text/plain.
1075   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
1076        character set, which might lead to a crash or a corruption in the 
1077        screen. Work was done to contain the bug. A more complete fix will 
1078        be done in a future release. Reported by Professor Robert Funnell.
1079   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
1080   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
1081   <LI> Save command did not warn of existence of a message with a deleted 
1082        attachment in an aggregate save, unless cursor was positioned on a message 
1083        with a deleted attachment. Reported by Florian Herzig.
1084   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
1085        in an IMAP server.
1086   <LI> DATE tokens were not internally transformed to UTF-8, which made their
1087        values not appear complete in the screen. Reported by Werner Scheinast.
1088   <LI> Fixes to configure script so that it will not require PAM for every system.
1089   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
1090        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
1091        during the build. Fix by Ulf-Dietrich Braumann.
1092   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
1093        needs to use tcl_getstringresult() instead. Reported by 
1094        Ulf-Dietrich Braumann.
1095   <LI> Quoted string in URL Viewers configuration variable were not 
1096        unquoted before passing to viewer.
1097   <LI> Fix in configure script to detect location of tcl library; add
1098        /usr/local in FreeBSD and fix a bug in configure script that used 
1099        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
1100        by Werner Scheinast.
1101   <LI> Move SSL configurations from UW-IMAP to configure script, and
1102        update OpenSSL configuration for Mac OS X.
1103   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
1104   <LI> When the download of an attachment is interrumpted, Alpine stills
1105      caches what was downloaded, making the download incomplete for 
1106      subsequent calls of Alpine attempting to open the attachment. In the 
1107      future, Alpine will not cache any downloaded part of the attachment 
1108      when it is interrupted.
1109 </UL>
1114 Version 2.11 addresses bugs found in previous releases and has a few 
1115 additions as well.
1118 Additions include:
1121 <UL>
1122    <LI> Alpine requires version 1.0.0c of Openssl to build.
1123    <LI> Increase encryption of S/MIME encrypted messages.
1124    <LI> Pico: Improvements in justification of paragraphs: lines that begin
1125 with a quote string, followed by a space were considered individual paragraphs,
1126 now they are considered part of a paragraph. Based on earlier joint work
1127 with Jeff Franklin.
1128    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
1129    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
1130 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
1131    <LI> Added recognition of ws and wss URIs.
1132    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
1133  <A HREF="h_config_directory_color">directory names</A>,
1134  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
1135    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
1136 used in the display of the INDEX SCREEN.
1137    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
1138 that adds the ability to preserve To: and Cc: fields when replying to a 
1139 message, as specified by original sender.
1140    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
1141  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
1142    <LI> Quota command includes subcommands for printing, forwarding, etc.
1143 </UL>
1146 Bugs that have been addressed include:
1148 <UL>
1149   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
1150   <LI> Crash when resizing the screen in a configuration screen.
1151   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
1152   <LI> Do not use a shell to open a browser.
1153   <LI> Configure script did not test for crypto or pam libraries.
1154   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
1155   <LI> Change Cygwin directory separator to &quot;/&quot;.
1156   <LI> Alpine could set List- headers, contrary to RFC 2369.
1157 </UL>
1160 Version 2.10 addresses bugs found in previous releases and has a few 
1161 additions as well.
1164 Additions include:
1167 <UL>
1168    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
1169    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
1170    <LI> Foreign characters are decoded correctly in IMAP folder names.
1171    <LI> Question about breaking connection to slow servers includes their name.
1172    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
1173    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
1174    <LI> Cygwin: Alpine builds without need of patch.
1175    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
1176    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
1177    <LI> Add support for strong encryption of password file when S/MIME is built in.
1178 </UL>
1181 Bugs that have been addressed include:
1184 <UL>
1185    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
1186    <LI> Double allocation of memory in Pico.
1187    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
1188    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
1189    <LI> Not recognition of environment variables in some options.
1190    <LI> Not display of login prompt during initial keystrokes.
1191    <LI> justification of long urls breaks them.
1192    <LI> Incorrect New Mail message when envelope is not available.
1193    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
1194    <LI> Crash when resizing the screen after display of LDAP search.
1195    <LI> Crash when redrawing screen while opening a remote folder collection.
1196    <LI> Infinite loop in scrolltool function during notification of new mail.
1197    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
1198    <LI> No display of signed and encrypted S/MIME messages.
1199    <LI> Alpine will not build with OpenSSL.
1200    <LI> Crash for double locking in calls to c-client.
1201    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
1202    <LI> Ignore the references header when threading messages
1203    <LI> No update of colors in index screen after update to addressbook.
1204 </UL>
1207 Version 2.01 addresses bugs found in previous releases and has a few 
1208 additions as well.
1211 Additions include:
1214 <UL>
1215    <LI> Fixed non-ASCII web alpine handling
1216    <LI> Added web alpine help.
1217    <LI> Allow web alpine inbox on second IMAP server.
1218    <LI> Allow web alpine config reset after bad inbox-path gets set.
1219    <LI> Added web alpine ability to create group contact from contact list members.
1220    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
1221    <LI> Tidied up web alpine script layout.
1222    <LI> Fixed web alpine status message ordering
1223    <LI> Added web alpine Fcc setting via Contacts in Compose
1224    <LI> Fixed web alpine autodraft attachment issues
1225    <LI> Fixed web alpine problems with recent count maintenance
1226    <LI> Fixed web alpine newmail arrival display in message list
1227    <LI> Added web alpine confirmation to folder create for Move/Copy
1228    <LI> Added web alpine user-domain support
1229    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
1230 </UL>
1233 Bugs that have been addressed include:
1236 <UL>
1237    <LI> In web alpine fixed delete all selected within a search result to reorient
1238         correctly to whole-mailbox message list.
1239    <LI> Fixed web alpine delete in view page to be sensitive to sort
1240    <LI> Fixed web alpine open of folder within directory from folder manager page.
1241    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
1242    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
1243    <LI> Fixed web alpine adding contacts from message list and view
1244    <LI> Fixed web alpine create of non-existent fcc
1245    <LI> Remove mistakenly left debugger statement in web alpine javascript.
1246    <LI> Some UNIX alpine build problems fixed
1247    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
1248         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
1249         by locale charmap call on some Solaris 8 systems.
1250    <LI> MacOS Keychain logins were not working correctly with generic host names, like
1251         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
1252         new password requests when not needed
1253    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
1254         last folder in the list
1255    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
1256         looked for along with the email address
1257    <LI> Changes to configure to get spellcheck options with work with arguments.
1258    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
1259         returned by gethostname (iPhone can do this)
1260    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
1261         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
1262    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
1263         Jake Scott of marganstanley.com.
1264    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
1265         is not used in alpine.
1266    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
1267         Apparently this causes RIM Blackberry BIS service problems. This is not
1268         used in alpine.
1269    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
1270    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
1271         Fix from Ludwig Nussel of SUSE and from Crispin.
1272    <LI> Include whole filename in export filename history
1273    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
1274 </UL>
1277 Version 2.00
1278 addressed bugs found in previous releases and had a few additions as well.
1280 Additions included:
1283 <UL>
1284    <LI> Redesigned Web Alpine interface
1285    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
1286         in UNIX versions of Alpine
1287    <LI> Attempt to include the attachment filename as part of the name of the
1288         temporary file used when viewing an attachment with an external program.
1289         Add some randomness to that filename to make it hard to predict the filename.
1290         Add a filename extension, usually derived from the type/subtype, to the
1291         temporary filename. This was previously done only on Windows and MacOS X.
1292    <LI> Enhance address completion in the composer (TAB command) so that it looks
1293         through nicknames, fullnames, and addresses from the address book; addresses
1294         from the message being viewed, if any; and the results from
1295         <A HREF="h_direct_config">LDAP Directory Server</A>
1296         lookups for all of the defined directory servers that have the
1297         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
1298         feature set.
1299    <LI> Make the default character set setting more liberal in what it will accept
1300         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
1301    <LI> Remove the Alpine revision number from the titlebar in released versions
1302         while leaving it there in snapshot versions
1303    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
1304         display of asterisks when you type a password for Alpine
1305    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
1306    <LI> When the
1307         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
1308         feature is turned on convert not only the dates in the index screen but also
1309         the dates in the MESSAGE VIEW
1310 </UL>
1313 Bugs addressed in the 2.00 release included:
1316 <UL>
1317    <LI> Crash when using tab-completion for selecting a Save filename
1318    <LI> Make Web Alpine help text images relative for more portability
1319    <LI> Fixed attach save of html parts in Web Alpine
1320    <LI> Viewing, printing, exporting, replying, and bouncing of message
1321         digests was broken. Replying and bouncing should not have been
1322         allowed at all for digests. It would be nice to have a more standard
1323         index-like view of a message digest but that has not been addressed
1324         with this minor bug fix.
1325    <LI> Adjust wrapping of HTML messages so that the margins specified by
1326         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
1327         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
1328         are observed correctly
1329    <LI> Interrupt of WhereIs command in index was broken
1330    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1331         option did not work correctly interpreting unknown characters in message headers
1332    <LI> Long address lines could cause blank continuation lines
1333    <LI> Save to a local default INBOX failed if the primary collection was also local,
1334         which it is by default. The save went to  ~/mail/inbox instead.
1335    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
1336         inbox, not the inbox in the primary collection
1337    <LI> Address book entries with lots of addresses would be truncated when
1338         entered in the composer with a screen size wider than 270 or so characters
1339    <LI> Some fields in the index screen were truncated when the screen width was
1340         wider than 256 characters
1341    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
1342         folder, and there is a more than 10 minute pause between typing the TAB
1343         and typing the Yes
1344 </UL>
1347 Version 1.10(962)
1348 addressed bugs found in previous releases and had a few additions as well.
1350 Additions included:
1353 <UL>
1354    <LI> Add the possibility of setting a default role
1355         (see <A HREF="h_role_select">Roles Screen</A>)
1356         which may be convenient if your work flow involves acting in one
1357         role for a while then switching to another role and staying in the
1358         new role for another period of time
1359    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1360         is encountered, ask the user if he or she wants to continue with the
1361         risky Save anyway instead of aborting. This may be helpful if your
1362         IMAP server is broken in this way but be aware that it is possible there
1363         was a real error instead of just a broken server implementation.
1364    <LI> Some configure adjustments for Kerberos detection and
1365         for SCO OpenServer 5 support
1366    <LI> Hide INBOX in a collection if it also appears as an
1367         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1368    <LI> Show asterisks for feedback when the user is typing a password
1369    <LI> Performance improvement for threading of large folders
1370    <LI> Previously, the search used to find
1371         Pattern matches containing To patterns searched for both To
1372         and Resent-To headers. The relatively complicated search this
1373         produces causes problems when using some deficient IMAP servers.
1374         Now the default is to look only for To headers and ignore the
1375         presence of Resent-To. The previous behavior may be restored
1376         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1377    <LI> Add an
1378         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1379         to help with reading malformed unlabeled messages
1380    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1381    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1382    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1383 </UL>
1386 Bugs addressed in the 1.10(962) release included:
1389 <UL>
1390    <LI> Crash when encountering certain errors from an SMTP server
1391    <LI> Crash in composer caused by overflow in replace_pat()
1392    <LI> Hang when authenticating to an SMTP server that fails with a
1393         &quot;connection disconnected&quot; error
1394    <LI> Bug in handling of trailing tab character in flowed text
1395    <LI> Security enhancement for mailcap parameter substitution
1396    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1397         did not work if the message being replied to was not flowed text
1398         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1399         was not turned on
1400    <LI> Don't allow printer to be changed through hidden config screen
1401         if system administrator didn't want it to be allowed
1402    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1403         should know that it won't work, causing error messages to appear
1404    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1405         of double-quote double-quote didn't work right
1406    <LI> Quoting wasn't being done to protect special characters from the
1407         MacOS X shell when
1408         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1409         was not defined
1410    <LI> On MacOS X message attachments should be shown internally instead of
1411         being shown using the Mail application
1412    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1413         sometimes set the outgoing charset to X-UNKNOWN, making the result
1414         unreadable
1415    <LI> When the sending of a message failed lines with leading spaces had one
1416         additional space inserted in each of those lines when the user
1417         was returned to the composer
1418    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1419         that contained non-ascii characters because it was truncating the
1420         line being searched so that it was shorter than what was visible on
1421         the screen
1422    <LI> When composing, an attachment with a long name that causes wrapping in
1423         just the wrong place would generate an error and cause the send
1424         of the attachment to fail
1425    <LI> After calling the file browser to attach a file in the composer, a resize
1426         of the window when back in the composer would redraw the last screen that
1427         had been shown in the browser instead of the current composer screen
1428    <LI> Possible crash in index screen when encountering unparsable addresses
1429         or when using one of the PRIORITY tokens or the HEADER token in the
1430         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1431    <LI> Problems with Header Color editing if the configuration option
1432         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1433         was inadvertently changed to the Empty Value in the hidden config screen
1434    <LI> When resuming the final postponed message from an Exchange server the user
1435         could get a certificate validation failure because alpine was trying
1436         to validate the canonical name of the folder instead of the name the
1437         user used
1438    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1439         failure to find a match
1440    <LI> Make matching of extension names case independent in mimetypes files
1441    <LI> Windows dialog boxes for entering text were not working correctly
1442    <LI> Replying to or Forwarding multipart/alternative messages which had a
1443         single text/html part did not work well
1444    <LI> Printing the print confirmation page caused a crash
1445    <LI> A To line with a long, quoted personal name could display incorrectly
1446         if it was close to the same width as the screen
1447    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1448         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1449         are turned on hide (0/0) when the folder is empty
1450    <LI> Folder completion while Saving didn't work if the collection being
1451         saved to was the local home directory
1452 </UL>
1455 Version 1.00
1456 was an evolutionary release based on Pine, which was also
1457 developed at the University of Washington.
1458 It is upwards-compatible for existing Pine users.
1461 Changes included:
1463 <UL>
1464    <LI> Ground-up reorganization of source code around addition
1465         of "pith/" core routine library.
1466    <LI> Fundamental improvement in Alpine's internal text handling, which
1467         is now based exclusively on Unicode. This allows displaying incoming
1468         messages and producing outgoing messages in many different languages.
1469    <LI> Ground-up reorganization of build and install procedures
1470         based on GNU Build System's autotools. NOTE, the included IMAP library
1471         build is not based on autotools, so some features will not work. However,
1472         it should get built automatically during the Alpine build process.
1473    <LI> Web-based version included built on TCL designed to run under
1474         a suitable CGI-supporting web server such as Apache.
1475 </UL>
1479 Details on changes in previous (prerelease) versions of Alpine
1480 may be found at the following URL:
1482 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1485 <HR WIDTH="75%"><P>
1487 <H2>Getting Help</H2>
1488 <DL>
1489 <DT>Online Help</DT>
1490 <DD>
1491 Every Alpine screen and command has associated help text
1492 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1493 </DD>
1495 <DT>Web Help</DT>
1496 <DD>
1497 The most current source of information about Alpine,
1498 including new version availability, is the web page at
1500 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1501 </DD>
1502 </DL>
1504 <HR WIDTH="75%"><P>
1506 <H2>Additional Information</H2>
1508 General Alpine configuration information can be found
1509 <A HREF="h_news_config">here</A>.
1511 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1512 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1513 access is provided by the IMAP Toolkit Environment (c-client library)
1514 version <!--#echo var="C_CLIENT_VERSION"-->.
1515 <P> 
1516 Alpine was developed until 2009 by the Office of Computing 
1517 &amp; Communications at the University of Washington in Seattle.  
1518 Since then, the effort of developing Alpine has been continued by
1519 a community of volunteers who make good software even better!
1522 Alpine Copyright 2013-2020 Eduardo Chappa, 
1523 <BR> Copyright 2006-2008 University of Washington.
1526 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1527 or instead you can find the Apache License, version 2.0 at the web URL:
1530 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1533 &lt;End of Release Notes&gt;
1534 </BODY>
1535 </HTML>
1536 ====== h_password_file_support ======
1537 <HTML>
1538 <HEAD>
1539 <TITLE>Encryption for Password File Support Explained</TITLE>
1540 </HEAD>
1541 <BODY>
1542 <H1>Encryption for Password File Support Explained</H1>
1544 Index<BR>
1545 <OL>
1546 <LI><A HREF="#content">Explanation</A>
1547 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1548 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1549 </OL>
1551 <P><A NAME="content">Unix Alpine Only.</A>
1553 <P> If your version of Alpine has been built with password file support
1554 then you can use a special file to save your passwords, and avoid typing
1555 them every time you open a connection to a remote server.
1557 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1558 password file will be encrypted with a strong key. There are two ways in 
1559 which this can happen: Alpine will either use a matching private key and 
1560 public certificate pair that you already own, or it will create one for 
1561 you, just for purposes of encrypting this file. We describe both processes 
1562 below.
1564 <P> Initially, Alpine will scan your public and private directories for a 
1565 certificate/private key pair that works. Alpine will pick the first pair 
1566 that it finds that matches. 
1568 <P> Once a pair has been chosen, it will be copied to the directory 
1569 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1570 that directory. The first time this process is done, this directory will 
1571 be created, a key/certificate pair will be copied to it, from then on 
1572 this pair will be used to encrypt and decrypt your password file. 
1574 <P> If you want to use a specific key and certificate pair to encrypt
1575 your password file, you can create the directory ~/.alpine-smime/.pwd 
1576 manually, and then create your preferred key/certificate pair there.
1577 Alpine will use this key regardless of if it has expired, or if it is
1578 self-signed. These issues do not affect the encryption or decryption
1579 of the password file.
1581 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1582 your key/certificate pair, you can specify a different one with the 
1583 -pwdcertdir command line option in Alpine. If the directory specified by 
1584 this option is not found Alpine will fail to encrypt and decrypt your 
1585 password file. However if it exists, Alpine will search for a 
1586 key/certificate pair in that
1587 directory, and if it does not find one, it will create one and save it
1588 in that directory.
1590 <P> Alpine does not care about the names of the key and certificates in 
1591 this directory, but the private key must have &quot;.key&quot; extension 
1592 and your public certificate must have the &quot;.crt&quot; extension. The
1593 name of the private key will be used in the prompt when you are asked
1594 to unlock your key to decrypt your password.
1596 <P> If Alpine cannot find a suitable private key and public certificate 
1597 pair to encrypt your password, it will create one. You will be asked to 
1598 create a &quot;Master Password&quot; to protect such key. At this moment 
1599 there are no restrictions on passwords, other than they have to be at 
1600 least 8 characters long, but future versions of Alpine will include 
1601 functionality to restrict master passwords, as set up by the administrator 
1602 of the system in the pine.conf.fixed file.
1604 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1606 <P>Assume you have a private key called peter@address.com.key in your, 
1607 ~/.alpine-smime/private directory, and a public certificate called 
1608 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1609 are your only key/certificate pair.
1611 <P> When Alpine starts for the first time, without command line options, 
1612 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1613 it will create it. Then it will go through your keys and certificates and 
1614 find a pair that it can use, and copy the files peter@address.com.key,
1615 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1616 you can do the same by copying these files by yourself. This can be done
1617 with the sequence of commands
1619 <PRE>
1620 mkdir ~/.alpine-smime/.pwd
1621 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1622 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1623 </PRE>
1625 <P> When Alpine starts, you will be asked the password to unlock your
1626 private key with the prompt.
1628 <PRE>
1629 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1630 </PRE>
1632 <P> If you prefer to use different names for your private and public keys 
1633 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1634 preserve the extension of the files. For example, you can use the names 
1635 private_key.key and public_cert.crt instead. In this case, the prompt you 
1636 will see when you are asked to unlock your private key will read
1638 <PRE>
1639 Enter password of key &lt;private_key&gt; to unlock password file:
1640 </PRE>
1642 <P>Observe that you do not need to use an existing key/certificate pair, 
1643 and that you can create a new private key/public certificate pair to 
1644 encrypt and decrypt your password file. Alpine provides a mechanism to
1645 change the encryption key for this file in the S/MIME configuration
1646 screen.
1648 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1650 <P> If Alpine cannot find a suitable private key and public certificate pair
1651 to encrypt your password file, it will create one. When doing so, it will
1652 start the process with the following warning:
1654 <PRE>
1655 Creating a Master Password for your Password file.
1656 </PRE>
1658 <P> Then Alpine will ask you to enter your Master Password:
1660 <PRE>
1661 Create master password (attempt 1 of 3):
1662 </PRE>
1664 <P> Once you enter this password, and it validates according to system policy,
1665 you will be asked to confirm this password. 
1667 <PRE>
1668 Confirm master password (attempt 1 of 3):
1669 </PRE>
1671 <P> If you input the same password, then Alpine will set that as your 
1672 Master Password, and you will use this password to unlock your key in the 
1673 future.
1675 <P> If you would like to switch your Master Password in the future, you can 
1676 do so by creating a new public key and public certificate pair. You can do 
1677 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1678 Certificate for Password File&quot; section, simply enter your current 
1679 password to unlock your current key and then press &quot;C&quot; to create 
1680 a new key.
1683 &lt;End of help&gt;
1684 </BODY>
1685 </HTML>
1686 ====== h_network_encryption_security ======
1687 <HTML>
1688 <HEAD>
1689 <TITLE>Network Encryption Security Explained</TITLE>
1690 </HEAD>
1691 <BODY>
1692 <H1>Network Encryption Security Explained</H1>
1694 You can specify which encryption protocol you would like to try when
1695 creating a secure connection to a server. Alpine will attempt to use
1696 that encryption protocol, but in practice the protocol being used will
1697 default to the most secure protocol that both Alpine and the server
1698 support.
1700 <P> If you use the latest version of OpenSSL, the /ssl modifier to the 
1701 server definition will use the most secure version of the TLS encryption 
1702 protocol. The same will be true if you try /tls1_1 or /tls1_2, but in an 
1703 old version of OpenSSL (pre 1.1.0 series) /tls1_1 might mean to use 
1704 version 1.1 of the TLS protocol.
1706 <P> You will never go wrong by using the /ssl modifier. At the time of
1707 this writing OpenSSL had released version 1.1.1, with support for
1708 TLS version 1.3. If your version of OpenSSL does not support this version
1709 of the TLS protocol, then the /tls1_3 modifier will only mean to use
1710 the most secure version of the TLS protocol that OpenSSL and the
1711 server can negotiate. In future versions of OpenSSL, /tls1_3 might mean
1712 to try to negotiate a higher version of the TLS protocol.
1714 <P> In order to avoid confusion, the /ssl flag is the best way to guarantee
1715 the highest encryption protocol available, and it is the recommended
1716 modifier to the server definition to create a secure encrypted connection.
1719 &lt;End of help&gt;
1720 </BODY>
1721 </HTML>
1722 ====== h_xoauth2 ======
1723 <HTML>
1724 <HEAD>
1725 <TITLE>XOAUTH2 Authenticator Explained</TITLE>
1726 </HEAD>
1727 <BODY>
1728 <H1>XOAUTH2 Authenticator Explained</H1>
1730 The XOAUTH2 authenticator method is a way in which you can sign in to your
1731 account to read and send email. This method is different from the traditional
1732 username/password that users are accostumed to, and it needs to be set up
1733 by the user. This text will help you understand this authentication method.
1736 The most important difference between this method and other authentication
1737 methods is what happens if someone steals your credentials. This method is
1738 attached to three components: Your username, your password and your email
1739 program.
1742 At the beginning of this process, the developer of the email program 
1743 registers the email program with the email service provider (Gmail, 
1744 Outlook, etc.) In return, the email service provider creates a client-id.
1745 In addition, some services provice a client-secret.
1746 Since Alpine is an open source program, these values are part
1747 of the source code, and are known to everyone, and cannot be obfuscated.
1750 After a program has been registered with an email service provider, the 
1751 user must authorize the email program access to their email account in 
1752 that service. Alpine helps you do that, but it cannot do all the process 
1753 for you, and you will need to use an external web browser to authorize
1754 Alpine to read and send email.
1757 This part of the process is simple. Alpine creates a URL based on the id 
1758 and secret created by the email service, which the user opens. Once the 
1759 URL has been opened, the user signs in to the server, and once signed into
1760 the account, the user is asked to authorize Alpine access to the email 
1761 account. If the user agrees, an &quot;<I>Access Code</I>&quot; will be
1762 generated.
1765 An Access Code is a very long string, and so the recommendation is to copy 
1766 and paste this code back into Alpine, at the time Alpine is helping you 
1767 set up this authenticator. This part of the process is done only once per 
1768 email program (If you run Alpine in several computers, you would do this 
1769 once per computer. Each computer gets its own Access Code.)
1772 Once Alpine has an Access Code, it goes back internally to the email 
1773 service and asks it to generate two strings, called the &quot;<I>Refresh 
1774 Token</I>&quot; and the &quot;<I>Access Token</I>&quot;. This part is 
1775 invisible to the user, and they will never see it, but in order for you to 
1776 understand what to do in case you lose them, you need to understand their 
1777 use.
1780 The <I>Access Token</I> is the equivalent of a temporary password. It 
1781 allows the user to access (and reaccess as many times as they would like)
1782 their email account for a limited amount of time, typically 1 hour after
1783 it was issued. After that time expires, users need a new Access Token.
1786 The <I>Refresh Token</I> is the equivalent of a password generator. With 
1787 this token, Alpine can go to the email service provider and request a new 
1788 Access Token. This part of the process does not need user intervention, 
1789 anyone can do this, as long as they have the Refresh Token, program id and 
1790 program secret, so it is important that users keep their Refresh Token as 
1791 secure as they can.
1794 Given that the Refresh Token and the Access Token are long strings, users 
1795 are not supposed to be able to memorize them and recall them later. Alpine 
1796 will store them in the password file, should a user have one. Otherwise, 
1797 the user will have to create one each time they run Alpine, starting by 
1798 creating the Access Code all over each time they try to sign in to their 
1799 email account. When Alpine is compiled with SSL and password file support, 
1800 it will default to saving this information using encryption and under a 
1801 master password, so unless they have made changes to this process, their 
1802 Refresh and Access Tokens are saved securely and persist from one session 
1803 to the next.
1806 Should any person steal your Refresh Token, you must login to your account 
1807 with your username and password and revoke Alpine authorization to your 
1808 account. This is enough to stop the person who stole your Refresh Token 
1809 from accessing your email service. In the case of Gmail, changing your 
1810 password will invalidate your Refresh Token, and this will be enough to 
1811 prevent others from using a stolen Refresh Token. Consult with your email
1812 service provider to learn what you can do if someone steals your Refresh
1813 Token.
1816 If, for any reason, Alpine cannot sign in to your email service for two 
1817 consecutive times with Access Codes generated by your Refresh Token, it 
1818 will remove the Refresh Token from your password file, forcing you to get 
1819 a new one, by getting an Access Code first, and granting authorization to
1820 Alpine to access your email once again.
1823 This implementation of XOAUTH2 knows the list of servers that it can 
1824 access using the same credentials, so Alpine will be able to read and send 
1825 emails using the same Access Token. You will not have to create 
1826 Access and Refresh Tokens for the IMAP and SMTP servers separately.
1829 &lt;End of help&gt;
1830 </BODY>
1831 </HTML>
1832 ====== h_xoauth2_config_screen ======
1833 <HTML>
1834 <HEAD>
1835 <TITLE>XOAUTH2 Configuration Screen</TITLE>
1836 </HEAD>
1837 <BODY>
1838 <H1>XOAUTH2 Configuration Screen</H1>
1840 The XOAUTH2 configuration screen helps you connect your client-id and
1841 other configuration information about the service you want to use with
1842 Alpine.
1844 <P> Alpine provides a default configuration for you. For some providers
1845 this configuration does not work, and requires you to get your own
1846 Client-ID for Alpine. Depending on the service, you might need extra information,
1847 such as a Client-Secret or a Tenant.
1849 <P> If the default configuration of Alpine does not work for you, you can simply
1850 replace the default configuration of Alpine by your new configuration. If for
1851 any reason you need to have a second client-id, you can use the ^A command to
1852 add a new configuration for one of the supported services by Alpine.
1854 <P> If you wish to delete a configuration for a service, place the cursor
1855 on the configuration you want to delete and press ^D.
1857 <P> When you have more than one client-id for the same service, is is convenient
1858 to fill up the username field. This will tell Alpine that that specific configuration
1859 is to be used with the username(s) specified in that variable. If Alpine cannot
1860 detemine which configuration to use, it will ask you to select the correct
1861 Client-ID for your connection. This could happen when you are trying to login to
1862 your account. The client-id you select will be used by Alpine for that and future
1863 connections to that server.
1867 &lt;End of help&gt;
1868 </BODY>
1869 </HTML>
1870 ====== h_tls_failure_details ======
1871 <HTML>
1872 <HEAD>
1873 <TITLE>Certificate Validation Details</TITLE>
1874 </HEAD>
1875 <BODY>
1876 <H1>Certificate Validation Details</H1>
1878 This screen gives details as to why the certificate validation failed: the
1879 name of the desired server system; the reason for failure; and the name on
1880 the certificate.  This is primarily of interest to experts.
1883 &lt;End of help&gt;
1884 </BODY>
1885 </HTML>
1886 ====== h_tls_failure ======
1887 <HTML>
1888 <HEAD>
1889 <TITLE>TLS or SSL Failure</TITLE>
1890 </HEAD>
1891 <BODY>
1892 <H1>TLS or SSL Failure</H1>
1894 An attempt was made to establish a secure, encrypted connection to the
1895 server system using either Transport Layer Security (TLS) or the older
1896 Secure Sockets Layer (SSL).  This attempt failed.
1899 You should contact your server system management for more assistance.
1900 The problem is probably at the server system and not in Alpine or your local
1901 system.  The text in this screen may be helpful for the server system
1902 management in debugging the problem,
1905 &lt;End of help&gt;
1906 </BODY>
1907 </HTML>
1908 ====== h_tls_validation_failure ======
1909 <HTML>
1910 <HEAD>
1911 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1912 </HEAD>
1913 <BODY>
1914 <H1>TLS and SSL Certificate Validation Failures</H1>
1916 An attempt was made to establish a secure, encrypted connection to the
1917 server system using either Transport Layer Security (TLS) or the older
1918 Secure Sockets Layer (SSL).
1921 An important part of this procedure is server certificate validation.  A
1922 server certificate is an &quot;electronic identification card&quot; for the server
1923 system that is signed by a well-known certificate authority (CA).  Alpine
1924 compares the server system identity in the server certificate with the
1925 name of the server system to which it is trying to connect.  Alpine also
1926 verifies that the CA signature is authentic.
1929 Some common failure conditions are:
1932 <UL>
1933   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1934 signed its own certificate.  This does not necessarily indicate anything
1935 bad; the server operators may simply have elected to not purchase a
1936 signed certificate from a certificate authority.
1938   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1939 the signature on the server system is from an unknown certificate authority.
1940 It can also mean that no certificate authority certificates have been
1941 installed on the local UNIX system.
1943   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1944 the same as either of the above two conditions in UNIX Alpine.  Note that
1945 Windows systems typically have a full set of certificate authority
1946 certificates installed, so it is more likely to be a self-signed
1947 certificate than an unknown certificate authority.
1949   <LI> Server name does not match certificate.  This means that the server
1950 presented a proper signed certificate for a name other than the desired
1951 name.
1952 </UL>
1955 Any of these conditions can indicate that you are being attacked and have
1956 been directed to an imposter server that will record your password and
1957 your private mail messages.  It can also mean something innocuous.
1960 If you are certain that the problem is innocuous, you can append the
1961 option
1964 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1967 to the server system name where it appears in your configuration (e.g. the
1968 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1969 a folder-collection, or a news or SMTP server).  This will
1970 disable certificate validation.  On the other hand, if you are attacked,
1971 you will get no warning if you do this.
1973 <P> When you get an error indicating a self-signed certificate from the 
1974 remote server, you can download and install the certificate for that 
1975 server. Avoid using the /NoValidate-Cert modifier. Alpine cannot help you 
1976 with this process because certificates are part of the system and are not 
1977 under the control of the user. Find directions on how to download and 
1978 install certificates for your system using your favorite search engine.
1981 &lt;End of Cert Validation Failures help&gt;
1982 </BODY>
1983 </HTML>
1984 ====== h_oauth2_start ======
1985 <HTML>
1986 <HEAD>
1987 <TITLE>Setting up XOAUTH2 Authentication</TITLE>
1988 </HEAD>
1989 <BODY>
1990 <H1>Setting up XOAUTH2 Authentication</H1>
1992 You are trying to connect to a server that uses the XOAUTH2 method of
1993 authentication.
1996 In order to set this up, you need to authenticate in the target server
1997 and authorize Alpine to access your email account.
2000 After you have authorized Alpine, the server will generate an
2001 &quot;access code.&quot; In order to use this code, press 'C'
2002 and copy and paste this code back into Alpine.
2005 After you have input the code, Alpine will conclude logging you into your
2006 account.
2009 &lt;End of setting up XOAUTH2 Authentication help&gt;
2010 </BODY>
2011 </HTML>
2012 ====== h_release_tlscerts ======
2013 <HTML>
2014 <HEAD>
2015 <TITLE>TLS and SSL usage note</TITLE>
2016 </HEAD>
2017 <BODY>
2018 <H1>TLS and SSL usage note</H1>
2021 When using Alpine from Unix or Windows 2000,
2022 server certificates must be signed by a trusted certificate authority.
2023 You may relax this requirement (at the cost of some security) by using
2025 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
2026 modifier in the mailbox name.
2029 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
2032 The fully-qualified host name of the server should be used
2033 so that it matches the host name in the server certificate.
2035 Here is an example of a host specification that directs Alpine to use
2036 the SSL port (993) and an encrypted data stream.
2038 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
2040 &lt;End of TLS usage help&gt;
2041 </BODY>
2042 </HTML>
2043 ====== h_news_config ======
2044 <HTML>
2045 <HEAD>
2046 <TITLE>Alpine Configuration</TITLE>
2047 </HEAD>
2048 <BODY>
2049 <H1>Alpine Configuration</H1>
2051 <H2>Using Environment Variables</H2>
2053 The values of Alpine configuration options may include environment variables
2054 that are replaced by the value of the variable at the time Alpine is run
2055 (and also at the time the config option is changed).
2056 The syntax to use environment variables is a subset of the common Unix
2057 shell dollar-syntax.
2058 For example, if
2060 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
2062 appears in the value of an Alpine configuration option it is looked up in the
2063 envirom ent (using getenv(&quot;VAR&quot;)) and its
2064 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
2065 To include a literal dollar sign you may precede the dollar sign with another
2066 dollar sign.
2067 In other words, if the text
2069 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
2071 is the value of a configuration option, it will be expanded to
2073 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
2075 and no environment lookup will be done.
2076 For Unix Alpine it will also work to use a backslash character to
2077 escape the special meaning of the dollar sign, but $$ is preferable since
2078 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
2079 to be in a shared configuration file.
2082 This all sounds more complicated than it actually is.
2083 An example may make it clearer.
2084 Unfortunately, the way in which environment variables are set is OS-dependent 
2085 and command shell-dependent.
2086 In some Unix command shells you may use
2088 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
2089    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
2091 Now, if you use Alpine's Setup/Config screen to set
2093 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
2095 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
2096 so that this would be equivalent to
2098 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
2100 Note, environment variable substitution happens after configuration
2101 options that are lists are split into the separate elements of the list,
2102 so a single environment variable can't contain a list of values.
2105 The environment variable doesn't have to be the only thing
2106 after the equal sign.
2107 However, if the name of the variable is not at the end of the line or
2108 followed by a space (so that you can tell where the variable name ends),
2109 it must be enclosed in curly braces like
2111 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
2113 It is always ok to use the braces even if you don't need to.
2115 It is also possible to set a default value for an environment variable.
2116 This default value will be used if the environment variable is not
2117 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
2118 The syntax used to set a default value is
2120 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
2122 If the config file contains
2124 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
2126 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
2127 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
2128 the value that <SAMP>VAR</SAMP> was set to, otherwise,
2129 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
2130 the default value.
2131 (Note that the variable is called &quot;personal-name&quot; in the config
2132 file but is displayed in the config screen as
2133 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
2134 In general, the value that goes into a config file is never exactly the
2135 same as the value you see on the screen.)
2138 An example where an environment variable might be useful is the
2139 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
2140 Suppose most users used the server
2142 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
2144 but that there were some exceptions who used
2146 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
2148 In this case, the system manager might include the following line in
2149 the systemwide default Alpine configuration file
2151 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
2153 For the exceptional users adding
2155 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
2157 to their environment should work.
2159 Another example might be the case where a user has to use a different
2160 SMTP server from work and from home.
2161 The setup might be something as simple as
2163 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
2165 or perhaps a default value could be given.
2166 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
2167 a list of SMTP servers.
2170 <H2>Configuration precedence</H2>
2172 There are several levels of Alpine configuration.  Configuration values at
2173 a given level override corresponding values at lower levels.  In order of
2174 increasing precedence:
2176 <UL>
2177  <LI> built-in defaults
2178  <LI> system-wide
2179 <!--chtml if pinemode="os_windows"-->
2180       config file from command line or provided
2181       by "PINECONF" environment variable
2182 <!--chtml else-->
2183       pine.conf file
2184 <!--chtml endif-->
2185  <LI> personal configuration file
2186  <LI> personal exceptions configuration file
2187  <LI> command-line options
2188  <!--chtml if pinemode="os_windows"--><!--chtml else-->
2189  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
2190 </UL>
2192 The values in both the personal configuration file and the
2193 <A HREF="h_config_exceptions">exceptions</A>
2194 configuration file may be set using the Setup command.
2195 Setup/Config is the command to change most of the personal configuration
2196 options.
2197 The other Setup subcommands are also used to change the configuration,
2198 for example, Setup/AddressBook, Setup/Rules, and so on.
2199 Changing the personal exceptions configuration is very similar.
2200 To change a value in the Config screen you would use the command
2201 Setup/eXceptions/Config.
2202 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
2204 There are a couple exceptions to the rule that configuration values are replaced
2205 by the value of the same option in a higher-precedence file.
2206 The Feature-List variable has values that are additive, but can be
2207 negated by prepending &quot;no-&quot; in front of an individual feature name.
2208 So for features, each individual feature's value is replaced by the value
2209 of the same feature in a higher-precedence file.
2210 Note that this is done automatically for you when you change these values via
2211 the Setup/Config command.
2212 The other exception to the <EM>replace</EM> semantics happens when you
2213 use <A HREF="h_config_inheritance">configuration inheritance</A>
2214 for option lists.
2217 <H2>File name defaults</H2>
2219 Notes:<P>
2221 <BR> &lt;exe dir&gt; = directory where pine.exe found.
2222 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
2223 <BR> # = default file name is overridable in pinerc.
2224 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
2225 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
2226 <BR> + between the mailcap paths implies that the two files are combined.
2227 <BR> ; between other default paths implies that the first one found is used.
2228 </P>
2229 Alpine looks for most support files in the same directory it finds its
2230 personal configuration file (pinerc).  The -p command-line flag may be
2231 used to specify a particular path name for the pinerc file.  If a
2232 pinerc file does not exist, it will be created (if directory permissions
2233 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
2234 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
2235 file does not exist in either one, it will create one in the first of those
2236 two directories that is writable.  In detail:
2237 <PRE>
2239 PC-Alpine:
2241  executable     &lt;DOS search path&gt;&#92;pine.exe
2242  help index     &lt;exe dir&gt;&#92;pine.ndx
2243  help text      &lt;exe dir&gt;&#92;pine.hlp
2245  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
2246  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
2247  global cfg     $PINECONF
2249  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
2250  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
2251  signature#     &lt;pinerc dir&gt;&#92;pine.sig
2252  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
2253  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
2254  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
2255  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
2256  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
2257  postponed#     $HOME&#92;mail&#92;postpond.mtx
2258  interrupted    $HOME&#92;mail&#92;intruptd
2260 Unix Alpine:
2262  executable     &lt;Unix search path&gt;/pine
2263  persnl cfg     ~/.pinerc
2264  except cfg     ~/.pinercex
2265  global cfg     <!--#echo var="PINE_CONF_PATH"-->
2266  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
2267  local help     <!--#echo var="PINE_INFO_PATH"-->
2269  interrupted    ~/.pine-interrupted-mail
2270  debug          ~/.pine-debugN
2271  crash          ~/.pine-crash
2272  newsrc#        ~/.newsrc
2273  signature#     &lt;pinerc dir&gt;/.signature
2274  addressbook#   &lt;pinerc dir&gt;/.addressbook
2275  postponed#     ~/mail/postponed-msgs
2276  sentmail#      ~/mail/sent-mail
2277  mailcap#       ~/.mailcap + /etc/mailcap
2278                            + /usr/etc/mailcap + /usr/local/etc/mailcap
2279  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
2281  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
2282  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
2283  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
2284  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
2285  password       /etc/passwd
2287 Unix Alpine and PC-Alpine:
2289  .ab*           remote addressbook support files
2290  a[1-9]*        temporary (while Alpine is running) addressbook files
2292 </PRE>
2295 <H2>Mailcap files</H2>
2297 Alpine honors the mailcap configuration system for specifying external
2298 programs for handling attachments.  The mailcap file maps MIME attachment
2299 types to the external programs loaded on your system that can display
2300 and/or print the file.  A sample mailcap file comes bundled with the Alpine
2301 distribution.  It includes comments that explain the syntax you need to
2302 use for mailcap.  With the mailcap file, any program (mail readers,
2303 newsreaders, WWW clients) can use the same configuration for handling
2304 MIME-encoded data.
2307 <H2>MIME-Types files</H2>
2309 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
2310 what Content-Type to use for labeling an attached file, based on
2311 the file extension.  That is, this file provides a mapping between
2312 filename extensions and MIME content-types.
2315 <H2>Environment variables</H2>
2317 PC-Alpine uses the following environment variables:
2318 <DL>
2319 <DT>PINERC</DT>
2320 <DD>Optional path to pinerc file.</DD>
2321 <DT>PINERCEX</DT>
2322 <DD>Optional path to personal exceptions configuration file.</DD>
2323 <DT>PINECONF</DT>
2324 <DD>Optional path to global pine config file.</DD>
2325 <DT>HOME</DT>
2326 <DT>TMPDIR, TMP, or TEMP</DT>
2327 <DT>COMSPEC</DT>
2328 <DT>MAILCAPS</DT>
2329 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
2330 <DT>USER_DICTIONARY</DT>
2331 <DD>Used to specify the file to contain the user's spell check
2332 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
2333 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
2334 </DL>
2336 Unix Alpine uses the following environment variables:
2337 <DL>
2338 <DT>TERM</DT>
2339 <DD>Tells Alpine what kind of terminal is being used.</DD>
2340 <DT>DISPLAY</DT>
2341 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
2342 <DT>SHELL</DT>
2343 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
2344 <DT>TMPDIR, TMP, or TEMP</DT>
2345 <DT>MAILCAPS</DT>
2346 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
2347 </DL>
2348 <!--chtml if pinemode="os_windows"-->
2350 <H2>Common PC-Alpine Configuration Problems</H2>
2352 <H3>Configuration settings aren't being saved</H3>
2354 <P>This problem can happen if you run pine from one directory and
2355 then decide to move your pine directory to another location.  PC-Alpine
2356 stores certain variables, including the configuration location, in the
2357 Windows Registry (which you shouldn't ever need to manually edit).  There
2358 are a couple of ways to go about removing or resetting the values in the
2359 registry.
2362 1) Run PC-Alpine's registry value deletion command.  This can be done by
2363 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
2364 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
2365 value to the above command.
2368 2) Tell PC-Alpine where to look for the configuration file.  Configuration
2369 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
2370 option, you can tell PC-Alpine the location of your pinerc.  An example of
2371 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;.
2372 Again, you can use the DOS prompt or the shortcut method explained in (1).
2375 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
2376 set registry values to the current setting, and is therefore useful with
2377 the &quot;-p&nbsp;PINERC&quot; option.
2379 <!--chtml endif-->
2381 &lt;End of Configuration Notes&gt;
2382 </BODY>
2383 </HTML>
2384 ====== h_news_legal ======
2385 <html>
2386 <head>
2387 <TITLE>Alpine Legal Notices</TITLE>
2388 </head>
2389 <body>
2391 <H1>Alpine Legal Notices</H1>
2393 Alpine and its constituent programs are covered by the Apache License Version 2.0.
2397 &lt;End of Alpine Legal Notices&gt;
2398 </BODY>
2399 </HTML>
2400 ===== h_info_on_mbox =====
2401 <HTML>
2402 <HEAD>
2403 <TITLE>Information on mbox driver</TITLE>
2404 </HEAD>
2405 <BODY>
2406 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
2408 Beginning with Pine 4.00 (Pine came before Alpine)
2409 a new INBOX access method is
2410 available as part of the standard configuration.  It is called the
2411 &quot;mbox&quot; driver and it works like this:<P>
2414 <BLOCKQUOTE>
2415 If the file &quot;mbox&quot; exists in the user's home directory, and
2416 is in Unix mailbox format, then when INBOX is opened this file will be
2417 selected as INBOX instead of the mail spool file.  Messages will be
2418 automatically transferred from the mail spool file into the mbox
2419 file.
2420 </BLOCKQUOTE>
2423 The advantage of this method is that, after new mail has been copied
2424 from the system mail spool, all subsequent access is confined to the
2425 user's home directory, which is desirable on some systems.  However, a
2426 possible disadvantage is that mail tools other than those from the
2427 University of Washington will not know to look for mail in the user's
2428 mbox file.  For example, POP or IMAP servers other than those from the
2429 University of Washington, and many &quot;new mail notification&quot;
2430 programs may not work as expected with this driver enabled.<P>
2432 To disable this behavior, either remove/rename the &quot;mbox&quot;
2433 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
2434 option in Setup/Config
2435 and add &quot;mbox&quot; to it:
2437 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
2439 &lt;End of help on this topic&gt;
2440 </BODY>
2441 </HTML>
2442 ===== h_info_on_locking =====
2443 <HTML>
2444 <HEAD>
2445 <TITLE>FAQs on Alpine Locking</TITLE>
2446 </HEAD>
2447 <BODY>
2448 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
2450 There is an extensive section on locking in the Alpine technical notes;
2451 this information is intended to provide answers to some common questions:<P>
2452 <OL>
2453 <LI> Why did locking change in Pine 4.00?<BR>
2454 The actual locking mechanisms did not change in 4.00.
2455 What changed is that when one particular locking mechanism used by Alpine 
2456 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
2457 failure would occur, but no warning was issued.<P>
2459 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
2460 Yes.  It means that Alpine was unable to create a lockfile in the
2461 spool directory, generally because of overly restrictive protections on the
2462 spool directory.  The correct permissions on the spool directory for
2463 running Alpine are 1777, i.e. read-write-execute permission for everyone,
2464 with the sticky-bit set, so only owners of a file can delete them.<P>
2466 <LI> Why does Alpine require that the mail spool directory have 1777
2467    protections?<BR>
2468 Alpine was designed to run without special privileges.  This means that in
2469 order to create a lockfile in the spool directory, it is necessary to have
2470 the spool directory permissions be world-writable.<P>
2472 <LI> Can't you create the lockfile somewhere else?<BR>
2473 No.  The lockfile in question must be in the mail spool directory, because
2474 that's where the mail delivery program expects to find it, and the purpose
2475 of the file is to coordinate access between the mail client (Alpine) and the
2476 mail delivery program.<P>
2478 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
2479 No.  Remember that the individual mail files in the spool directory are
2480 NOT world-writable, only the containing directory.  Setting the &quot;sticky
2481 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
2482 -- means that only the owner of the file (or root) can delete files in the 
2483 directory.  So the only bad behavior that is invited by the 1777 mode is that 
2484 anyone could
2485 create a random file in the spool directory.  If the spool directory is
2486 under quota control along with home directories, there is little incentive
2487 for anyone to do this, and even without quotas a periodic scan for
2488 non-mail files usually takes care of the problem.  <P>
2490 <LI> Why not run Alpine as setgid mail?<BR>
2491 Alpine was never designed to run with privileges, and to do so introduces a
2492 significant security vulnerability.  For example, if a user suspends Alpine,
2493 the resulting shell will have group privileges.  This is one example of
2494 why we strongly recommend against running Alpine as a privileged program.
2495 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
2496 users
2497 could not test Alpine versions or other mailers that had not been installed
2498 by the system administrators.<P>
2501 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
2502 There are, but they all have different sets of tradeoffs, and not all will
2503 work on all systems.  Some examples:<UL>
2504  <LI> Use lock system calls.  Works fine on a few systems, provided mail
2505    spool is local.   Doesn't work reliably if NFS is used.
2506    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
2507    use the same calls.
2508  <LI> Deliver mail to user's home directory.  An excellent solution, highly
2509    recommended -- but one which is incompatible with some &quot;legacy&quot; 
2510 mail tools that always look in the spool directory for the mail.
2511 </UL><P>
2513 <LI> Are these spool directory lock files the only kinds of locks used by
2514    Alpine?<BR>
2515 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
2516 mailbox format folders, these are used to coordinate access between
2517 multiple Alpine sessions.  <P>
2519 <LI> What about the 
2520 <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>
2521 This is for people who are content to live dangerously, or who have
2522 specific knowledge that the spool directory lockfiles are superfluous on
2523 their system (because both Alpine and the mail delivery program are using 
2524 system call file locking in a context that works reliably, e.g. not NFS.)<P>
2526 <LI> Where can I find more details on how Alpine locking works?<BR>
2527 See the Alpine Technical Notes.<P>
2529 </OL>
2531 &lt;End of help on this topic&gt;
2532 </BODY>
2533 </HTML>
2534 ===== h_finding_help ====
2535 <HTML>
2536 <HEAD>
2537 <TITLE>Finding more information and requesting help</TITLE>
2538 </HEAD>
2539 <BODY>
2540 <H1>Places to Look for More Answers</H1>
2541 If you have questions about or problems with Alpine that you cannot resolve 
2542 after consulting the program's internal, context-sensitive help screens, here 
2543 are additional information resources that you may find helpful:
2545 <UL>
2546   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
2548   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
2550   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
2551 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
2552   since the last version, which may be useful for you to be aware of, 
2553 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
2554 a change in the way an aspect of Alpine works.  There, you will also find notes 
2555 on Alpine configuration.<P>
2556   <LI> The main site for Alpine contains information on configuring and solving problems
2557        with Alpine, it can be found at
2559 <CENTER><A HREF="http://alpine.x10host.com/alpine/">http://alpine.x10host.com/alpine/</A></CENTER>  
2561   <LI> Archives of the Alpine-info mailing list, at <A 
2562 href="http://mailman13.u.washington.edu/pipermail/alpine-info/">http://mailman13.u.washington.edu/pipermail/alpine-info/</A>
2564   <LI>The newsgroup comp.mail.pine.
2566 </UL>
2567 <P><HR WIDTH="75%">
2568 <H1>Requesting help</H1>
2569 If the internal help, the Release Notes, and your 
2570 local online and print resources do not help you resolve a problem, please
2571 start by contacting your local computer support staff and asking for help.
2573 This is especially true if:
2574 <ul>
2575   <li>You suddenly have trouble sending or receiving mail.
2576   <li>You receive a "disk quota exceeded" message.
2577   <li>You have forgotten your password.
2578   <li>You think your account may have been compromised.
2579   <li>You need help viewing an attachment.
2580   <li>You need to know how to configure your:
2581       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2582       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2583       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2584       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2585   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2586   <li>You want to block email from a particular person.
2587   <li>You're going on vacation and need to autorespond to incoming mail.
2588   <li>You want to automatically file or filter incoming messages.
2589 </ul>
2591 In all of these cases,
2592 you should contact <B>your</B> support staff, because <B>only they</B> 
2593 will be able to assist you effectively. Your support staff may be, depending on who 
2594 provides you with the email account you use Alpine with, for example:<UL>
2595 <LI> the computing help desk of (a department of) your university, school, 
2596 employer, ... ; or
2597 <LI> the customer service center of your Internet Service Provider; or
2598 <LI> the friendly volunteer helpers of your Freenet; or
2599 <LI> the person who setup your computer and internet connection.
2600 </UL>
2603 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2604 newsgroup can be a valuable source of information and assistance for Alpine 
2605 user issues.
2607 For systems/email administrators, developers, trainers, user support
2608 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2609 level, the mailing list alpine-info is available; for information on
2610 subscribing and posting to it, see
2612 <CENTER><A HREF="https://mailman13.u.washington.edu/mailman/listinfo/alpine-info">https://mailman13.u.washington.edu/mailman/listinfo/alpine-info</A></CENTER>
2615 Regardless of whom you are asking for help with Alpine, remember 
2616 to provide as much detail as you can about the
2617 nature of any problem you are encountering, such as
2618 <UL>
2619 <LI>when it first occurred;
2620 <LI>what, if anything, happened that might have brought it about;
2621 <LI>whether it still persists;
2622 <LI>whether it is reproducible, and if so, how;
2623 <LI>what, if anything, you already tried to solve it.
2624 </UL> 
2625 It may also be helpful if you specify what version of Alpine you are using 
2626 <!--chtml if pinemode="running"-->
2627 -- this is <!--#echo var="ALPINE_VERSION"--> --
2628 <!--chtml endif-->
2629 and on what system, and when the copy of Alpine you are using was created
2630 <!--chtml if pinemode="running"-->
2631 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2632 <!--chtml endif-->
2634 <!--chtml if pinemode="running"-->
2635 <P>   
2636 When the Alpine program you are currently using was installed, a support
2637 contact email address may have been set up; in that case, you can simply select
2638 this link now to send a message to it:<BR>
2639 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2640 <!--chtml endif-->
2641 <!--chtml if [ -r PINE_INFO_PATH ]-->
2642 <HR WIDTH="75%">Local Support Contacts:<P>
2643 <!--#include file="PINE_INFO_PATH"-->
2644 <HR WIDTH="75%">
2645 <!--chtml endif-->
2646 <P> 
2647 &lt;End of help on this topic&gt;
2648 </BODY>
2649 </HTML>
2650 ===== new_user_greeting ======
2651 <HTML>
2652 <HEAD>
2653 <TITLE>NEW USER GREETING</TITLE>
2654 </HEAD>
2655 <BODY>
2656 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2657 <BR>
2658 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2659 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2660 select Setup/Config to see many of the options available to you. Also note
2661 that all screens have context-sensitive help text available.
2664 Alpine is a free email program. Your use of Alpine is subject to the terms of the <A 
2665 href="h_apache_license">Apache License 2.0</A>.
2668 Alpine's privacy policy is a living, online only, document, which can be found at
2669 <A href="h_privacy_policy">http://alpine.x10host.com/privacy.html</A>.
2670 By following the previous link,  Alpine
2671 will connect to an external server, and will download it and display
2672 it for you. Please take some time to read it and understand it.
2673 Since the Privacy Policy could be ammended to take into consideration
2674 new additions to Alpine, please check it periodically. You can always
2675 find a link to the Privacy Policy in the <A href="h_news">Release Notes</A>.
2678 To Exit this screen and continue your Alpine session press "E".
2679 </BODY>
2680 </HTML>
2681 ===== new_alpine_user_greeting ======
2682 <HTML>
2683 <HEAD>
2684 <TITLE>NEW ALPINE USER GREETING</TITLE>
2685 </HEAD>
2686 <BODY>
2687 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2688 <BR>
2689 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2690 Your Alpine configuration file indicates that you may have used Pine before
2691 but not Alpine.
2692 If you are familiar with the way Pine works, you should be comfortable
2693 using Alpine.
2694 Your Pine configuration file is automatically used for Alpine.
2695 The Release Notes may be viewed by pressing 
2696 &quot;R&quot; now or while in the MAIN MENU.
2699 Alpine is a free email program. Your use of Alpine is subject to the terms of the <A 
2700 href="h_apache_license">Apache License 2.0</A>.
2703 Alpine's privacy policy is a living, online only, document, which can be found at
2704 <A href="h_privacy_policy">http://alpine.x10host.com/privacy.html</A>.
2705 By following the previous link,  Alpine
2706 will connect to an external server, and will download it and display
2707 it for you. Please take some time to read it and understand it.
2708 Since the Privacy Policy could be ammended to take into consideration
2709 new additions to Alpine, please check it periodically. You can always
2710 find a link to the Privacy Policy in the <A href="h_news">Release Notes</A>.
2713 To Exit this screen and continue your Alpine session press "E".
2714 </BODY>
2715 </HTML>
2716 ===== new_version_greeting ======
2717 <HTML>
2718 <HEAD>
2719 <TITLE>NEW VERSION GREETING</TITLE>
2720 </HEAD>
2721 <BODY>
2722 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2723 <BR>
2724 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2725 Your Alpine configuration file indicates that you may not have used 
2726 this version of Alpine before.  This version's significant changes are
2727 documented in the Release Notes, which may be viewed by pressing 
2728 &quot;R&quot; now or while in the MAIN MENU.
2732 Alpine is a free email program. Your use of Alpine is subject to the terms of the <A 
2733 href="h_apache_license">Apache License 2.0</A>.
2736 Alpine's privacy policy is a living, online only, document, which can be found at
2737 <A href="h_privacy_policy">http://alpine.x10host.com/privacy.html</A>.
2738 By following the previous link,  Alpine
2739 will connect to an external server, and will download it and display
2740 it for you. Please take some time to read it and understand it.
2741 Since the Privacy Policy could be ammended to take into consideration
2742 new additions to Alpine, please check it periodically. You can always
2743 find a link to the Privacy Policy in the <A href="h_news">Release Notes</A>.
2746 To Exit this screen and continue your Alpine session press "E".
2747 </BODY>
2748 </HTML>
2750 ===== main_menu_tx ======
2751 <HTML>
2752 <HEAD>
2753 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2754 </HEAD>
2755 <BODY>
2756 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2757 <DIV ALIGN=CENTER>
2758 Version <!--#echo var="ALPINE_VERSION"-->
2759 <!--chtml if pinemode="running"-->
2760 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2761 <!--chtml endif-->
2762 </DIV>
2763 <CENTER>Copyright 2013-2020 Eduardo Chappa,
2764 <BR>Copyright 2006-2008 University of Washington.
2765 </CENTER>
2768 When you are viewing a help screen, there may be links to
2769 other topics highlighted (in Reverse video) in the text.
2770 Here is an example.
2771 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2772 highlighted.
2773 If you type carriage return (or V for View Link, see the commands at the
2774 bottom of the screen) you will be taken to a new help screen to view the
2775 Introduction.
2776 The commands at the bottom of the screen should then include
2777 &quot;P Prev Help&quot;.
2778 If you type &quot;P&quot; you will end up back here.
2779 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2780 to the place you were in Alpine when you entered Help.
2781 In this case, you would go back to the MAIN MENU.
2782 There are also other links that are highlighted in bold (or the color used
2783 by your terminal to display bold).
2784 The items after the Introduction in the TABLE OF CONTENTS are all examples
2785 of such links.
2786 In order to view those links, you first have to make the link you want
2787 to view the current link.
2788 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2789 (see bottom of screen) can do that for you.
2792 <H2>TABLE OF CONTENTS</H2>
2793 <OL>
2794   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2795   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2796 <!--chtml if [ -r PINE_INFO_PATH ]-->
2797   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2798 <!--chtml endif-->
2799   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2800   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2801   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2802   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2803   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2804   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2805   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2806   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2807   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2808   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2809   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2810   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2811   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2812   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2813   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2814   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2815   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2816   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2817   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2818   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2819   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2820   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2821   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2822   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2823   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2824 </OL>
2827 &lt;End of help on this topic&gt;
2828 </BODY>
2829 </HTML>
2830 ===== h_mainhelp_intro ======
2831 <HTML>
2832 <HEAD>
2833 <TITLE>Introduction</TITLE>
2834 </HEAD>
2835 <BODY>
2836 <H1>Introduction</H1>
2838 Alpine is an &quot;Alternatively Licensed Program for Internet
2839 News and Email&quot; produced until 2009 by the University of Washington.
2840 It is intended to be an easy-to-use program for
2841 sending, receiving, and filing Internet electronic mail messages and
2842 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2843 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2844 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2845 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2846 Directory Access Protocol).<p>
2848 Although originally designed for inexperienced email users, Alpine has
2849 evolved to support many advanced features.  There are an ever-growing
2850 number of configuration and personal-preference options, though which of
2851 them are available to you is determined by your local system managers. 
2853 <H2>WHAT ALPINE DOES...</H2>
2855 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2856 allows you to
2857 compose and read messages using Internet mail standards.  (Whether you
2858 can correspond with others on the Internet depends on whether or not your
2859 computer is connected to the Internet.)  Alpine also allows reading and
2860 posting messages on the Internet &quot;net news&quot; system, provided
2861 that your site operates a suitable news server.
2863 <H2>WHAT ALPINE DOES NOT DO...</H2>
2865 A &quot;mail user agent&quot; such as Alpine is just one part of a
2866 messaging system. Here are some things that are <B>not</B> done by Alpine,
2867 but require other programs:<P>
2868 <UL>
2869  <LI> Actual relaying of email... which is done by &quot;message transfer 
2870 agents&quot;.
2871  <LI> Vacation messages... automatically responding to incoming messages
2872  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2873 email.
2874  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2875  <LI> List processing... resending one message to a list of recipients.
2876 </UL>
2879 &lt;End of help on this topic&gt;
2880 </BODY>
2881 </HTML>
2883 ===== h_mainhelp_pinehelp ======
2884 <HTML>
2885 <HEAD>
2886 <TITLE>Alpine Help</TITLE>
2887 </HEAD>
2888 <BODY>
2889 <H1>Alpine Help</H1>
2891 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2892 use will have its own help text, explaining the choices available for that
2893 screen. This general help section, on the other hand, attempts to give an 
2894 overall picture of what Alpine is capable of doing, as well as pointers to 
2895 additional help sections about specific topics.<p>
2897 Much of the help text contains links to further help topics, similar to
2898 how the World Wide Web works.
2899 You may choose a link to view using the &quot;NextLink&quot; and
2900 &quot;PrevLink&quot; commands to change the link that is highlighted.
2901 The &quot;View Link&quot; command will then show you the highlighted link.
2902 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2903 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2904 will return you to the location in Alpine before you asked for help.
2905 For example, if you are reading this text in Alpine you may return to the
2906 help table of contents with the &quot;Prev Help&quot; command or you may view the
2907 Release notes link in the next paragraph and then return here with
2908 &quot;Prev Help&quot;.
2911 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2912 on the current Alpine version are also available from the MAIN MENU: Press
2913 <!--chtml if pinemode="function_key"-->
2914 &quot;F9&quot;
2915 <!--chtml else-->
2916 &quot;R&quot;
2917 <!--chtml endif-->
2918 to browse the release notes.  These include changes since the last release,
2919 configuration information, the history of the Alpine
2920 project, credits, and legal notices.
2922 Alpine releases are available via the world wide web at
2924 <CENTER><SAMP><A 
2925 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2926 ></CENTER>
2929 If you would like to print <EM>all</EM> of Alpine's internal help text
2930 (not recommended) for a little light bedtime reading, then press
2931 <!--chtml if pinemode="function_key"-->
2932 &quot;F12&quot;
2933 <!--chtml else-->
2934 &quot;Z&quot;
2935 <!--chtml endif-->
2936 now.  (This assumes that the
2937 copy of Alpine you are using has been properly configured for printing
2938 at your site.)
2940 &lt;End of help on this topic&gt;
2941 </BODY>
2942 </HTML>
2943 ===== h_mainhelp_localsupport ======
2944 <HTML>
2945 <HEAD>
2946 <TITLE>Local Support Contacts</TITLE>
2947 </HEAD>
2948 <BODY>
2949 <H1>Local Support Contacts</H1>
2951 <!--chtml if [ -r PINE_INFO_PATH ]-->
2952 <!--#include file="PINE_INFO_PATH"-->
2953 <!--chtml else-->
2954 No Local Support Contacts configured.
2955 <!--chtml endif-->
2958 &lt;End of help on this topic&gt;
2959 </BODY>
2960 </HTML>
2962 ===== h_mainhelp_cmds ======
2963 <HTML>
2964 <HEAD>
2965 <TITLE>Giving Commands in Alpine</TITLE>
2966 </HEAD>
2967 <BODY>
2968 <H1>Giving Commands in Alpine</H1>
2970 Unless configured otherwise
2971 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2972 the bottom two lines of the screen are always used to list the
2973 commands you can give.  You press the keys that are highlighted to give
2974 the command.  The commands for getting help and going back to the main
2975 menu are always present (except when viewing help as you are now).
2976 <!--chtml if pinemode="function_key"-->
2977 <!--chtml else-->
2979 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2980 you see at the bottom of any screen. In some cases there are 3 or
2981 even 4 different
2982 sets of keys that can be seen by using the O key. <EM>All commands are 
2983 active</EM>, even if they are not currently showing at the bottom of your 
2984 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2985 remind yourself of the proper key to press to perform an operation.
2987 <H2>Control Key Commands</H2>
2988 When composing mail, and in a few other places, in Alpine you
2989 have to use Control keys. This means pressing the Control key (usually labeled 
2990 &quot;Ctrl&quot;) and the
2991 letter indicated at the same time.  Usually, this is shown with a
2992 &quot;^&quot; in front of the letter.  On some systems, certain control
2993 characters are intercepted before they get to Alpine.  As a work-around,
2994 you can press the ESCAPE key twice followed by the desired key.  For
2995 example, if Ctrl-O (^O) does not work on your system, try typing
2996 &quot;ESC ESC O&quot;.
2997 <!--chtml endif-->
2998 <H2>Paging Up and Down</H2>
2999 The &quot;+&quot; and &quot;-&quot; keys are used for
3000 moving to the next or previous page.  The space bar is a synonym for
3001 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
3002 up as you do in the message composer.  On screens with a WhereIs (search)
3003 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
3004 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
3005 of the message or list.
3007 <H2>Return Key</H2>
3008 The return key is usually a synonym for a frequently used
3009 command.  When viewing a message, there is currently not a default
3010 command, so RETURN does nothing; when in the index, it is synonymous with
3011 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
3012 enclosed in square brackets [] is the same as the return key.
3014 <H2>Control Keys Not Used By Alpine</H2>
3015 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
3016 value, but in places where Alpine is expecting text input, e.g. in the composer or 
3017 at prompts for file/folder names, control keys must be used for editing and 
3018 navigation functions.
3021 Alpine has used nearly all the control keys available.  There are, however,
3022 certain control keys that are reserved by other programs or for technical
3023 reasons.  Alpine does not use any of these keys:
3024 <DL>
3025  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
3026  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
3027  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
3028 </DL>
3030 Note: Ctrl-S and Ctrl-Q can be subject to 
3031 <A HREF="h_special_xon_xoff">special handling</A>.
3033 In addition, while the ESC key alone is not used for command input,
3034 Alpine will recognize two consecutive ESC key presses followed by a letter 
3035 key as a substitute for control key input.  For example, the control key
3036 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
3037 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
3038 This is useful if the communication program you are using
3039 (e.g. Telnet) has its own, conflicting, idea of what certain control
3040 characters mean.
3043 <H2>Repainting the Screen</H2>
3044 Sometimes what is displayed on the screen will be
3045 incorrect due to noise on the phone line or other causes and you will want
3046 to repaint the whole screen to make it correct.  You can use the Ctrl-L
3047 command to do this.  It never hurts to do it when in doubt.
3050 &lt;End of help on this topic&gt;
3051 </BODY>
3052 </HTML>
3053 ===== h_mainhelp_status ======
3054 <HTML>
3055 <HEAD>
3056 <TITLE>Titlebar Line</TITLE>
3057 </HEAD>
3058 <BODY>
3059 <H1>Titlebar Line</H1>
3061 The top line of the screen is Alpine's titlebar line.  It will always display
3062 the current version of Alpine and will also convey information about the
3063 status of the program.  This is where you look to find out what
3064 collection, folder and message number is active and where you are in Alpine.
3067 If the titlebar line says &quot;READONLY&quot; it means that the open folder
3068 (typically your INBOX) is &quot;locked&quot; by another mail session --
3069 most likely a more recent session of Alpine has taken the INBOX lock.
3072 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
3073 access a
3074 folder on a remote mail server, and for some reason, communication with
3075 the mail server has either been lost, or never successfully established.
3076 This can be a result of trying to open a non-existent folder, or one
3077 stored on an invalid or non-operational server, or it can mean that Alpine
3078 has been suspended for more that 30 minutes while accessing a remote mail
3079 server.
3082 &lt;End of help on this topic&gt;
3083 </BODY>
3084 </HTML>
3085 ===== h_mainhelp_mainmenu ======
3086 <HTML>
3087 <HEAD>
3088 <TITLE>Main Menu</TITLE>
3089 </HEAD>
3090 <BODY>
3091 <H1>Main Menu</H1>
3093 The Main Menu lists Alpine's main options.
3094 The key or keys you must type to enter your
3095 choice are to the left of each option or command name.
3096 You can type either uppercase or lowercase letters,
3097 and you should not press &lt;Return&gt; after typing the
3098 letter (unless you are specifically asking for the default,
3099 highlighted command).
3102 From the Main Menu you can choose to read online help, write (compose) and 
3103 send a message, look at an index of your mail messages, open or maintain
3104 your mail folders, update your address book, configure Alpine, and quit Alpine.
3105 There are additional options listed at
3106 the bottom of the screen as well.
3109 The Help command usually returns context-sensitive help information.
3110 However, in the Main Menu you get the most general help, which includes
3111 a Table of Contents.
3112 The last entry in the Table of Contents is an Index of help topics,
3113 so this is a good place to go if you are having trouble finding how
3114 to do something.
3116 <H2>Main Menu Commands</H2>
3117 The Alpine main menu lists the most common Alpine functions. A <a
3118 href="h_main_menu_commands">full list of these
3119 commands</a> and what they do is available.
3121 &lt;End of help on this topic&gt;
3122 </BODY>
3123 </HTML>
3124 ===== h_mainhelp_abooks ======
3125 <HTML>
3126 <HEAD>
3127 <TITLE>Address Books</TITLE>
3128 </HEAD>
3129 <BODY>
3130 <H1>Address Books</H1>
3133 As you use email, you can build a list of your regular email correspondents 
3134 in your Alpine
3135 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
3136 screen. Your
3137 personal address book will be highlighted. Press &lt;Return&gt; to view it.
3138 You can use the address book to store email addresses for individuals or
3139 groups, to create easily
3140 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
3141 address when you are composing a message.
3143 There are two ways to add addresses to your address book: you can add them 
3144 manually or take them from messages (by pressing T to access the Take command). 
3145 With either method, you specify nicknames for your correspondents. A single 
3146 address book entry (or nickname) can point to just one email address, or, it can
3147 point to more than one. When it points to more than one, it is called a 
3148 distribution list. Each distribution list has a nickname, a full name, and a 
3149 list of addresses. These
3150 addresses may be actual addresses, other nicknames in your address book, or 
3151 other
3152 distribution lists.
3155 Additional information is available in Alpine's online help:
3156 <ul>
3157   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
3158 </ul>
3160 &lt;End of help on this topic&gt;
3161 </BODY>
3162 </HTML>
3163 ===== h_mainhelp_ldap ======
3164 <HTML>
3165 <HEAD>
3166 <TITLE>LDAP</TITLE>
3167 </HEAD>
3168 <BODY>
3169 <H1>LDAP</H1>
3171 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
3172 an organization's shared
3173 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
3174 large address
3175 books, rather like the White Pages provided by the phone company. As an Alpine 
3176 user, it is not
3177 necessary to know much about how this works, only how to use it and how to 
3178 configure
3181 More information on configuring LDAP is available in Alpine's online help:
3182 <ul>
3183   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
3184 </ul>
3186 Additional help on using LDAP in Alpine is also available:
3187 <ul>
3188   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
3189 </ul>
3191 &lt;End of help on this topic&gt;
3192 </BODY>
3193 </HTML>
3194 ===== h_mainhelp_index ======
3195 <HTML>
3196 <HEAD>
3197 <TITLE>Index of Messages</TITLE>
3198 </HEAD>
3199 <BODY>
3200 <H1>Index of Messages</H1>
3202 In Alpine's message index, the selected message is highlighted. The first 
3203 column on the left is blank, shows a &quot;+&quot; if the message was
3204 sent directly to you (i.e., it is not a
3205 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
3207 The second column may be blank, or it may contain:
3208 <ul>
3209   <li>"N" if the message is new (unread), </li>
3210   <li>"A" if you have answered the message (using the Reply command), </li>
3211   <li>"D" if you have marked the message for deletion.</li>
3212 </ul>
3215 Note: If you answer a message as well as mark it deleted (in either order), 
3216 you will only see the &quot;D&quot;.
3219 The rest of the columns in the message line show you the message
3220 number, date sent, sender, size, and subject. For details, press ? (Help).  
3221 The behavior and appearance of the Index screen is highly configurable.
3222 In the Setup/Config screen search (with the WhereIs command) for options
3223 that contain the words &quot;index&quot; or &quot;thread&quot; to see
3224 many of the configuration possibilities.
3225 In particular, the
3226 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
3227 option may be used to configure the look of the standard MESSAGE INDEX lines
3228 in many different ways.
3229 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
3230 read the help text there for more information.
3232 Most of the commands you need to handle your messages are visible at the
3233 bottom of the screen, and you can press O (OTHER CMDS) to see additional
3234 commands that are available.
3235 You do not need to see these &quot;other commands&quot;
3236 on the screen to use them. That is, you never need to press O as a prefix
3237 for any other command.
3240 Additional information is available in Alpine's online help:
3241 <ul>
3242   <li><a href="h_mail_index">Message Index Commands</a></li>
3243 </ul>
3245 &lt;End of help on this topic&gt;
3246 </BODY>
3247 </HTML>
3248 ===== h_mainhelp_reading ======
3249 <HTML>
3250 <HEAD>
3251 <TITLE>Reading Messages</TITLE>
3252 </HEAD>
3253 <BODY>
3254 <H1>Reading Messages</H1>
3256 The message text screen shows you the text of the message along with
3257 its header. If a message has attachments, those will be listed (but not
3258 displayed) also.  The titlebar line displays information about the currently
3259 open message, folder and collection.  You see the name of the collection
3260 (if there is one) in angle brackets, then the name of the folder, then the
3261 message number and finally the position within the current message (in
3262 percent). If the message is marked for deletion
3263 &quot;DEL&quot; will appear in the
3264 upper right as well.
3267 As with every Alpine screen, the bottom two lines show you the commands 
3268 available.
3270 <P>Additional information is available in Alpine's online help:
3271 <ul>
3272   <li><a href="h_mail_view">Message Text Screen</a></li>
3273   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
3274   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
3275 </ul>
3277 &lt;End of help on this topic&gt;
3278 </BODY>
3279 </HTML>
3280 ===== h_mainhelp_composing ======
3281 <HTML>
3282 <HEAD>
3283 <TITLE>Composing Messages</TITLE>
3284 </HEAD>
3285 <BODY>
3286 <H1>Composing Messages</H1>
3288 To write a message, press C (Compose). You see the Compose Message
3289 screen, which is divided into two parts: the header area and the message
3290 text area. The header area is where information on the recipient (the To:
3291 field) and the subject line go, while the message text area contains the
3292 actual text of the email message. Different commands are available to you
3293 when your cursor is in different areas on this screen. To see additional
3294 help on commands in either the message text or header area, type
3295 <Control>G (Get help).
3298 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
3299 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
3301 <P>The following information from Alpine's online help may prove useful:
3302 <ul>
3303   <li><a href="h_composer_to">Message Header Commands</a></li>
3304   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
3305   <li><a href="h_composer">Composer Commands</a></li>
3306   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
3307   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
3308   <li><a href="h_compose_send">Send Command</a></li>
3309   <li><a href="h_compose_spell">Spell Check Command</a></li>
3310 </ul>
3312 &lt;End of help on this topic&gt;
3313 </BODY>
3314 </HTML>
3315 ===== h_mainhelp_collections ======
3316 <HTML>
3317 <HEAD>
3318 <TITLE>Collection Lists</TITLE>
3319 </HEAD>
3320 <BODY>
3321 <H1>Collection Lists</H1>
3323 Collection lists are Alpine's way of organizing groups of folders. Each
3324 "collection" can reside on a different server, for example, and contain a
3325 different group of mail folders.
3328 For more information on this, see:
3329 <ul>
3330   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
3331 </ul>
3333 Additional information relating to collection lists is also available in 
3334 Alpine's online
3335 help:
3336 <ul>
3337   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
3338   <li><a href="h_collection_screen">Collection List Screen</a></li>
3339 </ul>
3341 &lt;End of help on this topic&gt;
3342 </BODY>
3343 </HTML>
3344 ===== h_mainhelp_folders ======
3345 <HTML>
3346 <HEAD>
3347 <TITLE>Folders</TITLE>
3348 </HEAD>
3349 <BODY>
3350 <H1>Folders</H1>
3352 Messages can quickly accumulate in your INBOX folder. If you use email
3353 often, you soon could have hundreds. You need to delete messages you do
3354 not want, and you can use folders to organize messages you wish to save. A
3355 folder is a collection of one or more messages that are stored (just like
3356 the messages in your INBOX) so you can access and manage them.
3359 You can organize your email messages into different folders by topic,
3360 correspondent, date, or any other category that is meaningful to you. You
3361 can create your own folders, and Alpine automatically provides three:
3362 <ul>
3363   <li>The INBOX folder: messages sent to you are listed in this folder.
3364       When you first start Alpine and go to the Message Index screen, you are
3365 looking at the list of messages in your INBOX folder. Every incoming
3366 message remains in your INBOX until you delete it or save it in another
3367 folder. </li>
3368   <li>The sent-mail folder: copies of messages you send are stored in this 
3369 folder. This is
3370 convenient if you cannot remember whether you actually sent a message and want 
3371 to check, or
3372 if you want to send a message again.</li>
3373   <li>The saved-messages folder: copies of messages you save are stored in this 
3374 folder
3375 unless you choose to save them to other folders you create yourself.</li>
3376 </ul>
3379 More information about folders is available in Alpine's online help:
3380 <ul>
3381   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
3382   <li><a href="h_folder_maint">Help for Folder List</a></li>
3383   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
3384   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
3385 Explained</a></li>
3386   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
3387 </ul>
3389 &lt;End of help on this topic&gt;
3390 </BODY>
3391 </HTML>
3392 ===== h_mainhelp_color ======
3393 <HTML>
3394 <HEAD>
3395 <TITLE>Color</TITLE>
3396 </HEAD>
3397 <BODY>
3398 <H1>Color</H1>
3400 If the terminal emulator you are using is capable of displaying color or if
3401 you are using PC-Alpine, then it is possible to set up Alpine so that various
3402 parts of the display will be shown in colors you configure. This is done
3403 using the Setup Color screen, available from the MAIN MENU by selecting
3404 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
3405 stands for Config in this context).
3408 For example, you may color things like the titlebar, the current item,
3409 the keymenu, and the status messages.
3410 You may also color lines in the index, and headers and quoted text in the
3411 MESSAGE TEXT screen.
3412 You use the Color Setup screen for configuring most of this, but you must
3413 use the IndexColor setup for coloring whole index lines.
3414 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
3417 The following entries in Alpine's online help provide additional information 
3418 about how to use color:
3419 <UL>
3420   <LI> <A HREF="h_color_setup">Color Setup screen</A>
3421   <LI> <A HREF="h_rules_incols">Index Line Color</A>
3422   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
3423   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
3424 </UL>
3426 &lt;End of help on this topic&gt;
3427 </BODY>
3428 </HTML>
3429 ===== h_mainhelp_mouse ======
3430 <HTML>
3431 <HEAD>
3432 <TITLE>Using a Mouse</TITLE>
3433 </HEAD>
3434 <BODY>
3435 <H1>Using a Mouse</H1>
3437 If you are using PC-Alpine mouse support is turned on automatically.
3438 If you are using UNIX Alpine within an X terminal window or within
3439 a terminal emulator that supports an xterm-style mouse, then you may
3440 turn on support for the mouse with the feature
3441 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
3442 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
3444 PC-Alpine offers considerable mouse support.  You can view what is
3445 &quot;clickable&quot; by dragging your mouse over any screen; when the
3446 arrow cursor changes into a hand, you found something. Mouse-click
3447 possibilities include navigating between screens and folders and
3448 double-clicking on hyperlinks to open your Web browser.
3449 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
3450 screen.  Examples of right-click options include &quot;copy&quot; after
3451 selecting text to copy and &quot;View in New Window&quot; when you click
3452 on a particular message in the Message Index. The menu choices available
3453 to you will vary based upon what screen is open, where on the screen your
3454 cursor is located, and even what action you have already taken.
3455 Within a folder, you may set the &quot;Important&quot; flag on any
3456 message.
3458 X terminal mouse support is more limited but still quite powerful.
3459 As with PC-Alpine, clicking on any of the commands in the keymenu at
3460 the bottom of the screen will execute that command as if you typed it.
3461 Double-clicking on a link, for example the link to the
3462 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
3463 will take you to that link.
3464 Double-clicking on an index line will view the message, and so on.
3466 &lt;End of help on this topic&gt;
3467 </BODY>
3468 </HTML>
3469 ===== h_mainhelp_keywords ======
3470 <HTML>
3471 <HEAD>
3472 <TITLE>Keywords</TITLE>
3473 </HEAD>
3474 <BODY>
3475 <H1>Keywords</H1>
3477 Within a folder, you may set the &quot;Important&quot; flag on any
3478 message.
3479 This doesn't have any system-defined meaning and is only called
3480 the Important flag because many users use it to signify that a message
3481 is important to them in some way.
3483 You may also define your own set of keywords.
3484 You might know these as user defined flags or as labels.
3485 These are similar to the Important flag but you choose the names for yourself.
3487 Alpine will only display keywords that
3488 have been added by you in the Flag Details screen or
3489 that have been configured by you using the Setup/Config option
3490 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
3491 Keywords set by other means (for example, by another email client) will not
3492 show up in Alpine unless you configure Alpine to know about them.
3493 They will show up in the Flag Details screen, but will not show up, for example,
3494 in the index line.
3497 The following entries in Alpine's online help provide additional information 
3498 about how to use keywords:
3499 <ul>
3500   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
3501   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
3502 </ul>
3504 &lt;End of help on this topic&gt;
3505 </BODY>
3506 </HTML>
3507 ===== h_mainhelp_roles ======
3508 <HTML>
3509 <HEAD>
3510 <TITLE>Roles</TITLE>
3511 </HEAD>
3512 <BODY>
3513 <H1>Roles</H1>
3515 You may play different roles depending on who you are replying to. For
3516 example, if you are replying to a message addressed to help-desk you may
3517 be acting as a Help Desk Worker. That role may require that you use a
3518 different return address and/or a different signature.
3521 To configure roles, go to the MAIN MENU and use the Setup command
3522 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
3523 The following entries in Alpine's online help provide additional information 
3524 about how to
3525 use roles:
3526 <ul>
3527   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
3528   <li><a href="h_role_select">Roles Screen</a></li>
3529 </ul>
3531 &lt;End of help on this topic&gt;
3532 </BODY>
3533 </HTML>
3534 ===== h_mainhelp_filtering ======
3535 <HTML>
3536 <HEAD>
3537 <TITLE>Filtering</TITLE>
3538 </HEAD>
3539 <BODY>
3540 <H1>Filtering</H1>
3542 The software that actually delivers mail (the stuff that happens
3543 before Alpine is involved) for you is in a better position to do mail filtering
3544 than Alpine itself.
3545 If possible, you may want to look into using that sort of mail filtering to
3546 deliver mail to different folders, delete it, or forward it.
3547 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3550 Filtering is a way to automatically move certain messages from one folder
3551 to another or to automatically delete messages.
3552 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3553 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3554 Alpine doesn't have the ability to forward mail to another address or
3555 to deliver vacation messages.
3558 To configure filtering, go to the MAIN MENU and use the Setup command
3559 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3560 The following entries in Alpine's online help provide additional information 
3561 about how to use filtering:
3562 <UL>
3563   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3564 </UL>
3566 &lt;End of help on this topic&gt;
3567 </BODY>
3568 </HTML>
3569 ===== h_mainhelp_patterns ======
3570 <HTML>
3571 <HEAD>
3572 <TITLE>Patterns</TITLE>
3573 </HEAD>
3574 <BODY>
3575 <H1>Patterns</H1>
3577 Patterns are used with Roles, Filtering, Index Coloring,
3578 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3579 The following entries in Alpine's online help provide information 
3580 about using Patterns:
3581 <UL>
3582   <LI> <A HREF="h_rule_patterns">Patterns</A>
3583 </UL>
3585 &lt;End of help on this topic&gt;
3586 </BODY>
3587 </HTML>
3588 ===== h_mainhelp_cmdlineopts ======
3589 <HTML>
3590 <HEAD>
3591 <TITLE>Command Line Options</TITLE>
3592 </HEAD>
3593 <BODY>
3594 <H1>Command Line Options</H1>
3596 Alpine accepts a number of command line arguments, allowing you, for
3597 example, to start Alpine and immediately access a particular folder.
3598 Many of these arguments overlap with options in the Alpine configuration file.
3599 If there is a difference, then an option set on the command line takes
3600 precedence.
3601 Alpine expects command line arguments (other than addresses) to be
3602 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3603 A <a href="h_command_line_options">full list</a> of command line
3604 possibilities is available.
3606 &lt;End of help on this topic&gt;
3607 </BODY>
3608 </HTML>
3609 ===== h_mainhelp_config ======
3610 <HTML>
3611 <HEAD>
3612 <TITLE>Alpine Configuration</TITLE>
3613 </HEAD>
3614 <BODY>
3615 <H1>Alpine Configuration</H1>
3617 Unless it has been administratively disabled, the Setup command on the
3618 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3619 The possible subcommands are for general Configuration settings,
3620 Printer settings, Changing your Password, Signature setup,
3621 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3622 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3623 and Color configuration.
3624 In particular, the &quot;Config&quot; subcommand has many features you may
3625 set or unset and many other configuration variables that may be set to change
3626 the way Alpine works.
3627 Every one of the hundreds of options available in that configuration settings
3628 screen has help text associated with it.
3629 You may read that text by moving the cursor to highlight the option and then
3630 typing the Help command.
3632 These settings are stored in your personal
3633 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3634 <A HREF="h_config_remote_config">remotely</A>),
3635 but on shared systems these settings
3636 may be over-ridden by a system-wide control file (due to local site
3637 security or support policies).  A global pine configuration file can also
3638 be used to set default values for all Alpine users on a particular system.
3639 Power users may be interested in splitting their personal configuration
3640 data into two pieces, a generic piece and
3641 <A HREF="h_config_exceptions">exceptions</A> which apply to
3642 a particular platform.
3643 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3644 General Alpine configuration information can be found
3645 <A HREF="h_news_config">here</A>.
3647 &lt;End of help on this topic&gt;
3648 </BODY>
3649 </HTML>
3650 ===== h_mainhelp_aggops ======
3651 <HTML>
3652 <HEAD>
3653 <TITLE>Aggregate Operations</TITLE>
3654 </HEAD>
3655 <BODY>
3656 <H1>Aggregate Operations</H1>
3658 When you are in the MESSAGE INDEX, the available commands
3659 (for example, Delete, Undelete, Save, Reply, and so on)
3660 normally act on a single message.
3661 So, for example, if you press the Delete command, the currently highlighted
3662 message is marked Deleted.
3663 These commands that normally act on a single message may be applied to
3664 several messages at once instead.
3666 By default this feature is turned on, but it could be administratively turned
3667 off to reduce complexity.
3668 The feature
3669 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3670 in the Setup/Config screen is used to turn it off or on.
3671 When this feature is turned on, the four commands &quot;Select&quot;,
3672 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3673 are available.
3674 The two selection commands allow you to mark a set of
3675 messages as being &quot;selected&quot;.
3676 The &quot;ZoomMode&quot; command will toggle between
3677 displaying only the selected messages and displaying all the messages.
3678 The &quot;Apply&quot; command allows you to
3679 apply one of the regular MESSAGE INDEX commands to all of the selected
3680 messages instead of to only the highlighted message.
3682 An example aggregate operation would be to catch up when reading
3683 a news group.
3684 That is, get rid of all the messages in the news group so that you can
3685 start fresh.
3686 The easiest way to do this in Alpine is to use aggregate operations.
3687 You want to Delete all of the messages in the group.
3688 You could start at the top and type &quot;D&quot; once for every message.
3689 A much faster method is to first Select all of the messages in the group,
3690 and then Delete all of them.
3691 This would take four keystrokes:
3693 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3694 <BR>
3695 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3697 Another use of Select is to use it for searching for a particular message
3698 or set of messages in a large folder.
3699 You may know that the message was From a certain user.
3700 You could select all messages from that user to start, and use Zoom to
3701 look at only those messages.
3702 If there were still too many messages to look at you could Narrow the
3703 set of messages further by selecting from all of those messages only
3704 the ones that were after a certain date, or contained a particular phrase
3705 in the Subject, or were too a particular address, and so on.
3706 That may be the end of what you are doing, or you may want to use Apply to
3707 Save or Forward or Print all of the selected messages.
3709 Some related help topics are
3710 <UL>
3711 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3712 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3713 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3714 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3715 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3716 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3717 </UL>
3719 &lt;End of help on this topic&gt;
3720 </BODY>
3721 </HTML>
3722 ===== h_mainhelp_readingnews ======
3723 <HTML>
3724 <HEAD>
3725 <TITLE>Reading News</TITLE>
3726 </HEAD>
3727 <BODY>
3728 <H1>Reading News</H1>
3730 <H2>Background</H2>
3731 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3732 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3733 Usenet newsgroups allow groups of people with common interests to discuss 
3734 particular topics. You might find newsgroups related to your career, or you 
3735 might wish to check out the online discussion among the fans of your favorite 
3736 television show. 
3738 <H2>Configuring Alpine for Reading News</H2>
3739 Alpine often arrives
3740 pre-configured by your system administrator to automatically access the
3741 newsgroups offered by your organization, Internet Service Provider, or
3742 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3743 need additional details on <a href="h_configuring_news">how to
3744 configure Alpine to read news</a>.
3746 <H2>Accessing Newsgroups</H2>
3747 The first step in reading news is to access the newsgroups collections
3748 screen from Alpine. If everything is configured properly, you should be able
3749 to do this by first typing L (folder List), then selecting the folder
3750 collection listed as "News." The actual name of this collection may differ
3751 from system to system.
3753 <H2>Subscribing to Newsgroups</H2>
3755 Once you have accessed the news collection, you need to subscribe to a
3756 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3757 will keep a record of the newsgroups in which you are interested and which
3758 articles in those newsgroups have been read.
3760 <H2>Using Newsgroups</H2> 
3761 Alpine uses the similar commands to read news as to read mail. For example,
3762 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3763 and the R command Replies to a news posting. Basically, Alpine allows you to
3764 read news as if it were mail, so you don't need to change the way you
3765 interact with Alpine.
3767 There is also additional Alpine help available on 
3768 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3770 &lt;End of help on this topic&gt;
3771 </BODY>
3772 </HTML>
3773 ===== h_mainhelp_securing ======
3774 <HTML>
3775 <HEAD>
3776 <TITLE>Securing your Alpine Session</TITLE>
3777 </HEAD>
3778 <BODY>
3779 <H1>Securing your Alpine Session</H1>
3781 By default, Alpine will attempt to connect to an IMAP server on the normal
3782 IMAP service port (143).
3783 If the Alpine you are using has been built to
3784 support &quot;Transport Layer Security&quot; (TLS)
3785 and &quot;Secure Sockets Layer&quot; (SSL) 
3786 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3787 and the server offers the STARTTLS capability, then a secure (encrypted)
3788 session will be established.
3790 When you are connected to a remote folder the titlebar will contain a plus sign
3791 in the far right column if the connection is encrypted using TLS or SSL.
3792 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3793 if the connection is encrypted.
3795 <H2>More Information on Alpine with SSL and TLS</H2>
3796 <UL>
3797 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3798 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3799 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3800 <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>
3801 </UL>
3802 <H2>Here are some other security-related features and options</H2>
3804 <UL>
3805 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3806 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3807 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3808 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3809 <LI> <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> option </LI>
3810 </UL>
3812 &lt;End of help on this topic&gt;
3813 </BODY>
3814 </HTML>
3815 ===== h_mainhelp_problems ======
3816 <HTML>
3817 <HEAD>
3818 <TITLE>Reporting Problems</TITLE>
3819 </HEAD>
3820 <BODY>
3821 <H1>Reporting Problems</H1>
3823 We ask that you first read the relevant help screens and then seek
3824 assistance from your own local support staff.  Once you are sure that your
3825 difficulty is not a local configuration problem, you might look at the
3826 help section explaining where to look for
3827 <A HREF="h_finding_help">more information</A> and where to 
3828 get assistance.
3831 <ADDRESS>
3832    Eduardo Chappa &lt;chappa@gmx.com&gt;
3833 </ADDRESS>
3836 &lt;End of help on this topic&gt;
3837 </BODY>
3838 </HTML>
3839 ===== h_main_menu_commands ======
3840 <HTML>
3841 <HEAD>
3842 <TITLE>MAIN MENU COMMANDS</TITLE>
3843 </HEAD>
3844 <BODY>
3845 <H1>MAIN MENU COMMANDS</H1>
3847 <!--chtml if pinemode="function_key"-->
3848 &nbsp;Available&nbsp;Commands&nbsp;--
3849 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3850 &nbsp;------------------------------
3851 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3852 ----------<BR>
3853 &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>
3854 &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>
3855 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3856 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3857 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3858 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3859 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3860 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3861 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3862 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3863 &nbsp;F7&nbsp;&nbsp;<A 
3864 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3865 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3866 &nbsp;F8&nbsp;&nbsp;<A 
3867 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3868 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3869 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 
3870 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3871 &nbsp;F10&nbsp;<A 
3872 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 
3873 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3874 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3875 &nbsp;F11&nbsp;<A 
3876 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3877 <!--chtml else-->
3878 &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>
3879 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3880 &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>
3881 &nbsp;C&nbsp;&nbsp;<A 
3882 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>
3883 &nbsp;I&nbsp;&nbsp;<A 
3884 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>
3885 &nbsp;L&nbsp;&nbsp;<A 
3886 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>
3887 &nbsp;A&nbsp;&nbsp;<A 
3888 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3889 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3890 &nbsp;S&nbsp;&nbsp;<A 
3891 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 
3892 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3893 &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>
3894 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3895 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3896 <!--chtml endif-->
3899 NOTE:
3900 <OL>
3901  <LI>For help on a particular command, highlight the bold text associated
3902 with it above and hit Return.
3903  <LI> The availability of certain commands (e.g. some of the options under
3904 SETUP) is determined by Alpine configuration files and system capabilities.
3905 At some sites, certain commands may not be available due to security or
3906 support concerns.
3907 </OL>
3909 &lt;End of help on this topic&gt;
3910 </BODY>
3911 </HTML>
3913 ===== h_command_line_options ======
3914 <HTML>
3915 <HEAD>
3916 <TITLE>COMMAND LINE OPTIONS</TITLE>
3917 </HEAD>
3918 <BODY>
3919 <H1>COMMAND LINE OPTIONS</H1>
3920 Possible starting arguments for Alpine:
3922 <DL COMPACT>
3924 <DT> <EM>[addresses]</EM>
3926 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3927 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3928 <EM>Alpine</EM> will startup in
3929 the composer with a message started to the addresses specified.
3930 Once the message is sent, the <EM>Alpine</EM> session closes.
3931 Standard input redirection is allowed.
3932 Separate multiple addresses with a space between them.
3933 Addresses are placed in the &quot;To&quot; field only.
3936 <DT> &lt; <EM>file</EM>
3938 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3939 into the body of the message.
3940 Once the message is sent, the <EM>Alpine</EM> session closes. 
3943 <DT> -attach <EM>file</EM>
3945 <DD> Go directly into composer with given file attached.
3948 <DT> -attachlist <EM>file-list</EM>
3950 <DD> Go directly into composer with given files attached.
3951 This must be the last option on the command line.
3954 <DT> -attach_and_delete <EM>file</EM>
3956 <DD> Go directly into composer with given file attached, delete when finished.
3959 <DT> -aux <EM>local_directory</EM>
3961 <DD> <EM>PC-Alpine</EM> only.
3962 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3963 files, like debug files, address books, and signature files.  The pinerc may 
3964 be local or remote.
3967 <DT> -bail
3969 <DD> If the personal configuration file doesn't already exist, exit.
3970 This might be useful if the configuration file is accessed using some
3971 remote filesystem protocol. If the remote mount is missing this will cause
3972 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3975 <DT> -c <EM>n</EM>
3977 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3978 This is used when there are multiple folder collections (contexts) and you 
3979 want to open a folder not in the primary collection.
3982 <DT> -conf
3984 <DD> Configuration: Prints a sample system configuration file to the
3985 screen or standard output. To generate an initial system configuration 
3986 file, execute
3988 <PRE><CODE>
3989                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3990 </CODE></PRE>
3993 To generate a system configuration file using settings from an old
3994 system configuration file, execute
3996 <PRE><CODE>
3997                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3998 </CODE></PRE>
4000 A system configuration file is not required.
4003 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
4005 <DD> Copy an address book file to a remote address book folder.
4006 If the remote folder doesn't exist, it will be created.
4007 If it exists but the first message in the folder isn't a remote address
4008 book header message, the copy will be aborted.
4009 This flag will not usually be used by a user.
4010 Instead, the user will create a remote address book from within <EM>Alpine</EM>
4011 and copy entries from the local address book by using aggregate Save in
4012 the address book screen.
4015 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
4017 <DD> Copy a pinerc configuration file to a remote pinerc folder.
4018 If the remote folder doesn't exist, it will be created.
4019 If it exists but the first message in the folder isn't a remote pinerc
4020 header message, the copy will be aborted.
4021 This flag may be useful to users who already have a local pinerc file and
4022 would like to convert it to a remote pinerc folder and use that instead.
4023 This gives a way to bootstrap that conversion without having to manually
4024 reset all of the variables in the remote pinerc folder.
4027 <DT> -d <EM>debug-level</EM>
4029 <DD> Debug Level:  Sets the level of debugging information written by
4030 <EM>Alpine</EM>.
4031 <EM>debug-level</EM> can be set to any integer 0-9.
4032 A debug level of 0 turns off debugging for the session.
4033 (Actually there are some levels higher than 9, but you probably don't
4034 want to see them.)
4037 <DT> -d <EM>keywords</EM>
4039 <DD> You may use a more detailed version of the debugging flag to set
4040 the debug level in separate parts of <EM>Alpine</EM>.
4041 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
4042 verbose=0..9.
4043 <EM>Flush</EM> causes debugging information to be flushed immediately to
4044 the debug file as it is written.
4045 <EM>Verbose</EM> is the general debugging verbosity level.
4046 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
4047 is useful when you are trying to figure out what is responsible for delays.
4048 <EM>Numfiles</EM> sets the number of debug files saved.
4049 <EM>Imap</EM> sets the debug level for the debugging statements related
4050 to the conversation with the IMAP server, and more generally, for the
4051 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
4052 <EM>Tcp</EM> turns on some TCP/IP debugging.
4055 <DT> -f <EM>folder</EM>
4057 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
4058 of the standard INBOX.
4061 <DT> -F <EM>file</EM>
4063 <DD> Open named text file for viewing and forwarding.
4066 <DT> -h
4068 <DD> Help:  Prints the list of available command-line arguments to the
4069 screen.
4072 <DT> -i
4074 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
4075 screen instead of the MAIN MENU.
4078 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
4081 <DT> -I <EM>a,b,c,...</EM>
4083 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
4084 sequence of commands upon startup.
4085 This allows users to get <EM>Alpine</EM> to start in any
4086 of its menus/screens.
4087 You cannot include any input to the composer in the initial keystrokes.
4088 The key &lt;Return&gt; is represented by a ``CR'' in
4089 the keystroke list; the spacebar is designated by the letters ``SPACE''.
4090 Control keys are two character sequences beginning with ``^'', such as
4091 ``^I''.
4092 A tab character is ``TAB''.
4093 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
4094 ``DOWN'', ``LEFT'', and ``RIGHT''.
4095 A restriction is that you can't mix function keys and character keys in this
4096 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
4097 A user can always use only <EM>character</EM> keys in the startup list even
4098 if he or she is using <EM>function</EM> keys normally, or vice versa.
4099 If an element in this list is a string of characters surrounded by double
4100 quotes (&quot;) then it will be expanded into the individual characters in
4101 the string, excluding the double quotes.
4104 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
4107 <DT> -install
4109 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
4110 some basic information to help with getting properly set up.
4113 <DT> -k
4115 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
4116 the input of commands to be function-keys.
4117 Otherwise, commands are linked to the regular character keys.
4120 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
4121 <EM>Feature-List</EM>.
4124 <DT> -n <EM>n</EM>
4126 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
4127 FOLDER INDEX screen with the current message being the specified
4128 message number.
4131 <DT> -nosplash
4133 <DD> <EM>PC-Alpine</EM> only.
4134 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
4135 This may be helpful for certain troubleshooting or terminal server scenarios.
4138 <DT> -o <EM>folder</EM>
4140 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
4143 <DT> -p <EM>pinerc</EM>
4145 <DD> Uses the named file as the personal configuration file instead of
4146 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
4147 Alpinerc may be either a local file or a remote configuration folder.
4150 <DT> -P <EM>pinerc</EM>
4152 <DD> Uses the named file as the system wide configuration file instead of
4153 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
4154 Alpinerc may be either a local file or a remote configuration folder.
4157 <DT> -passfile <EM>passfile</EM>
4159 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
4160 This should be a fully-qualified filename.
4163 <DT> -pinerc <EM>file</EM>
4165 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
4166 settings of variables that the user has made.
4167 Use <EM>file</EM> set to ``-'' to make output go to standard out.
4170 <DT> -r
4172 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
4173 <EM>Alpine</EM> in restricted mode can only send email to itself.
4174 Save and export are limited.
4177 <DT> -registry <EM>cmd</EM>
4179 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
4180 <EM>Alpine</EM>'s registry entries.
4181 Possible values for <EM>cmd</EM> are set, clear, and dump.
4182 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
4183 entries according to its current settings.
4184 <EM>Clear</EM> will clear the registry values.
4185 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
4186 <EM>Dump</EM> will display the values of current registry settings.
4187 Note that the dump command is currently disabled.
4188 Without the -registry option, <EM>PC-Alpine</EM> will write values into
4189 the registry only if there currently aren't any values set.
4192 <DT> -sort <EM>key</EM>
4194 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
4195 FOLDER INDEX screen.
4196 <EM>Key</EM> can have the following values: 
4197 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
4198 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
4199 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
4200 The default value is &quot;arrival&quot;.
4201 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
4204 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
4207 <DT> -uninstall
4209 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
4210 in Windows settings.  The registry settings are removed and
4211 the password cache is cleared.
4214 <DT> -url <EM>url</EM>
4216 <DD> Open the given URL.
4219 <DT> -v
4221 <DD> Version:  Print version information to the screen.
4224 <DT> -x <EM>exceptions_config</EM>
4226 <DD> Configuration settings in the exceptions configuration override your normal
4227 default settings.
4228 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
4231 <DT> -z
4233 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
4234 will suspend the <EM>Alpine</EM> session.
4237 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
4238 <EM>Feature-List</EM>.
4241 <DT> -<EM>option</EM>=<EM>value</EM>
4243 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
4244 For example, <EM>-signature-file=sig1</EM> or
4245 <EM>-Feature-List=signature-at-bottom</EM>.
4246 Note:  Feature-List values are
4247 additive and features may be preceded with no- to turn them off.
4248 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
4249 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
4250 <EM>-Feature-List=signature-at-bottom</EM>.
4253 </DL>
4255 &lt;End of help on this topic&gt;
4256 </BODY>
4257 </HTML>
4258 ===== h_configuring_news ======
4259 <HTML>
4260 <HEAD>
4261 <TITLE>CONFIGURING NEWS</TITLE>
4262 </HEAD>
4263 <BODY>
4264 <H1>CONFIGURING NEWS</H1>
4265 Alpine can access news folders in any one of three different ways:
4266 <DL>
4267 <DT>REMOTE NNTP</DT>
4268 <DD>Using the Network News Transport Protocol (NNTP) to
4269 access news on a remote news server.  In this case the newsrc file is
4270 stored on the machine where Alpine is running.
4273 To specify a remote news-collection accessed via NNTP use the
4274 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
4275 Server: value to the NNTP server's hostname appended with the
4276 communication method &quot;/service=NNTP&quot;, and set the Path:
4277 value to the &quot;#news.&quot; namespace (without the quotes).  See
4278 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
4279 help text for a more complete explanation of access method, and the
4280 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4281 text for a more complete explanation of &quot;namespace&quot;.
4283 Instead of specifying a news-collection, you may simply set the
4284 <A HREF="h_config_nntp_server">NNTP Server</A>
4285 option, which will cause Alpine to create a default news-collection for you.
4286 Another NNTP option that may be of interest is
4287 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
4289 <DT>REMOTE IMAP</DT>
4290 <DD>Using the Internet Message Access Protocol (IMAP) to
4291 access news on a remote news server.  In this case, your newsrc file is
4292 stored on the news server, in your home directory, so you must have an
4293 account on the news server, but you would be running Alpine on a different
4294 machine.  The news server must be running an IMAPd server process. 
4297 To specify a remote news-collection accessed via IMAP use the
4298 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
4299 Server: value to the IMAP server's hostname, and set the Path: value
4300 to the &quot;#news.&quot; namespace (without the quotes).  See the
4301 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4302 text for a more complete explanation of &quot;namespace&quot;.
4304 </DD>
4306 <DT>LOCAL</DT>
4307 <DD>Using local file access to the news database.  In this
4308 case, your newsrc file is stored on the news server, in your home
4309 directory, so you must have an account on the news server, and you would
4310 be running Alpine on the same machine.
4313 To specify a local news-collection use the SETUP/collectionList
4314 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
4315 set the Path: value to the &quot;#news.&quot; namespace (without the
4316 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
4317 field's help text for a more complete explanation of &quot;namespace&quot;.
4319 </DD>
4320 </DL>
4324 NOTE: Should no news-collection be defined as above, Alpine will
4325 automatically create one using the Setup/Config screen's
4326 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
4327 will be created as a &quot;Remote NNTP&quot; as described above.
4331 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
4332 possible.  If you don't have an account on the news server, or if the news
4333 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
4334 sure, ask your service provider, university, or company for help.)  In
4335 this case, your Unix .newsrc file can be transferred to your PC.  A good
4336 place to put it would be in the same directory as your PINERC file, under
4337 the name NEWSRC, but you can 
4338 <A HREF="h_config_newsrc_path">specify a different location</A>
4339 via Alpine's Setup/Config screen.
4342 Other configuration features related to news are
4343 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
4344 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
4345 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
4346 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
4347 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
4348 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
4349 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
4350 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
4353 &lt;End of help on this topic&gt;
4354 </BODY>
4355 </HTML>
4356 ===== h_reading_news ======
4357 <HTML>
4358 <HEAD>
4359 <TITLE>READING NEWS</TITLE>
4360 </HEAD>
4361 <BODY>
4362 <H1>READING NEWS</H1>
4364 Alpine uses almost the same commands for manipulating news folders as for
4365 mail folders.  This means, for example, that when you are done with a
4366 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
4367 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
4368 most newsreaders, wherein a message is implicitly dismissed after you have
4369 looked at it once. We strongly believe that Alpine should offer as much
4370 consistency as possible between mail and news, so the mail paradigm --
4371 wherein a message does not magically disappear without explicit action by
4372 the user -- is used for news as well. <P>
4374 If you answer a message in a news folder, the index view will show the
4375 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
4376 keep track of what news as been read has no way of storing this flag, so
4377 it will not be preserved across sessions.  The Deleted flag is the only
4378 one that is preserved when you leave and then return to a newsgroup.  As an
4379 additional note on replies, when you Reply to a newsgroup message and say
4380 you want to reply to all recipients, Alpine will ask if you want to post the
4381 message to all the newsgroups listed in the original message. <P>
4383 If you would like Alpine to mark more-or-less recent news messages as
4384 &quot;New&quot;, then set the
4385 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
4386 feature (which is set by default).  This will cause messages after the last one you have marked as
4387 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
4388 &quot;N&quot; status often makes it easier to distinguish later news
4389 articles from those you've previously seen, but not yet disposed of via
4390 the &quot;D&quot; key.  Note that this is an approximation, not an exact
4391 record of which messages you have not seen.
4394 A frequent operation in news-reading is &quot;catching up&quot; -- that
4395 is, getting rid of all the messages in the newsgroup so that you can
4396 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
4397 Select command.  You would enter the following four keystrokes:
4398 <tt>;aad</tt> to select all messaged, and then apply the delete (or
4399 dismiss) command to all of them.
4402 There are also additional details on 
4403 <A HREF="h_configuring_news">configuring news</a>.
4406 &lt;End of help on this topic&gt;
4407 </BODY>
4408 </HTML>
4409 ====== h_help_index ======
4410 <HTML>
4411 <HEAD>
4412 <TITLE>Help Index</TITLE>
4413 </HEAD>
4414 <BODY>
4415 <H1>Help Index</H1>
4416 <ul>
4417 <li><a href="h_mainhelp_abooks">Address Books</a></li>
4418 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
4419 <li><a href="h_main_addrbook">Address Book Command</a>
4420 <li><a href="h_abook_view">Address Book View Explained</a>
4421 <li><a href="h_compose_addrcomplete">Address Completion</a>
4422 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
4423 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
4424 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
4425 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
4426 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
4427 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
4428 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
4429 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
4430 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
4431 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
4432 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
4433 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
4434 <li><a href="h_mainhelp_config">Alpine Configuration</a>
4435 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
4436 <li><a href="h_news_legal">Alpine Legal Notices</a>
4437 <li><a href="h_compose_alted">Alt Editor Command</a>
4438 <li><a href="h_index_cmd_apply">Apply Command</a>
4439 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
4440 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
4441 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
4442 <li><a href="h_composer_browse">BROWSER</a>
4443 <li><a href="h_common_bounce">Bounce Command</a>
4444 <li><a href="h_compose_cancel">Cancel Command</a>
4445 <li><a href="h_config_change_your_from">Changing your From Address</a>
4446 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
4447 <li><a href="h_mainhelp_color">Color</a>
4448 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
4449 <li><a href="h_composer">COMPOSER COMMANDS</a>
4450 <li><a href="h_mainhelp_composing">Composing Messages</a>
4451 <li><a href="h_mainhelp_collections">Collection Lists</a>
4452 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
4453 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
4454 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
4455 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
4456 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
4457 <li><a href="h_common_compose">Compose Command</a>
4458 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
4459 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
4460 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
4461 <li><a href="h_mainhelp_config">Configuration</a>
4462 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
4463 <li><a href="h_config_dflt_color">Default Color</a>
4464 <li><a href="h_common_delete">Delete and Undelete Commands</a>
4465 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
4466 <li><a href="h_special_list_commands">Email List Commands Explained</a>
4467 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
4468 <li><a href="h_folder_open">Explanation of Folder Selection</a>
4469 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
4470 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
4471 <li><a href="h_ge_export">Export File Selection</a>
4472 <li><a href="h_ge_allparts">Export Message File Selection</a>
4473 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
4474 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
4475 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
4476 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
4477 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
4478 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
4479 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
4480 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
4481 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
4482 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
4483 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
4484 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
4485 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
4486 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
4487 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
4488 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
4489 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
4490 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
4491 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
4492 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
4493 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
4494 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
4495 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
4496 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
4497 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
4498 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
4499 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
4500 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
4501 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
4502 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
4503 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
4504 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
4505 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
4506 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
4507 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
4508 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
4509 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
4510 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
4511 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
4512 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
4513 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
4514 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
4515 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
4516 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
4517 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
4518 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
4519 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
4520 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
4521 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
4522 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
4523 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
4524 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
4525 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
4526 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
4527 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
4528 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
4529 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
4530 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
4531 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
4532 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
4533 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
4534 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
4535 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
4536 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
4537 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
4538 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
4539 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
4540 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
4541 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
4542 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
4543 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
4544 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
4545 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
4546 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
4547 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
4548 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
4549 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4550 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4551 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4552 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4553 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4554 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4555 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4556 <li><a href="h_external_loads_inline_images_only">FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>
4557 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4558 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4559 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4560 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4561 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4562 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4563 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4564 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4565 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4566 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4567 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4568 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4569 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4570 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4571 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4572 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4573 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4574 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4575 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4576 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4577 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4578 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4579 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4580 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4581 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4582 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4583 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4584 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4585 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4586 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4587 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4588 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4589 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4590 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4591 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4592 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4593 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4594 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4595 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4596 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4597 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4598 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4599 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4600 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4601 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4602 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4603 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4604 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4605 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4606 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4607 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4608 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4609 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4610 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4611 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4612 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4613 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4614 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4615 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4616 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4617 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4618 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4619 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4620 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4621 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4622 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4623 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4624 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4625 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4626 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4627 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4628 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4629 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4630 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4631 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4632 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4633 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4634 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4635 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4636 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4637 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4638 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4639 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4640 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4641 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4642 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4643 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4644 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4645 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4646 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4647 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4648 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4649 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4650 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4651 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4652 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4653 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4654 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4655 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4656 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4657 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4658 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4659 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4660 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4661 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4662 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4663 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4664 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4665 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4666 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4667 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4668 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4669 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4670 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4671 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4672 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4673 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4674 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4675 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4676 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4677 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4678 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4679 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4680 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4681 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4682 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4683 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4684 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4685 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4686 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4687 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4688 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4689 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4690 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4691 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4692 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4693 <li><a href="h_mainhelp_filtering">Filtering</a>
4694 <li><a href="h_finding_help">Finding more information and requesting help</a>
4695 <li><a href="h_common_flag">Flag Command</a>
4696 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4697 <li><a href="h_mainhelp_folders">Folders</a>
4698 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4699 <li><a href="h_common_folders">Folder List Command</a>
4700 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4701 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4702 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4703 <li><a href="h_config_change_your_from">From Address, Changing</a>
4704 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4705 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4706 <li><a href="h_common_goto">Goto Command</a>
4707 <li><a href="h_common_hdrmode">HdrMode Command</a>
4708 <li><a href="h_mainhelp_pinehelp">Help</a>
4709 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4710 <li><a href="h_folder_maint">Help for Folder List</a>
4711 <li><a href="h_valid_folder_names">IMAP</a>
4712 <li><a href="h_ge_import">Import File Selection</a>
4713 <li><a href="h_mainhelp_index">Index of Messages</a>
4714 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4715 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4716 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4717 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4718 <li><a href="h_mainhelp_intro">Introduction</a>
4719 <li><a href="h_main_journal">Journal Command</a>
4720 <li><a href="h_common_jump">Jump Command</a>
4721 <li><a href="h_compose_justify">Justify Command</a>
4722 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4723 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4724 <li><a href="h_mainhelp_ldap">LDAP</a>
4725 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4726 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4727 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4728 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4729 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4730 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4731 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4732 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4733 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4734 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4735 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4736 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4737 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4738 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4739 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4740 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4741 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4742 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4743 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4744 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4745 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4746 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4747 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4748 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4749 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4750 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4751 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4752 <li><a href="h_common_index">Message Index Command</a>
4753 <li><a href="h_mainhelp_mouse">Mouse</a>
4754 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4755 <li><a href="new_user_greeting">NEW USER GREETING</a>
4756 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4757 <li><a href="h_mainhelp_readingnews">News Reading</a>
4758 <li><a href="h_folder_subscribe">Newsgroup Subscribe Screen explained</a>
4759 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4760 <li><a href="h_common_nextnew">NextNew Command</a>
4761 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4762 <li><a href="h_mainhelp_readingnews">NNTP</a>
4763 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4764 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4765 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4766 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4767 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4768 <li><a href="h_config_color_style">OPTION: Color Style</a>
4769 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4770 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4771 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4772 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4773 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4774 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4775 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4776 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4777 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4778 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4779 <li><a href="h_config_encryption_range">OPTION: <!--#echo var="VAR_encryption-protocol-range"--></a>
4780 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4781 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4782 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4783 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4784 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4785 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4786 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4787 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4788 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4789 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4790 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4791 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4792 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4793 <li><a href="h_config_font_name">OPTION: Font Name</a>
4794 <li><a href="h_config_font_size">OPTION: Font Size</a>
4795 <li><a href="h_config_font_style">OPTION: Font Style</a>
4796 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4797 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4798 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4799 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4800 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4801 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4802 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4803 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4804 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4805 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4806 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4807 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4808 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4809 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4810 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4811 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4812 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4813 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4814 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4815 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4816 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4817 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4818 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4819 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4820 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4821 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4822 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4823 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4824 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4825 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4826 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4827 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4828 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4829 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4830 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4831 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4832 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4833 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4834 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4835 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4836 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4837 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4838 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4839 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4840 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4841 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4842 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4843 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4844 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4845 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4846 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4847 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4848 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4849 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4850 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4851 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4852 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4853 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4854 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4855 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4856 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4857 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4858 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4859 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4860 <li><a href="h_config_printer">OPTION: Printer</a>
4861 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4862 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4863 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4864 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4865 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4866 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4867 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4868 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4869 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4870 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4871 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4872 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4873 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4874 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4875 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4876 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4877 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4878 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4879 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4880 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4881 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4882 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4883 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4884 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4885 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4886 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4887 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4888 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4889 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4890 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4891 <li><a href="h_config_status_color">OPTION: Status Color</a>
4892 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4893 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4894 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4895 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4896 <li><a href="h_config_quit_query_timeo">OPTION: <!--#echo var="VAR_close-connection-timeout"--></a>
4897 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4898 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4899 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4900 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4901 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4902 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4903 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4904 <li><a href="h_config_title_color">OPTION: Title Color</a>
4905 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4906 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4907 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4908 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4909 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4910 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4911 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4912 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4913 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4914 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4915 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4916 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4917 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4918 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4919 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4920 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4921 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4922 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4923 <li><a href="h_mainhelp_patterns">Patterns</a>
4924 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4925 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4926 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4927 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4928 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4929 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4930 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4931 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4932 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4933 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4934 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4935 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4936 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4937 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4938 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4939 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4940 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4941 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4942 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4943 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4944 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4945 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4946 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4947 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4948 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4949 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4950 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4951 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4952 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4953 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4954 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4955 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4956 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4957 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4958 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4959 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4960 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4961 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4962 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4963 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4964 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4965 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4966 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4967 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4968 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4969 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4970 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4971 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4972 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4973 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4974 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4975 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4976 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4977 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4978 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4979 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4980 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4981 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4982 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4983 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4984 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4985 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4986 <li><a href="h_common_pipe">Pipe Command</a>
4987 <li><a href="h_valid_folder_names">POP</a>
4988 <li><a href="h_common_postpone">Postpone Command</a>
4989 <li><a href="h_common_print">Print Command</a>
4990 <li><a href="h_mainhelp_readingnews">Reading News</a>
4991 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4992 <li><a href="h_mainhelp_roles">Roles</a>
4993 <li><a href="h_role_select">ROLES SCREEN</a>
4994 <li><a href="h_compose_readfile">Read File Command</a>
4995 <li><a href="h_mainhelp_reading">Reading Messages</a>
4996 <li><a href="h_main_release_notes">Release Notes Command</a>
4997 <li><a href="h_common_reply">Reply and Forward Commands</a>
4998 <li><a href="h_compose_richhdr">Rich Header Command</a>
4999 <li><a href="h_common_role">Role Command</a>
5000 <li><a href="h_mainhelp_smime">S/MIME</a>
5001 <li><a href="h_index_cmd_select">Searching for Messages</a>
5002 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
5003 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
5004 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
5005 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
5006 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
5007 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
5008 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
5009 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
5010 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
5011 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
5012 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
5013 <li><a href="h_common_save">Save and Export Commands</a>
5014 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
5015 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
5016 <li><a href="h_compose_send">Send Command</a>
5017 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
5018 <li><a href="h_main_setup">Setup Command</a>
5019 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
5020 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
5021 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
5022 <li><a href="h_mainhelp_smime">S/MIME</a>
5023 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
5024 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
5025 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
5026 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
5027 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
5028 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
5029 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
5030 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
5031 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
5032 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
5033 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
5034 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
5035 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
5036 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
5037 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
5038 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
5039 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
5040 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
5041 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
5042 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
5043 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
5044 <li><a href="h_index_cmd_sort">Sort Command</a>
5045 <li><a href="h_compose_spell">Spell Check Command</a>
5046 <li><a href="h_common_suspend">Suspend Command</a>
5047 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
5048 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
5049 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
5050 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
5051 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
5052 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
5053 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
5054 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
5055 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
5056 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
5057 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
5058 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
5059 <li><a href="h_common_take">TakeAddr Command</a>
5060 <li><a href="h_mainhelp_status">Titlebar Line</a>
5061 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
5062 <li><a href="h_config_usenone_color">Use None Color</a>
5063 <li><a href="h_config_usenormal_color">Use Normal Color</a>
5064 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
5065 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
5066 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
5067 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
5068 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
5069 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
5070 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
5071 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
5072 </UL>
5075 &lt;End of Help Index&gt;
5076 </BODY>
5077 </HTML>
5080 ============== h_config_remote_config =============
5081 <HTML>
5082 <HEAD>
5083 <TITLE>Remote Configuration</TITLE>
5084 </HEAD>
5085 <BODY>
5086 <H1>Remote Configuration</H1>
5088 You may use the command line argument &quot;-p pinerc&quot; to tell
5089 Alpine to use a non-default configuration file.
5090 There are two types of storage for configuration information.
5091 <EM>Local</EM> configuration files are used by default.
5092 These are just regular files on the UNIX system or on the PC.
5093 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
5094 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
5095 <EM>Remote</EM> configuration folders are stored on an IMAP server.
5096 The advantage of using a remote configuration is that the same information
5097 may be accessed from multiple platforms.
5098 For example, if you use one computer at work and another at home, the same
5099 configuration could be used from both places.
5100 A configuration change from one place would be seen in both places.
5101 To use a remote configuration you simply give a
5102 <A HREF="h_valid_folder_names">remote folder name</A>
5103 as the argument to the &quot;-p&quot; command line option.
5104 The command line might look something like:
5106 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
5108 If there are special characters in the command shell you use, you may need to
5109 quote the last argument (to protect the curly braces from the shell).
5110 The command might look like:
5112 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
5114 You should choose a folder name for a folder that does not yet exist.
5115 It will be created containing an empty configuration.
5116 Do not use a folder that you wish to store regular mail messages in.
5118 The Setup/RemoteConfigSetup command will help you convert from a local
5119 configuration to a remote configuration.
5120 It will create a remote configuration for you and copy your current local
5121 configuration to it.
5122 It will also help you convert local address books into remote address books
5123 and local signature files into literal signatures contained in the
5124 remote configuration file.
5126 If the Setup/RemoteConfigSetup command doesn't do what you want, you
5127 may copy a local pinerc file to a remote configuration folder by hand
5128 by using the command line option &quot;-copy_pinerc&quot;.
5130 Another command line option, which is somewhat related to remote
5131 configuration, is the option &quot;-x exceptions_config&quot;.
5132 The configuration settings in the exceptions configuration override
5133 your default settings.
5134 It may be useful to store the default configuration (the -p argument) remotely
5135 and to have the exceptions configuration stored in a local file.
5136 You might put generic configuration information in the remote configuration
5137 and platform-specific configuration on each platform in the exceptions
5138 configuration.
5139 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
5140 can be either remote folders or local files.
5142 There is another command line argument that works only with PC-Alpine and
5143 which may prove useful when using a remote configuration.
5144 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
5145 to store your local auxiliary files.
5146 This only has an effect if your configuration file is remote.
5147 Some examples of auxiliary files are debug files, address book files, and
5148 signature files.
5150 &lt;End of help on this topic&gt;
5151 </BODY>
5152 </HTML>
5153 ============== h_config_exceptions =============
5154 <HTML>
5155 <HEAD>
5156 <TITLE>Generic and Exceptional Configuration</TITLE>
5157 </HEAD>
5158 <BODY>
5159 <H1>Generic and Exceptional Configuration</H1>
5161 If you use Alpine from more than one platform it may be convenient
5162 to split your configuration information into two pieces, a generic piece
5163 and exceptions that apply to a particular platform.
5164 For example, suppose you use Alpine from home and from work.
5165 Most of your configuration settings are probably the
5166 same in both locations, so those settings belong in the generic settings
5167 configuration.
5168 However, you may use a different SMTP server and INBOX
5169 from home than you do from work.
5171 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
5173 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
5174 options could be
5175 part of your exceptional configuration so that they could be different in the
5176 two places.
5178 The command line option &quot;-x exceptions_config&quot;
5179 may be used to split your configuration into generic and exceptional pieces.
5180 &quot;Exceptions_config&quot; may be either local or remote.
5181 The regular Alpine configuration file will contain the generic data, and
5182 &quot;exceptions_config&quot; will contain the exceptional data.
5184 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
5185 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
5186 in the same local directory that the regular config file is located in (usually
5187 the Unix home directory).
5188 If the regular config file is remote (because the command line option
5189 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
5190 directory for &quot;<CODE>.pinercex</CODE>&quot;.
5191 If the file does not already exist then no exceptions will be used.
5192 You can force exceptions to be used by using the &quot;-x&quot; option or
5193 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
5195 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
5196 PC-Alpine will use the value of the
5197 environment variable <CODE>$PINERCEX</CODE>.
5198 If that is not set, PC-Alpine will look for
5199 the local file &quot;<CODE>PINERCEX</CODE>&quot;
5200 in the same local directory that the regular config file is located in.
5201 If the regular config file is remote (because the command line option
5202 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
5203 local directory specified by the &quot;-aux local_directory&quot; command
5204 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
5205 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
5207 When you have an exception configuration there is a new command
5208 in the Alpine Setup screen, Setup/eXceptions.
5209 It toggles between exceptions and the regular configuration.
5210 This is the usual way to make changes in your exceptional configuration data.
5211 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
5212 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
5213 for Config or &quot;K&quot; for Kolor.
5215 For most people, splitting the configuration information into two pieces is
5216 going to be most useful if the generic information is accessed
5217 <A HREF="h_config_remote_config">remotely</A>).
5218 That data will be the same no matter where you access it from and if you
5219 change it that change will show up everywhere.
5220 The exceptional data will most commonly be in a local file, so that the
5221 contents may easily be different on each computing platform used.
5223 If you already have a local configuration file with settings you like
5224 you may find that the command Setup/RemoteConfigSetup is useful
5225 in helping you convert to a remote configuration.
5226 The command line flag &quot;-copy_pinerc&quot;
5227 may also be useful.
5229 &lt;End of help on this topic&gt;
5230 </BODY>
5231 </HTML>
5232 ============== h_config_inheritance =============
5233 <HTML>
5234 <HEAD>
5235 <TITLE>Configuration Inheritance</TITLE>
5236 </HEAD>
5237 <BODY>
5238 <H1>Configuration Inheritance</H1>
5240 Configuration inheritance is a power user feature.
5241 It is confusing and not completely supported by the configuration
5242 user interface.
5243 We start with an explanation of how configuration works in hopes of making
5244 it easier to describe how inheritance works.
5246 Alpine uses a hierarchy of configuration values from different locations.
5247 There are five ways in which each configuration option (configuration
5248 variable) can be set.
5249 In increasing order of precedence they are:
5251 <OL>
5252 <LI> the system-wide configuration file.
5254 <LI> the personal configuration file
5256 <LI> the personal exceptions file
5258 <LI> a command line argument
5260 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
5261 </OL>
5263 The fixed configuration file is normally
5264 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
5266 The system-wide configuration file is normally
5267 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
5268 set for PC-Alpine.
5269 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
5270 is used for the system-wide configuration.
5271 This location can be set or changed on the command line with the -P flag.
5272 The system-wide configuration file can be either a local file or a
5273 remote configuration folder.
5275 For Unix Alpine, the personal configuration file is normally the file
5276 <CODE>.pinerc</CODE> in the user's home directory.
5277 This can be changed with the -p command line flag.
5278 For PC-Alpine, the personal configuration file is in
5279 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
5280 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
5281 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
5282 This can be changed with the -p command line flag.
5283 If -p is used, the configuration data may be in a local file or a remote config
5284 folder.
5286 For Unix Alpine, the personal exceptions configuration file is named
5287 <CODE>.pinercex</CODE> and is in the same directory as the personal
5288 configuration file, if that configuration file is not remote, and is in
5289 the home directory if the personal configuration file is remote.
5290 If the file exists, then exceptions are turned on.
5291 If it doesn't, then you are not using exceptions.
5292 Alternatively, you may change the location of the exceptions configuration
5293 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5294 Like the personal configuration data, exceptions_config may be
5295 either local or remote.
5297 For PC-Alpine, the personal exceptions configuration file is named
5298 <CODE>PINERCEX</CODE> and is in the same directory as the personal
5299 configuration file unless the personal configuration file is remote.
5300 In that case, it is in the local directory specified by the
5301 &quot;-aux local_directory&quot; command line argument.
5302 (In the case that the personal configuration is remote and there is no
5303 &quot;-aux&quot; command line argument, Alpine searches for
5304 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
5305 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
5306 If the file exists, then exceptions are turned on.
5307 If it doesn't, then you are not using exceptions.
5308 You may change the location of the exceptions configuration
5309 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5310 or with the
5311 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
5312 option).
5314 To reiterate, the value of a configuration option is taken from the
5315 last location in the list above in which it is set.
5316 Or, thinking about it slightly differently, a default value for an option
5317 is established in the system-wide configuration file (or internally by Alpine
5318 if there is no value in the system-wide file).
5319 That default remains in effect until and unless it is overridden by a value in a
5320 location further down the list, in which case a new &quot;default&quot;
5321 value is established.
5322 As we continue down the list of locations we either retain the
5323 value at each step or establish a new value.
5324 The value that is still set after going through the whole list of
5325 configuration locations is the one that is used.
5327 So, for example, if an option is set in the system-wide configuration
5328 file and in the personal configuration file, but is not set in the
5329 exceptions, on the command line, or in the fixed file; then the value
5330 from the personal configuration file is the one that is used.
5331 Or, if it is set in the system-wide config, in the personal config, not
5332 in the exceptions, but is set on the command line; then the value
5333 on the command line is used.
5335 Finally we get to inheritance.
5336 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
5337 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
5338 the inheritance mechanism makes it possible to <EM>combine</EM>
5339 the values from different locations instead of <EM>replacing</EM> the value.
5340 This is true of all configuration lists other than the &quot;Feature-List&quot;,
5341 for which you may already set whatever you want at
5342 any configuration location (by using the &quot;no-&quot; prefix if
5343 necessary).
5345 To use inheritance, set the first item in a configuration list to the
5346 token &quot;INHERIT&quot;, without the quotes.
5347 If the first item is &quot;INHERIT&quot;,
5348 then instead of replacing the default value established so far, the rest of
5349 the list is appended to the default value established so far and that is
5350 the new value.
5352 Here is an example which may make it clearer. Suppose we have:
5354 <PRE>
5355  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5356  Personal config    :   smtp-server = INHERIT, mysmtp.home
5357  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
5358  Command line       :   smtp-server = &lt;No Value Set&gt;
5359  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5360 </PRE>
5363 This would result in an effective smtp-server option of
5365 <PRE>
5366  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
5367 </PRE>
5369 The &quot;INHERIT&quot; token can be used in any of the configuration files
5370 and the effect cascades.
5371 For example, if we change the above example to:
5373 <PRE>
5374  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5375  Personal config    :   smtp-server = INHERIT, mysmtp.home
5376  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5377  Command line       :   smtp-server = &lt;No Value Set&gt;
5378  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5379 </PRE>
5382 This would result in:
5384 <PRE>
5385  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
5386 </PRE>
5388 Unset variables are skipped over (the default value is carried forward) so
5389 that, for example:
5391 <PRE>
5392  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5393  Personal config    :   smtp-server = &lt;No Value Set&gt;
5394  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5395  Command line       :   smtp-server = &lt;No Value Set&gt;
5396  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5397 </PRE>
5400 produces:
5402 <PRE>
5403  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
5404 </PRE>
5407 If any later configuration location has a value set (for a particular list
5408 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
5409 then that value replaces whatever value has been defined up to that point.
5410 In other words, that cancels out any previous inheritance.
5412 <PRE>
5413  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5414  Personal config    :   smtp-server = INHERIT, mysmtp.org
5415  Exceptions config  :   smtp-server = yoursmtp.org
5416  Command line       :   smtp-server = &lt;No Value Set&gt;
5417  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5418 </PRE>
5421 results in:
5423 <PRE>
5424  smtp-server = yoursmtp.org
5425 </PRE>
5428 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
5429 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
5430 difficult to insert the value &quot;INHERIT&quot; into the list of values
5431 for the option using the normal Setup tools.
5432 In other words, the color setting screen (for example) does not
5433 provide a way to input the text &quot;INHERIT&quot; as the first
5434 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
5435 The way to do this is to either edit the pinerc file directly and manually
5436 insert it, or turn
5437 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
5438 feature and insert it using the Setup/Config screen.
5440 &lt;End of help on this topic&gt;
5441 </BODY>
5442 </HTML>
5443 ============== h_special_xon_xoff =============
5444 <HTML>
5445 <HEAD>
5446 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
5447 </HEAD>
5448 <BODY>
5449 <H1>XOFF/XON Handling within Alpine</H1>
5451 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
5452 and XON) as normal characters, even though Alpine does not use them.
5453 However, the printer, modem, or communication software you are using may
5454 be configured for &quot;software flow control,&quot; which means that
5455 XON/XOFF must be treated as special characters by the operating system.
5456 If you see messages such as &quot;^S not defined for this screen&quot;,
5457 then your system is probably using software flow control. In this case
5458 you will need to set the
5459 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
5460 feature.
5462 If you <EM>do</EM> set this
5463 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
5464 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
5465 and see if that puts things right.  Printing via the
5466 &quot;attached-to-ansi&quot; or 
5467 &quot;attached-to-wyse&quot;
5468 option will automatically enable software
5469 flow-control handling for the duration of the printing.
5471 &lt;End of help on this topic&gt;
5472 </BODY>
5473 </HTML>
5474 ============= h_special_help_nav =============
5475 <HTML>
5476 <HEAD>
5477 <TITLE>Help Text Navigation Explained</TITLE>
5478 </HEAD>
5479 <BODY>
5480 <H1>Help Text Navigation Explained</H1>
5482 Alpine contains extensive context-sensitive help text.   At any point, 
5483 pressing the &quot;?&quot; key will bring up a page of help text
5484 explaining the options available to you.  You can leave the help
5485 text screen and return to normal Alpine operation by pressing
5487 <!--chtml if pinemode="function_key"-->
5488 F3 function
5489 <!--chtml else-->
5490 &quot;E&quot;
5491 <!--chtml endif-->
5492 key to Exit Help at any time.
5495 Within the help screen you might find a word or phrase displayed in 
5496 inverse text and others displayed in bold typeface.  Such words and
5497 phrases are used to tell you Alpine has more information available on
5498 the topic they describe.
5499 The inverted text is the &quot;selected&quot; topic.  
5500 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
5501 displayed in bold type
5502 is &quot;selected&quot;.
5503 Hit the Return key to display the information Alpine has available on that
5504 topic.  While viewing such additional information, the 
5505 <!--chtml if pinemode="function_key"-->
5506 F3 function
5507 <!--chtml else-->
5508 &quot;P&quot;
5509 <!--chtml endif-->
5510 key will return you to the previous help screen, and the
5511 <!--chtml if pinemode="function_key"-->
5512 F2 function
5513 <!--chtml else-->
5514 &quot;E&quot;
5515 <!--chtml endif-->
5516 key will Exit the Help system altogether.
5519 The "N" command will tell you the internal name of the help text you are 
5520 reading each time, so that you can send this name in the text of a message 
5521 and create a direct link to that internal help using the x-pine-help URL 
5522 scheme. For example, the direct link to this item is 
5523 x-pine-help:h_special_help_nav. If you add this text to a message, then
5524 a person using Pine to read such message would have a direct link to this
5525 help text.
5528 When you are finished reading this help text, you can press the
5529 <!--chtml if pinemode="function_key"-->
5530 F3 function
5531 <!--chtml else-->
5532 &quot;P&quot;
5533 <!--chtml endif-->
5534 key to return to the previously displayed help text.
5537 &lt;End of help on this topic&gt;
5538 </BODY>
5539 </HTML>
5540 ============= h_special_list_commands =============
5541 <HTML>
5542 <HEAD>
5543 <TITLE>Email List Commands Explained</TITLE>
5544 </HEAD>
5545 <BODY>
5546 <H1>Email List Commands Explained</H1>
5548 Electonic mail lists provide a way for like-minded users to join in
5549 discussions on topics of interest.  The email list itself is 
5550 represented by a
5551 single address that participants send messages to when they have
5552 something of interest to share with other members of the list.  The
5553 receiving computer then, either automatically or after review by the
5554 list's owner (or moderator), sends a copy of that message to each
5555 member of the list.
5558 Usually, subscribing and unsubscribing is done by sending requests in
5559 an email message to a special address setup to handle managing list
5560 membership.  Often this is the name of the list followed by
5561 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5562 the address used to send messages to the list.
5565 Unfortunately, email list participation commands are more a matter
5566 of convention than standard, and thus may vary from list to list.
5567 Increasingly, list management software is adding information to
5568 the copy of the postings as they're copied to the list members that
5569 explains how to do the various list management functions.
5572 Alpine will recognize this information and offer the management commands
5573 they represent in a simple display. One or more of the following
5574 operations will be made available:
5576 <DL>
5577 <DT>Help</DT>
5578 <DD>
5579 A method to get help on subscribing, unsubscribing, 
5580 an explanation of what the list is about, or special instructions
5581 for participation.  This may be in the form of a reply in response
5582 to an email message, or instructions on how to connect to a Web site.
5583 </DD>
5585 <DT>Unsubscribe</DT>
5586 <DD>
5587 A method to get your email addressed removed from the list of
5588 recipients of the email list.
5589 </DD>
5591 <DT>Subscribe</DT>
5592 <DD>
5593 A method to get your email address added to the list of recipients
5594 of the email list.  It may be in the form of a message sent to 
5595 a special address or you may be connected to a web site.
5596 <DD>
5597 </DD>
5599 <DT>Post</DT>
5600 <DD>
5601 A method used to post to the email list.  However, it might also 
5602 indicate that no posting is allowed directly to the list.
5603 </DD>
5605 <DT>Owner</DT>
5606 <DD>
5607 A method to contact the list owner for special questions you might
5608 have regarding the list.
5609 </DD>
5611 <DT>Archive</DT>
5612 <DD>
5613 A method to view an archive of previous messages posted to the list.
5614 This may be in the form of a mail folder on a remote computer, an
5615 IMAP mailbox or even a Web site.
5616 </DD>
5617 </DL>
5620 &lt;End of help on this topic&gt;
5621 </BODY>
5622 </HTML>
5623 ============= h_quota_command =============
5624 <HTML>
5625 <HEAD>
5626 <TITLE>Quota Screen Explained</TITLE>
5627 </HEAD>
5628 <BODY>
5629 <H1>Quota Screen Explained</H1>
5631 <P> This screen summarizes the quota report for this mailbox in the
5632 IMAP server. For each resource that you have a quota, this reports summarizes
5633 its use and limit.
5635 <P> Your IMAP server administrator may have set a quota based either on 
5636 the total size of your mailbox (STORAGE), or the number of messages in 
5637 your mailbox (MESSAGES), or some other criteria. This will be reported
5638 to you indicating the type of quota, its total use and its limit.
5640 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5641 1024 bytes. Each of the characters that you see in this help text is one 
5642 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5643 by Alpine are normally less than 4 kibibytes in size (which includes 
5644 headers and text). Other email programs may send messages with bigger 
5645 sizes when they send messages, since they send plain text and an 
5646 alternative part in HTML.
5648 <P> A convenient way to save space for the STORAGE type of quota is by 
5649 deleting attachments. This is done on each individual message by pressing 
5650 the &quot;V&quot; command while reading the message text, then moving the cursor 
5651 to the position of the attachment that is to be deleted, then pressing
5652 &quot;D&quot; to delete such attachment, going back to reading the 
5653 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5654 save the message in the same folder you are reading from. The saved 
5655 message will not have the attachment that was marked deleted. Now you
5656 can delete and expunge the message with the unwanted attachment.
5659 &lt;End of help on this topic&gt;
5660 </BODY>
5661 </HTML>
5662 ============= h_mail_thread_index =============
5663 <HTML>
5664 <HEAD>
5665 <TITLE>THREAD INDEX COMMANDS</TITLE>
5666 </HEAD>
5667 <BODY>                 
5668 <H1>THREAD INDEX COMMANDS</H1>
5669 <!--chtml if pinemode="function_key"-->
5670 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>
5671 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5672 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>
5673 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>
5674 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>
5675 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>
5676 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>
5677 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>
5678 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>
5679 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>
5680 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>
5681 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>
5682 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>
5683 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>
5684 <BR>
5685 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5686 -----------------------------<BR>
5687 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>
5688 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>
5689 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>
5690 <BR>
5691 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5692 -----------------------------<BR>
5693 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
5694 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5695 <BR>
5696 <!--chtml else-->
5697 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>
5698 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5699 &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>
5700 &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>
5701 &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>
5702 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>
5703 &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>
5704 &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>
5705 &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>
5706 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>
5707 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5708 <BR>
5709 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5710 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5711 &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>
5712 &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>
5713 &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>
5714 &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>
5715 &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>
5716 &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>
5717 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5718 <!--chtml endif-->
5721 NOTE:
5722 <OL>
5723  <LI>For help on a particular command, highlight the bold text associated
5724 with it above and hit Return.
5725  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5726 </OL>
5728 <H2>Description of the THREAD INDEX Screen</H2>
5730 The THREAD INDEX displays summary information from each
5731 thread (conversation) in the current folder.
5732 This is useful if you want to quickly
5733 scan new threads, or find a particular thread without having to go
5734 through the text of each message, or to quickly get rid of junk
5735 threads, etc.
5736 The current thread is always highlighted.
5737 Each line of the THREAD INDEX contains the following columns: <P>
5738 <DL>
5739  <DT>STATUS:</DT>
5740  <DD> The markings on the left side of the thread tell you about its
5741 status.  You may see one or more of the following codes on any given
5742 thread:
5743 <UL>
5744   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5745   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5746   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5747   <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.
5748   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5749         message in the thread was sent to you as a cc:. This symbol will only show up if
5750         the feature
5751         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5752   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5753         &quot;select&quot; command.  (Some systems may optionally allow selected
5754         messages to be denoted by the index line being displayed in bold
5755         type instead.)
5756   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5757       to mark at least one message in this thread as &quot;important&quot;.
5758 </UL></DD><P>
5760  <DT>THREAD NUMBER:</DT>
5761  <DD>Threads in a folder are numbered, from one through the number
5762 of threads in the folder, to help you know where you are in the folder.
5763 </DD><P>
5765  <DT>DATE STARTED:</DT>
5766  <DD>The date the thread was started. This is actually from the Date header
5767 of the first message in the thread. It doesn't take different time zones
5768 into account.</DD><P>
5770  <DT>WHO STARTED THE THREAD:</DT>
5771  <DD>This is usually the name of the sender of the first message in the thread, taken from
5772 the From header of the message.
5773 If there is no personal name given in that
5774 address, then the email address is used instead.
5775 If the message is from you (or from one of your
5776 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5777 then the recipient's name is shown here instead, with the characters
5778 &quot;To: &quot; inserted before the name.
5779 (The idea of this is that if you started the thread you would rather see who
5780 the mail was sent to instead of that the mail was from you.)
5781 In Newsgroups, if you are
5782 the sender and there are no email recipients, the newsgroup name will be
5783 listed after the &quot;To: &quot;.
5784 </DD><P>
5786  <DT>SIZE:</DT>
5787  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5789  <DT>SUBJECT:</DT>
5790  <DD>As much of the thread's subject line as will fit on the screen.
5791 This is the subject of the first message in the thread.</DD>
5792 </DL>
5794 <P><UL>
5795 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5796 </UL>
5798 &lt;End of help on this topic&gt;
5799 </BODY>
5800 </HTML>
5801 ============= h_mail_index =============
5802 <HTML>
5803 <HEAD>
5804 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5805 </HEAD>
5806 <BODY>                 
5807 <H1>MESSAGE INDEX COMMANDS</H1>
5808 <!--chtml if pinemode="function_key"-->
5809 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>
5810 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5811 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>
5812 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>
5813 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>
5814 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>
5815 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>
5816 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>
5817 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>
5818 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>
5819 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>
5820 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>
5821 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>
5822 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>
5823 <BR>
5824 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5825 -----------------------------<BR>
5826 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>
5827 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>
5828 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>
5829 <BR>
5830 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5831 -----------------------------<BR>
5832 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
5833 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>
5834 <BR>
5835 <!--chtml else-->
5836 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>
5837 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5838 &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>
5839 &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>
5840 &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>
5841 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>
5842 &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>
5843 &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>
5844 &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>
5845 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>
5846 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5847 Miscellaneous&nbsp;Operations<BR>
5848 ------------------------<BR>
5849 &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>
5850 &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>
5851 &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>
5852 &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>
5853 &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>
5854 &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>
5855 &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>
5856 &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>
5857 <!--chtml endif-->
5860 NOTE:
5861 <OL>
5862  <LI>For help on a particular command, highlight the bold text associated
5863 with it above and hit Return.
5864  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5865 </OL>
5867 <H2>Description of the MESSAGE INDEX Screen</H2>
5869 The MESSAGE INDEX displays summary information from each
5870 message in the current folder.
5871 This is useful if you want to quickly
5872 scan new messages, or find a particular message without having to go
5873 through the text of each message, or to quickly get rid of junk
5874 messages, etc.
5876 The current message is always highlighted
5877 and many commands operate on the current message.
5878 For example, the Delete command will delete the current message.
5879 If the folder is sorted by either Threads or OrderedSubject, then, depending
5880 on some of your configuration settings, a single line in the index may
5881 refer to an entire thread or to a subthread.
5882 If that is the case, then the commands that normally operate on the current
5883 message will operate on the thread or subthread instead.
5884 For example, the Delete command will delete the whole collapsed thread
5885 instead of just a single message.
5887 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5888 you can change this with the 
5889 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5890 in the SETUP CONFIGURATION screen): <P>
5891 <DL>
5892  <DT>STATUS:</DT>
5893  <DD> The markings on the left side of the message tell you about its
5894 status.  You may see one or more of the following codes on any given
5895 message:
5896 <UL>
5897   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5898          yet eXpunged the folder.
5899   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5900   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5901          to be answered.
5902   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5903          forward a message.
5904   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5905         directly to your account, your copy is not part of a cc: or a
5906         mailing list.
5907   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5908         message was sent to you as a cc:. This symbol will only show up if
5909         the feature
5910         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5911   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5912         &quot;select&quot; command.  (Some systems may optionally allow selected
5913         messages to be denoted by the index line being displayed in bold
5914         type.)
5915   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5916       to mark this message as &quot;important&quot;.
5917 </UL></DD><P>
5919  <DT>MESSAGE NUMBER:</DT>
5920  <DD>Messages in a folder are numbered, from one through the number
5921 of messages in the folder, to help you know where you are in the folder.
5922 These numbers are always in increasing order, even if you sort the folder
5923 in a different way.</DD><P>
5925  <DT>DATE SENT:</DT>
5926  <DD>The date the message was sent.  By default, messages are
5927 ordered by arrival time, not by date sent.  Most of the time, arrival time
5928 and date sent (effectively departure time) are similar.  Sometimes,
5929 however, the index will appear to be out of order because a message took a
5930 long time in delivery or because the sender is in a different time
5931 zone than you are. This date is just the date from the Date header
5932 field in the message.</DD><P>
5934  <DT>WHO SENT THE MESSAGE:</DT>
5935  <DD>This is usually the name of the sender of the message, taken from
5936 the From header of the message.
5937 If there is no personal name given in that
5938 address, then the email address is used instead.
5939 If the message is from you (or from one of your
5940 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5941 then the recipient's name is shown here instead, with the characters
5942 &quot;To: &quot; inserted before the name.
5943 (The idea of this is that if you sent the mail you would rather see who
5944 the mail was sent to instead of that the mail was from you.
5945 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5946 above.
5947 In particular, use the FROM token or the FROMORTONOTNEWS token
5948 in place of the FROMORTO token.)
5949 In Newsgroups, if you are
5950 the sender and there are no email recipients, the newsgroup name will be
5951 listed after the &quot;To: &quot;. </DD><P>
5953  <DT>SIZE:</DT>
5954  <DD>The number in parentheses is the number of characters in the message.
5955 It may have a suffix of K, M, or G which means the number should be
5956 multiplied by one thousand, one million, or one billion to get the
5957 size of the message.</DD><P>
5959  <DT>SUBJECT:</DT>
5960  <DD>As much of the message's subject line as will fit on the screen.</DD>
5961 </DL>
5963 <P><UL>
5964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5965 </UL>
5967 &lt;End of help on this topic&gt;
5968 </BODY>
5969 </HTML>
5970 ============= h_mail_view ========================
5971 <HTML>
5972 <HEAD>
5973 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5974 </HEAD>
5975 <BODY>
5976 <H1>MESSAGE TEXT SCREEN</H1>
5977 <!--chtml if pinemode="function_key"-->
5978 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>
5979 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5980 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>
5981 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>
5982 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>
5983 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>
5984 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>
5985 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>
5986 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>
5987 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>
5988 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>
5989 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>
5990 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>
5991 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>
5992 <BR>
5993 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5994 ------------------------------<BR>
5995 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5996 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5997 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5998 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5999 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
6000 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
6001 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
6002 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
6003 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
6004 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
6005 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
6006 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
6007 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
6008 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
6009 <!--chtml else-->
6010 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
6011 ---------------------------------<BR>
6012 <BR>
6013 &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>
6014 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>
6015 &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>
6016 &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>
6017 &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>
6018 &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>
6019 &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>
6020 &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>
6021 &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>
6022 <BR>
6023 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
6024 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
6025 &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>
6026 &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>
6027 &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>
6028 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>
6029 <BR>
6030 General&nbsp;Alpine&nbsp;Commands<BR>
6031 ---------------------<BR>
6032 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
6033 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
6034 &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>
6035 &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>
6036 &nbsp;&nbsp;&nbsp;&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>
6037 <!--chtml endif-->
6040 NOTE:
6041 <OL>
6042  <LI>For help on a particular command, highlight the bold text associated
6043 with it above and hit Return.
6044  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
6045 </OL>
6047 <H2>Description of the MESSAGE TEXT Screen</H2>
6049 The top line of the view message screen displays status
6050 information about the currently open collection and folder and about the
6051 current message.  It shows the name of the collection in angle brackets
6052 and then the name of the folder.  The line also displays the number
6053 of messages in the folder, the number of the current message and the
6054 percentage of the current message that has been displayed on the screen.
6055 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
6056 right corner.
6057 If the message has been answered (but not deleted) &quot;ANS&quot; will show
6058 in the corner.
6061 NOTE: to rapidly move to the end of a message, hit the
6062 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6063 (or Ctrl-W) key followed
6064 by Ctrl-V.  Similarly,
6065 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6066 followed by Ctrl-Y will take you to the beginning of
6067 a message.
6069 <H2>Explanation of Alternate Character Sets</H2>
6071 Alpine attempts to stay out of the way so that it won't prevent you from
6072 viewing mail in any character set.  It will simply send the message to
6073 your display device.  If the device is capable of displaying the
6074 message as it was written it will do so.  If not, the display may be
6075 partially or totally incorrect.
6076 If the message contains characters that are not representable in your 
6077 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
6078 variable in your configuration, then a warning message will be printed
6079 to your screen at the beginning of the message display.
6080 It is probably best to use UNIX Alpine in a terminal emulator
6081 capable of displaying UTF-8 characters.
6082 See <A HREF="h_config_char_set">Display Character Set</A> for a little
6083 more information about character set settings.
6085 <P><UL>
6086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6087 </UL>
6089 &lt;End of help on this topic&gt;
6090 </BODY>
6091 </HTML>
6092 ======= h_index_cmd_select =======
6093 <HTML>
6094 <HEAD>
6095 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
6096 </HEAD>
6097 <BODY>
6098 <H1>Selecting: Select and WhereIs/Select</H1>
6100 Aggregate operations give you the ability to process a group of messages
6101 at once.  Acting on multiple messages requires two steps: (1) selecting a
6102 set of messages and then; (2) applying a command to that set. The first
6103 part is handled by the select command.  Select allows you to
6104 select messages based on their status (read, answered, etc.), contents,
6105 date, size, or keywords.
6106 You may also select based on one of your Rules or based on threads,
6107 and there are quick options to select a specific message or range of messages,
6108 to select the current message, or to select all messages.
6111 We describe the various selection criteria briefly:
6114 <DL>
6115 <DT>select All</DT>
6116 <DD> Marks all the messages in the folder as selected.
6117 </DD>
6119 <DT>select Cur</DT>
6120 <DD> Selects the currently highlighted message or currently highlighted
6121 set of messages if in a threaded view.
6122 </DD>
6124 <DT>select by Number</DT>
6125 <DD> Select by message number. This may be a comma-separated list instead or
6126 a single entry.
6127 Each element in the list may be either a single message number or a range
6128 of numbers with a dash between the lowest and highest member of the range.
6129 Some examples are 7 to select only message number 7; 2-5 to select messages
6130 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
6131 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
6132 substitute for the highest numbered message in the folder, while the
6133 character &quot;.&quot; represents the message number holding the position
6134 of the cursor in the folder.
6135 If in a separate thread index where the numbers refer to threads instead of
6136 to messages, then you will be selecting all of the messages in the
6137 referenced threads instead of selecting by message number.
6138 </DD>
6140 <DT>select by Date</DT>
6141 <DD> Select by either the date stored in the Date headers of each message,
6142 or by the date when the messages arrived.
6143 This does not adjust for different time zones, but just checks to see what
6144 day the message was sent on.
6145 You may type in a date. If you do, the date should be in the form
6146 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
6147 For example,
6148 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
6150 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
6151 If the date you want is close to the current date, it is probably
6152 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
6153 is displayed, instead of typing in the date yourself.
6154 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
6155 the date of the currently highlighted message. 
6157 There are six possible settings that are selected using the
6158 &quot;^W&nbsp;Toggle When&quot; command.
6159 Three of them select messages based on the Date headers.
6160 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
6161 and &quot;SENT ON&quot;.
6162 SINCE is all messages with the selected date or later.
6163 BEFORE is all messages earlier than the selected date (not including the day
6164 itself).
6165 ON is all messages sent on the selected date.
6166 The other three select messages in the same way but they use the arrival
6167 times of the messages instead of the Date headers included in the messages.
6168 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
6169 and &quot;ARRIVED ON&quot;.
6170 When you save a message from one folder to another the arrival time is
6171 preserved.
6172 </DD>
6174 <DT>select by Text</DT>
6175 <DD> Selects messages based on the message contents.
6176 This allows you to select a set of messages based on whether or not the
6177 message headers or message body contain specified text.
6178 You may look for text in the Subject, the From header,
6179 the To header, or the Cc header.
6180 You may also choose Recipient, which searches for the text in
6181 either the To or the Cc header;
6182 or Participant, which means To or Cc or From.
6183 Besides those specific header searches, you may also search the entire
6184 header and text of the message with &quot;All Text&quot;, or just the
6185 body of the message.
6187 To search for the absence of text, first type the &quot;! Not&quot; command
6188 before typing the specific type of text search.
6189 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
6190 search for all messages that do not contain a particular word in their
6191 Subjects.
6193 If you choose a Subject search, you may use the subject from the current
6194 message by typing the &quot;^X Cur Subject&quot; command.
6195 You may then edit it further if you wish.
6196 For example, you might select the subject of a reply and edit the
6197 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
6198 the original message being replied to.
6199 All of the other header searches allow you to use addresses from the
6200 headers of the current message if you want to.
6201 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
6202 &quot;^W Cur Cc&quot;.
6203 In each case, if there is more than one address, only the first is offered.
6204 </DD>
6206 <DT>select by Status</DT>
6207 <DD> Selects messages based on their status.
6208 You may select all New, Important, Deleted, Answered, Recent, or Unseen
6209 messages.
6210 Or, if you first type the &quot;! Not&quot; command, you get not New,
6211 or not Important, and so on.
6212 If you select Deleted messages, you will get all messages with their
6213 Deleted flag set.
6214 Likewise for Important messages, all messages that you have flagged as
6215 being Important with the
6216 <A HREF="h_common_flag">Flag</A> command.
6217 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
6218 because they try to match what you see on the screen by default.
6219 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
6220 and Unanswered.
6221 If you have looked at the message, or deleted it, or answered it; then it
6222 is not considered &quot;New &quot;.
6223 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
6225 &quot;Answered&quot; is another one that is a little different.
6226 It means that the message has been Answered <EM>and</EM> is not deleted.
6227 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
6228 the opposite of &quot;Answered&quot;!
6229 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
6230 both Unanswered <EM>and</EM> not deleted.
6232 The other two types were added later because the special nature of the
6233 New flag was not what was wanted by all users.
6234 New does match what you see in the index by default, but if you use
6235 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6236 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6237 be exactly what you want.
6238 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6239 they are deleted or answered, and
6240 &quot;Recent&quot; selects all of the messages that have been added to
6241 the folder since you started this Alpine session.
6242 (That's not technically quite true. If there are multiple mail clients
6243 reading an IMAP mailbox, each message will be marked as Recent in only
6244 one of the client's sessions.)
6245 </DD>
6247 <DT>select by siZe</DT>
6248 <DD> Selects messages based on their size being smaller than or larger
6249 than the size you specify.
6250 The size is the number of bytes.
6251 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
6252 the number.
6253 For example, 7K is the same as 7000.
6254 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
6255 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
6256 Use the &quot;^W&quot; command to toggle back and forth between Smaller
6257 and Larger.
6258 </DD>
6260 <DT>select by Keyword</DT>
6261 <DD> Selects messages that either have or do not have
6262 (using the &quot;!&nbsp;Not&quot; command)
6263 a particular <A HREF="h_config_keywords">Keyword</A> set.
6264 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
6265 command to select one from your list of keywords.
6267 <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.
6268 </DD>
6270 <DT>select by Rule</DT>
6271 <DD> Selects messages that either match or don't match
6272 (using the &quot;!&nbsp;Not&quot; command)
6273 one of the Rules you have defined.
6274 The most likely method of filling in the Rule is to use the
6275 &quot;^T&nbsp;To&nbsp;List&quot;
6276 command to select one of your Rules.
6277 All of the Rules you have defined will be in the list, including
6278 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
6279 They may not all make sense for this purpose, but they are all there for
6280 flexibility.
6281 You might find it useful to define some rules solely for the purpose
6282 of being used by the Select command.
6283 There is a special category for such Rules. They are called Search Rules.
6285 Unfortunately, Alpine does not allow all possible Rules to be defined.
6286 For example, there is no logical OR operation.
6287 OR is accomplished in the Filter Rules or the other types of Rules by
6288 simply defining two rules, one that matches the first part of the OR
6289 and another that matches the second part.
6290 But you can't do that here, since you only have a single Rule to work with.
6291 Likewise, the order of Rules is usually important.
6292 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6293 a message, then that stops the search for a further match.
6294 This means that you may be confused if you try to use Select by Rule to
6295 check your Filter rules because the order is important when filtering but
6296 is not considered here.
6297 </DD>
6299 <DT>select by tHread</DT>
6300 <DD> Selects all of the messages in the current thread.
6301 </DD>
6302 </DL>
6304 After you have an initial selection, the next and subsequent selection
6305 commands modify the selection.
6306 The select command changes. It first gives
6307 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
6308 &quot;unselect Current&quot;,
6309 &quot;Broaden selection&quot; (implements a logical OR), and
6310 &quot;Narrow selection&quot; (implements a logical AND).
6311 After you choose either Broaden or Narrow, you then choose one of the
6312 selection criteria listed above (by Text or Number or ...).
6313 You may use select as many times as you wish to get the selected set right.
6316 The WhereIs command has a feature (Ctrl-X) to
6317 select all the messages that match the WhereIs search. WhereIs searches
6318 through just the text that appears on the MESSAGE INDEX screen.
6319 This method is often slower than using the select command itself, unless the
6320 line you are looking for is not too far away in the index.
6323 The availability of the aggregate operations commands is determined by the
6324 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6325 Feature-List option in your Alpine
6326 configuration, which defaults to set.
6327 The features
6328 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
6330 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
6331 affect the behavior of the Select command.
6334 &lt;End of help on this topic&gt;
6335 </BODY>
6336 </HTML>
6337 ======= h_select_rule =======
6338 <HTML>
6339 <HEAD>
6340 <TITLE>Select: Rule</TITLE>
6341 </HEAD>
6342 <BODY>
6343 <H1>Select: Rule</H1>
6345 You are selecting messages that either match or don't match
6346 one of the Rules you have defined.
6347 You may either type the nickname of the Rule at the prompt, or use the
6348 &quot;^T&nbsp;To&nbsp;List&quot;
6349 command to select one of your Rules.
6350 All of the Rules you have defined will be in the list, including
6351 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
6352 They may not all make sense for this purpose, but they are all there for
6353 flexibility.
6354 Rules may be added by using the Setup/Rules screen off of the main Alpine
6355 menu.
6357 Unfortunately, Alpine does not allow all possible Rules to be defined.
6358 For example, there is no logical OR operation.
6359 OR is accomplished in the Filter Rules or the other types of Rules by
6360 simply defining two rules, one that matches the first part of the OR
6361 and another that matches the second part.
6362 But you can't do that here, since you only have a single Rule to work with.
6363 Likewise, the order of Rules is usually important.
6364 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6365 a message, then that stops the search for a further match.
6366 This means that you may be confused if you try to use Select by Rule to
6367 check your Filter rules because the order is important when filtering but
6368 is not considered here.
6371 &lt;End of help on this topic&gt;
6372 </BODY>
6373 </HTML>
6374 ======= h_select_text =======
6375 <HTML>
6376 <HEAD>
6377 <TITLE>Select: Text</TITLE>
6378 </HEAD>
6379 <BODY>
6380 <H1>Select: Text</H1>
6382 You are selecting messages based on the contents of the message.
6383 This allows you to select a set of messages based on whether or not the
6384 message headers or message body contain specified text.
6385 You may look for text in the Subject, the From header,
6386 the To header, or the Cc header.
6387 You may also choose Recipient, which searches for the text in
6388 either the To or the Cc header;
6389 or Participant, which means either the To header, or the Cc header,
6390 or the From header.
6391 Besides those specific header searches, you may also search the entire
6392 header and text of the message with &quot;All Text&quot;, or just the
6393 body of the message with &quot;Body&quot;.
6395 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
6396 before typing the specific type of text search.
6397 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
6398 search for all messages that do not contain a particular word in their
6399 Subjects.
6401 If you choose a Subject search, you may use the subject from the current
6402 message by typing the &quot;^X Cur Subject&quot; command.
6403 You may then edit it further if you wish.
6404 For example, you might select the subject of a reply and edit the
6405 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
6406 the original message being replied to.
6407 All of the other header searches allow you to use addresses from the
6408 headers of the current message if you want to.
6409 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
6410 &quot;^W Cur Cc&quot;.
6411 In each case, if there is more than one address, only the first is offered.
6414 &lt;End of help on this topic&gt;
6415 </BODY>
6416 </HTML>
6417 ======= h_select_status =======
6418 <HTML>
6419 <HEAD>
6420 <TITLE>Select: Status</TITLE>
6421 </HEAD>
6422 <BODY>
6423 <H1>Select: Status</H1>
6425 You are selecting messages based on the status of the message.
6426 For example, whether or not the message has been marked Deleted or Important,
6427 or whether or not it has been Answered or is New.
6428 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
6429 opposite: not Deleted, not Important, and so on.
6431 If you select Deleted messages, you will get all messages with their
6432 Deleted flag set.
6433 Likewise for Important messages, all messages that you have flagged as
6434 being Important with the
6435 <A HREF="h_common_flag">Flag</A> command.
6436 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
6437 because they try to match what you see on the screen by default.
6438 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
6439 and Unanswered.
6440 If you have looked at the message, or deleted it, or answered it; then it
6441 is not considered &quot;New &quot;.
6442 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
6444 &quot;Answered&quot; is another one that is a little different.
6445 It means that the message has been Answered <EM>and</EM> is not deleted.
6446 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
6447 the opposite of &quot;Answered&quot;!
6448 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
6449 both Unanswered <EM>and</EM> not deleted.
6451 (The New and Answered options may seem counter-intuitive.
6452 The reason it is done this way is
6453 because, by default, a Deleted message will show up with the &quot;D&quot;
6454 symbol in the MAIL INDEX screen even if it is New or Answered.
6455 The Delete symbol overrides the New and Answered symbols, because you
6456 usually don't care about the message anymore once you've deleted it.
6457 Similarly, you usually only care about whether a message is Answered or
6458 not if it is not Deleted.
6459 Once it is Deleted you've put it out of your mind.)
6461 The other two options were added later because the special nature of the
6462 New flag was not what was wanted by all users.
6463 New does match what you see in the index by default, but if you use
6464 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6465 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6466 be exactly what you expect.
6467 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6468 they are deleted or answered, and
6469 &quot;Recent&quot; selects all of the messages that have been added to
6470 the folder since you started this Alpine session.
6471 (That's not technically quite true. If there are multiple mail clients
6472 reading an IMAP mailbox, each message will be marked as Recent in only
6473 one of the client's sessions.
6474 That behavior can be convenienent for some purposes, like filtering, but
6475 it isn't usually what you expect when selecting.)
6478 &lt;End of help on this topic&gt;
6479 </BODY>
6480 </HTML>
6481 ======= h_index_cmd_apply =======
6482 <HTML>
6483 <HEAD>
6484 <TITLE>Apply Command</TITLE>
6485 </HEAD>
6486 <BODY>
6487 <H1>Apply Command</H1>
6489 Apply
6490 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
6491 is the second step of most aggregate operations.  Apply
6492 becomes active any time there is a defined set of selected messages.  The
6493 following commands can be applied to a selected message set: delete,
6494 undelete, reply, forward,
6495 <!--chtml if pinemode="os_windows"-->
6496 <!--chtml else--> 
6497 pipe,
6498 <!--chtml endif-->
6499 print, take address, save, export, bounce, and flag.
6502 The behavior of some of these commands in an aggregate sense is not easy to
6503 explain.  Try them out to see what they do.
6504 The feature
6505 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
6506 affects the behavior of the Apply command, as does the feature
6507 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
6510 &lt;End of help on this topic&gt;
6511 </BODY>
6512 </HTML>
6513 ======= h_index_cmd_zoom =======
6514 <HTML>
6515 <HEAD>
6516 <TITLE>ZoomMode Command</TITLE>
6517 </HEAD>
6518 <BODY>
6519 <H1>ZoomMode Command</H1>
6521 Another action you might want to take on a set of selected messages is to
6522 zoom in on them.  Like apply, zoom only becomes active when messages have
6523 been selected.
6524 ZoomMode
6525 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
6526 is a toggle command that allows you to
6527 zoom-in (and only see the selected messages) and zoom-out (to see all
6528 messages in the folder).  Neither apply nor zoom removes the markings that
6529 define the selected set; you need to use a select command in order
6530 to do that.
6533 &lt;End of help on this topic&gt;
6534 </BODY>
6535 </HTML>
6536 ======= h_index_collapse_expand =======
6537 <HTML>
6538 <HEAD>
6539 <TITLE>Collapse/Expand Command</TITLE>
6540 </HEAD>
6541 <BODY>
6542 <H1>Collapse/Expand Command</H1>
6544 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
6545 the folder is sorted by either Threads or OrderedSubject, and the
6546 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
6547 is set to something other than &quot;none&quot;.
6548 By default, this command collapses or expands the subthread that starts at
6549 the currently highlighted message, if any.
6550 If the subthread is already collapsed, then this command expands it.
6551 If the subthread is expanded, then this command collapses it.
6552 If there are no more messages below the current message in the
6553 thread tree (that is, there are no replies to the current message) then
6554 this command does nothing.
6557 The behavior of this command is affected by the option
6558 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6559 Normally, this command Collapses or Expands the subthread that
6560 starts at the currently highlighted message.
6561 If the above option is set, then this command Collapses or Expands the
6562 entire current thread instead of just the subthread.
6563 The current thread is simply the top-level thread that contains the
6564 current message.
6567 &lt;End of help on this topic&gt;
6568 </BODY>
6569 </HTML>
6570 ======= h_index_cmd_sort =======
6571 <HTML>
6572 <HEAD>
6573 <TITLE>Sort Command</TITLE>
6574 </HEAD>
6575 <BODY>
6576 <H1>Sort Command</H1>
6578 In Alpine's generic configuration, messages are presented in the order in
6579 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6580 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6581 You can also re-sort the folder on demand with the sort
6582 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6583 command.
6584 Your sorting options are:
6586 <UL>
6587  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6588  <LI> <A HREF="h_index_sort_date">D</A>ate
6589  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6590  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6591  <LI> t<A HREF="h_index_sort_thread">H</A>read
6592  <LI> <A HREF="h_index_sort_from">F</A>rom
6593  <LI> si<A HREF="h_index_sort_size">Z</A>e
6594  <LI> scor<A HREF="h_index_sort_score">E</A>,
6595  <LI> <A HREF="h_index_sort_to">T</A>o
6596  <LI> <A HREF="h_index_sort_cc">C</A>c
6597 </UL>
6600 The Reverse option will toggle the order the index is currently
6601 sorted by, but will not change the relative sort order.
6604 Sorting a folder does not actually rearrange the way the folder is saved,
6605 it just re-arranges how the messages are presented to you.  This means
6606 that Alpine has to do the work of sorting every time you change sort order.
6607 Sometimes, especially with PC-Alpine or with large folders, this could take
6608 a while.
6611 &lt;End of help on this topic&gt;
6612 </BODY>
6613 </HTML>
6614 ======= h_index_sort_default =======
6615 <HTML>
6616 <HEAD>
6617 <TITLE>SORT OPTION: Default</TITLE>
6618 </HEAD>
6619 <BODY>
6620 <H1>SORT OPTION: Default</H1>
6622 The <EM>Default</EM> sort option just means to use the default sort order
6623 set in the
6624 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6625 option in Setup/Config.
6628 &lt;End of help on this topic&gt;
6629 </BODY>
6630 </HTML>
6631 ======= h_index_sort_arrival =======
6632 <HTML>
6633 <HEAD>
6634 <TITLE>SORT OPTION: Arrival</TITLE>
6635 </HEAD>
6636 <BODY>
6637 <H1>SORT OPTION: Arrival</H1>
6639 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6640 in the order that they exist in the folder.  This is usually the same as the
6641 order in which they arrived.  This option is comparable to not sorting
6642 the messages at all.
6645 &lt;End of help on this topic&gt;
6646 </BODY>
6647 </HTML>
6648 ======= h_index_sort_date =======
6649 <HTML>
6650 <HEAD>
6651 <TITLE>SORT OPTION: Date</TITLE>
6652 </HEAD>
6653 <BODY>
6654 <H1>SORT OPTION: Date</H1>
6656 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6657 according to the date and time they were
6658 sent.
6661 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6662 identical to sorting by &quot;Arrival&quot;.
6665 &lt;End of help on this topic&gt;
6666 </BODY>
6667 </HTML>
6668 ======= h_index_sort_subj =======
6669 <HTML>
6670 <HEAD>
6671 <TITLE>SORT OPTION: Subject</TITLE>
6672 </HEAD>
6673 <BODY>
6674 <H1>SORT OPTION: Subject</H1>
6676 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6677 by subject. 
6680 Messages with the same subject are
6681 first grouped together, and then the groups of like-subject messages
6682 are arranged alphabetically.
6685 Alpine ignores leading &quot;Re:&quot; and
6686 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6687 likeness and alphabetical order of subject lines.
6690 &lt;End of help on this topic&gt;
6691 </BODY>
6692 </HTML>
6693 ======= h_index_sort_ordsubj =======
6694 <HTML>
6695 <HEAD>
6696 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6697 </HEAD>
6698 <BODY>
6699 <H1>SORT OPTION: OrderedSubject</H1>
6701 The <EM>OrderedSubject</EM> sort option arranges messages in the
6702 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6703 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6706 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6707 messages by the date of the oldest message in the group.
6710 This sort method provides for pseudo threading of conversations within
6711 a folder.
6712 You may want to try sorting by Thread instead.
6715 &lt;End of help on this topic&gt;
6716 </BODY>
6717 </HTML>
6718 ======= h_index_sort_thread =======
6719 <HTML>
6720 <HEAD>
6721 <TITLE>SORT OPTION: Thread</TITLE>
6722 </HEAD>
6723 <BODY>
6724 <H1>SORT OPTION: Thread</H1>
6726 The <EM>Thread</EM> sort option arranges messages in the
6727 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6728 they are part of a conversation (discussion thread) taking
6729 place within a mailbox or newsgroup.  This indication is
6730 based on information in the message's header -- specifically
6731 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6734 &lt;End of help on this topic&gt;
6735 </BODY>
6736 </HTML>
6737 ======= h_index_sort_from =======
6738 <HTML>
6739 <HEAD>
6740 <TITLE>SORT OPTION: From</TITLE>
6741 </HEAD>
6742 <BODY>
6743 <H1>SORT OPTION: From</H1>
6745 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6746 by the name of the author of the message.
6749 Messages with the same author are grouped together. Groups of
6750 messages are then put into alphabetical order according to message
6751 author.
6754 &lt;End of help on this topic&gt;
6755 </BODY>
6756 </HTML>
6757 ======= h_index_sort_size =======
6758 <HTML>
6759 <HEAD>
6760 <TITLE>SORT OPTION: Size</TITLE>
6761 </HEAD>
6762 <BODY>
6763 <H1>SORT OPTION: Size</H1>
6765 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6766 by their relative sizes.
6769 &lt;End of help on this topic&gt;
6770 </BODY>
6771 </HTML>
6772 ======= h_index_sort_score =======
6773 <HTML>
6774 <HEAD>
6775 <TITLE>SORT OPTION: Score</TITLE>
6776 </HEAD>
6777 <BODY>
6778 <H1>SORT OPTION: Score</H1>
6780 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6781 by their scores.
6784 Messages with the same score are sorted in arrival order.
6785 Scores are something you create using the
6786 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6789 &lt;End of help on this topic&gt;
6790 </BODY>
6791 </HTML>
6792 ======= h_index_sort_to =======
6793 <HTML>
6794 <HEAD>
6795 <TITLE>SORT OPTION: To</TITLE>
6796 </HEAD>
6797 <BODY>
6798 <H1>SORT OPTION: To</H1>
6800 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6801 by the names of the recipients of the message.
6804 Messages with the same recipients are grouped together. Groups of
6805 messages are then put into alphabetical order according to message
6806 recipients.
6809 &lt;End of help on this topic&gt;
6810 </BODY>
6811 </HTML>
6812 ======= h_index_sort_cc =======
6813 <HTML>
6814 <HEAD>
6815 <TITLE>SORT OPTION: Cc</TITLE>
6816 </HEAD>
6817 <BODY>
6818 <H1>SORT OPTION: Cc</H1>
6820 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6821 the names of the carbon copy addresses of the message.
6824 &lt;End of help on this topic&gt;
6825 </BODY>
6826 </HTML>
6827 ======= h_index_cmd_whereis =======
6828 <HTML>
6829 <HEAD>
6830 <TITLE>WhereIs Command</TITLE>
6831 </HEAD>
6832 <BODY>
6833 <H1>WhereIs Command</H1>
6835 The WhereIs
6836 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6837 command lets you search the MESSAGE INDEX for a word.
6838 It scans through whatever you see, usually the name of the author
6839 and the Subject line.
6840 WhereIs has special subcommands to let you find the beginning of the
6841 index (Ctrl-Y -- first message)
6842 or the end of the index (Ctrl-V -- last message).
6844 Note that WhereIs only searches through the visible text on the screen.
6845 For example, if only part of the Subject of a message is shown because it
6846 is long, then only the visible portion of the Subject is searched.
6847 Also note that WhereIs does not &quot;see&quot; the 
6848 &quot;X&quot; in column one of Index entries for selected messages
6849 so it can't be used to search for
6850 selected messages (use &quot;Zoom&quot; instead).
6852 If the feature
6853 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6854 is turned on,
6855 WhereIs can also be used as a quick way to select messages that match the
6856 string being searched for.
6857 Instead of typing carriage return to search for the next match, type
6858 Ctrl-X to select all matches.
6859 Once again, this only selects matches that are (or would be if the right
6860 index line was on the screen) visible.
6861 Truncated From lines or Subjects will cause matches to be missed.
6862 Although WhereIs is sometimes convenient for quick matching, the Select
6863 command is usually more powerful and usually faster.
6866 &lt;End of help on this topic&gt;
6867 </BODY>
6868 </HTML>
6869 ======= h_view_cmd_whereis =======
6870 <HTML>
6871 <HEAD>
6872 <TITLE>WhereIs Command</TITLE>
6873 </HEAD>
6874 <BODY>
6875 <H1>WhereIs Command</H1>
6877 The WhereIs
6878 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6879 command does a &quot;find in current message&quot; operation.  You
6880 type in text and Alpine will try to find it in the message you are
6881 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6882 or end (Ctrl-V) of the message.
6883 That is, to rapidly move to the end of a message, hit the 
6884 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6885 (or Ctrl-W) key followed
6886 by Ctrl-V.  Similarly,
6887 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6888 followed by Ctrl-Y will take you to the beginning of a message.
6891 &lt;End of help on this topic&gt;
6892 </BODY>
6893 </HTML>
6894 ======= h_view_cmd_hilite =======
6895 <HTML>
6896 <HEAD>
6897 <TITLE>View Hilite and Next item/Previous item</TITLE>
6898 </HEAD>
6899 <BODY>
6900 <H1>View Hilite and Next item/Previous item</H1>
6902 Sometimes messages may be in the form of formatted HTML text
6903 or they may contain URLs or Web server hostnames.
6904 When any of the features
6905 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6906 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6907 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6909 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6910 are enabled, Alpine will represent such selectable items in the text
6911 in bold typeface.  One of the selectable items will be displayed in
6912 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6913 Press the Return key to view the currently selected item.
6916 The Up and Down Arrows keys can be used to change the selected item
6917 (also see the feature
6918 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6919 If there are no selectable items in the direction of the arrow you
6920 pressed, Alpine will scroll the display in that direction until one
6921 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6922 items in the message text, use the Previous and Next item commands,
6923 <!--chtml if pinemode="function_key"-->F5 and F6
6924 <!--chtml else-->^B and ^F<!--chtml endif-->.
6927 &lt;End of help on this topic&gt;
6928 </BODY>
6929 </HTML>
6930 ======= h_view_cmd_viewattch =======
6931 <HTML>
6932 <HEAD>
6933 <TITLE>ViewAttch Command</TITLE>
6934 </HEAD>
6935 <BODY>
6936 <H1>ViewAttch Command</H1>
6939 The View/Save Attachment
6940 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6941 command allows you to handle MIME attachments to a message you have
6942 received.  Alpine shows you a list of the message attachments -- you just
6943 choose the attachment you want.  You may either view or save the
6944 selected attachment.
6947 Because many attachments require external programs for display, there
6948 is some system configuration that has to happen before you can
6949 actually display attachments.  Hopefully much of that will have been
6950 done already by your system administrator.  MIME configuration is
6951 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6952 on configuration in the
6953 <A HREF="h_news">release notes</A> for more information.)
6956 &lt;End of help on this topic&gt;
6957 </BODY>
6958 </HTML>
6959 ======= h_index_cmd_expunge =======
6960 <HTML>
6961 <HEAD>
6962 <TITLE>Expunge/Exclude Command</TITLE>
6963 </HEAD>
6964 <BODY>
6965 <H1>Expunge/Exclude Command</H1>
6967 Expunge/Exclude
6968 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6969 is the command Alpine uses to actually remove all messages
6970 marked for deletion.  With regular email files, expunge literally deletes
6971 the text from the current folder.  With newsgroups or shared mailboxes,
6972 you don't have permission to actually remove the message, so it is an
6973 exclude -- Alpine removes the message from your view of the folder even
6974 though it is not technically gone.
6976 <P> A selective expunge command is available in IMAP folders that support 
6977 the UID EXPUNGE extension in <A 
6978 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6979 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6980 as a subcommand of the apply command. If some selected messages are marked 
6981 deleted, then the apply command will offer the eXpunge command, which when 
6982 executed will only expunge those messages that are selected and deleted.
6984 <P> 
6985 Observe that the expunge command (when not used from the apply command) 
6986 will expunge/exclude all deleted messages from the folder, and so all 
6987 messages marked deleted will be expunged, regardless of if they are 
6988 selected or not. In other words, there is no protection against 
6989 potentially expunging more messages than only those that have been 
6990 selected and deleted.
6993 The configuration features
6994 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6996 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6997 affect the behavior of the Expunge command.
7000 &lt;End of help on this topic&gt;
7001 </BODY>
7002 </HTML>
7003 ======= h_common_compose =======
7004 <HTML>
7005 <HEAD>
7006 <TITLE>Compose Command</TITLE>
7007 </HEAD>
7008 <BODY>
7009 <H1>Compose Command</H1>
7011 The Compose command takes you into the Alpine message composer where you
7012 can start a new message for sending.  This is where you type in the
7013 message's text and specify its recipient list (the &quot;To:&quot;
7014 address), where copies should be directed (e.g., &quot;Fcc&quot;,
7015 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
7016 be attached to the message.
7019 When you type this command, Alpine will also automatically check for any
7020 interrupted (i.e., a message that was being composed when your modem
7021 or network connection was broken) or previously postponed messages and
7022 offer you a chance to continue working on those.
7025 <UL>   
7026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7027 </UL><P>
7028 &lt;End of help on this topic&gt;
7029 </BODY>
7030 </HTML>
7031 ======= h_common_index =======
7032 <HTML>
7033 <HEAD>
7034 <TITLE>Message Index Command</TITLE>
7035 </HEAD>
7036 <BODY>
7037 <H1>Message Index Command</H1>
7039 The Index command takes you to the MESSAGE INDEX screen that displays a
7040 summary caption for each message in the currently-open folder. One
7041 message will be highlighted; this is the &quot;Current&quot; message.
7042 The message commands available from this screen (e.g. View, Reply,
7043 Forward, Delete, Print, Save, etc) apply to the current message.
7046 &lt;End of help on this topic&gt;
7047 </BODY>
7048 </HTML>
7049 ======= h_common_folders =======
7050 <HTML>
7051 <HEAD>
7052 <TITLE>Folder List Command</TITLE>
7053 </HEAD>
7054 <BODY>
7055 <H1>Folder List Command</H1>
7057 This Folder List command takes you to the FOLDER LIST screen that displays
7058 the names of all your message folders and allows you to view, rename,
7059 delete, and add folders.  You can open (view) a different folder than the
7060 one currently open by highlighting the desired one (using the arrow keys
7061 or their control-key equivalents) and pressing RETURN.
7064 If you have multiple folder collections defined (see the Help text for
7065 the FOLDER LIST screen to learn more about Collections), you may need
7066 to press Return to expand the collection and display all of the
7067 folders in it.
7070 &lt;End of help on this topic&gt;
7071 </BODY>
7072 </HTML>
7073 ======= h_main_addrbook =======
7074 <HTML>
7075 <HEAD>
7076 <TITLE>Address Book Command</TITLE>
7077 </HEAD>
7078 <BODY>
7079 <H1>Address Book Command</H1>
7081 This command, available only from the MAIN MENU, takes you
7082 to the ADDRESS BOOK management screen.  From here, your personal address
7083 book(s) may be updated.
7086 &lt;End of help on this topic&gt;
7087 </BODY>
7088 </HTML>
7089 ======= h_main_setup =======
7090 <HTML>
7091 <HEAD>
7092 <TITLE>Setup Command</TITLE>
7093 </HEAD>
7094 <BODY>
7095 <H1>Setup Command</H1>
7097 The Setup command, available only from the MAIN MENU, prompts you for
7098 one of several configuration screens, including the SETUP CONFIGURATION 
7099 screen, by which you may activate optional Alpine features.
7102 &lt;End of help on this topic&gt;
7103 </BODY>
7104 </HTML>
7105 ======= h_main_release_notes =======
7106 <HTML>
7107 <HEAD>
7108 <TITLE>Release Notes Command</TITLE>
7109 </HEAD>
7110 <BODY>
7111 <H1>Release Notes Command</H1>
7113 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
7114 as well as pointers to further information such as history and legal notes.
7117 &lt;End of help on this topic&gt;
7118 </BODY>
7119 </HTML>
7120 ======= h_main_kblock =======
7121 <HTML>
7122 <HEAD>
7123 <TITLE>Keyboard Lock Command</TITLE>
7124 </HEAD>
7125 <BODY>
7126 <H1>Keyboard Lock Command</H1>
7128 This command allows your Alpine session to be protected
7129 during a temporary absence from your terminal.
7132 &lt;End of help on this topic&gt;
7133 </BODY>
7134 </HTML>
7135 ======= h_main_journal =======
7136 <HTML>
7137 <HEAD>
7138 <TITLE>Journal Command</TITLE>
7139 </HEAD>
7140 <BODY>
7141 <H1>Journal Command</H1>
7143 This command displays a list of all the status messages Alpine has
7144 displayed (on the third line from the bottom of the screen). This may
7145 be useful if a message disappeared before you had a chance to read it.
7148 &lt;End of help on this topic&gt;
7149 </BODY>
7150 </HTML>
7151 ======= h_common_role =======
7152 <HTML>
7153 <HEAD>
7154 <TITLE>Role Command</TITLE>
7155 </HEAD>
7156 <BODY>
7157 <H1>Role Command</H1>
7159 The Role command is similar to the Compose command except that it starts
7160 off by letting you select a <A HREF="h_rules_roles">role</A>
7161 to be used for the composition.
7162 You may set up alternate roles by using Setup/Rules/Roles.
7165 &lt;End of help on this topic&gt;
7166 </BODY>
7167 </HTML>
7168 ======= h_common_conditional_cmds =======
7169 <HTML>
7170 <HEAD>
7171 <TITLE>Conditional Commands</TITLE>
7172 </HEAD>
7173 <BODY>
7174 <H1>Conditional Commands</H1>
7176 The presence or absence of certain commands, particularly in the
7177 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
7178 whether or not specific features are set in your Alpine configuration.  
7179 (You can access the SETUP CONFIGURATION screen, where they are found, from 
7180 Alpine's MAIN MENU.)  To see if a desired command's availability is
7181 conditioned on a feature setting, see the command's help text (highlight
7182 the phrase associated with the command and hit Return).
7185 Also note that some
7186 commands may be administratively disabled by your system manager;
7187 if they don't work, please check with your local help desk.
7190 <UL>   
7191 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7192 </UL><P>
7193 &lt;End of help on this topic&gt;
7194 </BODY>
7195 </HTML>
7196 ======= h_common_pipe =======
7197 <HTML>
7198 <HEAD>
7199 <TITLE>Pipe Command</TITLE>
7200 </HEAD>
7201 <BODY>
7202 <H1>Pipe Command</H1>
7204 Pipe
7205 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
7206 allows you to send a message to a specified Unix command for external
7207 processing.
7208 This command's availability is controlled by the
7209 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
7210 feature.
7211 By default, the processed text of the message is sent to the command
7212 you specify and the output is captured by Alpine and shown to you.
7213 When you run the pipe command, there are some sub-commands which may be
7214 used to alter this behavior.
7215 These sub-commands are described <A HREF="h_pipe_command">here</A>.
7218 &lt;End of help on this topic&gt;
7219 </BODY>
7220 </HTML>
7221 ======= h_common_goto =======
7222 <HTML>
7223 <HEAD>
7224 <TITLE>Goto Command</TITLE>
7225 </HEAD>
7226 <BODY>
7227 <H1>Goto Command</H1>
7229 Goto
7230 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
7231 is the command that lets you bypass Alpine's folder selection screens
7232 and jump directly to a new folder.  You can select any folder in the
7233 world: one in your current collection, one in a different collection or
7234 one in a collection you've never even used before.
7237 Alpine will help you as much as possible to narrow in on the folder you want.
7238 However, if the folder is outside of your defined collections, you are
7239 going to have to enter the exact folder location using the correct
7240 <A HREF="h_valid_folder_names">syntax</A>
7241 for a remote folder and/or fully-qualified path name.
7244 &lt;End of help on this topic&gt;
7245 </BODY>
7246 </HTML>
7247 ======= h_common_nextnew =======
7248 <HTML>
7249 <HEAD>
7250 <TITLE>NextNew Command</TITLE>
7251 </HEAD>
7252 <BODY>
7253 <H1>NextNew Command</H1>
7255 When you press the TAB key, Alpine advances to the next
7256 &quot;interesting&quot; message.
7257 This will be the next message you have not seen before, or the next message
7258 you have flagged Important, whichever comes first.
7259 Unread messages that have been deleted are not considered interesting.
7260 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
7261 articles after you have read them if you want to remove them from future
7262 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
7263 more information.)
7266 The NextNew command is affected by the feature
7267 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
7268 which causes Alpine to only consider Unread messages interesting, not messages
7269 flagged Important.
7272 This command behaves a little differently when it finds there are no more
7273 interesting messages left in the current folder.
7274 If the current folder is one of your Incoming Message Folders
7275 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
7276 or it is a newsgroup, then Alpine will try to find the next folder or
7277 newsgroup that contains <EM>Recent</EM> messages and will ask you
7278 if you want to open that folder.
7279 This behavior may be modified by using the
7280 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
7281 feature that causes Alpine to look for Unseen messages instead of Recent
7282 messages.
7283 The NextNew command's behavior is also affected by the configuration features
7284 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
7286 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
7289 &lt;End of help on this topic&gt;
7290 </BODY>
7291 </HTML>
7292 ======= h_common_jump =======
7293 <HTML>
7294 <HEAD>
7295 <TITLE>Jump Command</TITLE>
7296 </HEAD>
7297 <BODY>
7298 <H1>Jump Command</H1>
7300 This is Alpine's way of allowing you to go straight to a specific message.
7301 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
7302 configured such that typing in any number automatically jumps you to that
7303 message 
7304 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
7305 in the SETUP CONFIGURATION).
7308 &lt;End of help on this topic&gt;
7309 </BODY>
7310 </HTML>
7311 ======= h_common_flag =======
7312 <HTML>
7313 <HEAD>
7314 <TITLE>Flag Command</TITLE>
7315 </HEAD>
7316 <BODY>
7317 <H1>Flag Command</H1>
7319 Flag
7320 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7321 is the command that allows users to manipulate the status flags that
7322 appear on the left side of the MESSAGE INDEX screen.  The most common
7323 use of this is to mark a message as important. This is something of a
7324 note to yourself to get back to that message.  You may also use the
7325 flag command to set (or unset) the flags that indicate that a message
7326 is new, answered, deleted, or forwarded.<P>
7328 Provided the mail server supports it,
7329 you may also manipulate user-defined keywords
7330 for a message using the flag command.
7331 These keywords will be available if you use the Flag Details screen that you
7332 can get to after typing the
7333 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7334 command.
7335 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
7336 which are always present.
7337 You may add new keywords by using the Add KW command from the Flag Details screen
7338 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
7340 The availability of the flag command is determined by the
7341 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
7342 feature in your Alpine configuration. Also, it is possible that Flag could be
7343 administratively disabled by your system manager; if it doesn't work,
7344 please check with your local help desk before reporting a bug.
7345 The behavior of the flag command may be modified by the
7346 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
7347 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
7350 &lt;End of help on this topic&gt;
7351 </BODY>
7352 </HTML>
7353 ======= h_common_hdrmode =======
7354 <HTML>
7355 <HEAD>
7356 <TITLE>HdrMode Command</TITLE>
7357 </HEAD>
7358 <BODY>
7359 <H1>HdrMode Command</H1>
7361 Every email message comes with some header lines that you normally
7362 don't see (and don't want to see).
7363 These include anywhere from 3-20 lines (or more) added by the
7364 Internet mail transport system to record the route your message took,
7365 for diagnostic purposes.
7366 These are normally of no import and simply
7367 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
7368 This also includes other non-standard headers the message may contain.
7369 If you want to see these headers, there is a way to reveal them.
7372 The Header Mode
7373 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7374 command is a toggle that controls Alpine's handling of these header
7375 lines.  Normally, full headers is &quot;off&quot; and you only see a
7376 few lines about who a message is to and who it is from.  When you
7377 press
7378 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7379 to turn full headers on, Alpine will show you
7380 the normal header lines as well as delivery headers, comment headers,
7381 MIME headers, and any other headers present.
7384 Several different Alpine commands honor the header mode -- it affects how
7385 messages are displayed, how they appear in forward and reply email, how
7386 they are printed, how they are saved, and how they are exported.
7387 <!--chtml if pinemode="os_windows"-->
7388 <!--chtml else--> 
7389 The pipe command is also affected.
7390 <!--chtml endif-->
7393 The presence or absence of the Header Mode command is determined by the
7394 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7395 Feature-List option in your Alpine configuration.
7398 If you have also turned on the
7399 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
7400 option then the HdrMode command actually rotates through three states
7401 instead of just two.
7402 The first is the normal view with long quotes suppressed.
7403 The second is the normal view but with the long quotes included.
7404 The last enables the display of all headers in the message.
7405 When using Export, Pipe, Print, Forward, or Reply the quotes are
7406 never suppressed, so the first two states are identical.
7409 The behavior of the Header Mode command may be altered slightly by
7410 turning on the
7411 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
7412 Feature-List option in your Alpine configuration.
7413 In particular, it will cause the Header Mode to be persistent when moving
7414 from message to message instead of resetting to the default for each message.
7417 <UL>   
7418 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7419 </UL><P>
7420 &lt;End of help on this topic&gt;
7421 </BODY>
7422 </HTML>
7423 ======= h_common_print =======
7424 <HTML>
7425 <HEAD>
7426 <TITLE>Print Command</TITLE>
7427 </HEAD>
7428 <BODY>
7429 <H1>Print Command</H1>
7431 The Print
7432 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
7433 command allows you to print a copy of a message.
7434 There are many SETUP CONFIGURATION features that affect the
7435 Print command, including
7436 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
7437 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
7438 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
7439 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
7440 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
7441 You set up for printing by using the Printer option of the Setup command
7442 on the MAIN MENU.
7446 &lt;End of help on this topic&gt;
7447 </BODY>
7448 </HTML>
7449 ======= h_common_take =======
7450 <HTML>
7451 <HEAD>
7452 <TITLE>TakeAddr Command</TITLE>
7453 </HEAD>
7454 <BODY>
7455 <H1>TakeAddr Command</H1>
7458 With the Take Address
7459 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
7460 command, you can extract email addresses from an
7461 incoming message and save them in an address book.  This is an easy way
7462 to add to your address book and avoid having to remember the email
7463 addresses of the people who write to you.
7466 If the message is just to you individually, then you will only need to
7467 provide a nickname.  If the message contains more than one email address,
7468 then you will see an address
7469 selection screen that lets you choose the address you want to save into
7470 your address book, or lets you choose several of them add to a
7471 personal distribution list.
7474 Once you've added an entry to your address book, you can use it from the
7475 message composer by typing the nickname of the entry into one of the
7476 header fields (for example, into the To: field), or you can use ^T from
7477 the header field to select the entry from your address book.
7480 If the configuration feature
7481 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
7482 is set, the behavior of the Take command is altered slightly.
7485 &lt;End of help on this topic&gt;
7486 </BODY>
7487 </HTML>
7488 ======= h_ge_import =======
7489 <HTML>
7490 <HEAD>
7491 <TITLE>Import File Selection</TITLE>
7492 </HEAD>
7493 <BODY>
7494 <H1>Import File Selection</H1>
7496 You are importing a file that you previously
7497 exported from Alpine.
7498 You are now being asked for the name of that file.
7499 The easiest way to select a file is probably with the &quot;^T&quot;
7500 &quot;To Files&quot; command.
7501 Alternatively, you may type in a file name.
7502 It may be an absolute pathname.
7503 Otherwise, it is a file located in your home directory
7504 or current working directory
7505 <!--chtml if pinemode="running"-->
7506 (which, at least for your current Alpine &quot;session,&quot; 
7507 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7508 <!--chtml endif-->, depending on the
7509 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7510 In any case, you finish by typing a carriage return to accept the
7511 file name that is displayed.
7512 When the feature
7513 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7514 is turned on you may use TAB to complete partially typed in names.
7516 You may cancel the import operation by typing &quot;^C&quot; after exiting
7517 this help.
7519 &lt;End of help on this topic&gt;
7520 </BODY>
7521 </HTML>
7522 ======= h_ge_allparts =======
7523 <HTML>
7524 <HEAD>
7525 <TITLE>Export Message File Selection</TITLE>
7526 </HEAD>
7527 <BODY>
7528 <H1>Export Message File Selection</H1>
7530 You are Exporting a message from an Alpine mail folder
7531 to a plain text file.
7532 You also have the option of exporting all of the attachments associated
7533 with the message.
7534 You are now being asked for the name of the file to export <EM>to</EM>.
7535 The easiest way to select a file is probably with the &quot;^T&quot;
7536 &quot;To Files&quot; subcommand.
7537 After returning from that subcommand you will still be allowed to
7538 edit the name you have selected.
7539 Alternatively, you may type in a file name.
7540 It may be an absolute pathname.
7541 Otherwise, it is a file located in your home directory
7542 or current working directory
7543 <!--chtml if pinemode="running"-->
7544 (which, at least for your current Alpine &quot;session,&quot; 
7545 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7546 <!--chtml endif-->, depending on the
7547 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7548 In any case, you finish by typing a carriage return to accept the
7549 file name that is displayed.
7550 When the feature
7551 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7552 is turned on you may use TAB to complete partially typed in names.
7554 The message you are exporting appears to have some attachments.
7555 If you wish to save <EM>all</EM> of the attachments at once,
7556 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7557 saving of the attachments.
7558 You may turn it back off by typing &quot;^P&quot; again, which will now
7559 be labeled &quot;NoAllParts&quot; instead.
7560 If you want to save the parts the command displayed should be
7561 &quot;NoAllParts&quot;!
7562 When you choose to save attachments like this, the attachments will be saved
7563 in a newly created directory.
7564 That directory will have the same name as the file name you choose here,
7565 with the letters &quot;.d&quot; appended.
7566 If that directory already exists, then the letters &quot;.d_1&quot; will
7567 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7568 is found.
7569 For example, if you select the file name
7571 <CENTER><SAMP>filename</SAMP></CENTER>
7573 to export the message to, then the directory used for the attachments will be
7575 <CENTER><SAMP>filename.d</SAMP></CENTER>
7577 or perhaps
7579 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7581 The attachments will then be put into files inside that directory.
7582 The names for the attachment files will be derived from the attachments
7583 if possible.
7584 This is done in the same way as the default values are derived if you
7585 save them one at a time.
7586 (The &quot;filename&quot; parameter from the Content-Disposition header
7587 is the first choice. If that doesn't exist, the &quot;name&quot;
7588 parameter from the Content-Type header is used.)
7589 If a name for a particular attachment is not available, then the
7590 part number of the attachment is used, with the characters &quot;part_&quot;
7591 prepended.
7592 An example of that would be
7594 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7596 If you want to save only some of the attachments or if you want more control
7597 over the directory and filename where an attachment is saved you may
7598 cancel out of this command and View the attachment list.
7599 From there you can save each attachment individually.
7601 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7602 this help.
7604 &lt;End of help on this topic&gt;
7605 </BODY>
7606 </HTML>
7607 ======= h_ge_export =======
7608 <HTML>
7609 <HEAD>
7610 <TITLE>Export File Selection</TITLE>
7611 </HEAD>
7612 <BODY>
7613 <H1>Export File Selection</H1>
7615 You are Exporting or Saving something from within the Alpine world
7616 (a message, an attachment, etc.)
7617 to a plain text file.
7618 You are now being asked for the name of the file to export <EM>to</EM>.
7619 The easiest way to select a file is probably with the &quot;^T&quot;
7620 &quot;To Files&quot; subcommand.
7621 After returning from that subcommand you will still be allowed to
7622 edit the name you have selected.
7623 Alternatively, you may type in a file name.
7624 It may be an absolute pathname.
7625 Otherwise, it is a file located in your home directory
7626 or current working directory
7627 <!--chtml if pinemode="running"-->
7628 (which, at least for your current Alpine &quot;session,&quot; 
7629 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7630 <!--chtml endif-->, depending on the
7631 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7632 In any case, you finish by typing a carriage return to accept the
7633 file name that is displayed.
7634 When the feature
7635 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7636 is turned on you may use TAB to complete partially typed in names.
7638 If the object you are exporting is a message with some attachments,
7639 you may wish to save all of the attachments by typing the &quot;^P&quot;
7640 &quot;AllParts&quot; command to turn on saving of the attachments.
7641 This subcommand will only be visible if the message actually has attachments.
7642 You may also View the attachment list and save individual attachments from
7643 there.
7645 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7646 the Control-R subcommand to toggle if saving will be done in binary mode,
7647 meaning that the attachment will be decoded, but will not be transformed
7648 to UTF-8 for further processing (either in internal filters, or user
7649 supplied filters.) This is useful in case you either want to preserve
7650 the text as it was encoded originally to you, or the attachment was
7651 incorrectly attached (the attachment is not of text type) and you need
7652 the original text to process the attachment.
7654 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7655 this help.
7657 &lt;End of help on this topic&gt;
7658 </BODY>
7659 </HTML>
7660 ======= h_common_save =======
7661 <HTML>
7662 <HEAD>
7663 <TITLE>Save and Export Commands</TITLE>
7664 </HEAD>
7665 <BODY>
7666 <H1>Save and Export Commands</H1>
7668 Save
7669 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7670 and Export
7671 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7672 are the two alternatives Alpine gives you to keep a copy of the message
7673 you are reading. If you want to keep the message within Alpine's email
7674 world, use &quot;Save&quot;; if you want to use the message in another
7675 program, use &quot;Export&quot;.
7678 When you Save a message, it is put into an existing folder or into a new
7679 folder in one of your existing folder collections.  The message stays in
7680 email format and can be read by Alpine again.  Alpine may use a special format
7681 for its mail folders -- never edit an Alpine folder by hand or with any
7682 program other than Alpine.  The exact behavior of the Save command can be
7683 configured with the
7684 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7685 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7686 and 
7687 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7688 feature list settings.
7689 The name of the folder offered as a default is controlled by the option
7690 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7693 When you use Export, the message is placed in a plain text file in your
7694 home directory 
7695 <!--chtml if pinemode="running"-->
7696 (which, in the present configuration of your system, is
7697  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7698 <!--chtml endif-->
7699 or current working directory
7700 <!--chtml if pinemode="running"-->
7701 (which, at least for your current Alpine &quot;session,&quot; 
7702 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7703 <!--chtml endif-->, depending on the
7704 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7705 configuration setting.  In the normal case, only minimal
7706 headers are exported with the message; however, if the full header mode 
7707 (whose availability may be disabled  by setting the feature 
7708 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7709 in SETUP CONFIGURATION) is
7710 toggled on, then complete headers are exported along with the message
7711 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7712 defined, they may affect the contents of the exported file.)
7715 &lt;End of help on this topic&gt;
7716 </BODY>
7717 </HTML>
7718 ======= h_common_bounce =======
7719 <HTML>
7720 <HEAD>
7721 <TITLE>Bounce Command</TITLE>
7722 </HEAD>
7723 <BODY>
7724 <H1>Bounce Command</H1>
7726 The Bounce 
7727 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7728 command allows you to re-send, or &quot;remail&quot;, a
7729 message, as if you were never in the loop.  It is analogous to crossing
7730 out your address on a postal letter, writing a different address on the
7731 envelope, and putting it into the mailbox. Bounce is used primarily to
7732 redirect email that was sent to you in error.
7733 Also, some owners of email
7734 lists need the bounce command to handle list traffic.
7735 Bounce is not anonymous.
7736 A ReSent-From header is added to the message so that the recipient may
7737 tell that you Bounced it to them.
7740 The presence or absence of the Bounce command is determined by the
7741 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7742 feature in your Alpine configuration.
7743 The feature
7744 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7745 affects the behavior of the Bounce command.
7746 Also, it is possible that Bounce could be
7747 administratively disabled by your system manager; if it doesn't work,
7748 please check with your local help desk before reporting a bug.
7751 &lt;End of help on this topic&gt;
7752 </BODY>
7753 </HTML>
7754 ======= h_common_reply =======
7755 <HTML>
7756 <HEAD>
7757 <TITLE>Reply and Forward Commands</TITLE>
7758 </HEAD>
7759 <BODY>
7761 <H1>Reply and Forward Commands</H1>
7763 Replying 
7764 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7765 and Forwarding 
7766 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7767 are your two alternatives for following up on the
7768 message you are reading.  You would use reply if you want to get email
7769 back to the author of the message and/or the other people who have
7770 already seen it.  You use forward if you want somebody new to see the
7771 message.
7774 In the normal case, the only thing that you must supply when forwarding a
7775 message is the name/email address of the new recipient.
7776 Alpine will include the text of the forwarded message.
7777 Alpine will also include any attachments to the message.
7778 There is space above the forwarded text for you to include additional comments.
7781 When replying, you usually have to answer some questions.
7782 If the message is to multiple people and/or specified with a Reply-To: header,
7783 then you will have to decide who should get the reply.
7784 You also need to decide whether or not to include the previous
7785 message in your reply.
7786 Some of this is configurable.
7787 Specifically, see the
7788 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7789 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7790 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7792 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7793 configuration features.
7796 Both the Reply and Forward commands react to the full header mode toggle.
7797 If the full header mode is on, then all the header and delivery lines are
7798 included with the text of the message in your reply/forward.
7801 Other configuration features that affect the Reply command are
7802 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7803 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7804 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7807 &lt;End of help on this topic&gt;
7808 </BODY>
7809 </HTML>
7810 ======= h_common_delete =======
7811 <HTML>
7812 <HEAD>
7813 <TITLE>Delete and Undelete Commands</TITLE>
7814 </HEAD>
7815 <BODY>
7816 <H1>Delete and Undelete Commands</H1>
7818 Delete 
7819 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7820 and Undelete 
7821 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7822 allow you to change the Deleted flag for the current message.
7823 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7824 removes the mark.
7825 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7826 at the left hand edge of the index line.
7827 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7828 in the upper right hand corner of the screen.
7829 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7830 get rid of the message.
7831 The eXpunge command (available from the MESSAGE INDEX screen) actually
7832 removes all of the deleted messages in a folder.
7833 Once a message is eXpunged, it can't be retrieved.
7836 The Delete command is affected by the setting of the configuration feature
7837 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7840 &lt;End of help on this topic&gt;
7841 </BODY>
7842 </HTML>
7843 ======= h_common_postpone =======
7844 <HTML>
7845 <HEAD>
7846 <TITLE>Postpone Command</TITLE>
7847 </HEAD>
7848 <BODY>
7849 <H1>Postpone Command</H1>
7851 The postpone
7852 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7853 command allows you to temporarily stop working on the current
7854 message so you may read
7855 other messages or compose another message.  When you want to resume a
7856 message later, start to compose and answer &quot;yes&quot; to the
7857 &quot;Continue postponed composition?&quot; question.  You may
7858 postpone as many messages as you like.
7861 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7862 in the Setup/Config screen, then the Postpone command will prompt you for
7863 the folder in which to store your outgoing message.
7866 &lt;End of help on this topic&gt;
7867 </BODY>
7868 </HTML>
7869 ======= h_compose_cancel =======
7870 <HTML>
7871 <HEAD>
7872 <TITLE>Cancel Command</TITLE>
7873 </HEAD>
7874 <BODY>
7875 <H1>Cancel Command</H1>
7877 Cancel
7878 <!--chtml if pinemode="function_key"-->
7879 (F2)
7880 <!--chtml else-->
7881 (^C) 
7882 <!--chtml endif-->
7884 The Cancel command returns you to Alpine's normal mail processing and
7885 causes the message currently under composition to be thrown out.
7886 The message text <EM>will be lost</EM>.
7889 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
7890 will be preserved in the file named
7891 <!--chtml if pinemode="os_windows"-->
7892 &quot;DEADLETR&quot;.
7893 <!--chtml else-->
7894 &quot;dead.letter&quot; in your home directory.
7895 <!--chtml endif-->
7896 If you unintentionally cancel a message, look there for its text.
7899 &lt;End of help on this topic&gt;
7900 </BODY>
7901 </HTML>
7902 ======= h_compose_addrcomplete =======
7903 <HTML>
7904 <HEAD>
7905 <TITLE>Address Completion</TITLE>
7906 </HEAD>
7907 <BODY>
7908 <H1>Address Completion</H1>
7910 When entering addresses in the address fields of the composer (To, Cc, etc.)
7911 the TAB key may be used to help complete the address.
7912 Type a partial nickname and tap the TAB key to complete the typing.
7913 The unambiguous part of the name will be filled in automatically.
7914 Typing TAB twice in succession will bring up a selection list of possibilities,
7915 making it easy to find and choose the correct address.
7918 The matching algorithm is rather ad hoc.
7919 The search starts with a search of your address book.
7920 It counts as a match if the nickname, address, or fullname field of an
7921 entry begins with the text typed in so far. It is also a match if
7922 a later word in the fullname (for example, the middle name or last name)
7923 begins with the entered text.
7925 Next comes an LDAP search.
7926 The search will happen for any servers that have the
7927 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7928 feature set. You can set or unset the feature for each server independently
7929 in the Setup/Directory screen.
7931 Finally, if you are replying to or forwarding a message, that message is
7932 searched for likely candidate addresses that match the typed-in text.
7935 &lt;End of help on this topic&gt;
7936 </BODY>
7937 </HTML>
7938 ======= h_compose_richhdr =======
7939 <HTML>
7940 <HEAD>
7941 <TITLE>Rich Header Command</TITLE>
7942 </HEAD>
7943 <BODY>
7944 <H1>Rich Header Command</H1>
7946 The Rich Header command allows you to toggle between the list of 
7947 all message headers available for editing and those that are most
7948 common.
7951 Use this toggle to expose headers that are not normally visible by
7952 default.
7953 This set usually includes the
7954 &quot;Bcc:&quot;,
7955 &quot;Fcc:&quot;,
7956 &quot;Lcc:&quot;,
7957 and &quot;Newsgroups&quot;
7958 headers.
7959 If you are posting to a newsgroup the set of defaults is a little different.
7960 Obviously, in that case, the Newsgroups header is of interest so is not
7961 hidden.
7962 For news posting the hidden set includes the
7963 &quot;To:&quot;,
7964 &quot;Cc:&quot;,
7965 &quot;Bcc:&quot;,
7966 &quot;Fcc:&quot;,
7967 and &quot;Lcc:&quot;
7968 headers.
7969 You won't normally want to edit these, which is why they are hidden,
7970 but it is sometimes useful to be able to set them manually.
7973 The default sets of headers listed above can be altered.
7974 Any header that you have added to the
7975 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7976 option, but not to the
7977 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7978 option will appear when you use the Rich Headers command to
7979 make the Rich Headers visible.
7980 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7981 even without toggling the Rich Headers command.)
7984 &lt;End of help on this topic&gt;
7985 </BODY>
7986 </HTML>
7987 ======= h_compose_send =======
7988 <HTML>
7989 <HEAD>
7990 <TITLE>Send Command</TITLE>
7991 </HEAD>
7992 <BODY>
7993 <H1>Send Command</H1>
7995 The Send command
7996 <!--chtml if pinemode="function_key"-->
7997 (F3)
7998 <!--chtml else-->
7999 (^X) 
8000 <!--chtml endif-->
8001 tells Alpine you are finished composing.
8002 Before actually sending it, though, Alpine will ask you to confirm 
8003 your intention, and, at the same time, redisplayed the message text
8004 with the recipients at the top of the screen to give you the opportunity
8005 to review and verify that the message is addressed to the people
8006 you intended.
8008 If the feature
8009 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
8010 then this confirmation prompt and any options it allows are skipped.
8013 This confirmation prompt may also offer, depending
8014 on your particular Setup/Config, options allowing you to set
8015 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
8016 include attachments in the &quot;Fcc&quot; (if you had previously
8017 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
8018 observe details of the
8019 <A HREF="h_config_verbose_post">message submission process</A>,
8020 choose the filter through which the
8021 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
8022 or turn of flowed text generation.
8025 &lt;End of help on this topic&gt;
8026 </BODY>
8027 </HTML>
8028 ======= h_compose_markcutpaste =======
8029 <HTML>
8030 <HEAD>
8031 <TITLE>Mark, Cut and Paste Commands</TITLE>
8032 </HEAD>
8033 <BODY>
8034 <H1>Mark, Cut and Paste Commands</H1>
8036 You can define a &quot;block&quot; of text, which can subsequently
8037  be deleted or
8038 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
8039 then moving the cursor to the end of the desired text block.  You can then
8040 &quot;cut&quot; the block out 
8041 <!--chtml if pinemode="function_key"-->
8042 &quot;F9&quot;,
8043 <!--chtml else-->
8044 &quot;Ctrl-K&quot;,
8045 <!--chtml endif-->
8046 move the cursor, and &quot;paste&quot; it
8047 <!--chtml if pinemode="function_key"-->
8048 &quot;F10&quot;,
8049 <!--chtml else-->
8050 &quot;Ctrl-U&quot;,
8051 <!--chtml endif-->
8052 in the new location.  Also, you can paste more than once, allowing you
8053 to use this feature to copy a block of text.<P>
8055 If you press 
8056 <!--chtml if pinemode="function_key"-->
8057 &quot;F9&quot;
8058 <!--chtml else-->
8059 &quot;^K&quot;
8060 <!--chtml endif-->
8061 without having marked anything, Alpine will delete
8062 a single line.  If you delete a group of lines together, Alpine keeps them
8063 in the same buffer, so 
8064 <!--chtml if pinemode="function_key"-->
8066 <!--chtml else-->
8068 <!--chtml endif-->
8069 will restore them as a block.  About
8070 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
8071 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
8072 &quot;type the character ^&quot;.
8075 &lt;End of help on this topic&gt;
8076 </BODY>
8077 </HTML>
8078 ======= h_compose_justify =======
8079 <HTML>
8080 <HEAD>
8081 <TITLE>Justify Command</TITLE>
8082 </HEAD>
8083 <BODY>
8084 <H1>Justify Command</H1>
8086 The Justify
8087 <!--chtml if pinemode="function_key"-->
8088 (F4)
8089 <!--chtml else-->
8090 (^J) 
8091 <!--chtml endif-->
8092 command reformats the text in the paragraph the cursor is in.
8093 Paragraphs are separated by one blank line or a line beginning with a space.
8094 This is useful when you have been editing a paragraph and the lines become
8095 uneven.  The text is left aligned or justified and the right is ragged.  If
8096 the text is already justified as typed with auto-wrap, no justification will
8097 be done.
8100 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
8101 block of text, the Justify command is modified.
8102 Instead of automatically justifying the current paragraph you will be
8103 asked if you want to justify the paragraph, justify the selected region,
8104 or adjust the quote level of the selected region.
8105 Adjusting the quote level only works if you are using standard
8106 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
8107 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
8110 When composing a reply containing included text, the justify command
8111 will reformat text to the right of the 
8112 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
8113 adding or removing indented lines as needed.  Paragraphs are separated
8114 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
8115 line containing the indent string and one or more blank spaces.
8116 Included text that was previously indented (or &quot;quoted&quot;) is
8117 not preserved.
8120 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
8121 in 1999 and its wide-spread adoption since then, you will usually be better off if you
8122 use the standard
8123 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
8126 &lt;End of help on this topic&gt;
8127 </BODY>
8128 </HTML>
8129 ======= h_compose_spell =======
8130 <HTML>
8131 <HEAD>
8132 <TITLE>Spell Check Command</TITLE>
8133 </HEAD>
8134 <BODY>
8135 <H1>Spell Check Command</H1>
8137 The &quot;To Spell&quot;
8138 <!--chtml if pinemode="function_key"-->
8139 (F12)
8140 <!--chtml else-->
8141 (^T) 
8142 <!--chtml endif-->
8143 command calls an external spell checking program to look over the
8144 message you are composing.  By default, Alpine uses
8146 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
8148 if it knows where to find &quot;aspell&quot;.
8149 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
8150 then the command used is
8152 <CENTER><SAMP>ispell -l</SAMP></CENTER>
8154 Otherwise, the ancient &quot;spell&quot; command is used.
8156 For PC-Alpine, you must install the aspell library code that you
8157 may get from
8158 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
8161 &lt;End of help on this topic&gt;
8162 </BODY>
8163 </HTML>
8164 ======= h_compose_alted =======
8165 <HTML>
8166 <HEAD>
8167 <TITLE>Alt Editor Command</TITLE>
8168 </HEAD>
8169 <BODY>
8170 <H1>Alt Editor Command</H1>
8172 The &quot;Alt Editor&quot; command's availability depends on the
8173 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
8176 When the variable specifies a valid editor on your system, this
8177 command will launch it with the current text of your message
8178 already filled in.
8181 &lt;End of help on this topic&gt;
8182 </BODY>
8183 </HTML>
8184 ======= h_compose_readfile =======
8185 <HTML>
8186 <HEAD>
8187 <TITLE>Read File Command</TITLE>
8188 </HEAD>
8189 <BODY>
8190 <H1>Read File Command</H1>
8192 The &quot;Read File&quot;
8193 <!--chtml if pinemode="function_key"-->
8194 (F5)
8195 <!--chtml else-->
8196 (^R) 
8197 <!--chtml endif-->
8198 command allows you to copy in text from an existing file. You will be
8199 prompted for the name of a file to be inserted into the message.  The file
8200 name is relative to your home directory 
8201 <!--chtml if pinemode="running"-->
8202 (which, in the present configuration of your system, is
8203  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
8204 <!--chtml endif-->
8205 or current working directory
8206 <!--chtml if pinemode="running"-->
8207 (which, at least for your current Alpine &quot;session,&quot; 
8208 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
8209 <!--chtml endif-->, depending on the
8210 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
8211 configuration setting; or, the file name must be specified as a full path name 
8212 <!--chtml if pinemode="os_windows"-->
8213 -- for example: &quot;A:&#92;PAPER.TXT&quot;
8214 <!--chtml else-->
8215 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
8216 <!--chtml endif-->
8217 (without the quotation marks).
8220 The file will be inserted where the cursor is located.  <B>The
8221 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
8222 Unix machine but have files on a PC or Mac, the files must be transferred
8223 to the system Alpine is running on before they can be read.  Please ask your
8224 local computer support people about the correct way to transfer a file to 
8225 your Alpine system.
8228 &lt;End of help on this topic&gt;
8229 </BODY>
8230 </HTML>
8231 ======= h_config_tray_icon =======
8232 <HTML>
8233 <HEAD>
8234 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
8235 </HEAD>
8236 <BODY>
8237 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
8239 PC-Alpine only.
8241 This option restores a behavior of previous versions of PC-Alpine.
8242 These
8243 versions, when started, installed a PC-Alpine icon in the notification 
8244 tray of Window's Taskbar.  The primary use of this icon was to indicate
8245 new mail arrival by turning red (while the Taskbar icon remained green).
8246 Additionally, the icon now changes to yellow to signify that a mail folder
8247 has been closed unexpectedly.
8250 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
8251 color its Taskbar entry's icon red (as well as the icon in the Window
8252 Title).  This feature is only provided for backwards compatibility.
8255 &lt;End of help on this topic&gt;
8256 </BODY>
8257 </HTML>
8258 ======= h_common_suspend =======
8259 <HTML>
8260 <HEAD>
8261 <TITLE>Suspend Command</TITLE>
8262 </HEAD>
8263 <BODY>
8264 <H1>Suspend Command</H1>
8266 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
8267 enabled, you can, at almost any time, temporarily halt your Alpine session,
8268 <!--chtml if pinemode="os_windows"-->
8269 minimizing it into an icon.
8270 <!--chtml else-->
8271 and return to your system prompt.
8272 <!--chtml endif-->
8275 &lt;End of help on this topic&gt;
8276 </BODY>
8277 </HTML>
8278 ======= h_pipe_command =======
8279 <HTML>
8280 <HEAD>
8281 <TITLE>Pipe Command SubOptions</TITLE>
8282 </HEAD>
8283 <BODY>
8284 <H1>Pipe Command SubOptions</H1>
8286 By default, when you use the Pipe command, the processed text of the
8287 message is sent to the Unix command
8288 you specify and the output is captured by Alpine and shown to you.
8289 (This command is available in PC-Alpine, as well, but there aren't many
8290 Windows commands that work well with piping.)
8291 There are some sub-commands that may be used to alter this behavior.
8292 These are toggles that switch the behavior between two possibilities.
8293 They can be combined in any way you wish.
8295 By default, the prompt at the bottom of the screen looks like
8297 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
8301 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
8303 if you are piping more than one message.
8305 The sub-command options are:
8306 <DL>
8307    <DT>Shown Text or Raw Text</DT>
8308    <DD>This option toggles between sending the shown (processed) text
8309 of the message to the Unix command, and sending the
8310 raw (unprocessed) text of the message to the Unix command.
8311 The default is to send the shown text.
8312 The raw version of the message will contain all of the headers and any
8313 MIME encoding that the message contains.
8314 If you've selected the Raw Text then the prompt will have the additional word
8315 &quot;RAW&quot; in it, like
8317 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
8319 You can experiment with this option by piping to something simple like the
8320 Unix &quot;cat&quot; command.
8321    </DD>
8322    <DT>Captured Output or Free Output</DT>
8323    <DD>This option toggles between having Alpine capture the output of
8324 the Unix pipe command for display, and not capturing it.
8325 If the command you are piping to is a filter that will produce output
8326 you want to view, then you want to capture that output
8327 for display (the default).
8328 If the Unix command doesn't produce output or handles the display itself,
8329 then you want free output.
8330 When you've selected the Free Output option the prompt will change to
8332 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
8334    </DD>
8335    <DT>No Delimiter or With Delimiter</DT>
8336    <DD>This option controls whether or not a Unix mailbox style delimiter
8337 will come before the text of the message.
8338 This is the delimiter used in the common Unix mailbox format.
8339 It's the single line that begins with the five characters
8340 &quot;From&quot; followed by a &lt;SPACE&gt; character.
8341 You'll usually only want to include this if the Unix command requires
8342 input in the format of a traditional Unix mailbox file.
8343 When you've selected the With Delimiter option the prompt will change to
8345 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
8347    </DD>
8348    <DT>To Same Pipe or To Individual Pipes</DT>
8349    <DD>This option only shows up if you are running an aggregate
8350 pipe command.
8351 That is, the command was Apply Pipe, not just Pipe.
8352 You have the option of piping all of the selected messages through a
8353 single pipe to a single instance of the Unix command,
8354 or piping each individual message through a separate pipe to separate
8355 instances of the Unix command.
8356 The default is that all of the output will go through a single pipe
8357 to a single instance of the command.
8358 You can try this option with a command like &quot;less&quot;, with Free
8359 Output enabled.
8360 When you've selected the Individual Pipes option the prompt will change to
8362 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
8364    </DD>
8365 </DL>
8368 As mentioned earlier, the options can be combined in any way you wish.
8369 You may leave them all off, turn them all on, or turn some of them on
8370 and some of them off.
8371 If you use the pipe command a second time in the same session the default
8372 options will be what you used the last time.
8375 &lt;End of help on this topic&gt;
8376 </BODY>
8377 </HTML>
8378 ========== h_emptydir_subfolder_name =========
8379 <HTML>
8380 <HEAD>
8381 <TITLE>ENTER SUBFOLDER NAME</TITLE>
8382 </HEAD>
8383 <BODY>
8384 <H1>Enter Subfolder Name</H1>
8386 <P> 
8387 This is the name of a new subfolder in the directory you are creating.
8388 Because empty directories are hidden and therefore not useful, you must also
8389 create a subfolder in the directory you are creating in order that the
8390 directory remains visible.
8392 Alternatively, you may turn off the configuration feature
8393 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
8394 so that empty directories remain visible.
8395 If you do that, you will not be required to create the subfolder when you
8396 create a directory.
8399 &lt;End of help on this topic&gt;
8400 </BODY>
8401 </HTML>
8402 ========== h_incoming_add_folder_name =========
8403 <HTML>
8404 <HEAD>
8405 <TITLE>ENTER FOLDER NAME</TITLE>
8406 </HEAD>
8407 <BODY>
8408 <H1>Enter Folder Name</H1>
8410 <P> 
8411 This is the name of the folder on the previously specified server.
8412 By default the folder name is interpreted as defining a section of your personal
8413 folder area.  This area and how you specify it are defined by the
8414 server, if one is specified.
8417 To define a folder outside the default area, prefix
8418 the path with the namespace to use when interpreting the
8419 given path.  If a namespace is specified, the folder name begins with the
8420 sharp (#) character followed by the name of the namespace
8421 and then the namespace's path-element-delimiter.  Aside from the
8422 name's format, namespaces can also imply access rights, content
8423 policy, audience, location, and, occasionally, access methods.
8426 Each server exports its own set (possibly of size one) of 
8427 namespaces.
8428 For a more detailed explanation read about
8429 <A HREF="h_folder_name_namespaces">Namespaces</A>.
8432 To specify the default for INBOX on the server you can usually just enter
8433 &quot;INBOX&quot;, and the server will understand the special meaning of
8434 that word.
8437 &lt;End of help on this topic&gt;
8438 </BODY>
8439 </HTML>
8440 ========== h_incoming_add_folder_host =========
8441 <HTML>
8442 <HEAD>
8443 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
8444 </HEAD>
8445 <BODY>
8446 <H1>Enter Incoming Folder Server</H1>
8448 You are being asked for the name of the server for use with this incoming
8449 folder.
8450 If the folder is on the machine where Alpine is running, then just enter
8451 RETURN without typing a server name.
8454 If the folder is on an IMAP server then type the server's name followed
8455 by RETURN.
8456 You may use the ^X command if the server is the same as the server that
8457 the INBOX is on.
8460 You may have to add optional extra information to the server name.
8461 For example, if the IMAP server is using a non-standard port number you
8462 would specify that by appending a colon (:) followed by the port number
8463 to the server name
8466 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8469 or you may need to specify a different protocol if the server is not an
8470 IMAP server. For example:
8473 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8476 for a POP server or
8479 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8482 for an NNTP news server.
8483 For an explanation of all of the possibilities, see
8484 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8485 for folders.
8488 There is a special command (^W) if you want to set up a folder that gets its
8489 mail from a
8490 <A HREF="h_maildrop">Mail Drop</A>.
8491 If you type that command, you will be prompted for the information for
8492 both the Mail Drop folder and the destination folder.
8495 &lt;End of help on this topic&gt;
8496 </BODY>
8497 </HTML>
8498 ========== h_incoming_add_inbox =========
8499 <HTML>
8500 <HEAD>
8501 <TITLE>ENTER INBOX SERVER</TITLE>
8502 </HEAD>
8503 <BODY>
8504 <H1>Enter INBOX Server</H1>
8506 You are being asked for the name of the server for use with
8507 the INBOX folder.
8508 Type the server's name followed by RETURN.
8511 You may have to add optional extra information to the server name.
8512 For example, if the server is using a non-standard port number you
8513 would specify that by appending a colon (:) followed by the port number
8514 to the server name
8517 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8520 or you may need to specify a different protocol if the server is not an
8521 IMAP server. For example:
8524 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8527 for a POP server.
8530 For an explanation of all of the possibilities, see
8531 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8532 for folders.
8535 If the INBOX folder is on the machine where Alpine is running, then just enter
8536 RETURN without typing a server name.
8539 There is a special command (^W) if you want to set up a folder that gets its
8540 mail from a
8541 <A HREF="h_maildrop">Mail Drop</A>.
8542 If you type that command, you will be prompted for the information for
8543 both the Mail Drop folder and the destination folder, which will be used
8544 as your INBOX folder.
8547 &lt;End of help on this topic&gt;
8548 </BODY>
8549 </HTML>
8550 ========== h_incoming_add_maildrop_destn =========
8551 <HTML>
8552 <HEAD>
8553 <TITLE>ENTER DESTINATION SERVER</TITLE>
8554 </HEAD>
8555 <BODY>
8556 <H1>Enter Destination Server</H1>
8558 You are being asked for the name of the server where the destination
8559 folder is for use with this Mail Drop incoming folder.
8560 That is, you are using a Mail Drop for this incoming folder and
8561 you've already entered
8562 the server and folder name for the Mail Drop.
8563 Now you need to enter the server for the destination folder
8564 where the mail should be copied to.
8565 Mail will come from the Mail Drop and be copied to the destination folder.
8568 Type the server's name followed by RETURN.
8569 If the folder is local to this computer, just type RETURN without entering
8570 a server name.
8573 You may have to add optional extra information to the server name.
8574 For example, if the server is using a non-standard port number you
8575 would specify that by appending a colon (:) followed by the port number
8576 to the server name
8579 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8582 For an explanation of all of the possibilities, see
8583 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8584 for folders.
8587 &lt;End of help on this topic&gt;
8588 </BODY>
8589 </HTML>
8590 ========== h_inbox_add_maildrop_destn =========
8591 <HTML>
8592 <HEAD>
8593 <TITLE>ENTER DESTINATION SERVER</TITLE>
8594 </HEAD>
8595 <BODY>
8596 <H1>Enter Destination Server</H1>
8598 You are being asked for the name of the server where the destination
8599 folder is for use with your Mail Drop INBOX.
8600 That is, you are using a Mail Drop for your INBOX and you've already entered
8601 the server and folder name for the Mail Drop.
8602 Now you need to enter the server for the destination folder
8603 where the mail should be copied to.
8604 Mail will come from the Mail Drop and be copied to the destination folder.
8607 Type the server's name followed by RETURN.
8608 If the folder is local to this computer, just type RETURN without entering
8609 a server name.
8612 You may have to add optional extra information to the server name.
8613 For example, if the server is using a non-standard port number you
8614 would specify that by appending a colon (:) followed by the port number
8615 to the server name
8618 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8621 For an explanation of all of the possibilities, see
8622 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8623 for folders.
8626 &lt;End of help on this topic&gt;
8627 </BODY>
8628 </HTML>
8629 ========== h_inbox_add_maildrop =========
8630 <HTML>
8631 <HEAD>
8632 <TITLE>ENTER MAILDROP SERVER</TITLE>
8633 </HEAD>
8634 <BODY>
8635 <H1>Enter Mail Drop Server</H1>
8637 You are being asked for the name of the Mail Drop server for use with
8638 your INBOX.
8641 Type the server's name followed by RETURN.
8644 You may have to add optional extra information to the server name.
8645 For example, if the server is using a non-standard port number you
8646 would specify that by appending a colon (:) followed by the port number
8647 to the server name
8650 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8653 or you may need to specify a different protocol if the server is not an
8654 IMAP server. For example:
8657 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8660 for a POP server or
8663 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8666 for an NNTP news server.
8667 For an explanation of all of the possibilities, see
8668 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8669 for folders.
8672 &lt;End of help on this topic&gt;
8673 </BODY>
8674 </HTML>
8675 ========== h_incoming_add_maildrop =========
8676 <HTML>
8677 <HEAD>
8678 <TITLE>ENTER MAILDROP SERVER</TITLE>
8679 </HEAD>
8680 <BODY>
8681 <H1>Enter Mail Drop Server</H1>
8683 You are being asked for the name of the Mail Drop server for use with
8684 this incoming folder.
8687 Type the server's name followed by RETURN.
8688 You may use the ^X command if the server is the same as the server that
8689 the INBOX is on.
8692 You may have to add optional extra information to the server name.
8693 For example, if the server is using a non-standard port number you
8694 would specify that by appending a colon (:) followed by the port number
8695 to the server name
8698 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8701 or you may need to specify a different protocol if the server is not an
8702 IMAP server. For example:
8705 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8708 for a POP server or
8711 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8714 for an NNTP news server.
8715 For an explanation of all of the possibilities, see
8716 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8717 for folders.
8720 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8721 RETURN without typing a server name.
8724 &lt;End of help on this topic&gt;
8725 </BODY>
8726 </HTML>
8727 ========== h_maildrop =========
8728 <HTML>
8729 <HEAD>
8730 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8731 </HEAD>
8732 <BODY>
8733 <H1>What is a Mail Drop?</H1>
8735 In some situaions it may make sense to have your mail delivered to one
8736 folder (the Mail Drop) and then when you want to read mail that has been
8737 delivered to the Mail Drop folder Alpine will move it to another
8738 destination folder.
8739 Often the Mail Drop will be a remote folder and messages will be moved from
8740 there to a local destination folder.
8743 One example where this might make sense is if the Mail Drop folder is accessible
8744 only with the POP protocol.
8745 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8746 mail from there to a local (on the same machine Alpine is running on)
8747 destination folder, where you'll read it.
8750 A Mail Drop may only be used as your Inbox or as an
8751 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8754 There is no attempt to synchronize the contents of the destination folder
8755 with the contents of the Mail Drop folder.
8756 All that happens is that all of the messages in the Mail Drop folder are
8757 copied to the destination folder and then they are deleted and expunged (if possible)
8758 from the Mail Drop folder.
8759 The next time a check for new mail is made, any messages in the Mail 
8760 Drop folder are once again copied to the destination folder and deleted
8761 and expunged from the Mail Drop folder.
8762 (If the Mail Drop folder is a news group, then the messages can't be
8763 expunged from the newsgroup. Instead, only Recent messages are copied from
8764 the newsgroup to the destination folder.)
8767 Configuration of a Mail Drop is a little different from configuration of
8768 a folder that does not use a Mail Drop because you have to specify two
8769 folder names instead of one.
8770 The two folders may be any types of folders that Alpine can normally use.
8771 They don't have to be a remote folder and a local folder, that is
8772 simply the most common usage.
8773 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8774 Drop to check for new mail.
8775 The new-mail checks will happen at the frequency set with the
8776 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8777 but with a minimum time
8778 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8779 between checks.
8780 Because of this minimum you may notice that new mail does not
8781 appear promptly when you expect it.
8782 The reason for this is to protect the server from over-zealous opening and
8783 closing of the Mail Drop folder.
8784 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8785 the end of the folder index, then the check will happen, regardless of how
8786 long it has been since the previous check.
8788 If there is new mail, that mail will be copied to the destination folder
8789 and then will be deleted from the Mail Drop.
8790 Note that using a Mail Drop with a local destination folder does not make
8791 sense if you read mail from more than one machine, because the mail is
8792 downloaded to the destination folder (which is accessible from only one
8793 machine) and deleted from the Mail Drop.
8795 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8798 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8801 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8803 The brackets are not literal.
8805 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8807 is a single character that does not appear in the MailDropFolder name.
8808 If the name doesn't contain spaces then it can be a space character.
8809 The two folder names are full technical
8810 <A HREF="h_valid_folder_names">folder names</A>
8811 as used by Alpine.
8812 Here are a couple examples to give you an idea what is being talked about:
8815 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8817 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8820 A #move folder may only be used as an
8821 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8822 an Inbox.
8823 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8824 on the
8825 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8826 option)
8827 the Add command has a subcommand &quot;Use Mail Drop&quot;
8828 which may be helpful for defining the folder in your Alpine configuration.
8829 The same is true when you edit the
8830 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8831 option in Setup/Config.
8832 Each of these configuration methods will also create the DestinationFolder
8833 if it doesn't already exist.
8834 If you are having problems, make sure the DestinationFolder exists.
8837 &lt;End of help on this topic&gt;
8838 </BODY>
8839 </HTML>
8840 ========== h_save =========
8841 <HTML>
8842 <HEAD>
8843 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8844 </HEAD>
8845 <BODY>
8846 <H1>Choose a Folder to Save Into</H1>
8848 After Exiting from this help text,
8849 type the name of the folder you want to save into and press RETURN.
8851 Press ^T to get a list of your folders to choose from.
8852 Press ^C to cancel the Save.
8854 If you have Folder Collections defined you may use
8855 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8856 the collection being saved to.
8858 If Tab Completion is enabled (it is enabled by default)
8859 you may type a Tab character to have Alpine complete the folder name for you.
8861 If Partial Match Lists is enabled (it is enabled by default) you may type
8862 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8864 If the Ctrl-R subcommand is present that means you can decide to Delete or
8865 not Delete the message you are saving after you save it.
8866 The label on that key gives the action to switch to.
8867 If it says Delete and you type Ctrl-R the label displayed will change to
8868 No Delete and the source message will be deleted after the save. If it
8869 says No Delete and you type Ctrl-R the label displayed will change to
8870 Delete and the message will not be deleted.
8871 You can control the default for the Delete parameter with the
8872 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8874 Similarly, if the Ctrl-W subcommand is present that means you can decide
8875 to Preserve the order of the messages being saved or not.
8876 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8877 will be in the same order as you see them in the source folder now.
8878 The opposite action (which is usually the default) is that you don't care
8879 about the order.
8880 The Saved messages may or may not be in the same order in the destination folder.
8881 There may be a performance penalty for choosing to save the messages in order.
8882 You can control the default for the Preserve Order parameter with the
8883 configuration feature
8884 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8887 If you haven't disabled the Save Input History and you've already done a
8888 Save earlier in this session then you may use the Up and Down arrows to retrieve
8889 a folder name used in a previous Save.
8892 &lt;End of help on this topic&gt;
8893 </BODY>
8894 </HTML>
8895 ============= h_simple_index ========================
8896 <HTML>
8897 <HEAD>
8898 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8899 </HEAD>
8900 <BODY>
8901 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8902 <!--chtml if pinemode="function_key"-->
8903 <PRE>
8904 Navigating the List of Messages               General Alpine Commands
8905 -------------------------------               -----------------------
8906  F5   Move to previous message                 F1   Show this help text
8907  F6   Move to next message
8908  F7   Show previous screen of messages
8909  F8   Show next screen of messages
8911 Message Selection Commands
8912 --------------------------
8913  F3   Exit the Message Select menu (canceling Send command)
8914  F4   Select the currently highlighted message
8915  F9   Mark the currently highlighted message as deleted
8916  F10  Undelete (remove deletion mark from) the highlighted message
8917 </PRE>
8918 <!--chtml else-->
8919 <PRE>
8920 Navigating the List of Messages               General Alpine Commands
8921 -------------------------------               -----------------------
8922   P  Move to previous message                  ?  Show this help text
8923   N  Move to next message
8924   -  Show previous screen of messages
8925  Spc (space bar) Show next screen of messages
8927 Message Selection Commands
8928 --------------------------
8929   E  Exit the Message Select menu (canceling Send command)
8930   S  Select the currently highlighted message
8931   D  Mark the currently highlighted message as deleted
8932   U  Undelete (remove deletion mark from) the highlighted message
8933 </PRE>
8934 <!--chtml endif-->
8936 <H2>Description of the Select Postponed Message Screen</H2>
8938 This screen allows you to select one of several previously postponed
8939 messages in order to continue composition.  Your options are very limited
8940 -- the screen is not meant to let you manipulate these messages.  However,
8941 you may now delete messages from this list.  Once you choose a message,
8942 Alpine reads it in and puts you into the regular message composer.
8945 Messages do not stay in this postponed state automatically.  If you select
8946 a message and then want to postpone it again, use the normal postpone
8947 (Ctrl-O) command in the composer.
8950 If you exit this screen without selecting a message, the Compose command
8951 that got you here is canceled.  Other than messages explicitly marked
8952 &quot;Deleted&quot;, no messages will be removed.
8955 &lt;End of help on this topic&gt;
8956 </BODY>
8957 </HTML>
8958 ============= h_collection_screen ========================
8959 <HTML>
8960 <HEAD>
8961 <TITLE>COLLECTION LIST screen</TITLE>
8962 </HEAD>
8963 <BODY>
8964 <H1>COLLECTION LIST screen</H1>
8966 The COLLECTION LIST screen is used to select one of your  
8967 collection definitions to display the folders they contain.  See
8968 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8969 detailed explanation of collections.<P>
8971 To manage your collection definitions (Add, Change, Delete, etc.), use
8972 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8973 MAIN MENU.
8976 &lt;End of help on this topic&gt;
8977 </BODY>
8978 </HTML>
8979 ============= h_collection_maint ========================
8980 <HTML>
8981 <HEAD>
8982 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8983 </HEAD>
8984 <BODY>
8985 <H1>SETUP COLLECTION LIST screen</H1>
8987 The SETUP COLLECTION LIST screen lets you manage your collection
8988 definitions.  See 
8989 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8990 for detailed explanation of collections.<P>
8992 Maintenance commands include:
8993 <DL>
8994 <DT>Change
8995 <!--chtml if pinemode="function_key"-->
8996 (F4)
8997 <!--chtml else-->
8999 <!--chtml endif-->
9000 </DT>
9002 <DD>Modify attributes of the selected collection definition.
9004 <DT>Add Cltn
9005 <!--chtml if pinemode="function_key"-->
9006 (F9)
9007 <!--chtml else-->
9009 <!--chtml endif-->
9010 </DT>
9012 <DD>Create a new collection definition.
9013 </DD>
9015 <DT>Del Cltn
9016 <!--chtml if pinemode="function_key"-->
9017 (F10)
9018 <!--chtml else-->
9020 <!--chtml endif-->
9021 </DT>
9023 <DD>Delete the selected collection definition.<BR>
9024 NOTE: The folders and directories referred to by the
9025 collection definition are <EM>NOT</EM> deleted.  Folders must
9026 be deleted, if that's what you wish to do, from the 
9027 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
9028 individual folders in a collection.
9029 </DD>
9031 <DT>Shuffle
9032 <!--chtml if pinemode="function_key"-->
9033 (F11)
9034 <!--chtml else-->
9036 <!--chtml endif-->
9037 </DT>
9039 <DD>Change the order of the displayed collections.  Alpine will offer
9040 to move the currently selected collection one position UP
9041 or DOWN.
9042 </DD>
9043 </DL>
9046 &lt;End of help on this topic&gt;
9047 </BODY>
9048 </HTML>
9049 ============ h_what_are_collections ==========
9050 <HTML>
9051 <HEAD>
9052 <TITLE>Folder Collections Explained</TITLE>
9053 </HEAD>
9054 <BODY>
9055 <H1>Folder Collections Explained</H1>
9058 Those of you with simple mail configurations will just see a list of all the
9059 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
9060 The special folders for INBOX, sent mail and saved messages
9061 will appear at the top of the list.  All others are in alphabetical order.
9063 If you
9064 or your system administrator have defined more than one collection or if
9065 you have a collection (for newsgroups or email folders) defined on your 
9066 system, then you will see the COLLECTION LIST screen first when choosing 
9067 FOLDER LIST from Alpine's MAIN MENU.
9069 <H2>Why have multiple folder collections?</H2>
9071 For Alpine users who only maintain email folders (and not too many) on one host, 
9072 a single folder collection is probably sufficient.<P>
9074 However, people who have more than one email account - for example, one 
9075 at their university, and one with their personal Internet Service Provider - 
9076 will have different sets of folders on different hosts, and they may want to
9077 access them all from the same installation of Alpine, rather than use different 
9078 software and/or log into other hosts to manipulate messages in different 
9079 accounts.  (If in doubt whether one of your email accounts can be accessed 
9080 with Alpine, contact the technical support people for that account.)  Even people
9081 who have only one email account on one host, but have dozens or
9082 hundreds of email folders, may want to arrange these folders together in a 
9083 meaningful way.<BR>
9084 That is where multiple collections come in.
9086 <H2>Types of Collections</H2>
9087 <DL>
9088 <DT>INCOMING FOLDERS</DT>
9089 <DD>&quot;Incoming Message Folders&quot; 
9090 is a special collection typically used to supplement your single INBOX.  
9091 All the folders here are meant to be ones that receive incoming messages, 
9092 which you intend to check more or less frequently.  
9093 You may have multiple folders like this because you or your systems 
9094 administrator have set up an external program or you may have set up
9095 Alpine to filter incoming 
9096 messages into different folders, based on certain criteria such as 
9097 sender, recipient, or subject; or because you have multiple accounts and 
9098 wish to check their INBOXes easily.  This collection is established by 
9099 setting the 
9100 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
9101 feature in the SETUP CONFIGURATION screen, which is accessed from the 
9102 MAIN MENU.
9103 </DD>
9105 <DT>NEWS</DT>
9106 <DD>You can also define a collection specifically for
9107 newsgroups.  Alpine does this for you implicitly when you 
9108 <A HREF="h_config_nntp_server">define an NNTP Server</A>
9109 in your Alpine configuration.  The news collection appears last in the 
9110 COLLECTION LIST (though you can shuffle it up in the order of presentation),
9111 and Alpine knows not to save messages there.
9112 </DD>
9114 <DT>DEFAULT COLLECTION</DT>
9115 <DD>This is the default collection for your saved and sent messages folders.
9116 </DD>
9117 </DL>
9121 <H2>Defining Collections</H2>
9123 In the absence of any folder-collection definitions, Alpine will assume a
9124 single default folder collection.
9125 <!--chtml if pinemode="os_windows"-->
9126 <!--chtml else-->
9127 If necessary, Alpine will create the directory
9128 &quot;mail&quot; in your Unix home directory 
9129 to hold your folders.
9130 <!--chtml endif-->
9132 You can use the 
9133 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
9134 the MAIN MENU, to manage your collection list.  
9136 &lt;End of help on this topic&gt;
9137 </BODY>
9138 </HTML>
9139 ===== h_select_address_screen =====
9140 <HTML>
9141 <HEAD>
9142 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
9143 </HEAD>
9144 <BODY>
9145 <H1>SELECT AN ADDRESS SCREEN</H1>
9146 <H2>COMMANDS</H2>
9147 <!--chtml if pinemode="function_key"-->
9148 <PRE>
9149 Available  Commands                        
9150 -------------------------------            
9151 F1  Show Help Text
9152 F3  Exit without selecting anything
9153 F4  Select the highlighted address
9154 F5  Move highlight to previous address
9155 F6  Move highlight to next address
9156 F7  Previous page of addresses
9157 F8  Next page of addresses
9158 F11 Print
9159 F12 WhereIs
9160 </PRE>
9161 <!--chtml else-->
9162 <PRE>
9163 Navigation                     General Alpine Commands
9164 -------------------------      -----------------------
9165  P  Prev Address                ?  Display this help text
9166  N  Next Address                E  Exit without selecting anything
9167  -  Previous page               %  Print
9168 Spc (space bar) Next page
9169  W  WhereIs
9171 Select Command
9172 ------------------------------------------------
9173  S  Select the highlighted address
9174 </PRE>
9175 <!--chtml endif-->
9177 <H2>Description of the Select Address Screen</H2>
9179 This screen gives you an easy way to select an address from all of
9180 the address book entries that match the prefix typed so far.
9182 <P><UL>
9183 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9184 </UL>
9186 &lt;End of help on this topic&gt;
9187 </BODY>
9188 </HTML>
9189 ===== h_select_rule_screen =====
9190 <HTML>
9191 <HEAD>
9192 <TITLE>SELECT A RULE SCREEN</TITLE>
9193 </HEAD>
9194 <BODY>
9195 <H1>SELECT A RULE SCREEN</H1>
9196 <H2>COMMANDS</H2>
9197 <!--chtml if pinemode="function_key"-->
9198 <PRE>
9199 Available  Commands                        
9200 -------------------------------            
9201 F1  Show Help Text
9202 F3  Exit without selecting anything
9203 F4  Select the highlighted rule
9204 F5  Move highlight to previous rule
9205 F6  Move highlight to next rule
9206 F7  Previous page of rules
9207 F8  Next page of rules
9208 F11 Print
9209 F12 WhereIs
9210 </PRE>
9211 <!--chtml else-->
9212 <PRE>
9213 Navigation                     General Alpine Commands
9214 -------------------------      -----------------------
9215  P  Prev Rule                   ?  Display this help text
9216  N  Next Rule                   E  Exit without selecting anything
9217  -  Previous page               %  Print
9218 Spc (space bar) Next page
9219  W  WhereIs
9221 Select Command
9222 ------------------------------------------------
9223  S  Select the highlighted rule
9224 </PRE>
9225 <!--chtml endif-->
9227 <H2>Description of the Select Rule Screen</H2>
9229 This screen just gives you an easy way to select a rule from all of your
9230 defined rules.
9231 The list of rules presented is the list of nicknames of all of the rules
9232 defined using Setup/Rules.
9233 For selecting messages, it is likely that the Indexcolor rules and possibly
9234 the Roles rules will be most useful.
9235 The others are there also, in case you find a use for them.
9237 In order for this to be useful for selecting messages, the nicknames of
9238 the rules have to be different.
9239 Alpine actually just gets the nickname of the rule that you select and then
9240 looks up that rule using the nickname.
9241 So if there are duplicate nicknames, the first rule that has that
9242 nickname will be used.
9244 <P><UL>
9245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9246 </UL>
9248 &lt;End of help on this topic&gt;
9249 </BODY>
9250 </HTML>
9251 ===== h_select_priority_screen =====
9252 <HTML>
9253 <HEAD>
9254 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
9255 </HEAD>
9256 <BODY>
9257 <H1>SELECT A PRIORITY SCREEN</H1>
9258 <H2>COMMANDS</H2>
9259 <!--chtml if pinemode="function_key"-->
9260 <PRE>
9261 Available  Commands                        
9262 -------------------------------            
9263 F1  Show Help Text
9264 F3  Exit without selecting anything
9265 F4  Select the highlighted priority
9266 F5  Move highlight to previous priority
9267 F6  Move highlight to next priority
9268 F7  Previous page of priorities
9269 F8  Next page of priorities
9270 F11 Print
9271 F12 WhereIs
9272 </PRE>
9273 <!--chtml else-->
9274 <PRE>
9275 Navigation                     General Alpine Commands
9276 -------------------------      -----------------------
9277  P  Prev Priority               ?  Display this help text
9278  N  Next Priority               E  Exit without selecting anything
9279  -  Previous page               %  Print
9280 Spc (space bar) Next page
9281  W  WhereIs
9283 Select Command
9284 ------------------------------------------------
9285  S  Select the highlighted priority
9286 </PRE>
9287 <!--chtml endif-->
9289 <H2>Description of the Select Priority Screen</H2>
9291 This screen gives you a way to select a priority for the message you are sending.
9292 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
9293 Some mail programs will display an indication of the priority level to
9294 the recipient of the message, some will ignore it.
9295 Even in cases where the mail programs of both the sender and the recipient
9296 agree on the meaning of this header, keep in mind that it is
9297 something that the sender sets so it is only an indication
9298 of the priority that the sender attaches to the mail.
9299 Alpine can be made to display an indication of this priority in incoming
9300 messages by use of one of the tokens
9301 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
9302 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
9303 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
9305 <P><UL>
9306 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9307 </UL>
9309 &lt;End of help on this topic&gt;
9310 </BODY>
9311 </HTML>
9312 ===== h_select_keyword_screen =====
9313 <HTML>
9314 <HEAD>
9315 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
9316 </HEAD>
9317 <BODY>
9318 <H1>SELECT A KEYWORD SCREEN</H1>
9319 <H2>COMMANDS</H2>
9320 <!--chtml if pinemode="function_key"-->
9321 <PRE>
9322 Available  Commands                        
9323 -------------------------------            
9324 F1  Show Help Text
9325 F3  Exit without selecting anything
9326 F4  Select the highlighted keyword
9327 F5  Move highlight to previous keyword
9328 F6  Move highlight to next keyword
9329 F7  Previous page of keywords
9330 F8  Next page of keywords
9331 F11 Print
9332 F12 WhereIs
9333 </PRE>
9334 <!--chtml else-->
9335 <PRE>
9336 Navigation                     General Alpine Commands
9337 -------------------------      -----------------------
9338  P  Prev Keyword                ?  Display this help text
9339  N  Next Keyword                E  Exit without selecting anything
9340  -  Previous page               %  Print
9341 Spc (space bar) Next page
9342  W  WhereIs
9344 Select Command
9345 ------------------------------------------------
9346  S  Select the highlighted keyword
9347 </PRE>
9348 <!--chtml endif-->
9350 <H2>Description of the Select Keyword Screen</H2>
9352 This screen just gives you an easy way to select a keyword.
9353 The list of keywords presented is the list of all keywords defined in your 
9354 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9355 If you have given a keyword a nickname, that nickname is displayed
9356 instead of the actual keyword.
9358 <P><UL>
9359 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9360 </UL>
9362 &lt;End of help on this topic&gt;
9363 </BODY>
9364 </HTML>
9365 ===== h_select_charset_screen =====
9366 <HTML>
9367 <HEAD>
9368 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
9369 </HEAD>
9370 <BODY>
9371 <H1>SELECT A CHARACTER SET SCREEN</H1>
9372 <H2>COMMANDS</H2>
9373 <!--chtml if pinemode="function_key"-->
9374 <PRE>
9375 Available  Commands                        
9376 -------------------------------            
9377 F1  Show Help Text
9378 F3  Exit without selecting anything
9379 F4  Select the highlighted character set
9380 F5  Move highlight to previous character set
9381 F6  Move highlight to next character set
9382 F7  Previous page of character sets
9383 F8  Next page of character sets
9384 F11 Print
9385 F12 WhereIs
9386 </PRE>
9387 <!--chtml else-->
9388 <PRE>
9389 Navigation                     General Alpine Commands
9390 -------------------------      -----------------------
9391  P  Prev Character Set          ?  Display this help text
9392  N  Next Character Set          E  Exit without selecting anything
9393  -  Previous page               %  Print
9394 Spc (space bar) Next page
9395  W  WhereIs
9397 Select Command
9398 ------------------------------------------------
9399  S  Select the highlighted character set
9400 </PRE>
9401 <!--chtml endif-->
9403 <H2>Description of the Select A Character Set Screen</H2>
9405 This screen just gives you an easy way to select a character set from the
9406 set of character sets Alpine knows about.
9407 The list presented will vary slightly depending on what option you are
9408 selecting the character set for.
9410 <P><UL>
9411 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9412 </UL>
9414 &lt;End of help on this topic&gt;
9415 </BODY>
9416 </HTML>
9417 ===== h_select_multcharsets_screen =====
9418 <HTML>
9419 <HEAD>
9420 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
9421 </HEAD>
9422 <BODY>
9423 <H1>SELECT CHARACTER SETS SCREEN</H1>
9424 <H2>COMMANDS</H2>
9425 <!--chtml if pinemode="function_key"-->
9426 <PRE>
9427 Available  Commands
9428 -------------------------------            
9429 F1  Show Help Text
9430 F3  Exit without selecting anything
9431 F4  Select the highlighted charset (or chosen charsets in ListMode)
9432 F5  Move highlight to previous charset
9433 F6  Move highlight to next charset
9434 F7  Previous page of charsets
9435 F8  Next page of charsets
9436 F9  Toggle choices when using ListMode
9437 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
9438 F11 Print
9439 F12 WhereIs
9440 </PRE>
9441 <!--chtml else-->
9442 <PRE>
9443 Navigation                     General Alpine Commands
9444 -------------------------      -----------------------
9445  P  Prev Charset                ?  Display this help text
9446  N  Next Charset                E  Exit without selecting anything
9447  -  Previous page               %  Print
9448 Spc (space bar) Next page
9449  W  WhereIs
9451 Select Command
9452 ------------------------------------------------
9453  S  Select the highlighted charset (or chosen charsets in ListMode)
9454  L  Turn on ListMode (makes it easy to choose multiple charsets)
9455  1  Turn off ListMode
9456  X  Toggle choices when using ListMode
9457 </PRE>
9458 <!--chtml endif-->
9460 <H2>Description of the Select Character Set Screen</H2>
9462 This screen just gives you an easy way to select a character set or a list of
9463 character sets.
9464 The list of character sets presented is the list of all character sets known to
9465 Alpine.
9466 You may select other character sets by typing them in directly.
9468 <P><UL>
9469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9470 </UL>
9472 &lt;End of help on this topic&gt;
9473 </BODY>
9474 </HTML>
9475 ===== h_select_multkeyword_screen =====
9476 <HTML>
9477 <HEAD>
9478 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
9479 </HEAD>
9480 <BODY>
9481 <H1>SELECT KEYWORDS SCREEN</H1>
9482 <H2>COMMANDS</H2>
9483 <!--chtml if pinemode="function_key"-->
9484 <PRE>
9485 Available  Commands
9486 -------------------------------            
9487 F1  Show Help Text
9488 F3  Exit without selecting anything
9489 F4  Select the highlighted keyword (or chosen keywords in ListMode)
9490 F5  Move highlight to previous keyword
9491 F6  Move highlight to next keyword
9492 F7  Previous page of keywords
9493 F8  Next page of keywords
9494 F9  Toggle choices when using ListMode
9495 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
9496 F11 Print
9497 F12 WhereIs
9498 </PRE>
9499 <!--chtml else-->
9500 <PRE>
9501 Navigation                     General Alpine Commands
9502 -------------------------      -----------------------
9503  P  Prev Keyword                ?  Display this help text
9504  N  Next Keyword                E  Exit without selecting anything
9505  -  Previous page               %  Print
9506 Spc (space bar) Next page
9507  W  WhereIs
9509 Select Command
9510 ------------------------------------------------
9511  S  Select the highlighted keyword (or chosen keywords in ListMode)
9512  L  Turn on ListMode (makes it easy to choose multiple keywords)
9513  1  Turn off ListMode
9514  X  Toggle choices when using ListMode
9515 </PRE>
9516 <!--chtml endif-->
9518 <H2>Description of the Select Keyword Screen</H2>
9520 This screen just gives you an easy way to select a keyword or a list of
9521 keywords.
9522 The list of keywords presented is the list of all keywords defined in your 
9523 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9524 If you have given a keyword a nickname, that nickname is displayed
9525 instead of the actual keyword.
9527 <P><UL>
9528 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9529 </UL>
9531 &lt;End of help on this topic&gt;
9532 </BODY>
9533 </HTML>
9534 ===== h_select_incoming_to_monitor =====
9535 <HTML>
9536 <HEAD>
9537 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
9538 </HEAD>
9539 <BODY>
9540 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
9541 <H2>COMMANDS</H2>
9542 <!--chtml if pinemode="function_key"-->
9543 <PRE>
9544 Available  Commands
9545 -------------------------------            
9546 F1  Show Help Text
9547 F3  Exit without selecting anything
9548 F4  Select the marked folders
9549 F5  Move highlight to previous folder
9550 F6  Move highlight to next folder
9551 F7  Previous page of folders
9552 F8  Next page of folders
9553 F9  Toggle choices on or off
9554 F11 Print
9555 F12 WhereIs
9556 </PRE>
9557 <!--chtml else-->
9558 <PRE>
9559 Navigation                     General Alpine Commands
9560 -------------------------      -----------------------
9561  P  Prev Folder                 ?  Display this help text
9562  N  Next Folder                ^C  exit without changing anything
9563  -  Previous page               %  Print
9564 Spc (space bar) Next page
9565  W  WhereIs
9567 Select Command
9568 ------------------------------------------------
9569  S  Select the marked folders
9570  X  Toggle choices on or off
9571 </PRE>
9572 <!--chtml endif-->
9574 <H2>Description of the Select Folders to Check Screen</H2>
9576 This screen is only useful if the feature
9577 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9578 is set.
9579 By default, when you set that feature all of your incoming folders
9580 will be checked periodically for Unseen messages.
9581 By using this screen, you may restrict the set of monitored folders to
9582 a subset of all of the incoming folders.
9584 Mark the folders you want to monitor for Unseen messages with
9585 an &quot;X&quot;.
9586 When you've finished marking all your selections use the Select
9587 command to register your choices.
9588 To return to the default of checking all incoming folders
9589 delete all folders or unmark all folders.
9591 <P><UL>
9592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9593 </UL>
9595 &lt;End of help on this topic&gt;
9596 </BODY>
9597 </HTML>
9598 ===== h_role_select =====
9599 <HTML>
9600 <HEAD>
9601 <TITLE>ROLES SCREEN</TITLE>
9602 </HEAD>
9603 <BODY>
9604 <H1>ROLES SCREEN</H1>
9605 <H2>ROLES COMMANDS</H2>
9606 <!--chtml if pinemode="function_key"-->
9607 <PRE>
9608 Available  Commands                        
9609 -------------------------------            
9610 F1  Show Help Text
9611 F3  Exit without a selection
9612 F4  Select a role to use in composition
9613 F5  Move to previous role
9614 F6  Move to next role
9615 F7  Previous page of roles
9616 F8  Next page of roles
9617 F11 Change Default Role
9618 F12 Whereis (search role nicknames)
9619 </PRE>
9620 <!--chtml else-->
9621 <PRE>
9622 Navigation                     General Alpine Commands
9623 -------------------------      -----------------------
9624  P  Prev Role                     ?  Display this help text
9625  N  Next Role                     E  Exit without a selection
9626  -  Previous page
9627 Spc (space bar) Next page
9628  W  WhereIs (search for word in role nicknames)
9630 Select Role Commands
9631 ------------------------------------------------
9632  [Return]  Select highlighted role
9633  D         Change Default Role
9634 </PRE>
9635 <!--chtml endif-->
9637 <H2>Description of the Roles Screen</H2>
9639 With this screen you select a role to be used in the composition of a
9640 message.
9641 Use the Previous and Next commands to highlight the role you wish to
9642 use.
9643 When you type carriage return you will be placed in the composer using the highlighted role.
9645 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9646 available unless you set them up.
9647 You may do so by using the Setup/Rules command on the MAIN MENU.
9649 By using the D command, you may set a default role that will persist until
9650 you change it or until you exit Alpine.
9651 The D command toggles through three states: set the default role, unset the
9652 default role, and leave the default role as it is.
9653 <P><UL>
9654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9655 </UL>
9657 &lt;End of help on this topic&gt;
9658 </BODY>
9659 </HTML>
9660 ===== h_role_abook_select =====
9661 <HTML>
9662 <HEAD>
9663 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9664 </HEAD>
9665 <BODY>
9666 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9667 <H2>COMMANDS</H2>
9668 <!--chtml if pinemode="function_key"-->
9669 <PRE>
9670 Available  Commands                        
9671 -------------------------------            
9672 F1  Show Help Text
9673 F3  Exit screen without selecting anything
9674 F4  Select highlighted address book
9675 F5  Move to previous address book
9676 F6  Move to next address book
9677 F7  Previous page of address books
9678 F8  Next page of address books
9679 F12 Whereis
9680 </PRE>
9681 <!--chtml else-->
9682 <PRE>
9683 Navigation                     General Alpine Commands
9684 -------------------------      -----------------------
9685  P  Previous addrbook          ?  Display this help text
9686  N  Next addrbook
9687  -  Previous page
9688 Spc (space bar) Next page
9689  W  WhereIs
9691 Select Role Commands
9692 ------------------------------------------------
9693  S  Select highlighted address book
9694  E  Exit screen without selecting anything
9695 </PRE>
9696 <!--chtml endif-->
9698 <H2>Description of the Select Address Book Screen</H2>
9700 This screen helps you select one of your address books.
9701 Use the Previous and Next commands to highlight the address book you wish to
9702 select.
9703 <P><UL>
9704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9705 </UL>
9707 &lt;End of help on this topic&gt;
9708 </BODY>
9709 </HTML>
9710 ======== h_rule_patterns =============
9711 <HTML>
9712 <HEAD>
9713 <TITLE>PATTERNS</TITLE>
9714 </HEAD>
9715 <BODY>
9716 <H1>PATTERNS</H1>
9717 Patterns are used with Roles, Filtering, Index Coloring,
9718 Scoring, Other Rules, and Search Rules.
9719 Patterns are compared with a message to see if there is a match.
9720 For Filtering, the messages being checked are all the messages in the
9721 folder, one at a time.
9722 For Index Line Coloring, each message that is visible on the screen is
9723 checked for matches with the Index Coloring Patterns.
9724 Roles are used with the Reply, Forward, and Compose commands.
9725 For Reply, the message used to compare the Pattern with is the message
9726 being replied to;
9727 for Forward, the message used to compare the Pattern with is the message
9728 being forwarded;
9729 and for Compose, there is no message, so the parts of the Pattern that depend
9730 on a message (everything other than Current Folder Type and the
9731 Beginning of Month and Year)
9732 are not used.
9733 Only the Current Folder Type matters for Compose (plus the Beginning of
9734 Month or Year, which you wouldn't usually use for a Role).
9735 For Scoring, the message being scored is compared with all of the Score
9736 Patterns, and the Score Values from the ones that match are added together to 
9737 get the message's score.
9738 For Other Rules, there is no message. Only the Current Folder Type is checked
9739 for Other Rules.
9741 Each Pattern has several possible parts, all of which are optional.
9742 In order for there to be a match, <EM>ALL</EM> of the
9743 <EM>defined</EM> parts of the Pattern must match the message.
9744 If a part is not defined it is considered a match, but note that a filtering
9745 Pattern must have at least one defined part or it will be ignored.
9746 For example, if the To pattern is not defined it will be
9747 displayed as
9749 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9751 That is considered a match because it is not defined.
9752 This means that the Pattern with nothing defined is a match if the
9753 Current Folder Type matches, but there is an exception that was mentioned
9754 in the previous paragraph.
9755 Because filtering is a potentially destructive action, filtering Patterns
9756 with nothing other than Current Folder Type defined are ignored.
9757 If you really want a filtering Pattern to match all messages (subject to
9758 Current Folder Type) the best way to do it is to define a Score interval
9759 that includes all possible scores.
9760 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9761 This can be used even if you haven't defined any rules to Set Scores.
9763 There are six predefined header patterns called the To, From, Sender, Cc, News,
9764 and Subject patterns.
9765 Besides those six predefined header patterns, you may add
9766 additional header patterns with header fieldnames of your choosing.
9767 You add an extra header pattern by placing the cursor on one of the
9768 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9769 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9770 and the Partic pattern is a header pattern that stands for
9771 Participant (From OR To OR Cc).
9772 (Defining the Recip pattern does not have the same effect as defining both
9773 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9774 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9775 Instead of comparing this pattern's text against only the contents of
9776 a particular header field, the text for the AllText pattern is compared
9777 with text anywhere in the message's header or body, and the text for the
9778 BodyText pattern is compared with text anywhere in the message's body.
9780 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9781 &quot;!&quot; &quot;toggle NOT&quot; command.
9782 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9783 &quot;!&quot; at the beginning of the pattern line.
9784 When the &quot;!&quot; is present, it reverses the meaning of the match.
9785 That is, if the pattern matches then it is considered to NOT be a match, and
9786 if it does not match it is considered to be a match.
9788 Don't make the mistake of putting the &quot;!&quot; in the data field for
9789 a pattern.
9790 For example, if you type the characters &quot;!urgent&quot; into the Subject
9791 pattern, the pattern will look like:
9793 <PRE>
9794  Subject pattern = !urgent
9795 </PRE>
9797 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9798 In order to match messages that do not have &quot;urgent&quot; in
9799 their Subject field, first type the characters &quot;urgent&quot; followed
9800 by carriage return for the value of the Subject pattern, then negate it
9801 by typing the &quot;!&quot; command.
9802 It should look like
9804 <PRE>
9805  ! Subject pattern = urgent
9806 </PRE>
9808 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9809 be a complete email address, part of an address, or a random set of
9810 characters to match against.
9811 It may also be a list of such patterns, which means you
9812 are looking for a match against the first pattern in the list <EM>OR</EM>
9813 the second pattern <EM>OR</EM> the third and so on.
9814 For example, a Subject pattern equal to
9816 <PRE>
9817  Subject pattern = urgent
9818                    emergency
9819                    alert
9820 </PRE>
9822 would match all messages with a subject that contained at least one
9823 of those words.
9824 It would also match subjects containing the words &quot;alerts&quot; or
9825 &quot;Urgently&quot;.
9827 The same example with &quot;NOT&quot; turned on would be
9829 <PRE>
9830  ! Subject pattern = urgent
9831                      emergency
9832                      alert
9833 </PRE>
9835 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9836 those words.
9837 You can use the &quot;Add Value&quot; command to add new words to the list,
9838 or you can enter them as a comma-separated list.
9840 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9841 present for a match.
9842 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9843 pattern2 must be present,
9844 and that is exactly what using a list does.)
9846 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9847 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9848 when checking for matches for Scoring.
9849 There are five similar settings that relate to the status of the message.
9850 These settings rely on the message being New or not, Deleted or not,
9851 Answered or not, Important or not, and Recent or not.
9852 There are also some other miscellaneous settings.
9853 The first is the Age of the message in days.
9854 Another is the Size of the message, in bytes.
9855 The third is a setting that detects whether or not the Subject of a
9856 message contains raw 8-bit characters (unencoded characters with the most
9857 significant bit set).
9858 There is a setting that detects whether or not this is the first time
9859 Alpine has been run this month (doesn't depend on individual messages),
9860 and another that detects whether or not this is the first time Alpine has
9861 been run this year.
9862 Other parts of the Pattern detect whether or not the From address of a
9863 message appears in your address book, whether or not certain keywords
9864 are set for a message, and whether or not certain character sets are
9865 used in a message.
9867 <H2>Parts of a Pattern</H2>
9869 <H3>Header patterns</H3>
9871 A header pattern is simply text that is searched for in the corresponding
9872 header field.
9873 For example, if a Pattern has a From header pattern with the value
9874 &quot;@company.com&quot;, then only messages that have a From header
9875 that contains the text &quot;@company.com&quot; will be possible
9876 matches.
9877 Matches don't have to be exact.
9878 For example, if the relevant field of a message contains the text
9879 &quot;mailbox@domain&quot; somewhere
9880 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9881 &quot;mailbox@domain&quot; are all matches.
9883 All parts of the Pattern must match so, for example,
9884 if a message matches a defined
9885 From pattern, it still must be checked against the other parts of the
9886 Pattern that have been defined.
9887 The To header pattern is a slightly special case.
9888 If the message being checked has a Resent-To header
9889 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9890 there are used in place of the addresses in the To header.
9891 This is only true for the To header.
9892 Resent-cc and Resent-From headers are never used unless you add them
9893 with the eXtraHdrs command.
9895 The meaning of a header pattern may be negated with the
9896 &quot;!&quot; &quot;toggle NOT&quot; command.
9897 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9898 &quot;!&quot; at the beginning of the pattern line.
9899 It would look something like
9901 <PRE>
9902  ! From pattern = susan@example.com
9903 </PRE>
9905 When the &quot;!&quot; is present, it reverses the meaning of the match.
9907 If you want to check for the presence of a header field but don't care
9908 about its value, then
9909 the empty pattern that you get by entering a pair of
9910 double quotes (&quot;&quot;) should match any message that
9911 has the corresponding header field.
9913 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9915 AllText patterns are just like header patterns except that the text is
9916 searched for anywhere in the message's headers or body, not just in the
9917 contents of a particular header field.
9920 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9922 BodyText patterns are just like header patterns except that the text is
9923 searched for anywhere in the message's body, not just in the
9924 contents of a particular header field.
9927 If there is more than one header pattern or AllText pattern or BodyText pattern
9928 for which you want to take the
9929 same action there is a shorthand notation that may be used.
9930 Any of these patterns may be a list of patterns instead of
9931 just a single pattern.
9932 If any one of the patterns in the list matches the message
9933 then it is considered a match.
9934 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9935 you to use the same role when replying to messages, you might have
9936 a To pattern that looks like
9938 <PRE>
9939  To pattern = company1.com
9940               company2.com
9941 </PRE>
9943 This means that if the mail you are replying to was addressed to
9944 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9945 then this Pattern is a match and the same actions will be taken.
9947 The meaning of an AllText or BodyText pattern may be negated with the
9948 &quot;!&quot; &quot;toggle NOT&quot; command.
9949 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9950 &quot;!&quot; at the beginning of the pattern line.
9951 When the &quot;!&quot; is present, it reverses the meaning of the match.
9953 A technicality: Since comma is the character used to separate multiple values
9954 in any of the fields that may have multiple values (such as header patterns,
9955 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9956 you must escape comma with a
9957 backslash (&#92;) if you want to include a literal comma in one of those fields.
9958 In other words, if you type a backslash followed by a comma it will
9959 be interpreted as a comma by Alpine, instead of as a separator between
9960 pattern values.
9961 All other backslashes (those not followed by a comma) are literal
9962 backslashes and should not be escaped.
9963 It's unlikely you'll ever need to enter a literal comma or backslash in
9964 any of the patterns.
9966 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9968 The &quot;Current Folder Type&quot; may be set to one of four different
9969 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9970 &quot;Specific&quot;.
9971 If the value is set to &quot;News&quot;, then the
9972 Pattern will only match if the currently open folder is a newsgroup.
9973 The value &quot;Email&quot; only matches if the current folder is not news and
9974 the value &quot;Any&quot; causes any folder to match.
9975 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9976 then you must fill in a value for &quot;Folder&quot;, which is on the line
9977 below the &quot;Specific&quot; line.
9978 In this case you will only get a match if the currently open folder is
9979 the specific folder you list.
9980 You may give a list of folders instead of just a single
9981 folder name, in which case the Pattern will match if the open folder is
9982 any one of the folders in the list.
9983 The name of each folder in the list may be either &quot;INBOX&quot;,
9984 the technical specification
9985 of the folder (like what appears in your configuration file) or, if the
9986 folder is one of your incoming folders, it may be the nickname you've given
9987 the folder.
9988 Here are some samples of specific folder names:
9990 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9992 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9994 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9996 The easiest way to fill in the &quot;Folder&quot; field is to use
9997 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9998 highlighted, or to use the &quot;Take&quot; command with the configuration
9999 feature
10000 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
10001 turned on.
10003 When reading a newsgroup, there may be a performance penalty
10004 incurred when collecting the information necessary to check whether
10005 or not a Pattern matches a message.
10006 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
10007 If you have Patterns with a Current Folder Type of either
10008 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
10009 Index Line Coloring or Scoring, you may experience
10010 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
10012 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
10014 The &quot;Age Interval&quot; may be set to an interval of message
10015 ages that should be considered a match.
10016 Like the other parts of the Pattern, if it is unset it will be ignored.
10017 The Age Interval looks like
10019 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
10021 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
10022 than or equal to zero.
10023 The special value &quot;INF&quot; may be used for
10024 the max value. It represents infinity.
10026 Actually, this option may be defined as a list of intervals instead
10027 of just a single interval.
10028 The list is separated by commas.
10029 It can look like
10031 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
10033 When there is an Age Interval defined, it is a match if the age, in days, of
10034 the message is contained in any of the intervals.
10035 The intervals include both endpoints.
10037 Even though this option is called Age, it isn't actually
10038 the <EM>age</EM> of the message.
10039 Instead, it is how many days ago the message arrived in one of your folders.
10040 If the current time is a little past midnight, then a message that arrived
10041 just before midnight arrived yesterday, even though the message is only
10042 a few minutes old.
10043 By default, the date being used is not the date in the Date
10044 header of the message.
10045 It is the date that the message arrived in one of your folders.
10046 When you Save a message from one folder to another that arrival date
10047 is preserved.
10048 If you would like to use the date in the Date header that is possible.
10049 Turn on the option
10050 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
10051 near the bottom of the rule definition.
10052 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
10054 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
10056 The &quot;Size Interval&quot; may be set to an interval of message
10057 sizes that should be considered a match.
10058 Like the other parts of the Pattern, if it is unset it will be ignored.
10059 The Size Interval looks like
10061 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
10063 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
10064 than or equal to zero.
10065 The special value &quot;INF&quot; may be used for
10066 the max value. It represents infinity.
10068 Actually, this option may be defined as a list of intervals instead
10069 of just a single interval.
10070 The list is separated by commas.
10071 It can look like
10073 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
10075 When there is a Size Interval defined, it is a match if the size, in bytes, of
10076 the message is contained in any of the intervals.
10077 The intervals include both endpoints.
10079 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
10081 The &quot;Score Interval&quot; may be set to an interval of message
10082 scores that should be considered a match.
10083 Like the other parts of the Pattern, if it is unset it will be ignored.
10084 The Score Interval looks like
10086 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
10088 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
10089 negative integers, with min_score less than or equal to max_score.
10090 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
10091 the min and max values to represent negative and positive infinity.
10093 Actually, a list of intervals may be used if you wish.
10094 A list would look like
10096 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
10098 When there is a Score Interval defined, it is a match if the score for
10099 the message is contained in any of the intervals in the list.
10100 The intervals include the endpoints.
10101 The score for a message is calculated by looking at every Score rule defined and
10102 adding up the Score Values for the ones that match the message.
10103 When deciding whether or not a Pattern matches a message for purposes of
10104 calculating the score, the Score Interval is ignored.
10106 <H3><A NAME="pattern_message_status">Message Status</A></H3>
10108 There are five separate message status settings.
10109 By default, all five are set to the value &quot;Don't care&quot;, which
10110 will match any message.
10111 The value &quot;Yes&quot; means that the particular status must be true
10112 for a match, and the value &quot;No&quot; means that the particular
10113 status must not be true for a match.
10114 For example, one of the five Message Status settings is whether a message
10115 is marked Important or not.
10116 A &quot;Yes&quot; means that the message must be Important to be
10117 considered a match and &quot;No&quot; means that the message must not be
10118 Important to be considered a match.
10119 The same is true of the other four message status settings that depend
10120 on whether or not the message is New; whether the message has 
10121 been Answered or not; whether the message has been Deleted or not, and
10122 whether the message is Recent or not. 
10124 The nomenclature for New and Recent is a bit confusing:
10126 New means that the message is Unseen.
10127 It could have been in your mailbox for a long time but if you haven't looked
10128 at it, it is still considered New.
10129 That matches the default Alpine index display that shows an N for such a
10130 message.
10132 Recent means that the message was added to this folder since the last time
10133 you opened the folder.
10134 Alpine also shows an N by default for these types of messages.
10135 If you were to run two copies of Alpine that opened a folder one right after
10136 the other, a message would only show up as Recent in (at most) the first
10137 Alpine session.
10139 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
10141 Keywords are similar to Message Status, but they are chosen by the user.
10142 Provided the mail server allows for it, you may add a set of possible keywords
10143 to a folder and then you may set those keywords or not for each message
10144 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
10145 The syntax of this part of the Pattern is similar to the header patterns.
10146 It is a list of keywords.
10147 The Keyword part of the Pattern is a match if the message has any of
10148 the keywords in the list set.
10149 Like other parts of the Pattern, if this is unset it will be ignored.
10151 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
10153 A message may use one or more character sets.
10154 This part of the Pattern matches messages that make use of one or more of
10155 the character sets specified in the pattern.
10156 It will be considered a match if a message uses any of the character
10157 sets in the list you give here.
10160 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
10161 GB2312) you may also use some shorthand names that Alpine provides.
10162 These names are more understandable shorthand names for sets of 
10163 character set names.
10164 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
10165 Selecting one of these shorthand names is equivalent to selecting all of
10166 the character sets that make up the set.
10167 You can see all of these shorthand names and the lists of character sets
10168 they stand for by typing the &quot;T&quot; command with the Character
10169 Set pattern highlighted.
10170 The syntax of this part of the Pattern is similar to the header patterns
10171 and the Message Keywords pattern.
10172 It is a list of character sets (or shorthand names).
10173 The Character Set part of the Pattern is a match if the message uses any
10174 of the character sets in the list.
10175 Like other parts of the Pattern, if this is unset it will be ignored.
10177 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
10179 It seems that lots of unwanted email contains unencoded 8-bit characters
10180 in the Subject.
10181 Normally, characters with the 8th bit set are not allowed in the Subject
10182 header unless they are MIME-encoded.
10183 This option gives you a way to match messages that have Subjects that
10184 contain unencoded 8-bit characters.
10185 By default, the value of this option is &quot;Don't care&quot;, which
10186 will match any message.
10187 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
10188 the Subject of the message in order for there to be a match,
10189 and the value &quot;No&quot; is the opposite.
10190 Setting this option will affect performance in large folders because the
10191 subject of each message in the folder has to be checked.
10193 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
10195 This option gives you a way to take some action once per month.
10196 By default, the value of this option is &quot;Don't care&quot;, which
10197 will always match.
10198 The value &quot;Yes&quot; means that this must be the first time Alpine has
10199 been run this month in order to count as a match,
10200 and the value &quot;No&quot; is the opposite.
10202 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
10204 This option gives you a way to take some action once per year.
10205 By default, the value of this option is &quot;Don't care&quot;, which
10206 will always match.
10207 The value &quot;Yes&quot; means that this must be the first time Alpine has
10208 been run this year in order to count as a match,
10209 and the value &quot;No&quot; is the opposite.
10211 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
10213 This option gives you a way to match messages that have an address
10214 that is in one of your address books.
10215 Only the simple entries in your address books are searched.
10216 Address book distribution lists are ignored!
10217 By default, the value of this option is &quot;Don't care&quot;, which
10218 will match any message.
10219 The value &quot;Yes, in any address book&quot; means the address
10220 from the message must be in at least one of your
10221 address books in order to be a match.
10222 The value &quot;No, not in any address book&quot;
10223 means none of the addresses may
10224 be in any of your address books in order to be a match.
10225 The values &quot;Yes, in specific address books&quot; and
10226 &quot;No, not in any of specific address books&quot; are similar but instead
10227 of depending on all address books you are allowed to give a list of address
10228 books to look in.
10229 The addresses from the message that are checked for are determined by the
10230 setting you have for &quot;Types of addresses to check for in address book&quot;.
10231 If you set this to &quot;From&quot; the From address from the message will
10232 be looked up in the address book.
10233 If you set it to only &quot;To&quot; then the To addresses will be used.
10234 If any of the To addresses are in the address book then it is considered
10235 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
10236 You could set it to both From and To, in which case all of the From and To
10237 addresses are used.
10238 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
10239 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
10240 exists or the From address if there is no Reply-To address.
10241 Same for the Sender address.
10242 Setting this option may affect performance in large folders because the
10243 From and Reply-To of each message in the folder have to be checked.
10245 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
10247 This is a command that is run with its standard input set to the message
10248 being checked and its standard output discarded.
10249 The full directory path should be specified.
10250 The command will be run and then its exit status will be checked against
10251 the Exit Status Interval, which defaults to just the value zero.
10252 If the exit status of the command falls in the interval, it is considered
10253 a match, otherwise it is not a match.
10256 This option may actually be a list of commands.
10257 The first one that exists and is executable is used.
10258 That makes it possible to use the same configuration with Unix Alpine and
10259 PC-Alpine.
10262 If none of the commands in the list exists and is executable then the rule
10263 is <EM>not</EM> a match.
10264 If it is possible that the command may not exist, you should be careful
10265 to structure your rules so that nothing destructive
10266 happens when the command does not exist.
10267 For example, you might have a filter that filters away spam when there is
10268 a match but does nothing when there is not a match.
10269 That would continue to work correctly if the command didn't exist.
10270 However, if you have a filter that filters away spam when there is not
10271 a match and keeps it when there is a match, that would filter everything
10272 if the categorizer command didn't exist.
10274 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
10275 setup for the bogofilter filter.
10278 &lt;End of help on this topic&gt;
10279 </BODY>
10280 </HTML>
10281 ===== h_rules_roles =====
10282 <HTML>
10283 <HEAD>
10284 <TITLE>SETUP ROLES SCREEN</TITLE>
10285 </HEAD>
10286 <BODY>
10287 <H1>SETUP ROLES SCREEN</H1>
10288 <H2>SETUP ROLES COMMANDS</H2>
10289 <!--chtml if pinemode="function_key"-->
10290 <PRE>
10291 Available  Commands -- Group 1         Available Commands -- Group 2   
10292 -------------------------------        ------------------------------  
10293 F1  Show Help Text                      F1  Show Help Text             
10294 F2  See commands in next group          F2  See commands in next group
10295 F3  Back to MAIN Alpine menu
10296 F4  Change configuration for role
10297 F5  Move to previous role               F5  Include file in role config
10298 F6  Move to next role                   F6  Exclude file from config
10299 F7  Previous page of roles
10300 F8  Next page of roles
10301 F9  Add new role                        F9  Replicate existing role
10302 F10 Delete existing role
10303 F11 Shuffle the order of roles
10304 F12 Whereis (search role nicknames)
10305 </PRE>
10306 <!--chtml else-->
10307 <PRE>
10308 Navigation                     General Alpine Commands
10309 -------------------------      -----------------------
10310  P  Prev Role                     ?  Display this help text
10311  N  Next Role                     E  Back to MAIN Alpine menu
10312  -  Previous page
10313 Spc (space bar) Next page
10314  W  WhereIs (search for word in role nicknames)
10316 Setup Roles Commands
10317 ------------------------------------------------
10318  A  Add new role                  $  Shuffle the order of roles
10319  D  Delete existing role          C  Change configuration for highlighted role
10320  R  Replicate existing role
10321  I  Include file in role config   X  Exclude file from role config
10322 </PRE>
10323 <!--chtml endif-->
10325 <H2>Description of the Setup Roles Screen</H2>
10327 This screen lets you add, delete, modify, or change the order of the rules
10328 that determine the role you are playing when composing a message.
10330 You may play different roles depending on who you are replying to.
10331 For example, if you are replying to a message addressed to help-desk you
10332 may be acting as a Help Desk Worker.
10333 That role may require that you use a different return address and/or
10334 a different signature.
10336 Roles are optional.
10337 If you set up roles they work like this:  Each role has a set of
10338 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
10339 considered for a particular use; a &quot;Pattern&quot;,
10340 which is used to decide which of the eligible roles is used; and a set
10341 of &quot;Actions&quot;, which are taken when that role is used.
10342 When you reply to a message, the message you are replying to is compared
10343 with the Patterns of the roles marked as eligible for use when replying.
10344 The comparisons start with the first eligible role and keep going until there
10345 is a match.
10346 If a match is found, the matching role's Actions are taken.
10348 It is also possible to set a default role and to change that role during
10349 your Alpine session.
10350 When you start Alpine no default role will be set.
10351 You may set or change the current default role by using the &quot;D&quot;
10352 command in the role selection screen.
10353 You'll see that screen while composing a message and being asked to select
10354 a role.
10355 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
10356 compose a message.
10357 You may find a default role useful if you normally perform the duties of one
10358 of your roles for a while, then you switch to another role and stay in the
10359 new role for another period of time.
10360 It may be easier than using the Role Command to select the role each time you
10361 compose a message.
10363 <H2>Role Uses</H2>
10365 There are three types of use to be configured;
10366 one for Replying, one for Forwarding, and one for Composing.
10367 These indicate whether or not you want a role to be considered when you
10368 type the Reply, Forward, or Compose commands.
10369 (The Role command is an alternate form of the Compose command, and it is
10370 not affected by these settings.)
10371 Each of these Use types has three possible values.
10372 The value &quot;Never&quot;
10373 means that the role will never be considered as a candidate for use with
10374 the corresponding command.
10375 For example, if you set a role's Reply Use to Never, then when you Reply to
10376 a message, that role won't even be considered.
10377 (That isn't quite true. If the message you are replying to matches some other
10378 role that requires confirmation,
10379 then there will be a ^T command available which allows you to select a role
10380 from all of your roles, not just the reply-eligible roles.)
10383 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
10384 both mean that you do want to consider this role when using the corresponding
10385 command.
10386 For either of these settings the role's Pattern will
10387 be checked to see if it matches the message.
10388 For Reply Use, the message used to compare the Pattern with is the message
10389 being replied to.
10390 For Forward Use, the message used to compare the Pattern with is the message
10391 being forwarded.
10392 For Compose Use, there is no message, so the parts of the Pattern that depend
10393 on a message (everything other than Current Folder Type) are ignored.
10394 In all cases, the Current Folder Type is checked if defined.
10395 If there is a match then this role will either be used without confirmation
10396 or will be the default when confirmation is asked for, depending on
10397 which of the two options is selected.
10398 If confirmation is requested, you will have a chance to
10399 choose No Role instead of the offered role, or to
10400 change the role to any one of your other roles (with the ^T command).
10402 <H2>Role Patterns</H2>
10404 In order to determine whether or not a message matches a role the message is
10405 compared with the Role's Pattern.
10406 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10407 Scoring, Other Rules, and Search Rules, so are described in only one place,
10408 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10410 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
10411 a role that has all header patterns unset, the AllText pattern unset,
10412 the BodyText pattern unset,
10413 the Score Interval unset, and the Current Folder Type set to
10414 &quot;Any&quot; may be used as a default role.
10415 It should be put last in the list of roles since the matching
10416 starts at the beginning and proceeds until one of the roles is a match.
10417 If no roles at all match, then Alpine will
10418 use its regular methods of defining the role.
10419 If you wanted to, you could define a different &quot;default&quot; role
10420 for Replying, Forwarding, and Composing by setting the
10421 &quot;Use&quot; fields appropriately.
10423 <H2>Role Actions</H2>
10425 Once a role match is found, the role's Actions are taken.
10426 For each role there are several possible actions that may be defined.
10427 They are actions to set the From address, the Reply-To address,
10428 the Fcc, the Signature, the Template file, and Other Headers.
10430 <H3>Set From</H3>
10432 The From address is the address used on the From line of the message
10433 you are sending.
10435 <H3>Set Reply-To</H3>
10437 The Reply-To address is the address used on the Reply-To line of the message
10438 you are sending.
10439 You don't need a Reply-To address unless it is different from the From address.
10441 <H3>Set Other Headers</H3>
10443 If you want to set the value of the From or Reply-To headers, use
10444 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
10445 If you want to set the values of other headers, use this field.
10446 This field is similar to the
10447 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
10448 Each header you specify here must include the header tag
10449 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
10450 and may optionally include a value for that header.
10451 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
10452 for a header here will replace any value that already exists.
10453 For example, if you are Replying to a message there will be at least one
10454 address in the To header (the address you are Replying to).
10455 However, if you Reply using a role that sets the To header, that role's
10456 To header value will be used instead.
10458 <H3>Set Fcc</H3>
10460 The Fcc is used as the Fcc for the message you are sending.
10462 <H3>Set Signature or Set LiteralSig</H3>
10464 The Signature is the name of a file to be used as the signature file when
10465 this role is being used.
10466 If the name of the file has a vertical bar following it (|)
10467 then it is assumed that the file is a program that should be run to
10468 produce the signature.
10469 If the LiteralSig is set, then it is used instead of the signature file.
10470 LiteralSig is just a different way to store the signature.
10471 It is stored in the pine configuration file instead of in a separate
10472 signature file.
10473 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
10474 either in the role or as the default signature in the Setup/Config screen,
10475 then the signature file is ignored.
10477 <H3>Set Template</H3>
10479 A Template is the name of a file to be included in the message when this
10480 role is being used.
10481 If the name of the file has a vertical bar following it (|)
10482 then it is assumed that the file is a program that should be run to
10483 produce the template.
10486 Both signature files and template files may be stored remotely on an IMAP
10487 server.
10488 In order to do that you just give the file a remote name.
10489 This works just like the regular
10490 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
10491 option that is configured from the Setup/Configuration screen.
10492 A remote signature file name might look like:
10494 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
10496 Once you have named the remote signature or template file you create its
10497 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
10498 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
10499 line of the role editor.
10502 Both signature files and template files (or the output of signature programs
10503 and template file programs) may contain special tokens
10504 that are replaced with contents
10505 that depend on the message being replied to or forwarded.
10506 See the help for the individual fields inside the role editor for more
10507 information on tokens.
10509 <H3>Use SMTP Server</H3>
10511 If this field has a value, then it will be used as the SMTP server
10512 to send mail when this role is being used (unless the SMTP server variable
10513 is set in the system-wide fixed configuration file).
10514 It has the same semantics as the
10515 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
10516 variable in the Setup/Config screen.
10517 When you postpone the composition this SMTP server list will be saved
10518 with the postponed composition and it cannot be changed later.
10519 Because of that, you may want to make this a list of SMTP servers
10520 with the preferred server at the front of the list and alternate servers
10521 later in the list.
10524 If any of the actions are left unset, then the action depends on what
10525 is present in the &quot;Initialize settings using role&quot; field.
10526 If you've listed the nickname of another one of your roles there, then the
10527 corresponding action from that role will be used here.
10528 If that action is also blank, or if there is no nickname specified,
10529 then Alpine will do whatever it normally does to set these actions.
10530 This depends on other configuration options and features you've set.
10532 <H2>Command Descriptions</H2>
10534 <H3>Add</H3>
10536 The Add command is used to add a new role definition to your set of
10537 roles.
10538 The new role will be added after the highlighted role.
10540 <H3>Delete</H3>
10542 The Delete command deletes the currently highlighted role.
10544 <H3>Change</H3>
10546 The Change command lets you edit the nickname, Uses, Pattern,
10547 and Actions of the currently highlighted role.
10549 <H3>Shuffle</H3>
10551 The Shuffle command allows you to change the order of the roles.
10552 You may move the currently highlighted role up or down in the list.
10553 The order of the roles is important since the roles are tested for a
10554 match starting with the first role and continuing until a match is found.
10555 You should place the roles with more specific Patterns near the beginning
10556 of the list, and those with more general Patterns near the end so that
10557 the more specific matches will happen when appropriate.
10559 <H3>Replicate</H3>
10561 The Replicate command is used to copy an existing role and modify it.
10562 The new role will be added after the highlighted role.
10564 <H3>IncludeFile</H3>
10566 The IncludeFile command allows you to add a roles file to your configuration.
10567 Usually, your roles will be contained in your Alpine configuration file.
10568 If you wish, some or all of your roles may be stored in a separate file.
10569 If a roles file already exists (maybe it was made by somebody else using
10570 Alpine), you may insert it before the currently highlighted role.
10571 You may also insert an empty file or a file that does not yet exist.
10572 Once you have an empty roles file in your configuration, you may use
10573 the Shuffle command to move roles into it.
10574 In fact, that's the only way to get the initial role into the file.
10576 <H3>eXcludeFile</H3>
10578 The eXcludeFile command removes a roles file from your roles configuration.
10579 A limitation of the program is that in order to exclude a roles file
10580 that file must have at least one role
10581 in it, otherwise you won't be able to highlight a line in the file.
10582 So you may have to add a dummy role to the file in order to exclude the file.
10583 <P><UL>
10584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10585 </UL>
10587 &lt;End of help on this topic&gt;
10588 </BODY>
10589 </HTML>
10590 ===== h_rules_other =====
10591 <HTML>
10592 <HEAD>
10593 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10594 </HEAD>
10595 <BODY>
10596 <H1>SETUP OTHER RULES SCREEN</H1>
10597 <H2>SETUP OTHER RULES COMMANDS</H2>
10598 <!--chtml if pinemode="function_key"-->
10599 <PRE>
10600 Available  Commands -- Group 1         Available Commands -- Group 2   
10601 -------------------------------        ------------------------------  
10602 F1  Show Help Text                      F1  Show Help Text             
10603 F2  See commands in next group          F2  See commands in next group
10604 F3  Back to MAIN Alpine menu
10605 F4  Change configuration for rule
10606 F5  Move to previous rule               F5  Include file in rule config
10607 F6  Move to next rule                   F6  Exclude file from config
10608 F7  Previous page of rules
10609 F8  Next page of rules
10610 F9  Add new rule                        F9  Replicate existing rule
10611 F10 Delete existing rule
10612 F11 Shuffle the order of rules
10613 F12 Whereis (search rule nicknames)
10614 </PRE>
10615 <!--chtml else-->
10616 <PRE>
10617 Navigation                     General Alpine Commands
10618 -------------------------      -----------------------
10619  P  Prev rule                     ?  Display this help text
10620  N  Next rule                     E  Back to MAIN Alpine menu
10621  -  Previous page
10622 Spc (space bar) Next page
10623  W  WhereIs (search for word in rule nicknames)
10625 Setup Other Rules Commands
10626 ------------------------------------------------
10627  A  Add new rule                  $  Shuffle the order of rules
10628  D  Delete existing rule          C  Change configuration for highlighted rule
10629  R  Replicate existing rule
10630  I  Include file in rule config   X  Exclude file from rule config
10631 </PRE>
10632 <!--chtml endif-->
10634 <H2>Description of the Setup Other Rules Screen</H2>
10636 This is where you may set various actions that do not fit well into the
10637 other Rules categories.
10639 <H2>Patterns</H2>
10641 Other Rules are a little different from the rest of the Rules because
10642 they depend only on the current folder, and not on a particular message.
10643 In order to determine whether or not a rule's actions should be applied
10644 the current folder is compared with the rule's Pattern, which consists
10645 of only the Current Folder Type.
10646 Current Folder Type works the same for Other Rules as it does for Roles,
10647 Filtering, Index Coloring, and Scoring.
10648 Keep in mind that the only part of the Pattern that applies to Other
10649 Rules is the Current Folder Type when looking at the description of
10650 Patterns given
10651 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10653 <H2>The Actions</H2>
10655 <H3>Set Sort Order</H3>
10657 When you enter a new folder, these rules will be checked to see if you
10658 have set a sort order that is different from your default sort order.
10659 The default is set in the Setup/Config screen with
10660 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10661 If the Sort Order action is set, then the folder will be displayed sorted in
10662 that sort order instead of in the default order.
10664 A possible point of confusion arises when you change the configuration
10665 of the Sort Order for the currently open folder.
10666 The folder will normally be re-sorted when you go back to viewing the
10667 index.
10668 However, if you have manually sorted the folder with the
10669 Sort
10670 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10671 command, then it will not be re-sorted until the next time it is opened.
10673 <H3>Set Index Format</H3>
10675 When you enter a new folder, these rules will be checked to see if you
10676 have set an Index Format that is different from your default Index Format,
10677 which is set with the
10678 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10679 If so, the index will be displayed with this format instead of the default.
10681 <H3>Set Startup Rule</H3>
10683 When you enter a new folder, these rules will be checked to see if you
10684 have set a startup rule that is different from the default startup rule.
10685 The default for incoming folders is set in the Setup/Config screen with
10686 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10687 The default for folders other than INBOX that are not part of your
10688 incoming collection
10689 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10690 is to start with the last message in the folder.
10691 If the Startup Rule is set to something other than &quot;default&quot;,
10692 then the rule will determine which message will be the current message when
10693 the folder is first opened.
10695 The various startup rule possibilities work the same here as they do in
10696 the incoming collection, so check
10697 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10698 for more help.
10700 <H2>Command Descriptions</H2>
10702 <H3>Add</H3>
10704 The Add command is used to add a new rule definition to your set of
10705 rules.
10706 The new rule will be added after the highlighted rule.
10708 <H3>Delete</H3>
10710 The Delete command deletes the currently highlighted rule.
10712 <H3>Change</H3>
10714 The Change command lets you edit the nickname, Pattern,
10715 and Action of the currently highlighted rule.
10717 <H3>Shuffle</H3>
10719 The Shuffle command allows you to change the order of the rules.
10720 You may move the currently highlighted rule up or down in the list.
10721 The order of the rules is important since the rules are tested for a
10722 match starting with the first rule and continuing until a match is found.
10723 You should place the rules with more specific Patterns near the beginning
10724 of the list, and those with more general Patterns near the end so that
10725 the more specific matches will happen when appropriate.
10727 <H3>Replicate</H3>
10729 The Replicate command is used to copy an existing rule definition and modify it.
10730 The new rule will be added after the highlighted rule.
10732 <H3>IncludeFile</H3>
10734 The IncludeFile command allows you to add a rules file to your configuration.
10735 Usually, your rules will be contained in your Alpine configuration file.
10736 If you wish, some or all of your rules may be stored in a separate file.
10737 If a rules file already exists (maybe it was made by somebody else using
10738 Alpine), you may insert it before the currently highlighted rule.
10739 You may also insert an empty file or a file that does not yet exist.
10740 Once you have an empty rules file in your configuration, you may use
10741 the Shuffle command to move rules into it.
10742 In fact, that's the only way to get the initial rule into the file.
10744 <H3>eXcludeFile</H3>
10746 The eXcludeFile command removes a rules file from your rules configuration.
10747 A limitation of the program is that in order to exclude a rules file
10748 that file must have at least one rule
10749 in it, otherwise you won't be able to highlight a line in the file.
10750 So you may have to add a dummy rule to the file in order to exclude the file.
10751 <P><UL>
10752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10753 </UL>
10755 &lt;End of help on this topic&gt;
10756 </BODY>
10757 </HTML>
10758 ===== h_rules_srch =====
10759 <HTML>
10760 <HEAD>
10761 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10762 </HEAD>
10763 <BODY>
10764 <H1>SETUP SEARCH RULES SCREEN</H1>
10765 <H2>SETUP SEARCH RULES COMMANDS</H2>
10766 <!--chtml if pinemode="function_key"-->
10767 <PRE>
10768 Available  Commands -- Group 1         Available Commands -- Group 2   
10769 -------------------------------        ------------------------------  
10770 F1  Show Help Text                      F1  Show Help Text             
10771 F2  See commands in next group          F2  See commands in next group
10772 F3  Back to MAIN Alpine menu
10773 F4  Change configuration for rule
10774 F5  Move to previous rule               F5  Include file in rule config
10775 F6  Move to next rule                   F6  Exclude file from config
10776 F7  Previous page of rules
10777 F8  Next page of rules
10778 F9  Add new rule                        F9  Replicate existing rule
10779 F10 Delete existing rule
10780 F11 Shuffle the order of rules
10781 F12 Whereis (search rule nicknames)
10782 </PRE>
10783 <!--chtml else-->
10784 <PRE>
10785 Navigation                     General Alpine Commands
10786 -------------------------      -----------------------
10787  P  Prev rule                     ?  Display this help text
10788  N  Next rule                     E  Back to MAIN Alpine menu
10789  -  Previous page
10790 Spc (space bar) Next page
10791  W  WhereIs (search for word in rule nicknames)
10793 Setup Search Rules Commands
10794 ------------------------------------------------
10795  A  Add new rule                  $  Shuffle the order of rules
10796  D  Delete existing rule          C  Change configuration for highlighted rule
10797  R  Replicate existing rule
10798  I  Include file in rule config   X  Exclude file from rule config
10799 </PRE>
10800 <!--chtml endif-->
10802 <H2>Description of the Setup Search Rules Screen</H2>
10804 One of the commands that becomes available when that feature is turned on
10805 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10806 screen to select a set of messages.
10807 One way of selecting messages is to use a Rule.
10808 All of the messages that match (or don't match if you wish)
10809 a Rule's Pattern will be selected.
10811 Any of your Rules may be used for this purpose.
10812 You might already have Rules set up for filtering, index line color, scores, or roles;
10813 and you may use any of those Rules with the Select command.
10814 However, you might find it more convenient to set up a separate set of Rules
10815 just for this purpose without having to worry about what other effects
10816 they may cause.
10817 That is the purpose of these Select Rules.
10820 Each rule has a &quot;Pattern&quot;
10821 that is used to decide which messages are selected when you use it with
10822 the Select command.
10824 <H2>Patterns</H2>
10826 In order to determine whether or not a message should be selected
10827 the message is compared with the rule's Pattern.
10828 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10829 Scoring, Other Rules, and Search Rules, so are described in only one place,
10830 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10832 <H2>Command Descriptions</H2>
10834 <H3>Add</H3>
10836 The Add command is used to add a new rule definition to your set of
10837 rules.
10838 The new rule will be added after the highlighted rule.
10840 <H3>Delete</H3>
10842 The Delete command deletes the currently highlighted rule.
10844 <H3>Change</H3>
10846 The Change command lets you edit the nickname and Pattern
10847 of the currently highlighted rule.
10849 <H3>Shuffle</H3>
10851 The Shuffle command allows you to change the order of the rules.
10852 This affects only the order they are presented in when you use the
10853 ^T subcommand of the Select by Rule command.
10854 You may move the currently highlighted rule up or down in the list.
10856 <H3>Replicate</H3>
10858 The Replicate command is used to copy an existing rule definition and modify it.
10859 The new rule will be added after the highlighted rule.
10861 <H3>IncludeFile</H3>
10863 The IncludeFile command allows you to add a rules file to your configuration.
10864 Usually, your rules will be contained in your Alpine configuration file.
10865 If you wish, some or all of your rules may be stored in a separate file.
10866 If a rules file already exists (maybe it was made by somebody else using
10867 Alpine), you may insert it before the currently highlighted rule.
10868 You may also insert an empty file or a file that does not yet exist.
10869 Once you have an empty rules file in your configuration, you may use
10870 the Shuffle command to move rules into it.
10871 In fact, that's the only way to get the initial rule into the file.
10873 <H3>eXcludeFile</H3>
10875 The eXcludeFile command removes a rules file from your rules configuration.
10876 A limitation of the program is that in order to exclude a rules file
10877 that file must have at least one rule
10878 in it, otherwise you won't be able to highlight a line in the file.
10879 So you may have to add a dummy rule to the file in order to exclude the file.
10880 <P><UL>
10881 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10882 </UL>
10884 &lt;End of help on this topic&gt;
10885 </BODY>
10886 </HTML>
10887 ===== h_rules_incols =====
10888 <HTML>
10889 <HEAD>
10890 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10891 </HEAD>
10892 <BODY>
10893 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10894 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10895 <!--chtml if pinemode="function_key"-->
10896 <PRE>
10897 Available  Commands -- Group 1         Available Commands -- Group 2   
10898 -------------------------------        ------------------------------  
10899 F1  Show Help Text                      F1  Show Help Text             
10900 F2  See commands in next group          F2  See commands in next group
10901 F3  Back to MAIN Alpine menu
10902 F4  Change configuration for rule
10903 F5  Move to previous rule               F5  Include file in rule config
10904 F6  Move to next rule                   F6  Exclude file from config
10905 F7  Previous page of rules
10906 F8  Next page of rules
10907 F9  Add new rule                        F9  Replicate existing rule
10908 F10 Delete existing rule
10909 F11 Shuffle the order of rules
10910 F12 Whereis (search rule nicknames)
10911 </PRE>
10912 <!--chtml else-->
10913 <PRE>
10914 Navigation                     General Alpine Commands
10915 -------------------------      -----------------------
10916  P  Prev rule                     ?  Display this help text
10917  N  Next rule                     E  Back to MAIN Alpine menu
10918  -  Previous page
10919 Spc (space bar) Next page
10920  W  WhereIs (search for word in rule nicknames)
10922 Setup Index Color Commands
10923 ------------------------------------------------
10924  A  Add new rule                  $  Shuffle the order of rules
10925  D  Delete existing rule          C  Change configuration for highlighted rule
10926  R  Replicate existing rule
10927  I  Include file in rule config   X  Exclude file from rule config
10928 </PRE>
10929 <!--chtml endif-->
10931 <H2>Description of the Setup Index Line Colors Screen</H2>
10933 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10934 This action is only available if your terminal is capable of displaying
10935 color and color display has been enabled with the
10936 <A HREF="h_config_color_style">Color Style</A> option within the
10937 Setup Color screen.
10938 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10939 This screen lets you add, delete, modify, or change the order of the rules
10940 that cause the lines in the MESSAGE INDEX to be displayed in different
10941 colors.
10943 Each rule has a &quot;Pattern&quot;,
10944 which is used to decide which of the rules is used; and the color that
10945 is used if the Pattern matches a particular message.
10947 <H2>Index Color Patterns</H2>
10949 In order to determine whether or not a message matches an Index Color Rule
10950 the message is compared with the rule's Pattern.
10951 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10952 Scoring, Other Rules, and Search Rules, so are described in only one place,
10953 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10956 If none of the Index Color rules is a match for a particular index line,
10957 then the color used is set using
10958 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10960 <H2>Index Line Color</H2>
10962 This is the color that index lines are colored when there is a matching
10963 Pattern.
10964 This colors the whole index line, except possibly the status letters,
10965 which may be colored separately using
10966 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10968 <H2>Command Descriptions</H2>
10970 <H3>Add</H3>
10972 The Add command is used to add a new rule definition to your set of
10973 rules.
10974 The new rule will be added after the highlighted rule.
10976 <H3>Delete</H3>
10978 The Delete command deletes the currently highlighted rule.
10980 <H3>Change</H3>
10982 The Change command lets you edit the nickname, Pattern,
10983 and Index Line Color of the currently highlighted rule.
10985 <H3>Shuffle</H3>
10987 The Shuffle command allows you to change the order of the rules.
10988 You may move the currently highlighted rule up or down in the list.
10989 The order of the rules is important since the rules are tested for a
10990 match starting with the first rule and continuing until a match is found.
10991 You should place the rules with more specific Patterns near the beginning
10992 of the list, and those with more general Patterns near the end so that
10993 the more specific matches will happen when appropriate.
10995 <H3>Replicate</H3>
10997 The Replicate command is used to copy an existing rule definition and modify it.
10998 The new rule will be added after the highlighted rule.
11000 <H3>IncludeFile</H3>
11002 The IncludeFile command allows you to add a rules file to your configuration.
11003 Usually, your rules will be contained in your Alpine configuration file.
11004 If you wish, some or all of your rules may be stored in a separate file.
11005 If a rules file already exists (maybe it was made by somebody else using
11006 Alpine), you may insert it before the currently highlighted rule.
11007 You may also insert an empty file or a file that does not yet exist.
11008 Once you have an empty rules file in your configuration, you may use
11009 the Shuffle command to move rules into it.
11010 In fact, that's the only way to get the initial rule into the file.
11012 <H3>eXcludeFile</H3>
11014 The eXcludeFile command removes a rules file from your rules configuration.
11015 A limitation of the program is that in order to exclude a rules file
11016 that file must have at least one rule
11017 in it, otherwise you won't be able to highlight a line in the file.
11018 So you may have to add a dummy rule to the file in order to exclude the file.
11019 <P><UL>
11020 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11021 </UL>
11023 &lt;End of help on this topic&gt;
11024 </BODY>
11025 </HTML>
11026 ===== h_rules_filter =====
11027 <HTML>
11028 <HEAD>
11029 <TITLE>SETUP FILTERING SCREEN</TITLE>
11030 </HEAD>
11031 <BODY>
11032 <H1>SETUP FILTERING SCREEN</H1>
11033 <H2>SETUP FILTERING COMMANDS</H2>
11034 <!--chtml if pinemode="function_key"-->
11035 <PRE>
11036 Available  Commands -- Group 1         Available Commands -- Group 2   
11037 -------------------------------        ------------------------------  
11038 F1  Show Help Text                      F1  Show Help Text             
11039 F2  See commands in next group          F2  See commands in next group
11040 F3  Back to MAIN Alpine menu
11041 F4  Change configuration for filter
11042 F5  Move to previous filter             F5  Include file in filter config
11043 F6  Move to next filter                 F6  Exclude file from config
11044 F7  Previous page of filters
11045 F8  Next page of filters
11046 F9  Add new filter                      F9  Replicate existing filter
11047 F10 Delete existing filter
11048 F11 Shuffle the order of filters
11049 F12 Whereis (search filter nicknames)
11050 </PRE>
11051 <!--chtml else-->
11052 <PRE>
11053 Navigation                     General Alpine Commands
11054 -------------------------      -----------------------
11055  P  Prev Filter                   ?  Display this help text
11056  N  Next Filter                   E  Back to MAIN Alpine menu
11057  -  Previous page
11058 Spc (space bar) Next page
11059  W  WhereIs (search for word in filter nicknames)
11061 Setup Filters Commands
11062 ------------------------------------------------
11063  A  Add new filter                $  Shuffle the order of filters
11064  D  Delete existing filter        C  Change configuration for highlighted filter
11065  R  Replicate existing filter
11066  I  Include file in filter config X  Exclude file from filter config
11067 </PRE>
11068 <!--chtml endif-->
11070 <H2>Description of the Setup Filtering Screen</H2>
11072 This screen lets you add, delete, modify, or change the order of the rules
11073 that determine the filtering Alpine does on folders you view.
11075 The software that actually delivers mail (the stuff that happens
11076 before Alpine is involved) for you is in a better position to do mail filtering
11077 than Alpine itself.
11078 If possible, you may want to look into using that sort of mail filtering to
11079 deliver mail to different folders, delete it, or forward it.
11080 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
11082 Filtering is a way to automatically move certain messages from one folder
11083 to another or to delete messages.
11084 It can also be used to set message status (Important, Deleted, New,
11085 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
11086 Alpine doesn't have the ability to forward mail to another address or
11087 to deliver vacation messages.
11089 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
11090 When a folder is opened, when new mail arrives in an open folder, or
11091 when mail is Expunged from a folder; each
11092 message is compared with the Patterns of your filtering rules.
11093 The comparisons start with the first rule and keep going until there
11094 is a match.
11095 If a match is found, the message may be deleted or moved, depending on
11096 the setting of the Filter Action.
11097 If the message is not deleted, it may have its status altered.
11100 <EM>NOTE:</EM>
11101 When setting up a Pattern used to delete messages,
11102 it is recommended that you test the Pattern first with a &quot;Move&quot;
11103 folder specified in
11104 case unintended matches occur.  Messages that are deleted will be removed 
11105 from the folder and <EM>unrecoverable</EM> from within Alpine after the
11106 next Expunge command or once the folder being filtered has been closed.
11108 <H2>Filter Patterns</H2>
11110 In order to determine whether or not a message matches a filter the message is
11111 compared with the Filter's Pattern.
11112 These Patterns are the same for use with Roles, Filtering, Index Coloring,
11113 Scoring, Other Rules, and Search Rules, so are described in only one place,
11114 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
11116 Since filtering is a potentially destructive action, if you have a filtering
11117 Pattern with nothing other than Current Folder Type set, that filtering
11118 rule is ignored.
11120 <H2>Filter Actions</H2>
11122 Once a filter match is found for a particular message, there are some actions
11123 that may be taken.
11124 First, the message may have its status changed.
11125 This is the same message status that you can manipulate manually using the
11126 <a href="h_common_flag">Flag Command</a>.
11127 There are always four elements of message status that you can control.
11128 You can set or clear the Important status, the New status, the Deleted
11129 status, and the Answered status.
11130 Of course, if the filter is going to delete the message,
11131 then there is no point in setting message status.
11132 You may also be able to set user-defined keywords for a message.
11133 Read a little about keywords in the help text for the
11134 <A HREF="h_common_flag">Flag</A> command.
11136 Second, the filter may delete or move the message.
11137 Deleting the message marks it Deleted and removes it from view.
11138 It is effectively gone forever (though it technically is still there until
11139 the next expunge command, which may happen implicitly).
11140 Moving the message moves it from the open folder into the folder
11141 listed on the &quot;Folder List&quot; line of the filter configuration.
11142 If you list more than one folder name (separated by commas) then the message
11143 will be copied to each of those folders.
11144 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
11145 message is removed from the current folder.
11146 If you just want to set the messages status without deleting it from
11147 the folder, then set the filter action to
11148 &quot;Just Set Message Status&quot;.
11150 (There is no way to do a Copy instead of a Move, due to the difficulties
11151 involved in keeping track of whether or not a message has
11152 already been copied.)
11154 <H2>Command Descriptions</H2>
11156 <H3>Add</H3>
11158 The Add command is used to add a new filter definition to your set of
11159 filters.
11160 The new filter will be added after the highlighted filter.
11162 <H3>Delete</H3>
11164 The Delete command deletes the currently highlighted filter.
11166 <H3>Change</H3>
11168 The Change command lets you edit the nickname, Pattern,
11169 and Folder of the currently highlighted filter.
11171 <H3>Shuffle</H3>
11173 The Shuffle command allows you to change the order of the filters.
11174 You may move the currently highlighted filter up or down in the list.
11175 The order of the filters is important since the filters are tested for a
11176 match starting with the first filter and continuing until a match is found.
11177 You should place the filters with more specific Patterns near the beginning
11178 of the list, and those with more general Patterns near the end so that
11179 the more specific matches will happen when appropriate.
11181 <H3>Replicate</H3>
11183 The Replicate command is used to copy an existing filter and modify it.
11184 The new filter will be added after the highlighted filter.
11186 <H3>IncludeFile</H3>
11188 The IncludeFile command allows you to add a filters file to your configuration.
11189 Usually, your filters will be contained in your Alpine configuration file.
11190 If you wish, some or all of your filters may be stored in a separate file.
11191 If a filters file already exists (maybe it was made by somebody else using
11192 Alpine), you may insert it before the currently highlighted filter.
11193 You may also insert an empty file or a file that does not yet exist.
11194 Once you have an empty filters file in your configuration, you may use
11195 the Shuffle command to move filters into it.
11196 In fact, that's the only way to get the initial filter into the file.
11198 <H3>eXcludeFile</H3>
11200 The eXcludeFile command removes a filters file from your filters configuration.
11201 A limitation of the program is that in order to exclude a filters file
11202 that file must have at least one filter
11203 in it, otherwise you won't be able to highlight a line in the file.
11204 So you may have to add a dummy filter to the file in order to exclude the file.
11205 <P><UL>
11206 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11207 </UL>
11209 <H3>Performance Considerations</H3>
11210 The number and type of patterns being tested can 
11211 adversely effect performance.  Issues to be aware
11212 of include:
11214 <UL>
11215   <LI> The more filters you have defined the longer it will take to run down
11216 the list.  Deleting unused filters is a good idea.
11217   <LI> Filtering in newsgroups served by an NNTP server will be slow
11218 if your patterns include tests other than &quot;From:&quot;
11219 or &quot;Subject:&quot;.
11220 </UL>
11222 &lt;End of help on this topic&gt;
11223 </BODY>
11224 </HTML>
11225 ===== h_rules_score =====
11226 <HTML>
11227 <HEAD>
11228 <TITLE>SETUP SCORING SCREEN</TITLE>
11229 </HEAD>
11230 <BODY>
11231 <H1>SETUP SCORING SCREEN</H1>
11232 <H2>SETUP SCORING COMMANDS</H2>
11233 <!--chtml if pinemode="function_key"-->
11234 <PRE>
11235 Available  Commands -- Group 1         Available Commands -- Group 2   
11236 -------------------------------        ------------------------------  
11237 F1  Show Help Text                      F1  Show Help Text             
11238 F2  See commands in next group          F2  See commands in next group
11239 F3  Back to MAIN Alpine menu
11240 F4  Change configuration for rule
11241 F5  Move to previous rule               F5  Include file in rule config
11242 F6  Move to next rule                   F6  Exclude file from config
11243 F7  Previous page of rules
11244 F8  Next page of rules
11245 F9  Add new rule                        F9  Replicate existing rule
11246 F10 Delete existing rule
11247 F11 Shuffle the order of rules
11248 F12 Whereis (search rule nicknames)
11249 </PRE>
11250 <!--chtml else-->
11251 <PRE>
11252 Navigation                     General Alpine Commands
11253 -------------------------      -----------------------
11254  P  Prev rule                     ?  Display this help text
11255  N  Next rule                     E  Back to MAIN Alpine menu
11256  -  Previous page
11257 Spc (space bar) Next page
11258  W  WhereIs (search for word in rule nicknames)
11260 Setup Scoring Commands
11261 ------------------------------------------------
11262  A  Add new rule                  $  Shuffle the order of rules
11263  D  Delete existing rule          C  Change configuration for highlighted rule
11264  R  Replicate existing rule
11265  I  Include file in rule config   X  Exclude file from rule config
11266 </PRE>
11267 <!--chtml endif-->
11269 <H2>Description of the Setup Scoring Screen</H2>
11271 Most people will not use scores at all, but if you do use them, here's how
11272 they work in Alpine.
11273 Using this screen, you may define Scoring rules.
11274 The score for a message is calculated by looking at every Score rule defined
11275 and adding up the Score Values for the ones that match the message.
11276 If there are no matches for a message, it has a score of zero.
11277 Message scores may be used a couple of ways in Alpine.
11279 <H3>Sorting by Score</H3>
11281 One of the methods you may use to sort message indexes is to sort by
11282 score.
11283 The scores of all the messages in a folder will be calculated and then
11284 the index will be ordered by placing the messages in order of ascending or
11285 descending score.
11287 <H3>Scores for use in Patterns</H3>
11289 The Patterns used for Roles, Index Line Coloring, and Filtering have a
11290 category labeled &quot;Score Interval&quot;.
11291 When a message is being compared with a Pattern to check for a match, if
11292 the Score Interval is set only messages that have a score somewhere in
11293 the interval are a match.
11295 <H2>Scoring Rule Patterns</H2>
11297 In order to determine whether or not a message matches a scoring rule
11298 the message is compared with the rule's Pattern.
11299 These Patterns are the same for use with Roles, Filtering, Index Coloring,
11300 Scoring, Other Rules, and Search Rules, so are described in only one place,
11301 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
11304 Actually, Scoring rule Patterns are slightly different from the other types of
11305 Patterns because Scoring rule Patterns don't contain a Score Interval.
11306 In other words, when calculating the score for a message, which is done
11307 by looking at the Scoring rule Patterns, scores aren't used.
11309 <H2>Score Value</H2>
11311 This is the value that will be added to the score for a message if the
11312 rule's Pattern is a match.
11313 Each individual Score Value is an integer between -100 and 100, and the
11314 values from matching rules are added together to get a message's score.
11315 There is also a way to extract the value from a particular header of each
11316 message. See the help text for Score Value for further information.
11318 <H2>Command Descriptions</H2>
11320 <H3>Add</H3>
11322 The Add command is used to add a new scoring rule definition.
11323 The new rule will be added after the highlighted rule.
11325 <H3>Delete</H3>
11327 The Delete command deletes the currently highlighted scoring rule.
11329 <H3>Change</H3>
11331 The Change command lets you edit the nickname, Pattern,
11332 and Score Value of the currently highlighted scoring rule.
11334 <H3>Shuffle</H3>
11336 The Shuffle command allows you to change the order of the scoring rules.
11337 You may move the currently highlighted rule up or down in the list.
11338 The order of the rules is important since the rules are tested for a
11339 match starting with the first rule and continuing until a match is found.
11340 You should place the rules with more specific Patterns near the beginning
11341 of the list, and those with more general Patterns near the end so that
11342 the more specific matches will happen when appropriate.
11344 <H3>Replicate</H3>
11346 The Replicate command is used to copy an existing rule and modify it.
11347 The new rule will be added after the highlighted rule.
11349 <H3>IncludeFile</H3>
11351 The IncludeFile command allows you to add a rules file to your configuration.
11352 Usually, your rules will be contained in your Alpine configuration file.
11353 If you wish, some or all of your rules may be stored in a separate file.
11354 If a rules file already exists (maybe it was made by somebody else using
11355 Alpine), you may insert it before the currently highlighted rule.
11356 You may also insert an empty file or a file that does not yet exist.
11357 Once you have an empty rules file in your configuration, you may use
11358 the Shuffle command to move rules into it.
11359 In fact, that's the only way to get the initial rule into the file.
11361 <H3>eXcludeFile</H3>
11363 The eXcludeFile command removes a rules file from your rules configuration.
11364 A limitation of the program is that in order to exclude a rules file
11365 that file must have at least one rule
11366 in it, otherwise you won't be able to highlight a line in the file.
11367 So you may have to add a dummy rule to the file in order to exclude the file.
11368 <P><UL>
11369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11370 </UL>
11372 &lt;End of help on this topic&gt;
11373 </BODY>
11374 </HTML>
11375 ===== h_direct_config =====
11376 <HTML>
11377 <HEAD>
11378 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
11379 </HEAD>
11380 <BODY>
11381 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
11382 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
11383 <!--chtml if pinemode="function_key"-->
11384 <PRE>
11385 Available  Commands                        
11386 -------------------------------            
11387 F1  Show Help Text                         
11388 F3  Back to MAIN Alpine menu                 
11389 F4  Change configuration for directory server  
11390 F5  Move to previous directory server          
11391 F6  Move to next directory server              
11392 F7  Previous page of directory servers         
11393 F8  Next page of directory servers
11394 F9  Add new directory server
11395 F10 Delete existing directory server
11396 F11 Shuffle the order of directory servers
11397 F12 Whereis (search directory server titles)   
11398 </PRE>
11399 <!--chtml else-->
11400 <PRE>
11401 Navigation                     General Alpine Commands
11402 -------------------------      -----------------------
11403  P  Prev Directory Server         ?  Display this help text
11404  N  Next Directory Server         E  Back to MAIN Alpine menu
11405  -  Previous page
11406 Spc (space bar) Next page
11407  W  WhereIs (search for word in directory server titles)
11409 Setup LDAP Directory Server Commands
11410 ------------------------------------------------
11411  A  Add new directory server      $  Shuffle the order of directory servers
11412  D  Delete existing dir server    C  Change configuration for highlighted server
11413 </PRE>
11414 <!--chtml endif-->
11416 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
11418 This screen lets you add, delete, modify, or change the order of your
11419 directory servers. You may also set some optional behavior for each server.
11420 The &quot;Add Dir&quot; command brings up a blank form to 
11421 fill in. You will have to supply at least the name of the LDAP server.
11422 You will often have to supply a search base to be used with that server,
11423 as well. Once the form has been brought up on your screen, there is help
11424 available for each of the options you may set.
11426 The &quot;Del Dir&quot; command allows you to remove a directory server
11427 from your configuration.
11429 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
11430 The difference is that instead of bringing up a form for a new server
11431 configuration, you are changing the configuration of an existing entry.
11432 For example, you might want to correct a typing error, change a
11433 nickname, or change one of the options set for that server.
11435 The &quot;Shuffle&quot; command is used to change the order of directory
11436 servers.
11437 <P><UL>
11438 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11439 </UL>
11441 &lt;End of help on this topic&gt;
11442 </BODY>
11443 </HTML>
11444 ============= h_address_display ========================
11445 <HTML>
11446 <HEAD>
11447 <TITLE>SEARCH RESULTS INDEX</TITLE>
11448 </HEAD>
11449 <BODY>
11450 <H1>SEARCH RESULTS INDEX</H1>
11451 This screen shows the results, if any, of your Directory Server search.  
11452 Commands (besides those for screen navigation) are:
11453 <DL>
11454 <DT>View
11455 <!--chtml if pinemode="function_key"-->
11456 (F4)
11457 <!--chtml else-->
11459 <!--chtml endif-->
11460 </DT>
11461 <DD>See the full information for the selected entry.
11463 <DT>Compose
11464 <!--chtml if pinemode="function_key"-->
11465 (F9)
11466 <!--chtml else-->
11468 <!--chtml endif--></DT>
11469 <DD>Compose a message with the selected entry as the recipient.
11471 <DT>Role
11472 <!--chtml if pinemode="function_key"-->
11473 (F2)
11474 <!--chtml else-->
11476 <!--chtml endif--></DT>
11477 <DD>Compose a message with the selected entry as the recipient. This differs
11478 from Compose in that you may select a role before beginning your composition.
11480 <DT>Forward
11481 <!--chtml if pinemode="function_key"-->
11482 (F10)
11483 <!--chtml else-->
11485 <!--chtml endif--></DT>
11486 <DD>Send the full information for the selected entry as an 
11487 email message to someone else.
11489 <DT>Save
11490 <!--chtml if pinemode="function_key"-->
11491 (F11)
11492 <!--chtml else-->
11494 <!--chtml endif-->
11495 </DT>
11496 <DD>Save to your address book:
11497 <UL>
11498 <LI>the result of the search (as just found through your query) for the 
11499 selected entry; or 
11500 <LI>the selected entry for repeated Directory Server searching when used 
11501 in the future.
11502 </UL>
11503 or<BR>
11504 Export to a file (external to Alpine):
11505 <UL>
11506 <LI>the full information for the selected entry; or
11507 <LI>the email address from the selected entry; or
11508 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
11509 </UL>
11510 <DT>WhereIs
11511 <!--chtml if pinemode="function_key"-->
11512 (F12)
11513 <!--chtml else-->
11515 <!--chtml endif-->
11516 </DT>
11517 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11518 displayed text, not the full records for each entry.)  
11519 </DL>
11520 &lt;End of help on this topic&gt;
11521 </BODY>
11522 </HTML>
11523 ============= h_address_select ========================
11524 <HTML>
11525 <HEAD>
11526 <TITLE>SEARCH RESULTS INDEX</TITLE>
11527 </HEAD>
11528 <BODY>
11529 <H1>SEARCH RESULTS INDEX</H1>
11530 This screen shows the results, if any, of your Directory Server search.  
11531 Commands (besides those for screen navigation) are:
11532 <DL>
11533 <DT>Select
11534 </DT>
11535 <DD>Select this entry for use.
11537 <DT>ExitSelect
11538 <DD>Exit without selecting any of the entries.
11540 <DT>WhereIs
11541 </DT>
11542 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11543 displayed text, not the full records for each entry.)  
11544 </DL>
11545 &lt;End of help on this topic&gt;
11546 </BODY>
11547 </HTML>
11548 ===== h_folder_maint =====
11549 <HTML>
11550 <HEAD>
11551 <TITLE>Help for Folder List</TITLE>
11552 </HEAD>
11553 <BODY>
11554 <H1>FOLDER LIST COMMANDS</H1>
11555 <!--chtml if pinemode="function_key"-->
11556 <PRE>
11557 Available Commands -- Group 1        Available Commands -- Group 2
11558 -------------------------------      ------------------------------
11559 F1  Show Help Text                    F1  Show Help Text               
11560 F2  See commands in next group        F2  See commands in next group  
11561 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11562 F4  Select folder and view it         F4  MAIN MENU Screen
11563 F5  Move to previous folder
11564 F6  Move to next folder               F6  Specify a folder to go to
11565 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11566 F8  Show next screen of listing       F8  Compose a message
11567 F9  Add a new folder                  F9  Print folder listing
11568 F10 Delete selected folder
11569 F11 Rename selected folder
11570 F12 Whereis (search folder names)
11572 Available Commands -- Group 3
11573 F1  Show Help Text
11574 F2  See commands in next group
11575 F5  Go to next new message
11576     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11577 F8  Compose a message using roles
11578 F9  Export folder to a file
11579 F10 Import the file back to a folder
11580 </PRE>
11581 <!--chtml else-->
11582 <PRE>
11583 Navigating the Folder Screen            Operations on the Selected Folder
11584 ----------------------------            ---------------------------------
11585  P   Move to previous folder              V  View Index of selected folder
11586  N   Move to next folder                  D  Delete
11587  -   Show previous page of listing        R  Rename
11588 Spc  (space bar) Show next page           E  Export to file
11589                                           U  Import from file to folder
11591 FOLDER LIST Screen Commands              General Alpine Command
11592 ---------------------------              -----------------------
11593  A  Add a folder                          O  Show all other available commands
11594  G  Specify a folder to go to             ?  Show Help text
11595  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11596  W  Whereis (search folder names)         Q  Quit Alpine
11597  %  Print folder listing                  C  Compose a message
11598                                           #  Compose a message using roles
11599 </PRE>
11600 <!--chtml endif-->
11602 These commands are only available in the FOLDER LIST screen when the 
11603 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11604 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11605 <DT>Select:</DT>
11606 <DD>Select folders by certain criteria:<UL>
11607 <LI>All: of limited use, since there is no Apply command.
11608 <LI>by Property: <UL>
11609         <LI>folder contains messages not yet seen 
11610         <LI>folder contains new messages
11611         <LI>folder contains exactly as many, more, or fewer messages 
11612 than a given number
11613         </UL>
11614 <LI>by Text: <UL>
11615         <LI>contained in name of folder (Name Select)
11616         <LI>contained in messages in folder (Content Select)
11617         </UL>
11618 </UL></DD>
11620 <DT>Select current:</DT>
11621 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11622 add one or more folders to a set created with the Select command described 
11623 above.)</DD>
11624 <DT>Zoom mode:</DT>
11625 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11626 </DL>
11628 If the feature
11629 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11630 is set then the TAB key will display the number of recent messages and
11631 the total number of messages in the highlighted folder.
11633 The &quot;Export&quot; command causes the lowest common denominator style
11634 mailbox to be written to a file.
11635 If the file already exists, you are asked if you want to delete it.
11636 If you say No, then the operation is aborted.
11637 Export might be a reasonable way to store a backup or an archival copy of
11638 a folder.
11639 The exported-to file is a local file on the system where you are running Alpine.
11640 The &quot;Import&quot; command is the opposite of the Export command.
11641 It reads a file created by Export and asks where it should save it in your
11642 folders.
11643 This could be a new folder or an existing folder.
11644 If the folder already exists, the messages from the exported file will be
11645 appended to the folder.
11647 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11649 The purpose of the FOLDER LIST screen is to help you browse and manage
11650 the folders and directories (also known as &quot;hierarchy&quot;)
11651 contained within a collection.
11654 Folders and directories are arranged alphabetically across lines of
11655 the screen.  Directories, if present, are denoted by a special
11656 character at the end of the name known as the hierarchy delimiter
11657 (typically, &quot;/&quot;).  By default, folders and directories are
11658 mixed together.  The
11659 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11660 configuration option can be used to group directories toward the 
11661 beginning or end of the list.
11664 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11665 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11666 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11667 selected item.  Folder and directory management is provided via the
11668 Rename, Delete and Add commands.
11670 <P><CENTER>About Folders</CENTER>
11671 What are Folders?<P>
11673 Folders are simply files where messages are kept.  Every message has to be
11674 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11675 folder for sent mail and a folder for saved messages.<P>
11677 You may create as many other folders as you wish.  They must be given
11678 names that can be filenames on the filesystem.  
11681 You can move messages from one folder to another by opening the original
11682 folder and saving messages into the other folder just as you can save
11683 message from your INBOX to any other folder.<P>
11685 Folders are typically just files in the filesystem.  However, the files
11686 that are
11687 folders have some special formatting in them (so that Alpine knows where one
11688 message ends and another begins) and should <EM>not</EM> be edited outside of
11689 Alpine.  If you want copies of your messages in text files that you can edit
11690 or otherwise manipulate, use the Export command to copy them from Alpine into
11691 your regular file area.
11694 FOR MORE INFORMATION: See the section on
11695 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11697 <CENTER>About Directories</CENTER>
11699 A directory is simply a container used to group folders within a
11700 folder list.  You can create as many directories as you like.  And 
11701 directories can even contain directories themselves.
11704 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11705 to note that not all IMAP servers support directories.  If you find that
11706 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11707 then it's likely that directories are not supported by the server serving
11708 in that collection.
11711 Similarly, servers that do provide for directories may not do so in
11712 the same way.  On some servers, for example, each folder name you
11713 create is at the same time capable of being a directory.  When this
11714 happens, Alpine will display both the folder name and the name of the
11715 directory (with trailing hierarchy delimiter) in the folder list.
11718 Another issue with IMAP access, though with a much smaller set of servers,
11719 is that not all servers accept the request to list out the available
11720 folders and directories in the same way.  If you find yourself having
11721 trouble viewing folders on your server, you might investigate the
11722 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11723 feature.
11725 <UL>
11726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11727 </UL>
11729 &lt;End of help on this topic&gt;
11730 </BODY>
11731 </HTML>
11732 ========= h_valid_folder_names ========
11733 <HTML>
11734 <HEAD>
11735 <TITLE>Explanation of Valid Folder Names</TITLE>
11736 </HEAD>
11737 <BODY>
11738 <H1>Folder Name Syntax Explained</H1>
11740 Once your folder collections are defined, you can usually refer to
11741 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11742 display.  However, understanding the complete syntax for folder names,
11743 both local and remote, is handy when using the Goto command and when
11744 you are adding new folder collections via the Setups/collectionList screen.
11746 An Alpine folder name looks like
11749 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11752 The square brackets ([]) mean that the part is optional.
11755 If there is no remote-specification, then the folder name is interpreted
11756 locally on the computer running Alpine.
11757 Local folder names depend on the operating system used by the computer 
11758 running Alpine, as well as the configuration of that system.  For example,
11759 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11760 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11761 system running Unix.
11764 Alpine users have the option of using folders that are stored on some other
11765 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11766 Access Protocol), or in the case of news, via NNTP (the Network News
11767 Transport Protocol).  To be able to access remote folders in Alpine, the
11768 remote host must be running the appropriate server software (imapd or
11769 nntpd) and you must correctly specify the name of the folder to Alpine,
11770 including the domain name of the remote machine. For example,
11772 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11774 could be a remote folder specification, and so could
11776 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11779 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11781 Note that in the case of remote folders, the directory/file path in the specification is 
11782 determined by the operating system of the remote computer, <B>not</B> by
11783 the operating system of the computer on which you are running Alpine.
11785 As you can tell, the name of the computer is in &#123;} brackets
11786 followed immediately by the name of the folder.  (In each of these cases the
11787 optional namespace is missing.)  If, as in these
11788 examples, there is no remote access protocol specified, then IMAP is
11789 assumed.  Check
11790 <A HREF="h_folder_server_syntax">here</A>
11791 for a more detailed look at what options can be placed between the brackets.
11792 If there are no brackets at all, then the folder name is interpreted locally
11793 on the computer on which you are running Alpine.
11796 To the right of the brackets when a server name is present, or at the
11797 start of the foldername if no server is present, the sharp sign,
11798 &quot;#&quot;, holds special meaning.  It indicates a folder name
11799 outside the area reserved for your personal folders.  In fact, it's
11800 used to indicate both the name of the folder, and a special phrase
11801 telling Alpine how to interpret the name that follows.
11804 So, for example, Alpine can be used to access a newsgroup that might be 
11805 available on your computer using:
11807 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11809 The sharp sign indicates the folder name is outside your personal
11810 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11811 interpret the remainder of the name as a newsgroup.
11814 Similarly, to access a newsgroup on your IMAP server, you might
11815 use something like:
11817 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11820 There are a number of such special phrases (or &quot;namespaces&quot;)
11821 available.  For a more detailed explanation read about
11822 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11825 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11826 names.  The name INBOX refers to your &quot;principal incoming
11827 message folder&quot; and will be mapped to the actual file name used for your
11828 INBOX on any given host.  Therefore, a name like
11829 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11830 store incoming mail for you on that particular host.
11833 &lt;End of help on this topic&gt;
11834 </BODY>
11835 </HTML>
11836 ======= h_folder_name_namespaces =======
11837 <HTML>
11838 <HEAD>
11839 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11840 </HEAD>
11841 <BODY>
11842 <H1>Folder Name Namespaces Explained</H1>
11844 An Alpine folder name looks like
11847 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11850 The local part of a folder name has an optional &quot;Namespace&quot; which
11851 tells Alpine how to interpret the rest of the name.
11853 <P> 
11854 By default the folder name is interpreted as defining a section of your personal
11855 folder area.  This area and how you specify it are defined by the
11856 server, if one is specified, or, typically, the home
11857 directory, if no server is defined.
11860 If a namespace is specified, it begins with the
11861 sharp, &quot;#&quot;, character followed by the name of the namespace
11862 and then the namespace's path-element-delimiter.  Aside from the
11863 path's format, namespaces can also imply access rights, content
11864 policy, audience, location, and, occasionally, access methods.
11867 Each server exports its own set (possibly of size one) of 
11868 namespaces.  Hence, it's likely communication with your server's
11869 administrator will be required for specific configurations.  Some of
11870 the more common namespaces, however, include:
11872 <DL>
11873 <DT>#news.</DT>
11874 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11875 names are hierarchically defined with each level delimited by a period.
11877 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11879 </DD>
11880 <DT>#public/</DT>
11881 <DD>This specifies a folder area that the server may export to the general
11882 public.
11883 </DD>
11884 <DT>#shared/</DT>
11885 <DD>This specifies a folder area that the server may export to groups
11886 of users.
11887 </DD>
11888 <DT>#ftp/</DT>
11889 <DD>This specifies a folder area that is the same as that it may have 
11890 exported via the &quot;File Transfer Protocol&quot;.
11891 </DD>
11892 <DT>#mh/</DT>
11893 <DD>This specifies the personal folder area associated with folders
11894 and directories that were created using the MH message handling system.
11895 </DD>
11896 <DT>#move/</DT>
11897 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11899 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11901 The #move namespace is followed by two folder names separated by a delimiter
11902 character.
11903 The delimiter character may be any character that does not appear in
11904 the MailDropFolder name.
11905 The meaning of #move is that mail will be copied from the MailDropFolder to
11906 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11907 Periodic checks at frequency
11908 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11909 time between checks set by
11910 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11911 are made for new mail arriving in the MailDropFolder.
11912 An example that copies mail from a POP inbox to a local folder follows
11914 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11916 To you it appears that mail is being delivered to the local folder when it
11917 is copied from the MailDropFolder, and you read mail from the local folder.
11919 Note that if the DestinationFolder does not exist then the messages are not
11920 copied from the MailDropFolder.
11921 A #move folder may only be used as an
11922 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11923 an Inbox.
11924 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11925 on the
11926 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11927 option)
11928 the Add command has a subcommand &quot;Use Mail Drop&quot;
11929 which may be helpful for defining the folder in your Alpine configuration.
11930 The same is true when you edit the
11931 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11932 option in Setup/Config.
11933 Each of these configuration methods will also create the DestinationFolder
11934 if it doesn't already exist.
11935 If you are having problems, make sure the DestinationFolder exists.
11936 You may find some more useful information about Mail Drops at
11937 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11938 </DD>
11939 </DL>
11942 In addition, the server may support access to other user's folders,
11943 provided you have suitable permissions.  Common methods use a prefix
11944 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11945 indicate the root of the other user's folder area.
11948 No, nothing's simple.
11951 &lt;End of help on this topic&gt;
11952 </BODY>
11953 </HTML>
11954 ============= h_whatis_vcard ========================
11955 <HTML>
11956 <HEAD>
11957 <TITLE>VCARD EXPLAINED</TITLE>
11958 </HEAD>
11959 <BODY>
11960 <H1>What is the vCard format?</H1>
11961 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11962 information about and among people and organizations electronically.  
11963 More information about vCard can be found (as of May 1998) on the WWW site 
11964 of the Internet Mail Consortium at the URL:
11966 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11968 &lt;End of help on this topic&gt;
11969 </BODY>
11970 </HTML>
11971 ===== h_folder_open =====
11972 <HTML>
11973 <HEAD>
11974 <TITLE>Explanation of Folder Selection</TITLE>
11975 </HEAD>
11976 <BODY>
11977 <BR>
11978 <BR>
11979 This screen is designed to allow you to quickly and easily survey your
11980 folders and select one to open.
11981 <!--chtml if pinemode="function_key"-->
11982 <PRE>
11983 Navigating the List of Folders             General Alpine Commands
11984 ------------------------------             -----------------------
11985  P   Move to previous folder               ?   Show this help text
11986  N   Move to next folder
11987  -   Show previous screen of folders
11988 Spc  (space bar) Show next screen
11989  W   WhereIs (search folder names)
11991 Folder Selection Commands
11992 -------------------------
11993  E   Exit the Folder Select menu (without selecting a folder)
11994  S   Select the currently highlighted folder
11995 </PRE>
11996 <!--chtml else-->
11997 <PRE>
11998 Navigating the List of Folders             General Alpine Commands
11999 ------------------------------             -----------------------
12000 F5   Move to previous folder               F1  Show this help text
12001 F6   Move to next folder
12002 F7   Show previous screen of folders
12003 F8   Show next screen of folders
12004 F12  WhereIs (search folder names)
12006 Folder Selection Commands
12007 -------------------------
12008 F3   Exit the Folder Select menu (without selecting a folder)
12009 F4   Select the currently highlighted folder
12010 </PRE>
12011 <!--chtml endif-->
12013 FOR MORE INFORMATION: See the section on
12014 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12016 &lt;End of help on this topic&gt;
12017 </BODY>
12018 </HTML>
12019 ===== h_folder_subscribe =====
12020 <HTML>
12021 <HEAD>
12022 <TITLE>Newsgroup Subscribe Screen explained</TITLE>
12023 </HEAD>
12024 <BODY>
12025 <H1>FOLDER SUBSCRIBE HELP</H1>
12027 This screen is designed to help you subscribe to newsgroups you are
12028 not currently subscribed to.  The screen display is a list of all
12029 available newsgroups (or possibly a partial list if you specified a
12030 partial name when entering the screen).  Groups you have already
12031 subscribed to have the letters &quot;SUB&quot; next to them.  You may
12032 select a single new group to subscribe to by moving the cursor to that
12033 group and pressing &quot;S&quot; or carriage return.  Alternatively,
12034 you may change into ListMode with the &quot;ListMode&quot; command.
12035 The display will change slightly so that each group has a checkbox in
12036 front of it.  Use the cursor and the Set/Unset command to place an
12037 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
12040 When you are finished marking groups, the &quot;Subscribe&quot;
12041 command will subscribe you to those groups you have marked.  Note, you
12042 may not unsubscribe to groups with this command.  Instead of the
12043 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
12044 UnSbscrbe command.
12047 <!--chtml if pinemode="function_key"-->
12048 <PRE>
12049 Navigating the List of Newsgroups          General Alpine Commands
12050 ---------------------------------          -----------------------
12051 F5   Move to previous group                F1   Show this help text
12052 F6   Move to next group
12053 F7   Show previous screen of groups
12054 F8   Show next screen of groups
12055 F12  WhereIs (search group names)
12056 F9   Use ListMode
12058 Group Selection Commands
12059 -------------------------
12060 F3  Exit the News Subscribe menu (without selecting any groups)
12061 F4  Subscribe to the currently highlighted newsgroup
12062 </PRE>
12063 <!--chtml else-->
12064 <PRE>
12065 Navigating the List of Newsgroups          General Alpine Commands
12066 ---------------------------------          -----------------------
12067  P   Move to previous group                ?   Show this help text
12068  N   Move to next group
12069  -   Show previous screen of groups
12070 Spc  (space bar) Show next screen
12071  W   WhereIs (search group names)
12072  L   Use ListMode
12074 Group Selection Commands
12075 -------------------------
12076  E   Exit the News Subscribe menu (without selecting any groups)
12077  S   Subscribe to the currently highlighted newsgroup
12078 </PRE>
12079 <!--chtml endif-->
12081 When in ListMode, there is an additional command for marking groups to
12082 subscribe to:
12084 <!--chtml if pinemode="function_key"-->
12085 <PRE>
12086 ListMode Commands
12087 -------------------------
12088 F9  Set or unset the highlighted group
12089 </PRE>
12090 <!--chtml else-->
12091 <PRE>
12092 ListMode Commands
12093 -------------------------
12094 X   Set or unset the highlighted group
12095 </PRE>
12096 <!--chtml endif-->
12098 &lt;End of help on this topic&gt;
12099 </BODY>
12100 </HTML>
12101 ===== h_folder_postnews =====
12102 <HTML>
12103 <HEAD>
12104 <TITLE>Newsgroup selecting for Posting explained</TITLE>
12105 </HEAD>
12106 <BODY>
12107 This screen is designed to allow you to quickly and easily survey
12108 the available newsgroups and select one to post news to.
12110 <!--chtml if pinemode="function_key"-->
12111 <PRE>
12112 Navigating the List of Newsgroups          General Alpine Commands
12113 ---------------------------------          -----------------------
12114 F5   Move to previous group                F1  Show this help text
12115 F6   Move to next group
12116 F7   Show previous screen of groups
12117 F8   Show next screen of groups
12118 F12  WhereIs (search group names)
12120 Group Selection Commands
12121 -------------------------
12122 F3   Exit the Selection menu (without selecting a group)
12123 F4   Select the currently highlighted newsgroup
12124 </PRE>
12125 <!--chtml else-->
12126 <PRE>
12127 Navigating the List of Newsgroups          General Alpine Commands
12128 ---------------------------------          -----------------------
12129  P   Move to previous group                ?  Show this help text
12130  N   Move to next group
12131  -   Show previous screen of groups
12132 Spc  (space bar) Show next screen of groups
12133  W   WhereIs (search group names)
12135 Group Selection Commands
12136 -------------------------
12137  E   Exit the Selection menu (without selecting a group)
12138  S   Select the currently highlighted newsgroup
12139 </PRE>
12140 <!--chtml endif-->
12142 &lt;End of help on this topic&gt;
12143 </BODY>
12144 </HTML>
12145 ===== h_folder_save =====
12146 <HTML>
12147 <HEAD>
12148 <TITLE>Folder Select for Save Explained</TITLE>
12149 </HEAD>
12150 <BODY>
12151 This screen is designed to allow you to quickly and easily survey your
12152 folders and select one to use for saving the current message.
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_folder_fcc =====
12196 <HTML>
12197 <HEAD>
12198 <TITLE>Folder Select for Fcc Explained</TITLE>
12199 </HEAD>
12200 <BODY>
12201 This screen is designed to allow you to quickly and easily survey your
12202 folders and select one to use as the file carbon copy (fcc) for the
12203 current message.
12206 <!--chtml if pinemode="function_key"-->
12207 <PRE>
12208 Navigating the List of Folders             General Alpine Commands
12209 ------------------------------             -----------------------
12210 F5   Move to previous folder               F1  Show this help text
12211 F6   Move to next folder
12212 F7   Show previous screen of folders
12213 F8   Show next screen of folders
12214 F12  WhereIs (search folder names)
12216 Folder Selection Commands
12217 -------------------------
12218 F3   Exit the Folder Select menu (without selecting a folder)
12219 F4   Select the currently highlighted folder
12220 F11  AddNew folder (just like Select, but you type in a new folder name)
12221 </PRE>
12222 <!--chtml else-->
12223 <PRE>
12224 Navigating the List of Folders             General Alpine Commands
12225 ------------------------------             -----------------------
12226  P   Move to previous folder               ?  Show this help text
12227  N   Move to next folder
12228  -   Show previous screen of folders
12229 Spc  (space bar) Show next screen of folders
12230  W   WhereIs (search folder names)
12232 Folder Selection Commands
12233 -------------------------
12234  E   Exit the Folder Select menu (without selecting a folder)
12235  S   Select the currently highlighted folder
12236  A   AddNew folder (just like Select, but you type in a new folder name)
12237 </PRE>
12238 <!--chtml endif-->
12240 FOR MORE INFORMATION: See the section on
12241 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12243 &lt;End of help on this topic&gt;
12244 </BODY>
12245 </HTML>
12246 ===== h_folder_pattern_roles =====
12247 <HTML>
12248 <HEAD>
12249 <TITLE>Folder Select for Current Folder Explained</TITLE>
12250 </HEAD>
12251 <BODY>
12252 This screen is designed to allow you to quickly and easily survey your
12253 folders and select one to use as the specific Current Folder
12254 in a Pattern.
12257 <!--chtml if pinemode="function_key"-->
12258 <PRE>
12259 Navigating the List of Folders             General Alpine Commands
12260 ------------------------------             -----------------------
12261 F5   Move to previous folder               F1  Show this help text
12262 F6   Move to next folder
12263 F7   Show previous screen of folders
12264 F8   Show next screen of folders
12265 F12  WhereIs (search folder names)
12267 Folder Selection Commands
12268 -------------------------
12269 F3   Exit the Folder Select menu (without selecting a folder)
12270 F4   Select the currently highlighted folder
12271 F11  AddNew folder (just like Select, but you type in a new folder name)
12272 </PRE>
12273 <!--chtml else-->
12274 <PRE>
12275 Navigating the List of Folders             General Alpine Commands
12276 ------------------------------             -----------------------
12277  P   Move to previous folder               ?  Show this help text
12278  N   Move to next folder
12279  -   Show previous screen of folders
12280 Spc  (space bar) Show next screen of folders
12281  W   WhereIs (search folder names)
12283 Folder Selection Commands
12284 -------------------------
12285  E   Exit the Folder Select menu (without selecting a folder)
12286  S   Select the currently highlighted folder
12287  A   AddNew folder (just like Select, but you type in a new folder name)
12288 </PRE>
12289 <!--chtml endif-->
12291 FOR MORE INFORMATION: See the section on
12292 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12294 &lt;End of help on this topic&gt;
12295 </BODY>
12296 </HTML>
12297 ===== h_folder_stayopen_folders =====
12298 <HTML>
12299 <HEAD>
12300 <TITLE>Folder Select Explained</TITLE>
12301 </HEAD>
12302 <BODY>
12303 This screen is designed to allow you to quickly and easily survey your
12304 folders and select one to use as a Stay-Open folder.
12307 <!--chtml if pinemode="function_key"-->
12308 <PRE>
12309 Navigating the List of Folders             General Alpine Commands
12310 ------------------------------             -----------------------
12311 F5   Move to previous folder               F1  Show this help text
12312 F6   Move to next folder
12313 F7   Show previous screen of folders
12314 F8   Show next screen of folders
12315 F12  WhereIs (search folder names)
12317 Folder Selection Commands
12318 -------------------------
12319 F3   Exit the Folder Select menu (without selecting a folder)
12320 F4   Select the currently highlighted folder
12321 F11  AddNew folder (just like Select, but you type in a new folder name)
12322 </PRE>
12323 <!--chtml else-->
12324 <PRE>
12325 Navigating the List of Folders             General Alpine Commands
12326 ------------------------------             -----------------------
12327  P   Move to previous folder               ?  Show this help text
12328  N   Move to next folder
12329  -   Show previous screen of folders
12330 Spc  (space bar) Show next screen of folders
12331  W   WhereIs (search folder names)
12333 Folder Selection Commands
12334 -------------------------
12335  E   Exit the Folder Select menu (without selecting a folder)
12336  S   Select the currently highlighted folder
12337  A   AddNew folder (just like Select, but you type in a new folder name)
12338 </PRE>
12339 <!--chtml endif-->
12341 FOR MORE INFORMATION: See the section on
12342 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12344 &lt;End of help on this topic&gt;
12345 </BODY>
12346 </HTML>
12347 ===== h_folder_action_roles =====
12348 <HTML>
12349 <HEAD>
12350 <TITLE>Folder Select Explained</TITLE>
12351 </HEAD>
12352 <BODY>
12353 This screen is designed to allow you to quickly and easily survey your
12354 folders and select one to use as the folder into which messages
12355 matching this filter will be moved.
12358 <!--chtml if pinemode="function_key"-->
12359 <PRE>
12360 Navigating the List of Folders             General Alpine Commands
12361 ------------------------------             -----------------------
12362 F5   Move to previous folder               F1  Show this help text
12363 F6   Move to next folder
12364 F7   Show previous screen of folders
12365 F8   Show next screen of folders
12366 F12  WhereIs (search folder names)
12368 Folder Selection Commands
12369 -------------------------
12370 F3   Exit the Folder Select menu (without selecting a folder)
12371 F4   Select the currently highlighted folder
12372 F11  AddNew folder (just like Select, but you type in a new folder name)
12373 </PRE>
12374 <!--chtml else-->
12375 <PRE>
12376 Navigating the List of Folders             General Alpine Commands
12377 ------------------------------             -----------------------
12378  P   Move to previous folder               ?  Show this help text
12379  N   Move to next folder
12380  -   Show previous screen of folders
12381 Spc  (space bar) Show next screen of folders
12382  W   WhereIs (search folder names)
12384 Folder Selection Commands
12385 -------------------------
12386  E   Exit the Folder Select menu (without selecting a folder)
12387  S   Select the currently highlighted folder
12388  A   AddNew folder (just like Select, but you type in a new folder name)
12389 </PRE>
12390 <!--chtml endif-->
12392 FOR MORE INFORMATION: See the section on
12393 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12395 &lt;End of help on this topic&gt;
12396 </BODY>
12397 </HTML>
12398 ===== h_abook_config =====
12399 <HTML>
12400 <HEAD>
12401 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
12402 </HEAD>
12403 <BODY>
12404 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
12405 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
12406 <!--chtml if pinemode="function_key"-->
12407 <PRE>
12408 Available  Commands                        
12409 -------------------------------            
12410 F1  Show Help Text                         
12411 F3  Back to MAIN Alpine menu                 
12412 F4  Change configuration for address book  
12413 F5  Move to previous address book          
12414 F6  Move to next address book              
12415 F7  Previous page of address books         
12416 F8  Next page of address books             
12417 F9  Add new address book                   
12418 F10 Delete existing address book           
12419 F11 Shuffle the order of address books     
12420 F12 Whereis (search address book titles)   
12421 </PRE>
12422 <!--chtml else-->
12423 <PRE>
12424 Navigation                     General Alpine Commands
12425 -----------------------        -----------------------
12426  P  Prev Address Book           ?  Display this help text
12427  N  Next Address Book           E  Back to MAIN Alpine menu
12428  -  Previous page
12429 Spc (space bar) Next page
12430  W  WhereIs (search for word in address book titles)
12432 Setup Address Books Commands
12433 ------------------------------------------------
12434  A  Add new address book          $  Shuffle the order of address books
12435  D  Delete existing address book  C  Change configuration for address book
12436 </PRE>
12437 <!--chtml endif-->
12439 <H2>Description of the Setup Address Books Screen</H2>
12441 This screen lets you add, delete, modify, or change the order of your
12442 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
12443 fill in.  If you are adding a remote address book on an IMAP server
12444 you should fill in the name of the IMAP server.  Otherwise, leave
12445 that field blank.  (Note that remote IMAP address books are an Alpine
12446 concept and are unlikely to interoperate with other mail clients.)
12447 For a remote address book, fill in the name of the remote folder
12448 in the Folder field.  This should be a folder that is used only for
12449 this one purpose, not a general purpose folder you expect to store
12450 messages in.
12451 <P>If you are adding a local address book, fill in the
12452 Folder Name field with a local file name (e.g., .addressbook).
12454 <B>Please note:</B> Remote address books stored on an IMAP server are 
12455 of an entirely different format (namely, a special-purpose 
12456 &quot;mail folder&quot;) than that of the local addressbook familiar 
12457 to Alpine users.  Therefore, 
12458 you cannot use &quot;add a remote address book&quot; to make an existing 
12459 Alpine .addressbook file you may have on a remote IMAP server accessible to 
12460 Alpine running on a different host.  
12463 The &quot;Del Abook&quot; command allows you to remove an address book
12464 from your configuration.  It will also ask you if you wish to remove
12465 the data for that address book, which would erase all traces of the
12466 address book if you answer Yes.
12469 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
12470 The difference is that instead of adding a new address book to your
12471 configuration, you are changing the configuration of an existing entry.
12472 For example, you might want to correct a typing error or change a
12473 nickname.  The &quot;Change&quot; command is not a move command.  If you
12474 change the folder name or server name the data will not be moved for you.
12477 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
12478 an address book toward another address book in the same group then
12479 the order of those two address books will be swapped.  If you shuffle
12480 the last Personal address book down towards the Global address book
12481 section, it will become a Global address book.  If you shuffle
12482 the first Global address book up it will become a Personal address
12483 book.  The main difference between Personal and Global address
12484 books is that Global address books are forced read-only.
12485 <P><UL>
12486 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12487 </UL>
12489 &lt;End of help on this topic&gt;
12490 </BODY>
12491 </HTML>
12492 ===== h_abook_top =====
12493 <HTML>
12494 <HEAD>
12495 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
12496 </HEAD>
12497 <BODY>
12498 <H1>ADDRESS BOOK LIST COMMANDS</H1>
12499 <!--chtml if pinemode="function_key"-->
12500 <PRE>
12501 Available  Commands -- Group 1         Available Commands -- Group 2
12502 -------------------------------        ------------------------------
12503 F1  Show Help Text                      F1  Show Help Text
12504 F2  See commands in next group          F2  See commands in next group
12505 F3  Exit to MAIN MENU                   F3  Quit Alpine
12506 F4  View/Edit selected address book
12507 F5  Move to previous address book       F5  FOLDER LIST screen
12508 F6  Move to next address book           F6  Specify a folder to go to
12509 F7  Previous page                       F7  MESSAGE INDEX screen
12510 F8  Next page                           F9  Print list of address books
12511 F12 Whereis (search for word)
12512 </PRE>
12513 <!--chtml else-->
12514 <PRE>
12515 Navigation                       General Alpine Commands
12516 -----------------------          -----------------------
12517  P  Previous Entry                ?  Display this help text
12518  N  Next Entry                    O  Show all other available commands
12519  -  Previous page                 &lt;  Back to MAIN Alpine menu
12520 Spc (space bar) Next page         Q  Quit Alpine
12521  W  WhereIs (search for word)     L  FOLDER LIST screen
12522                                   G  Specify a folder to go to
12523 Address Book Commands             I  MESSAGE INDEX screen
12524 ------------------------------------------------
12525  &gt;  View/Edit selected address book
12526               or
12527  &gt;  Search on selected directory server
12529  %  Print list of address books and directory servers
12530 </PRE>
12531 <!--chtml endif-->
12533 <H2>Description of the Address Book List Screen</H2>
12535 From this screen you may choose which address book you wish to view
12536 or edit. For more information on address books, view one of your
12537 address books (with
12538 <!--chtml if pinemode="function_key"-->
12540 <!--chtml else-->
12541 &quot;&gt;&quot;
12542 <!--chtml endif-->)
12543 and see the Help Text there.<P>
12545 You may also choose a directory server on which to search for entries.
12546 You do that by highlighting the directory server line and using
12547 <!--chtml if pinemode="function_key"-->
12549 <!--chtml else-->
12550 &quot;&gt;&quot;
12551 <!--chtml endif-->.<P>
12553 If you wish to define new address books or directory servers go to the Main
12554 menu and choose Setup. You may then either choose to setup AddressBooks or
12555 Directory (among other things). It's possible that the Directory option
12556 will not be there if the Alpine you are using does not contain LDAP directory
12557 lookup functionality.
12559 <P><UL>
12560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12561 </UL><P>
12562 &lt;End of help on this topic&gt;
12563 </BODY>
12564 </HTML>
12565 ===== h_abook_opened =====
12566 <HTML>
12567 <HEAD>
12568 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12569 </HEAD>
12570 <BODY>
12571 <H1>THE ALPINE ADDRESS BOOK</H1>
12572 <H2>ADDRESS BOOK COMMANDS</H2>
12573 <PRE>
12574 <!--chtml if pinemode="function_key"-->
12575 Available  Commands -- Group 1         Available Commands -- Group 2   
12576 -------------------------------        ------------------------------  
12577 F1  Show Help Text                      F1  Show Help Text             
12578 F2  See commands in next group          F2  See commands in next group
12579 F3  Exit this screen                    F3  Quit Alpine                  
12580 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12581 F5  Move to previous entry              F5  FOLDER LIST screen         
12582 F6  Move to next entry                  F6  Specify a folder to go to  
12583 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12584 F8  Next page of address book           F8  Compose to entry using roles
12585 F9  Add new entry to address book       F9  Print address book         
12586 F10 Delete selected entry               F10 TakeAddr to another addrbook
12587 F11 Compose to selected entry           F11 Save or Export addrbook selections
12588 F12 Whereis (search address book)       F12 Forward entry by mail       
12590 Available Commands -- Group 3                                           
12591 ------------------------------                                          
12592 F3  Select                              F6  Zoom (or unZoom)            
12593 F5  Select Current                      F7  Apply Command to Selection  
12594 <!--chtml else-->
12595 Address Book Navigation        General Alpine Commands
12596 -----------------------        -----------------------
12597  P  Prev Address                  ?  Display this help text
12598  N  Next Address                  O  Show all other available commands
12599  -  Previous page of address book M  Back to MAIN MENU
12600 Spc (space bar) Next page         Q  Quit Alpine
12601  W  WhereIs (search for word      C  Compose message to selected addr
12602      or name in address book)     #  Compose to addr using roles
12603  &lt;  To List of Address Books if   L  FOLDER LIST screen
12604      more than one, else to MAIN  G  Specify a folder to go to
12605                                   I  MESSAGE INDEX screen
12607 Address Book Commands
12608 ----------------------------------------------------
12609  &gt;  View/Update selected entry    D  Delete selected entries
12610  %  Print address book            S  Save or Export address book selections
12611  F  Forward entries by mail       @  Add new entry to address book
12613  ;  Select command                Z  Toggle Zoom Mode
12614  :  Select highlighted entry      A  Apply command to selected entries
12616 <!--chtml endif-->
12617 </PRE>
12618 Note:  The presence or absence of the final four commands above is
12619 controlled by the option 
12620 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12623 <H2>Description of the Address Book Screen</H2>
12625 This screen lets you edit and manage entries in your address book.  It
12626 also acts as a short-cut for composing messages to people in the address
12627 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12628 message starts &quot;pre-addressed&quot; to whatever address book entry is
12629 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
12630 role to use in your composition.
12632 Alpine's address book helps you keep a list of addresses you send email to so
12633 you do not have to remember addresses that are often complex.  Each entry
12634 in the address book has five fields, all of them optional.  The three
12635 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12637         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12638         This is what you type in as you are addressing the message in the
12639         composer.  If there is a matching entry in your address book(s),
12640         Alpine will extract the corresponding FullName and Address fields to
12641         generate the actual address for your message.
12643         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12644 of the
12645         person or organization.  Usually the full names are put in last
12646         name first so they sort nicely in alphabetical order.  Whatever
12647         you put as the name here will appear on the message when it is
12648         finally delivered.  Examples:<PRE>
12649            Garcia Marquez, Gabriel
12650            Henscheid, Eckhard
12651            Alpine-Info mailing list
12652            Library materials renewal requests
12653            Kim An-guk
12654            &quot;George III, King of Great Britain, 1738-1820&quot;
12655 </PRE>
12656 (In the second-to-last example, no comma is used in the name so that 
12657 the family name appears first in the address book and when the entry is 
12658 used in the composer.
12659 In the last example, retaining the commas is intended; 
12660 double-quotation marks surround the name to 
12661 prevent the transposition of its parts when the entry is used in 
12662 the composer.)
12664         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12665         a valid Internet address that conforms to the Internet message
12666         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12668 The two fields that aren't usually visible are:<DL>
12670   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12671         message to this address to be saved in.  If this field is set, and
12672         this address is the first one in the message's To: header, then
12673         Alpine will use this folder name for the FCC in lieu of the normal
12674         FCC folder name.
12676   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12677         </DL>
12679 Due to screen width limitations, these last two fields do not show up in
12680 the normal ADDRESS BOOK display.  You may select the 
12681 &quot;View/Update&quot; command to
12682 view or modify them.  You may use the configuration variable
12683 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12684 to add these fields to your ADDRESS BOOK 
12685 display, or to modify the format of the display.
12687 <H2>Sorting the Address book</H2>
12689 By default, address book entries are sorted alphabetically on the full
12690 name with distribution lists sorted to the end.  Sorting can be changed by
12691 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12692 --assuming you have &quot;write&quot; permission for the address book file.
12694 Unlike the sorting of folders (which only changes presentation), sorting an
12695 address book actually changes the file as it is kept on the computer.  For
12696 this reason you won't be able to sort a shared or system-wide address
12697 book.
12699 <H2>Adding New Entries</H2>
12701 The easiest way to add new entries to your address book is to use the
12702 &quot;TakeAddr&quot; command when viewing a message.
12703 This command allows you to take addresses from the header and body of the
12704 message and put them into your address book, without having to type
12705 them in.
12708 To manually add a new entry from within the address book screen, use the AddNew
12709 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12710 Use this command both for adding a simple alias and for adding a
12711 distribution list.
12713 <H2>Distribution Lists</H2>
12715 Address book entries can be simple cases of aliases (a single nickname is linked
12716 to a single email address) or distribution lists (a single nickname
12717 pointing at more than one email address).  Each distribution list has a
12718 nickname, a full name and a list of addresses.  The addresses may be
12719 actual addresses or they may be other nicknames in your address book.
12720 They may even refer to other distribution lists.
12721 There's really no difference between a simple alias and a distribution list,
12722 other than the number of addresses.
12723 Therefore, you can turn a simple alias with one address into a distribution
12724 list simply by adding more addresses.
12725 To add entries to an existing list or alias
12726 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
12727 a single address from the list if the cursor is placed on the address;
12728 it will delete the entire distribution list if the cursor is on the
12729 nickname/fullname line.  View/Update may also be used to delete addresses
12730 from a list.
12732 Address field entries in distribution lists may take any one of three
12733 forms: a nickname existing in any of the defined address books, a normal
12734 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12735 fullname/address combination, e.g. &quot;John Smith
12736 &lt;jsmith@art.example.com&gt;&quot;.
12738 Distribution lists in Alpine address books can only be used by the person or
12739 people who have access to that address book.  They are not usually used to
12740 implement discussion groups, but can be used to facilitate small
12741 discussion groups if all the participants have access to the same shared
12742 address book.
12744 <H2>FCC and Comments</H2>
12746 As mentioned above, each entry in the address book also has two other optional
12747 fields, Fcc and Comments.  The command to look at or change either of these
12748 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
12749 Comments field is just for your own use.  The Fcc field overrides the
12750 default Fcc if this address is the first one on the To line.  The WhereIs
12751 command may be used to search for particular strings in the address book,
12752 including fields that are not visible (like Comment and Fcc by default).
12754 <H2>Aggregate Operations</H2>
12756 If the feature
12757 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12758 is turned on (the default), then the four commands &quot;Select&quot;,
12759 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12760 are available.  The two selection commands allow you to mark a set of
12761 address book entries as being selected.  If you have more than one address
12762 book, the selections may be in more than one of those address books.
12763 The &quot;Zoom&quot; command will toggle between displaying only the selected
12764 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12765 apply one of the regular address book commands to all of the selected
12766 entries.  Usually the address book commands apply to only the entry
12767 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12768 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12769 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12771 <H2>Exporting and Forwarding Address book entries</H2>
12773 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
12774 address book entry is placed in a plain text file in your home directory
12775 <!--chtml if pinemode="running"-->
12776 (which, in the present configuration of your system, is
12777  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12778 <!--chtml endif-->
12779 or current working directory
12780 <!--chtml if pinemode="running"-->
12781 (which, at least for your current Alpine &quot;session,&quot; 
12782 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12783 <!--chtml endif-->, depending on the 
12784 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12785 configuration setting.  If you have some entries selected and use the
12786 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12787 placed in the text file.
12789 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12790 address book entry is placed in a special attachment and you are put into
12791 the composer.  You can fill in some comments in the body of the message,
12792 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12793 may use the TakeAddr command on that message to insert the address book
12794 entry you sent in their own address book.  If you have some entries
12795 selected and use the Apply Forward command all of the selected entries
12796 will be forwarded in a single message.  You may
12797 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.
12798 The recipient must be using Alpine in order to receive this correctly.
12799 One way for the recipient to handle this might be to create an empty
12800 address book and then &quot;Take&quot; your forwarded address book entries into
12801 that empty address book.
12803 <H2>Multiple and/or Site-Wide Address books</H2>
12805 You may have more than one personal address book.  In addition, there may
12806 be one or more global address books.  This capability allows you to have
12807 multiple personal address books (some of which may be shared) and it also
12808 allows system administrators to implement site-wide address books that
12809 contain entries for users on multiple machines within the organization.
12810 <P><DL>
12811 <DT>Searching
12812   <DD> If you enter a nickname when composing a message, your
12813   personal address books will be searched through in order, and then the
12814   global address book(s) searched. If more than one address book has an entry
12815   for the nickname, Alpine uses the first one that it finds, so an entry in
12816   your personal address book would override a global address book entry. If
12817   after searching all the address books there is still no match, (Unix) Alpine
12818   then searches the local host password file on the assumption that you have
12819   entered a local user name rather than an address book nickname.
12820   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12821   command, but global address books are always searched after personal
12822   address books.
12824   <P><DT>Tab completion
12825   <DD> If the
12826   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12827   feature is turned on (the default) then the Tab key may be used
12828   in the composer to complete partially typed nicknames in the To
12829   or Cc lines. You type the first few letters of a nickname and then
12830   press the Tab key. It there is only one nickname that matches it will
12831   be filled in by Alpine. If there is more than one the unambiguous part
12832   of the nicknames will be filled in. For example, if your address book or
12833   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12834   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12835   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12836   If you then type a second Tab character you will be presented with a list
12837   of matching nicknames to select from. Alternatively, you could type another
12838   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12839   in the entire &quot;barbecue&quot; entry.
12841   <P><DT>Defining
12842   <DD> You define multiple personal address books in the 
12843   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12844   from the MAIN MENU.  
12845   You may add as many as you like.  Global address books are usually
12846   site-wide address books defined by the System administrator, but
12847   you may define global address books of your own just like you define
12848   personal address books.
12850   <P><DT>Creating and updating
12851   <DD> Personal address books are normally created empty
12852   and populated by explicit additions from within Alpine, e.g. via the
12853   TakeAddr command.  Unlike personal address books, global address books may
12854   not be modified/updated from within Alpine; that is, they are Read-Only.
12855   Thus, global address books are created, populated and updated outside of
12856   Alpine. They might be hand-edited, generated by a program from another
12857   database, or by copying an existing address book.  They might also be
12858   some other user's personal address book, and so be modified normally by
12859   that user but accessed Read-Only by you.  See the Alpine Technical
12860   Notes document (included in the Alpine distribution) for more information on
12861   this.
12863   <P><DT>Accessing
12864   <DD>There are two different types of address books in Alpine.
12865   A local address book is stored in a regular file and the normal file
12866   access permissions apply.  A remote address book is stored on an IMAP
12867   server in a special folder that contains only messages pertaining to
12868   that address book.  The last message in the remote folder contains a
12869   copy of the address book data, and that data is copied to a local cache
12870   file in your home directory.  From there it is accessed just like a local
12871   address book.  The name of the cache file is kept track of in a special
12872   file called the
12873   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12874   the name of which is stored in
12875   your Alpine configuration file the first time you use a remote address book.
12876   Just as local Alpine address books use a format that only Alpine understands,
12877   remote Alpine address books do the same and other mail reading programs
12878   are unlikely to be able to understand them.<P>
12879   While global address books are explicitly intended to be shared, there is
12880   nothing to prevent you from sharing a personal address book with other
12881   Alpine users. This might be useful in the case of a small workgroup.
12882   However, it is recommended that updates to shared personal address books
12883   be done when other Alpine users are not accessing the address book. Alpine
12884   does not do any file-locking to manage concurrent updates to the
12885   addressbook, but it does check to see if the file has been modified before
12886   making any changes.  Consequently, inadvertent concurrent updates will
12887   only cause other Alpine users to have to restart their address book
12888   operation, which will cause Alpine to reopen the updated file.
12890   <P><DT>Converting to Remote
12891   <DD>The easiest way to convert an existing local
12892   address book into a remote address book is to create an empty new remote
12893   personal address book by typing &quot;A&quot; to execute the
12894   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12895   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12896   address book.
12897   After you have added the empty
12898   remote address book, go into the screen for the address book you wish
12899   to copy and &quot;Select&quot; &quot;All&quot;.
12900   This selects every entry in that
12901   address book.  Then type the command &quot;Apply Save&quot;.
12902   You will be asked for the address book to save to.  You may use ^P and ^N
12903   to get to the new empty address book, then hit RETURN and the addresses
12904   will be copied.
12905   At this point you'll probably want to unselect all the entries in the local
12906   address book before proceeding. You do that with
12907   &quot;Select&quot; &quot;unselect All&quot;.
12909 </DL>
12910 <UL>
12911 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12912 </UL>
12913 <P><UL>
12914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12915 </UL>
12917 &lt;End of help on this topic&gt;
12918 </BODY>
12919 </HTML>
12920 ===== h_abook_select_addr =====
12921 <HTML>
12922 <HEAD>
12923 <TITLE>Addressbook Selection Explained</TITLE>
12924 </HEAD>
12925 <BODY>
12926 <H1>SELECT ADDRESS</H1>
12927 <!--chtml if pinemode="function_key"-->
12928 <PRE>
12929 Navigating the List of Messages               General Alpine Commands
12930 -------------------------------               -----------------------
12931 F5   Move to previous entry                   F1  Show this help text
12932 F6   Move to next entry
12933 F7   Show previous screen of address book
12934 F8   Show next screen of address book
12935 F12  WhereIs (search through address book)
12937 Address Selection Commands
12938 --------------------------
12939 F3   Exit the Address Select screen (without selecting an address)
12940 F4   Select the currently highlighted entry
12941 </PRE>
12942 <!--chtml else-->
12943 <PRE>
12944 Navigating the List of Messages               General Alpine Commands
12945 -------------------------------               -----------------------
12946  P   Move to previous entry                    ?  Show this help text
12947  N   Move to next entry
12948  -   Show previous screen of address book
12949 Spc  (space bar) Show next screen of address book
12950  W   WhereIs (search through address book)
12952 Address Selection Commands
12953 --------------------------
12954  E   Exit the Address Select screen (without selecting an address)
12955  S   Select the currently highlighted entry
12956 </PRE>
12957 <!--chtml endif-->
12960 This screen is designed to let you easily scan your address book(s) in
12961 order to select an entry for the message you are composing.  You cannot
12962 edit your address book in any way at this time, for address book
12963 maintenance, select the address book command when not composing a message.
12966 If you are composing a message and know the nickname of the person/list you
12967 want, you can bypass this screen by simply typing in the nickname on the
12968 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12969 selecting an entry does not cancel your message.
12972 FOR MORE INFORMATION on addressing see
12973 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12974 <A HREF="h_abook_opened">Address Book Screen's</A>
12975 help text.
12977 &lt;End of help on this topic&gt;
12978 </BODY>
12979 </HTML>
12980 ===== h_abook_select_top =====
12981 <HTML>
12982 <HEAD>
12983 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12984 </HEAD>
12985 <BODY>
12986 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12987 <!--chtml if pinemode="function_key"-->
12988 <PRE>
12989 Navigating the List of Address Books       General Alpine Commands
12990 ------------------------------------       -----------------------
12991 F4   View the highlighted address book
12992 F5   Move to previous address book         F1  Show this help text
12993 F6   Move to next address book
12994 F7   Show previous screen of address books
12995 F8   Show next screen of address books
12996 F12  WhereIs (search through address books)
12998 Address Selection Commands
12999 --------------------------
13000 F3   Exit the Address Select screen (without selecting an address)
13001 F4   Select the currently selected entries (if using ListMode)
13002 F9   Change to ListMode
13003 </PRE>
13004 <!--chtml else-->
13005 <PRE>
13006 Navigating the List of Address Books       General Alpine Commands
13007 ------------------------------------       -----------------------
13008  &gt;   View the highlighted address book
13009  P   Move to previous address book         ?  Show this help text
13010  N   Move to next address book
13011  -   Show previous screen of address books
13012 Spc  (space bar) Show next screen of address books
13013  W   WhereIs (search through address books)
13015 Address Selection Commands
13016 --------------------------
13017  E   Exit the Address Select screen (without selecting an address)
13018  S   Select the currently selected entries (if using ListMode)
13019  L   Change to ListMode
13020 </PRE>
13021 <!--chtml endif-->
13024 This screen is designed to let you easily scan your address book(s) in
13025 order to select entries for the message you are composing.  You cannot
13026 edit your address book in any way at this time.  For address book
13027 maintenance, select the address book command when not composing a message.
13030 If you are composing a message and know the nickname of the person/list you
13031 want, you can bypass this screen by simply typing in the nickname on the
13032 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
13033 selecting an entry does not cancel your message.
13036 The ListMode command will add a column at the left edge of the screen.
13037 You mark the entries that you wish to select with the &quot;X&quot; command.
13038 This allows you to choose more than one entry at a time.
13041 An alternative method of composing a message to entries in your
13042 address book(s) is to first use the &quot;Select&quot; command from
13043 the address book maintenance screen and then the &quot;Apply&quot;
13044 &quot;ComposeTo&quot; command to start the composer composing to the
13045 selected entries.
13048 FOR MORE INFORMATION on addressing see
13049 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13050 <A HREF="h_abook_opened">Address Book Screen's</A>
13051 help text.
13053 &lt;End of help on this topic&gt;
13054 </BODY>
13055 </HTML>
13056 ===== h_abook_select_listmode =====
13057 <HTML>
13058 <HEAD>
13059 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
13060 </HEAD>
13061 <BODY>
13062 <H1>COMPOSER: SELECT ADDRESSES</H1>
13063 <!--chtml if pinemode="function_key"-->
13064 <PRE>
13065 Navigating the List of Messages                 General Alpine Commands
13066 -------------------------------                 -----------------------
13067 F5   Move to previous entry                     F1  Show this help text
13068 F6   Move to next entry
13069 F7   Show previous screen of address book
13070 F8   Show next screen of address book
13071 F12  WhereIs (search through address book)
13073 Address Selection Commands
13074 --------------------------
13075 F3   Exit the Address Select screen (without selecting an address)
13076 F4   Select the currently highlighted entry
13077 F9   Change to ListMode
13078 </PRE>
13079 <!--chtml else-->
13080 <PRE>
13081 Navigating the List of Messages                 General Alpine Commands
13082 -------------------------------                 -----------------------
13083  P   Move to previous entry                     ?  Show this help text
13084  N   Move to next entry
13085  -   Show previous screen of address book
13086 Spc  (space bar) Show next screen of address book
13087  W   WhereIs (search through address book)
13089 Address Selection Commands
13090 --------------------------
13091  E   Exit the Address Select screen (without selecting an address)
13092  S   Select the currently highlighted entry
13093  L   Change to ListMode
13094 </PRE>
13095 <!--chtml endif-->
13098 This screen is designed to let you easily scan your address book(s) in
13099 order to select entries for the message you are composing.  You cannot
13100 edit your address book in any way at this time, for address book
13101 maintenance, select the address book command when not composing a message.
13104 If you are composing a message and know the nickname of the person/list you
13105 want, you can bypass this screen by simply typing in the nickname on the
13106 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
13107 selecting an entry does not cancel your message.
13110 The ListMode command will add a column at the left edge of the screen.
13111 You mark the entries that you wish to select with the &quot;X&quot; command.
13112 This allows you to choose more than one entry at a time.
13115 An alternative method of composing a message to entries in your
13116 address book(s) is to first use the &quot;Select&quot; command from
13117 the address book maintenance screen and then the &quot;Apply&quot;
13118 &quot;ComposeTo&quot; command to start the composer composing to the
13119 selected entries.
13122 FOR MORE INFORMATION on addressing see
13123 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13124 <A HREF="h_abook_opened">Address Book Screen's</A>
13125 help text.
13127 &lt;End of help on this topic&gt;
13128 </BODY>
13129 </HTML>
13130 ===== h_abook_select_checks =====
13131 <HTML>
13132 <HEAD>
13133 <TITLE>Address Selection from Composer Explained</TITLE>
13134 </HEAD>
13135 <BODY>
13136 <H1>COMPOSER: SELECT ADDRESSES</H1>
13137 <!--chtml if pinemode="function_key"-->
13138 <PRE>
13139 Navigating the List of Messages                 General Alpine Commands
13140 -------------------------------                 -----------------------
13141 F5   Move to previous entry                     F1  Show this help text
13142 F6   Move to next entry
13143 F7   Show previous screen of address book
13144 F8   Show next screen of address book
13145 F12  WhereIs (search through address book)
13147 Address Selection Commands
13148 --------------------------
13149 F3   Exit the Address Select screen (without selecting an address)
13150 F4   Select the currently highlighted entry
13151 F8   Either Sets or Unsets all entries in this address book
13152 F9   Set or Unset the highlighted entry
13153 </PRE>
13154 <!--chtml else-->
13155 <PRE>
13156 Navigating the List of Messages                 General Alpine Commands
13157 -------------------------------                 -----------------------
13158  P   Move to previous entry                     ?  Show this help text
13159  N   Move to next entry
13160  -   Show previous screen of address book
13161 Spc  (space bar) Show next screen of address book
13162  W   WhereIs (search through address book)
13164 Address Selection Commands
13165 --------------------------
13166  E   Exit the Address Select screen (without selecting an address)
13167  S   Select the currently highlighted entry
13168  X   Set or Unset the highlighted entry
13169  A   Either Sets or Unsets all entries in this address book
13170 </PRE>
13171 <!--chtml endif-->
13174 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
13175 command.  Type &quot;S Select&quot; to select all of the entries you
13176 have marked, just as if you had typed them in by hand.
13179 An alternative method of composing a message to entries in your
13180 address book(s) is to first use the &quot;Select&quot; command from
13181 the address book maintenance screen and then the &quot;Apply&quot;
13182 &quot;ComposeTo&quot; command to start the composer composing to the
13183 selected entries.
13186 FOR MORE INFORMATION on addressing see
13187 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13188 <A HREF="h_abook_opened">Address Book Screen's</A>
13189 help text.
13191 &lt;End of help on this topic&gt;
13192 </BODY>
13193 </HTML>
13194 ===== h_abook_select_nicks_take =====
13195 <HTML>
13196 <HEAD>
13197 <TITLE>Take Address Nickname Selection Explained</TITLE>
13198 </HEAD>
13199 <BODY>
13200 <H1>TAKEADDR: SELECT NICKNAME</H1>
13201 <!--chtml if pinemode="function_key"-->
13202 <PRE>
13203 Navigating the List of Messages                 General Alpine Commands
13204 -------------------------------                 -----------------------
13205 F5   Move to previous entry                     F1  Show this help text
13206 F6   Move to next entry
13207 F7   Show previous screen of address book
13208 F8   Show next screen of address book
13209 F12  WhereIs (search through address book)
13211 Message Selection Commands
13212 --------------------------
13213 F3   Exit the Nickname Select screen (without selecting an address)
13214 F4   Select the currently highlighted entry
13215 </PRE>
13216 <!--chtml else-->
13217 <PRE>
13218 Navigating the List of Messages                 General Alpine Commands
13219 -------------------------------                 -----------------------
13220  P   Move to previous entry                     ?  Show this help text
13221  N   Move to next entry
13222  -   Show previous screen of address book
13223 Spc  (space bar) Show next screen of address book
13224  W   WhereIs (search through address book)
13226 Message Selection Commands
13227 --------------------------
13228  E   Exit the Nickname Select screen (without selecting an address)
13229  S   Select the currently highlighted entry
13230 </PRE>
13231 <!--chtml endif-->
13234 This screen is designed to let you modify or add to an existing
13235 address book entry.  You have already selected the name(s) and
13236 address(es) through &quot;Take Address&quot;.  This screen simply lets
13237 you scan your address books and select the nickname to be
13238 changed/augmented.  If you want to add a new entry, then you are in
13239 the wrong place-- Select &quot;Exit&quot; command.
13242 FOR MORE INFORMATION on addressing see
13243 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13244 <A HREF="h_abook_opened">Address Book Screen's</A>
13245 help text.
13247 &lt;End of help on this topic&gt;
13248 </BODY>
13249 </HTML>
13250 ===== h_abook_select_nick =====
13251 <HTML>
13252 <HEAD>
13253 <TITLE>Nickname Selection Explained</TITLE>
13254 </HEAD>
13255 <BODY>
13256 <H1>SELECT NICKNAME</H1>
13257 <!--chtml if pinemode="function_key"-->
13258 <PRE>
13259 Navigating the List of Messages                 General Alpine Commands
13260 -------------------------------                 -----------------------
13261 F5   Move to previous entry                     F1  Show this help text
13262 F6   Move to next entry
13263 F7   Show previous screen of address book
13264 F8   Show next screen of address book
13265 F12  WhereIs (search through address book)
13267 Message Selection Commands
13268 --------------------------
13269 F3   Exit the Nickname Select screen (without selecting an address)
13270 F4   Select the currently highlighted entry
13271 </PRE>
13272 <!--chtml else-->
13273 <PRE>
13274 Navigating the List of Messages                 General Alpine Commands
13275 -------------------------------                 -----------------------
13276  P   Move to previous entry                     ?  Show this help text
13277  N   Move to next entry
13278  -   Show previous screen of address book
13279 Spc  (space bar) Show next screen of address book
13280  W   WhereIs (search through address book)
13282 Message Selection Commands
13283 --------------------------
13284  E   Exit the Nickname Select screen (without selecting an address)
13285  S   Select the currently highlighted entry
13286 </PRE>
13287 <!--chtml endif-->
13290 This screen is designed to let you look at the nicknames in your address
13291 books before choosing a new one.
13294 FOR MORE INFORMATION on addressing see
13295 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13296 <A HREF="h_abook_opened">Address Book Screen's</A>
13297 help text.
13299 &lt;End of help on this topic&gt;
13300 </BODY>
13301 </HTML>
13302 ===== h_takeaddr_screen =====
13303 <HTML>
13304 <HEAD>
13305 <TITLE>Take Address Screen Explained</TITLE>
13306 </HEAD>
13307 <BODY>
13308 <H1>TAKE ADDRESS COMMANDS</H1>
13309 <!--chtml if pinemode="function_key"-->
13310 <PRE>
13311 Navigating the List of Addresses       Address Selection Commands        
13312 --------------------------------       --------------------------        
13313  F5  Move to previous entry            F3  Exit without taking address
13314  F6  Move to next entry                F4  Take current address(es)
13315  F7  Show previous page of address list
13316  F8  Show next page of address list
13317  F2  WhereIs (search list)
13318                                --------------
13319 Mode Toggle            F9  Set/Unset current address
13320 -----------            F10 Set all
13321  F12 Toggle between List and single mode       F11 Unset all
13322 </PRE>
13323 <!--chtml else-->
13324 <PRE>
13325 Navigating the List of Addresses       Address Selection Commands
13326 --------------------------------       --------------------------
13327  P  Move to previous entry              &lt;  Exit without taking address
13328  N  Move to next entry                  T  Take address
13329  -  Show previous page of address list
13330 Spc (space bar) Show next page of address list
13331  W  WhereIs (search list)              List Mode
13332                                        ---------
13333 Single Mode                             X  Set/Unset current address
13334 -----------                             A  Set all addresses
13335  L  Switch to list mode                 U  Unset all addresses
13336                                         S  Switch to single mode
13337 </PRE>
13338 <!--chtml endif-->
13340 <H2>Description of the Take Address Screen</H2>
13342 This screen is designed to let you select one or more address/name
13343 combinations from the current message and put them into your address book.
13344 The cursor is initially placed on the line with the message author.
13345 Other lines include the names of people and/or mailing lists who also
13346 received the message.  Other people &quot;involved&quot; in the
13347 message (e.g. the person named as Reply-To:) are also listed here.
13350 The simple case is adding a new, single entry into your address book. To
13351 do this, simply highlight the correct line and press 
13352 <!--chtml if pinemode="function_key"-->
13354 <!--chtml else-->
13355 &quot;T&quot;.
13356 <!--chtml endif-->
13357 To create a new list or add to an existing list, switch the screen display
13358 into List Mode by pressing
13359 <!--chtml if pinemode="function_key"-->
13360 F12.
13361 <!--chtml else-->
13362 &quot;L&quot;.
13363 <!--chtml endif-->
13364 In List Mode, you select the
13365 group of addresses you wish to manipulate by marking them with an
13366 &quot;X&quot;.
13367 The Set/Unset
13368 <!--chtml if pinemode="function_key"-->
13369 (F9)
13370 <!--chtml else-->
13371 (&quot;X&quot;)
13372 <!--chtml endif-->
13373 command will turn the &quot;X&quot; on for the
13374 highlighted address if it was off or turn it off if it was previously on.
13375 The SetAll command will select all of the addresses, and the UnSetAll
13376 command will turn off all the selections.  Once you've gotten the
13377 selection the way you want it, you may create a new list by pressing
13378 <!--chtml if pinemode="function_key"-->
13380 <!--chtml else-->
13381 &quot;T&quot;.
13382 <!--chtml endif-->
13385 In both the simple and list cases, after choosing to take the address,
13386 you will be asked for the nickname of the entry.  Typing in a new name
13387 creates the new entry/list.  Entering an existing nickname will replace
13388 the entry (simple case) or add to the list (list case).  Alternatively,
13389 you can press Ctrl-T at the nickname prompt and select an existing
13390 nickname from your address book.
13393 You will normally start in Single Mode, unless you used the Apply command
13394 to startup the TakeAddr screen, in which case you will start in List Mode.
13395 You may switch between the two modes at any time.  If you've already
13396 selected several addresses in List Mode, those will be remembered when you
13397 switch to Single Mode and then back to List Mode.  The set of addresses
13398 that are pre-selected when you start in List Mode are the From addresses
13399 of all of the messages you are operating on.  You may, of course, easily
13400 erase those selections with the UnSetAll command.
13403 If you have more than one writable address book, you will be prompted for
13404 the name of the address book you wish to add the new entry to before
13405 anything else. You can use ^N and ^P to choose among the defined address
13406 books, or type in the address book name.
13409 FOR MORE INFORMATION on addressing see
13410 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13411 <A HREF="h_abook_opened">Address Book Screen's</A>
13412 help text.
13414 &lt;End of help on this topic&gt;
13415 </BODY>
13416 </HTML>
13417 ===== h_takeexport_screen =====
13418 <HTML>
13419 <HEAD>
13420 <TITLE>Take Export Screen Explained</TITLE>
13421 </HEAD>
13422 <BODY>
13423 <H1>TAKE EXPORT COMMANDS</H1>
13424 <!--chtml if pinemode="function_key"-->
13425 <PRE>
13426 Navigating the List of Addresses       Address Selection Commands        
13427 --------------------------------       --------------------------        
13428  F5  Move to previous entry            F3  Exit without taking address
13429  F6  Move to next entry                F4  Take current address(es)
13430  F7  Show previous page of address list
13431  F8  Show next page of address list
13432  F2  WhereIs (search list)
13433                                --------------
13434 Mode Toggle            F9  Set/Unset current address
13435 -----------            F10 Set all
13436  F12 Toggle between List and single mode       F11 Unset all
13437 </PRE>
13438 <!--chtml else-->
13439 <PRE>
13440 Navigating the List of Addresses       Address Selection Commands
13441 --------------------------------       --------------------------
13442  P  Move to previous entry              &lt;  Exit without taking address
13443  N  Move to next entry                  T  Take address
13444  -  Show previous page of address list
13445 Spc (space bar) Show next page of address list
13446  W  WhereIs (search list)              List Mode
13447                                        ---------
13448 Single Mode                             X  Set/Unset current address
13449 -----------                             A  Set all addresses
13450  L  Switch to list mode                 U  Unset all addresses
13451                                         S  Switch to single mode
13452 </PRE>
13453 <!--chtml endif-->
13455 <H2>Description of the Take Export Screen</H2>
13457 This screen is designed to let you select one or more addresses
13458 from the current message and put them into a file.
13459 Only the user@domain_name part of each address is put into the file.
13462 To put a single entry into a file simply highlight the correct line and press 
13463 <!--chtml if pinemode="function_key"-->
13465 <!--chtml else-->
13466 &quot;T&quot;.
13467 <!--chtml endif-->
13468 To put more than one entry into a file
13469 switch the screen display
13470 into List Mode by pressing
13471 <!--chtml if pinemode="function_key"-->
13472 F12.
13473 <!--chtml else-->
13474 &quot;L&quot;.
13475 <!--chtml endif-->
13476 In List Mode, you select the
13477 group of addresses you wish to manipulate by marking them with an
13478 &quot;X&quot;.
13479 The Set/Unset
13480 <!--chtml if pinemode="function_key"-->
13481 (F9)
13482 <!--chtml else-->
13483 (&quot;X&quot;)
13484 <!--chtml endif-->
13485 command will turn the &quot;X&quot; on for the
13486 highlighted address if it was off or turn it off if it was previously on.
13487 The SetAll command will select all of the addresses, and the UnSetAll
13488 command will turn off all the selections.  Once you've gotten the
13489 selection the way you want it, you may put the addresses in a file by typing
13490 <!--chtml if pinemode="function_key"-->
13492 <!--chtml else-->
13493 &quot;T&quot;.
13494 <!--chtml endif-->
13497 You will be asked for the name of a file to put the addresses in.
13498 If the file already exists, you will be asked whether you want to Overwrite
13499 (replace) the contents of the file or Append to the contents of the file.
13502 &lt;End of help on this topic&gt;
13503 </BODY>
13504 </HTML>
13505 ============= h_abook_view ========================
13506 <HTML>
13507 <HEAD>
13508 <TITLE>Address Book View Explained</TITLE>
13509 </HEAD>
13510 <BODY>
13511 This function allows you to view the contents of an address book entry. You
13512 can only view one entry at a time.
13514 <DL>
13515 <DT>Help
13516 <!--chtml if pinemode="function_key"-->
13517 (F1)
13518 <!--chtml else-->
13520 <!--chtml endif-->
13521 </DT>
13522 <DD>
13523 Display this help text.
13525 <DT>Abook
13526 <!--chtml if pinemode="function_key"-->
13527 (F3)
13528 <!--chtml else-->
13529 (&lt;)
13530 <!--chtml endif-->
13531 </DT>
13532 <DD>
13533 Go back to index of address book entries.
13535 <DT>Update
13536 <!--chtml if pinemode="function_key"-->
13537 (F4)
13538 <!--chtml else-->
13540 <!--chtml endif-->
13541 </DT>
13542 <DD>
13543 Update (modify) this entry.
13545 <DT>ComposeTo
13546 <!--chtml if pinemode="function_key"-->
13547 (F5)
13548 <!--chtml else-->
13550 <!--chtml endif-->
13551 </DT>
13552 <DD>Compose a message to the address(es) in this entry.
13554 <DT>Role
13555 <!--chtml if pinemode="function_key"-->
13556 (F6)
13557 <!--chtml else-->
13559 <!--chtml endif-->
13560 </DT>
13561 <DD>Compose a message to the address(es) in this entry using roles.
13563 <DT>Prev Page
13564 <!--chtml if pinemode="function_key"-->
13565 (F7)
13566 <!--chtml else-->
13568 <!--chtml endif-->
13569 </DT>
13570 <DD>
13571 Show the previous page of the current entry.
13573 <DT>Next Page
13574 <!--chtml if pinemode="function_key"-->
13575 (F8)
13576 <!--chtml else-->
13577 (Space)
13578 <!--chtml endif-->
13579 </DT>
13580 <DD>
13581 Show the next page of the current entry.
13583 <DT>Print
13584 <!--chtml if pinemode="function_key"-->
13585 (F9)
13586 <!--chtml else-->
13588 <!--chtml endif-->
13589 </DT>
13590 <DD>Print the current entry.  You can select the
13591 printer or the print command via the &quot;Setup&quot; command
13592 on the MAIN MENU.
13594 <DT>WhereIs
13595 <!--chtml if pinemode="function_key"-->
13596 (F10)
13597 <!--chtml else-->
13599 <!--chtml endif-->
13600 </DT>
13601 <DD>Search the entry for a string of letters.  If it is
13602 found, move to it.  The string can be one word or a phrase.
13603 If there are multiple occurrences, the cursor moves to the
13604 first occurrence beyond the current cursor position.
13606 <DT>Fwd Email
13607 <!--chtml if pinemode="function_key"-->
13608 (F11)
13609 <!--chtml else-->
13611 <!--chtml endif-->
13612 </DT>
13613 <DD>Begin composition of a new mail message with the displayed
13614 text already inserted in the message body.
13616 </DL>
13618 &lt;End of help on this topic&gt;
13619 </BODY>
13620 </HTML>
13621 ============= h_ldap_view ========================
13622 <HTML>
13623 <HEAD>
13624 <TITLE>LDAP Response View Explained</TITLE>
13625 </HEAD>
13626 <BODY>
13627 This function allows you to view the contents of a directory entry. You
13628 can only view one entry at a time.
13630 <DL>
13631 <DT>Help
13632 <!--chtml if pinemode="function_key"-->
13633 (F1)
13634 <!--chtml else-->
13636 <!--chtml endif-->
13637 </DT>
13638 <DD>
13639 Display this help text.
13641 <DT>Results Index
13642 <!--chtml if pinemode="function_key"-->
13643 (F3)
13644 <!--chtml else-->
13645 (&lt;)
13646 <!--chtml endif-->
13647 </DT>
13648 <DD>Go back to index of search results.
13650 <DT>ComposeTo
13651 <!--chtml if pinemode="function_key"-->
13652 (F5)
13653 <!--chtml else-->
13655 <!--chtml endif-->
13656 </DT>
13657 <DD>Compose a message to the address(es) in this entry.
13659 <DT>Role
13660 <!--chtml if pinemode="function_key"-->
13661 (F6)
13662 <!--chtml else-->
13664 <!--chtml endif-->
13665 </DT>
13666 <DD>Compose a message to the address(es) in this entry using roles.
13668 <DT>Prev Page
13669 <!--chtml if pinemode="function_key"-->
13670 (F7)
13671 <!--chtml else-->
13673 <!--chtml endif-->
13674 </DT>
13675 <DD>
13676 Show the previous page of the current entry.
13678 <DT>Next Page
13679 <!--chtml if pinemode="function_key"-->
13680 (F8)
13681 <!--chtml else-->
13682 (Space)
13683 <!--chtml endif-->
13684 </DT>
13685 <DD>
13686 Show the next page of the current entry.
13688 <DT>Print
13689 <!--chtml if pinemode="function_key"-->
13690 (F9)
13691 <!--chtml else-->
13693 <!--chtml endif-->
13694 </DT>
13695 <DD>Print the current entry on paper.  You can select the
13696 printer or the print command via the &quot;Setup&quot; command
13697 on the MAIN MENU.
13699 <DT>WhereIs
13700 <!--chtml if pinemode="function_key"-->
13701 (F10)
13702 <!--chtml else-->
13704 <!--chtml endif-->
13705 </DT>
13706 <DD>Search the entry for a string of letters.  If it is
13707 found, move to it.  The string can be one word or a phrase.
13708 If there are multiple occurrences, the cursor moves to the
13709 first occurrence beyond the current cursor position.
13711 <DT>Fwd Email
13712 <!--chtml if pinemode="function_key"-->
13713 (F11)
13714 <!--chtml else-->
13716 <!--chtml endif-->
13717 </DT>
13718 <DD>Begin composition of a new mail message with the displayed
13719 text already inserted in the message body.
13721 <DT>Save
13722 <!--chtml if pinemode="function_key"-->
13723 (F12)
13724 <!--chtml else-->
13726 <!--chtml endif-->
13727 </DT>
13728 <DD>Save the displayed entry to one of your address books or export
13729 it to a file.
13730 </DL>
13732 &lt;End of help on this topic&gt;
13733 </BODY>
13734 </HTML>
13735 ===== h_attachment_screen =====
13736 <HTML>
13737 <HEAD>
13738 <TITLE>Attachment Index Screen Explained</TITLE>
13739 </HEAD>
13740 <BODY>
13741 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13742 message's attachments, and allows various operations on them.  The
13743 first attachment is usually the message text, but does not include the
13744 header portion of the message.
13746 Available commands include:
13748 <DL>
13750 <DT>Help</DT>
13751 <DD>Show this help text.
13753 <DT>Msg #<I>num</I></DT>
13754 <DD>Leave this screen without displaying or saving any attachments.
13756 <DT>View</DT>
13757 <DD>View the currently selected attachment.
13759 <DT>External</DT>
13760 <DD>Passes a TEXT/HTML message to an external browser for its display.
13762 <DT>Prev Attach</DT>
13763 <DD>Move to previous attachment.
13765 <DT>Next Attach</DT>
13766 <DD>Move to next attachment.
13768 <DT>Prev Page</DT>
13769 <DD>Previous page of the listed attachments.
13771 <DT>Next Page</DT>
13772 <DD>Next page of the listed attachments.
13774 <DT>Delete</DT>
13775 <DD>Mark the currently selected attachment for Deletion.
13776 This does not modify the current message by deleting the attachment from
13777 it, but instead the delete flag <EM>only</EM> has an effect when saving
13778 the message to a folder.
13779 Attachments marked for deletion are not copied to the destination folder
13780 along with the rest of the message when it is saved.
13781 It is ok for the destination folder to be the same as the current folder.
13782 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13784 <DT>Undelete</DT>
13785 <DD>Turn off the Delete flag for the selected attachment.
13787 <DT>Save</DT>
13788 <DD>Save the selected attachment to a file.  If the attachment is of
13789 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13790 the specified mail folder.
13792 <DT>Export</DT>
13793 <DD>If the attachment is of
13794 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13795 copy the message to a file in the same way this command works on 
13796 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13798 <DT>Pipe</DT>
13799 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13800 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13802 <DT>WhereIs</DT>
13803 <DD>Find a matching string in the attachment list.
13805 <DT>AboutAttch</DT>
13806 <DD>Examine various aspects of the selected attachment.
13808 <DT>Print</DT>
13809 <DD>Print the selected attachment.
13811 <DT>Forward</DT>
13812 <DD>Forward the selected attachment as an attachment.
13813 </DL>
13817 All attachments can be saved or piped into a UNIX command, but some may
13818 not be readily displayed by either Alpine or an external tool.  In such
13819 cases, the reason why the message cannot be displayed is displayed on
13820 Alpine's message line.
13822 &lt;End of help on this topic&gt;
13823 </BODY>
13824 </HTML>
13825 ============= h_mail_text_att_view ========================
13826 <HTML>
13827 <HEAD>
13828 <TITLE>Attachment View Screen Explained</TITLE>
13829 </HEAD>
13830 <BODY>
13831 This function allows you to view the contents of a text attachment. You
13832 can only view one attachment at a time.
13834 Available commands include:
13836 <DL>
13838 <DT>Help</DT>
13839 <DD>Display this help text
13841 <DT>AttchIndex</DT>
13842 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13844 <DT>Prev Page</DT>
13845 <DD>Show the previous page of the current attachment.
13847 <DT>Next Page</DT>
13848 <DD>Show the next page of the current attachment by pressing the space bar.
13850 <DT>Delete</DT>
13851 <DD>Mark the viewed attachment for Deletion.  The delete
13852 flag <EM>only</EM> has affect when saving the message to a folder.
13853 Attachments marked for deletion are excluded from the message when
13854 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13855 this Alpine session.
13857 <DT>Undelete</DT>
13858 <DD>Turn off the Delete flag for the selected attachment.
13860 <DT>Save</DT>
13861 <DD>Copy the current attachment to a file.  If you just enter
13862 a filename, the attachment will be saved with that name in
13863 your home directory 
13864 <!--chtml if pinemode="running"-->
13865 (which, in the present configuration of your system, is
13866  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13867 <!--chtml endif-->
13868 or current working directory
13869 <!--chtml if pinemode="running"-->
13870 (which, at least for your current Alpine &quot;session,&quot; 
13871 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13872 <!--chtml endif-->, depending on the
13873 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13874 configuration setting.  You may enter the full
13875 path and filename to save it in another directory instead.
13877 <DT>Export</DT>
13878 <DD>If the attachment is of
13879 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13880 copy the message to a file in the same way this command works on 
13881 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13882 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13883 defined, they may affect the contents of the exported file.)
13885 <DT>Pipe</DT>
13886 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13888 <DT>WhereIs</DT>
13889 <DD>Search the attachment for a string of letters.  If it is
13890 found, move to it.  The string can be one word or a phrase.
13891 If there are multiple occurrences, the cursor moves to the
13892 first occurrence beyond the current cursor position.
13894 <DT>Print</DT>
13895 <DD>Print the current attachment on paper.  You can select the
13896 printer or the print command via the &quot;Setup&quot; command
13897 on the MAIN MENU.
13899 <DT>Forward</DT>
13900 <DD>Forward the selected attachment as an attachment.
13901 </DL>
13903 &lt;End of help on this topic&gt;
13904 </BODY>
13905 </HTML>
13906 ============= h_journal ==============
13907 <HTML>
13908 <HEAD>
13909 <TITLE>Recent Message Journal Explained</TITLE>
13910 </HEAD>
13911 <BODY>
13913 The following commands are available on this screen:
13915 <DL>
13916 <DT>Help</DT>
13917 <DD>Show this help text
13919 <DT>Exit</DT>
13920 <DD>Exit Viewer, and go back to mail processing
13922 <DT>Prev Page</DT>
13923 <DD>Show the previous page text
13925 <DT>Next Page</DT>
13926 <DD>Show the next page of text by pressing the space bar
13928 <DT>Print</DT>
13929 <DD>Print the displayed text on paper.  You can select the
13930 printer or the print command via the &quot;Setup&quot; command
13931 on the MAIN MENU.
13933 <DT>Fwd Email</DT>
13934 <DD>Begin composition of a new mail message with the displayed
13935 text already inserted in the message body.
13937 <DT>Save</DT>
13938 <DD>Copy the displayed text to a file.  If you just enter
13939 a filename, the text will be saved with that name in
13940 your 
13941 home directory 
13942 <!--chtml if pinemode="running"-->
13943 (which, in the present configuration of your system, is
13944  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13945 <!--chtml endif-->
13946 or current working directory
13947 <!--chtml if pinemode="running"-->
13948 (which, at least for your current Alpine &quot;session,&quot; 
13949 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13950 <!--chtml endif-->, depending on the
13951 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13952 configuration setting.   You may enter the full
13953 path and filename to save it in another directory instead.
13955 <DT>WhereIs</DT>
13956 <DD>Search the text for a string of letters.  If it is
13957 found, move to it.  The string can be one word or a phrase.
13958 If there are multiple occurrences, the cursor moves to the
13959 first occurrence beyond the current cursor position.
13960 </DL>
13962 &lt;End of help on this topic&gt;
13963 </BODY>
13964 </HTML>
13965 ============= h_debugjournal ==============
13966 <HTML>
13967 <HEAD>
13968 <TITLE>Debug Journal Explained</TITLE>
13969 </HEAD>
13970 <BODY>
13972 The following commands are available on this screen:
13974 <DL>
13975 <DT>Help</DT>
13976 <DD>Show this help text
13978 <DT>Exit</DT>
13979 <DD>Exit Viewer, and go back to mail processing
13981 <DT>Timestamps</DT>
13982 <DD>Turn on or off timestamps.
13984 <DT>DebugView</DT>
13985 <DD>Set the level of debugging you want to see. The level may be any number
13986 in the range 0-9. Higher numbers show more debugging detail. Note that the
13987 debugging information has already been captured. This setting just causes the
13988 debugging information that you see to be filtered. If you set this to
13989 the number &quot;5&quot; then you will be shown all of the debugging information
13990 at levels 5 and below.
13991 It's actually a bit more complicated than that. A fixed amount of memory
13992 is used to store the debug information.
13993 Since the amount of memory used is limited the debugging information
13994 has to be trimmed back when it gets too large.
13996 <DT>Prev Page</DT>
13997 <DD>Show the previous page text
13999 <DT>Next Page</DT>
14000 <DD>Show the next page of text by pressing the space bar
14002 <DT>Print</DT>
14003 <DD>Print the displayed text on paper.  You can select the
14004 printer or the print command via the &quot;Setup&quot; command
14005 on the MAIN MENU.
14007 <DT>Fwd Email</DT>
14008 <DD>Begin composition of a new mail message with the displayed
14009 text already inserted in the message body.
14011 <DT>Save</DT>
14012 <DD>Copy the displayed text to a file.  If you just enter
14013 a filename, the text will be saved with that name in
14014 your 
14015 home directory 
14016 <!--chtml if pinemode="running"-->
14017 (which, in the present configuration of your system, is
14018  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14019 <!--chtml endif-->
14020 or current working directory
14021 <!--chtml if pinemode="running"-->
14022 (which, at least for your current Alpine &quot;session,&quot; 
14023 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14024 <!--chtml endif-->, depending on the
14025 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14026 configuration setting.   You may enter the full
14027 path and filename to save it in another directory instead.
14029 <DT>WhereIs</DT>
14030 <DD>Search the text for a string of letters.  If it is
14031 found, move to it.  The string can be one word or a phrase.
14032 If there are multiple occurrences, the cursor moves to the
14033 first occurrence beyond the current cursor position.
14034 </DL>
14036 &lt;End of help on this topic&gt;
14037 </BODY>
14038 </HTML>
14039 ============= h_simple_text_view ==============
14040 <HTML>
14041 <HEAD>
14042 <TITLE>Simple Text View Screen Explained</TITLE>
14043 </HEAD>
14044 <BODY>
14046 The following commands are available on this screen:
14048 <DL>
14049 <DT>Help</DT>
14050 <DD>Show this help text
14052 <DT>Exit</DT>
14053 <DD>Exit Viewer, and go back to mail processing
14055 <DT>Prev Page</DT>
14056 <DD>Show the previous page text
14058 <DT>Next Page</DT>
14059 <DD>Show the next page of text by pressing the space bar
14061 <DT>Print</DT>
14062 <DD>Print the displayed text on paper.  You can select the
14063 printer or the print command via the &quot;Setup&quot; command
14064 on the MAIN MENU.
14066 <DT>Fwd Email</DT>
14067 <DD>Begin composition of a new mail message with the displayed
14068 text already inserted in the message body.
14070 <DT>Save</DT>
14071 <DD>Copy the displayed text to a file.  If you just enter
14072 a filename, the attachment will be saved with that name in
14073 your 
14074 home directory 
14075 <!--chtml if pinemode="running"-->
14076 (which, in the present configuration of your system, is
14077  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14078 <!--chtml endif-->
14079 or current working directory
14080 <!--chtml if pinemode="running"-->
14081 (which, at least for your current Alpine &quot;session,&quot; 
14082 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14083 <!--chtml endif-->, depending on the
14084 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14085 configuration setting.   You may enter the full
14086 path and filename to save it in another directory instead.
14088 <DT>WhereIs</DT>
14089 <DD>Search the attachment for a string of letters.  If it is
14090 found, move to it.  The string can be one word or a phrase.
14091 If there are multiple occurrences, the cursor moves to the
14092 first occurrence beyond the current cursor position.
14093 </DL>
14095 &lt;End of help on this topic&gt;
14096 </BODY>
14097 </HTML>
14098 ======= h_pine_for_windows ========
14099 <HTML>
14100 <HEAD>
14101 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
14102 </HEAD>
14103 <BODY>
14104 <H1>Getting Help In PC-Alpine</H1>
14107 PC-Alpine offers general and specific help text. From the <A
14108 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
14109 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
14110 specific help for that screen is available from the toolbar Help menu or
14111 with the 
14112 <!--chtml if pinemode="function_key"-->
14113 &quot;F1&quot; key.
14114 <!--chtml else-->
14115 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
14116 typing &quot;?&quot; would be mistaken as entering text.
14117 <!--chtml endif-->
14120 Although this version of Alpine is for Microsoft Windows, it is not
14121 considered a full &quot;Graphical User Interface&quot; application. 
14122 Yet, many of the controls that Windows users are accustomed to seeing, 
14123 such as scrollbars and toolbars, are available.
14126 PC-Alpine offers considerable mouse support.  You can view what is
14127 &quot;click-able&quot; by dragging your mouse over any screen; when the
14128 arrow cursor changes into a hand, you found something. Mouse-click
14129 possibilities include navigating between screens and folders and
14130 double-clicking on hyperlinks to open your Web browser.
14131 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
14132 screen.  Examples of right-click options include &quot;copy&quot; after
14133 selecting text to copy and &quot;View in New Window&quot; when you click
14134 on a particular message in the Message Index. The menu choices available
14135 to you will vary based upon what screen is open, where on the screen your
14136 cursor is located, and even what action you have already taken.
14139 &lt;End of help on this topic&gt;
14140 </BODY>
14141 </HTML>
14142 ===== h_composer =====
14143 <HTML>
14144 <HEAD>
14145 <TITLE>COMPOSER COMMANDS</TITLE>
14146 </HEAD>
14147 <BODY>
14148 <H1>COMPOSER COMMANDS</H1>
14150 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>
14151 &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>
14152 &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>
14153 &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>
14154 &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>
14155 &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>
14156 &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>
14157 &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>
14158 &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>
14159 &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>
14160 ---------------------------------------|&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>
14161 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>
14162 &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>
14163 &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>
14164 &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>
14167 NOTE:
14168 <OL>
14169  <LI>For help on a particular command, highlight the bold text associated
14170 with it above and hit Return.
14171  <LI> The availability of certain commands
14172 is determined by Alpine configuration files and system capabilities.
14173 At some sites, certain commands may not be available due to security or
14174 support concerns.
14175  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14176 Ctrl-&#92;, ESC.
14177  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14178 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14179 </OL>
14182 HINT: To move rapidly to the bottom of a message you are composing,
14183 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
14184 with the Mark and Cut commands to eliminate large amounts of unwanted
14185 text in a Reply.
14187 <H2>Description of Composer</H2>
14189 Alpine has a built-in editing program that allows you to compose messages
14190 without having to leave Alpine.  The editor is designed to be very simple to
14191 use so that you can get started writing email right away.
14194 Messages are usually just text, about 80 columns wide.  Using upper and
14195 lower case is encouraged.  On some systems the size limit of the message
14196 is about 100,000 characters, which is about 2,000 lines.  You can include
14197 punctuation and special characters found on most keyboards, but you can't
14198 include characters with diacritical marks and certain special symbols.
14201 Text automatically wraps as you type past the end of a line so you do not
14202 have to hit return.  Using the
14203 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
14204 you can also reformat text explicitly, perhaps after you have
14205 deleted some text.
14208 You can include other text files with the 
14209 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
14210 which will prompt you for the name of the file to insert at the
14211 current cursor position.
14214 <UL>
14215 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14216 </UL>
14218 &lt;End of help on this topic&gt;
14219 </BODY>
14220 </HTML>
14221 ====== h_composer_browse =====
14222 <HTML>
14223 <HEAD>
14224 <TITLE>BROWSER</TITLE>
14225 </HEAD>
14226 <BODY>
14227 <H1>BROWSER</H1>
14228 This screen lets you browse your files and directories.  To go to another 
14229 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
14230 choose &quot;Select&quot; (the default choice on the menu); 
14231 or choose &quot;Goto&quot; and enter the name of the directory.
14232 <!--chtml if pinemode="os_windows"-->
14233 <!--chtml else--> 
14234 In Unix Alpine, you may use 
14235 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
14236 to another's home directory.  
14237 <!--chtml endif--><P>
14238 To select a file, move the cursor to it and 
14239 choose &quot;Select&quot; (the default choice on the menu).  
14241 <UL>
14242 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
14243 inclusion in the 
14244 message body (that is, you chose &quot;Read File&quot; with the cursor under 
14245 the 
14246 &quot;----- Message Text -----&quot; line
14247 while composing, then &quot;To Files&quot;):  Since the file 
14248 selected will become part of the message text, it must be in a format 
14249 suitable for that (Alpine does not check!), such as a plain text file.
14250 Files of other formats (for example, graphics, databases, software 
14251 programs) should be 
14252 <B>attached</B> to the message instead --
14253 by moving the cursor in the COMPOSE MESSAGE screen into the 
14254 message header area and pressing 
14255 <!--chtml if pinemode="function_key"-->
14257 <!--chtml else-->
14258 Ctrl-J.
14259 <!--chtml endif--> 
14261 <P><LI>
14262 Note <B>if</B> you are currently using the BROWSER for saving a message 
14263 attachment, or exporting a message, to a file: You can use the Add command to 
14264 provide the name for a new file to save/export to, and then select that name 
14265 to use it for the save/export operation.  Back at the prompt 
14266 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
14267 either Overwrite or Append (it doesn't make a difference, since the file is 
14268 so far empty).  Note: If you cancel the 
14269 operation at that point, the file created with the Add command will remain 
14270 0 bytes in size.
14272 </UL>
14273 <P><UL>
14274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14275 </UL>
14277 &lt;End of help on this topic&gt;
14278 </BODY>
14279 </HTML>
14280 ====== h_composer_ins =====
14281 <HTML>
14282 <HEAD>
14283 <TITLE>INSERT TEXT FILE</TITLE>
14284 </HEAD>
14285 <BODY>
14286 <H1>INSERT TEXT FILE</H1>
14288 Use this function to insert a text file. The file name
14289 given can be an absolute file path name for your system
14290 <!--chtml if pinemode="os_windows"-->
14291 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14292 with a relative pathname, or simply a file name without
14293 drive or directory specification.  
14294 <!--chtml else-->
14295 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14296 a file in your home directory, or a file path relative to your 
14297 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14298 your home directory or &quot;~user&quot; to refer to another
14299 account's home directory.
14300 <!--chtml endif-->
14302 No wild card characters may be used.  
14303 The file must reside on the system running Alpine.
14305 If the 
14306 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14307 feature is set, names are relative to your current working directory 
14308 <!--chtml if pinemode="running"-->
14309 (which, at least for your current Alpine &quot;session,&quot; 
14310 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14311 <!--chtml endif-->
14312 rather than your home directory
14313 <!--chtml if pinemode="running"-->
14314 (which, in the present configuration of your system, is
14315  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14316 <!--chtml endif-->
14318 <P><UL>
14319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14320 </UL>
14322 &lt;End of help on this topic&gt;
14323 </BODY>
14324 </HTML>
14325 ====== h_composer_ins_m =====
14326 <HTML>
14327 <HEAD>
14328 <TITLE>INSERT MESSAGE</TITLE>
14329 </HEAD>
14330 <BODY>
14331 <H1>INSERT MESSAGE</H1>
14333 Type in the number of a message in the currently open folder to insert it
14334 into your message.
14335 <P><UL>
14336 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14337 </UL>
14339 &lt;End of help on this topic&gt;
14340 </BODY>
14341 </HTML>
14342 ====== h_composer_search =====
14343 <HTML>
14344 <HEAD>
14345 <TITLE>Explanation of Composer Whereis Command </TITLE>
14346 </HEAD>
14347 <BODY>
14348 <H1>Help For Whereis Command</H1>
14350 Whereis is used to search the message for a word or part of a word.
14351 When searching in the composer, only the message part of your mail is
14352 searched, and the cursor is put on the first occurrence appearing
14353 after the location of the cursor.  The search will wrap to the
14354 beginning of the message when it no longer finds matches in the
14355 remainder of the message.
14357 To search for the same string a second time, press 
14358 <!--chtml if pinemode="function_key"-->
14359 &quot;F6&quot;
14360 <!--chtml else-->
14361 &quot;^W&quot;
14362 <!--chtml endif-->
14363 to begin search and then just press RETURN to accept the previous
14364 search string shown in square brackets rather than entering a new
14365 search string.<P>
14367 The &quot;Search&quot; prompt has several sub-command available:
14369 <DL>
14370 <DT>Get Help</DT>
14371 <DD> Takes you to this help page.
14373 <DT>Cancel</DT>
14374 <DD> Cancels the prompt.  No search takes place.
14376 <DT>First Line</DT>
14377 <DD> Takes you back to the composer with the cursor on the first character
14378 of the first line of text.
14380 <DT>Last Line</DT>
14381 <DD> Takes you back to the composer with the cursor on the last character
14382 of the last line of text.
14384 <DT>Replace (Optional)</DT>
14385 <DD> This sub-command is enabled by the 
14386 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14387 feature (which is on by default); see its help screen for details on how replacing works.
14389 </DL>
14391 &lt;End of help on this topic&gt;
14392 </BODY>
14393 </HTML>
14394 ====== h_sigedit_search =====
14395 <HTML>
14396 <HEAD>
14397 <TITLE>Explanation of Whereis Command </TITLE>
14398 </HEAD>
14399 <BODY>
14400 <H1>Help For Whereis Command</H1>
14402 Whereis is used to search for a word or part of a word.
14403 When searching the cursor is put on the first occurrence appearing
14404 after the location of the cursor.  The search will wrap to the
14405 beginning of the signature when it no longer finds matches in the
14406 remainder of the signature.
14408 To search for the same string a second time, press 
14409 <!--chtml if pinemode="function_key"-->
14410 &quot;F6&quot;
14411 <!--chtml else-->
14412 &quot;^W&quot;
14413 <!--chtml endif-->
14414 to begin search and then just press RETURN to accept the previous
14415 search string shown in square brackets rather than entering a new
14416 search string.<P>
14418 The &quot;Search&quot; prompt has several sub-command available:
14420 <DL>
14421 <DT>Get Help</DT>
14422 <DD> Takes you to this help page.
14424 <DT>Cancel</DT>
14425 <DD> Cancels the prompt.  No search takes place.
14427 <DT>First Line</DT>
14428 <DD> Takes you back to the composer with the cursor on the first character
14429 of the first line of text.
14431 <DT>Last Line</DT>
14432 <DD> Takes you back to the composer with the cursor on the last character
14433 of the last line of text.
14435 <DT>Replace (Optional)</DT>
14436 <DD> This sub-command is enabled by the 
14437 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14438 feature (which is on by default); see its help screen for details on how replacing works.
14440 </DL>
14442 &lt;End of help on this topic&gt;
14443 </BODY>
14444 </HTML>
14445 ======= h_composer_to ====
14446 <HTML>
14447 <HEAD>
14448 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
14449 </HEAD>
14450 <BODY>
14451 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
14453 <H2>The &quot;To:&quot; field</H2>
14454 The address you enter here must be a valid email address that is reachable
14455 from your site. 
14457 <H2>Email Address Format</H2>
14458 You may enter a full name and email address, 
14459 <!--chtml if pinemode="os_windows"-->
14460 <!--chtml else-->
14461 a local (meaning, on the same 
14462 host as the one you are running Alpine on) username that Alpine will
14463 complete for you, 
14464 <!--chtml endif-->
14465 the nickname of someone in a 
14466 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
14467 mail alias defined by your system administrator.  When you move the cursor
14468 out of this field, the nicknames will be expanded to the addresses in your
14469 address book, and the local usernames will be expanded to include the 
14470 persons' actual names.  You may enter as many addresses as you wish, but they 
14471 must be separated by commas.  You can move around this and other header fields
14472 with the arrow keys and use many of the usual composer editing keys.
14474 <UL>
14475 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14476 </UL>
14479 <H2>MESSAGE HEADER COMMANDS</H2>
14480 <!--chtml if pinemode="function_key"-->
14481 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14482 ^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>
14483 ^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>
14484 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
14485 ^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>
14486 ^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>
14487 ^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>
14488 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>
14489 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>
14490 ^@&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>
14491 ----------------------------------------|<BR>
14492 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
14493 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>
14494 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>
14495 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>
14496 <!--chtml else-->
14497 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14498 ^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>
14499 ^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>
14500 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
14501 ^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>
14502 ^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>
14503 ^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>
14504 ^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>
14505 ^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>
14506 ^@&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>
14507 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
14508 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>
14509 ^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>
14510 ^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>
14511 ^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>
14512 <!--chtml endif-->
14515 NOTE:
14516 <OL>
14517  <LI>For help on a particular command, highlight the bold text associated
14518 with it above and hit Return.
14519  <LI> The availability of certain commands 
14520 is determined by Alpine configuration files and system capabilities.
14521 At some sites, certain commands may not be available due to security or
14522 support concerns.
14523 </OL>
14526 <UL>   
14527 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14528 </UL><P>
14529 &lt;End of help on this topic&gt;
14530 </BODY>
14531 </HTML>
14532 ======= h_composer_cc ====
14533 <HTML>
14534 <HEAD>
14535 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
14536 </HEAD>
14537 <BODY>
14538 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
14539 The Cc: field is just like the To: field, except it is used for addressees
14540 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
14541 not directly meant directly &quot;for&quot; these recipients, but you wanted 
14542 them to see the message.  The only difference the recipients see is that their 
14543 name is in the Cc: field, rather than the To: field.
14545 For help with Cc: field editing
14546 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14548 <UL>
14549 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14550 </UL>
14552 <UL>   
14553 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14554 </UL><P>
14555 &lt;End of help on this topic&gt;
14556 </BODY>
14557 </HTML>
14558 ======= h_composer_bcc ====
14559 <HTML>
14560 <HEAD>
14561 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14562 </HEAD>
14563 <BODY>
14564 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14565 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14566 a copy of the message to one or more people whose addresses you do not
14567 wish disclosed, either to reduce clutter or for confidentiality.
14569 The format of the Bcc: field is just the same as the To: and Cc: fields in
14570 the way the addresses are entered.  The recipients listed here will
14571 receive a copy of the message, but --assuming your site's mail transport
14572 software is properly configured-- their addresses will not show up in the
14573 headers of the message, as delivered to all of the recipients.  The To:
14574 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14576 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14577 will automatically generate and place in the To: field a pseudo-address of 
14578   &quot;undisclosed-recipients: ;&quot;
14579 or whatever string has been specified in the 
14580 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14581 variable.
14583 The reason for this is to avoid embarrassment caused by some Internet
14584 mail transfer software that interprets a &quot;missing&quot; To: header as 
14585 an error and replaces it with an Apparently-to: header that may contain
14586 the addresses you entered on the Bcc: line.  In addition, it may be
14587 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14589 You can manipulate what text ends up on the (originally) empty To:
14590 field.  Just remember to put a colon and semicolon at the end of the
14591 field, which is a special notation denoting that it is not a real address.
14593 For information on message header editing
14594 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14596 <UL>
14597 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14598 </UL>
14600 <UL>   
14601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14602 </UL><P>
14603 &lt;End of help on this topic&gt;
14604 </BODY>
14605 </HTML>
14606 ======= h_composer_lcc ====
14607 <HTML>
14608 <HEAD>
14609 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14610 </HEAD>
14611 <BODY>
14612 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14613 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14614 you wish to send a message to a list of people but avoid having all
14615 of their addresses visible, in order to reduce clutter when the
14616 message is received.
14618 It is similar to the 
14619 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14620 in that individual
14621 addressees are hidden, but Lcc is designed to work specifically with
14622 distribution lists you have created in your 
14623 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14624 the nickname of the list on the Lcc line will result in the full name of
14625 your Alpine Address Book list being placed on the To: line of the message,
14626 using a special notation that distinguishes it from a real address. You
14627 must leave the To: line blank for your list name to appear there.
14629 For example, if you have this list entered in your Address Book:<PRE>
14631         largo         Key Largo List       DISTRIBUTION LIST:
14632                                            bogie@mgm.com
14633                                            lauren@mgm.com
14634                                            walter@mgm.com</PRE>
14637 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14638 the result is:<PRE>
14640         To      : Key Largo List: ;
14641         Cc      :
14642         Bcc     :
14643         Fcc     : sent-mail
14644         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14645                   lauren@mgm.com,
14646                   walter@mgm.com
14647         Subject :</PRE>
14649 Each recipient listed on the Lcc: line receives a copy of the message
14650 without their address being visible (as though they were listed on the
14651 Bcc: line). The colon-semicolon notation used to put the full-name of the
14652 list on the To: line is a special address format that doesn't specify any
14653 actual addressees, but does give some information to the recipients of the
14654 message.
14656 Note: if after entering an LCC, you delete the list name that is placed
14657 on the To: line, then recipients will see <PRE>
14658        To: undisclosed-recipients: ;</PRE>
14660 (or whatever string is defined in the 
14661 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14662 variable) just as in the BCC case. 
14664 For help with Lcc: field editing
14665 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14667 <UL>
14668 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14669 </UL>
14671 <UL>   
14672 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14673 </UL><P>
14674 &lt;End of help on this topic&gt;
14675 </BODY>
14676 </HTML>
14677 ======= h_composer_from =======
14678 <HTML>
14679 <HEAD>
14680 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14681 </HEAD>
14682 <BODY>
14683 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14685 This header carries your return address.  It is the address toward which
14686 replies (and often, future unrelated correspondence) will be directed,
14687 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14688 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14689 sure this address is correct.
14691 For help with message header editing
14692 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14694 <UL>
14695 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14696 </UL>
14698 <UL>   
14699 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14700 </UL><P>
14701 &lt;End of help on this topic&gt;
14702 </BODY>
14703 </HTML>
14704 ======= h_composer_reply_to =======
14705 <HTML>
14706 <HEAD>
14707 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14708 </HEAD>
14709 <BODY>
14710 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14712 Most people should not need this header. The Reply-To: header is used in
14713 cases where you would like replies to your messages to be directed to an
14714 address other than your normal &quot;From:&quot; address.  This is atypical, 
14715 but can happen when you use multiple machines and do not have the same account
14716 name on each one, or when you wish to direct certain replies to accounts
14717 or folders designated for specific classes of correspondence.
14719 For help with message header editing
14720 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14722 <UL>
14723 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14724 </UL>
14727 <UL>   
14728 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14729 </UL><P>
14730 &lt;End of help on this topic&gt;
14731 </BODY>
14732 </HTML>
14733 ======= h_composer_custom_addr ====
14734 <HTML>
14735 <HEAD>
14736 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14737 </HEAD>
14738 <BODY>
14739 <H1>CUSTOMIZED HEADER FIELD</H1>
14740 This is a customized header, i.e. not one that is part of Alpine's normal
14741 set of Compose headers.
14743 For help with message header editing
14744 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14746 <UL>
14747 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14748 </UL>
14750 <UL>   
14751 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14752 </UL><P>
14753 &lt;End of help on this topic&gt;
14754 </BODY>
14755 </HTML>
14756 ======= h_composer_custom_free ====
14757 <HTML>
14758 <HEAD>
14759 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14760 </HEAD>
14761 <BODY>
14762 <H1>CUSTOMIZED HEADER FIELD</H1>
14763 This is a customized header, i.e. not one that is part of Alpine's normal
14764 set of Compose headers.
14766 This field consists of arbitrary text.
14768 For help with message header editing
14769 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14771 <UL>   
14772 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14773 </UL><P>
14774 &lt;End of help on this topic&gt;
14775 </BODY>
14776 </HTML>
14777 ====== h_composer_news =====
14778 <HTML>
14779 <HEAD>
14780 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14781 </HEAD>
14782 <BODY>
14783 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14784 Use the newsgroups line to specify any and all USENET newsgroups to which
14785 your message should be posted.  When composing a message from scratch, this
14786 line may be hidden.  If so, just press the rich headers command
14787 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14788 to make it visible.
14790 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14791 people will be reading your message.  Also, you or your system manager
14792 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14793 in order for you to be able to post.
14795 For help with message header editing
14796 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14797 <P><UL>
14798 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14799 </UL>
14801 &lt;End of help on this topic&gt;
14802 </BODY>
14803 </HTML>
14804 ======= h_composer_fcc ====
14805 <HTML>
14806 <HEADER>
14807 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14808 </HEADER>
14809 <BODY>
14810 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14811 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14812 each outgoing message.  The default value can be configured with the
14813 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14814 the file carbon copy on any message you send by editing the FCC header.<p>
14816 You may type ^T to get a list of all your folders and select one to use as
14817 the FCC for this message.<P>
14819 For help with message header editing
14820 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14822 <UL>   
14823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14824 </UL><P>
14825 &lt;End of help on this topic&gt;
14826 </BODY>
14827 </HTML>
14828 ======= h_composer_subject ====
14829 <HTML>
14830 <HEADER>
14831 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14832 </HEADER>
14833 <BODY>
14834 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14836 The subject header provides a place to enter a few words that summarize
14837 the topic of the message you are sending.  You may leave this line blank,
14838 but it is considered a courtesy to use a meaningful subject.<p>
14840 For help with message header editing
14841 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14843 <UL>   
14844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14845 </UL><P>
14846 &lt;End of help on this topic&gt;
14847 </BODY>
14848 </HTML>
14849 ======= h_composer_attachment ====
14850 <HTML>
14851 <HEAD>
14852 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14853 </HEAD>
14854 <BODY>
14855 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14857 The &quot;Attchmnt:&quot; field is where you specify what file or
14858 files you'd like attached to
14859 the message you are composing.  Those files must reside on the machine
14860 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14861 account on a Unix machine, you'll have to transfer it before attaching it.
14862 Contact local computer support people for assistance with transferring.
14865 The file name
14866 given can be an absolute file path name for your system
14867 <!--chtml if pinemode="os_windows"-->
14868 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14869 with a relative pathname, or simply a file name without
14870 drive or directory specification.  
14871 <!--chtml else-->
14872 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14873 a file in your home directory, or a file path relative to your 
14874 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14875 your home directory or &quot;~user&quot; to refer to another
14876 account's home directory.
14877 <!--chtml endif--><P>
14878 No wild card characters may be used.
14879 <P>If the 
14880 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14881 feature is set, names are relative to your current working directory 
14882 <!--chtml if pinemode="running"-->
14883 (which, at least for your current Alpine &quot;session,&quot; 
14884 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14885 <!--chtml endif-->
14886 rather than your home directory
14887 <!--chtml if pinemode="running"-->
14888 (which, in the present configuration of your system, is
14889  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14890 <!--chtml endif-->
14893 Alpine uses MIME encoding for attachments, so binaries and files of any
14894 length can safely be delivered to any MIME-capable mail reading program.
14895 If you send an attachment to someone who does not have a MIME-capable mail
14896 reading program yet, then the main message text will be readable, but
14897 attachments (even attachments that are just plain text) are not.
14900 Typing the filename on the Attchmnt: line achieves the same
14901 result as using the 
14902 <!--chtml if pinemode="function_key"-->
14904 <!--chtml else-->
14905 Ctrl-J
14906 <!--chtml endif--> command.
14909 If you Forward a message with attachments, you may delete them from your
14910 Forwarded message by editing the Attchmnt header line.
14913 For help with message header editing
14914 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14916 <UL>   
14917 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14918 </UL><P>
14919 &lt;End of help on this topic&gt;
14920 </BODY>
14921 </HTML>
14922 ======= h_composer_ctrl_j ====
14923 <HTML>
14924 <HEAD>
14925 <TITLE>COMPOSER ATTACH</TITLE>
14926 </HEAD>
14927 <BODY>
14928 After the
14929 <!--chtml if pinemode="function_key"-->
14931 <!--chtml else-->
14932 Ctrl-J
14933 <!--chtml endif--> command:
14934 At the &quot;File to attach:&quot; prompt, enter the name of the 
14935 existing file to attach to your message.  
14936 When the feature
14937 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14938 is set
14939 you need only enter the beginning of the filename (enough of it to uniquely 
14940 identify the file) and press TAB to complete it.
14942 Or, press ^T to use the BROWSER screen for 
14943 selecting the file.  <P>
14944 For more information on attaching files, see the help screen for the 
14945 composer's 
14946 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14947 but can be revealed using the 
14948 <!--chtml if pinemode="function_key"-->
14950 <!--chtml else-->
14951 Ctrl-R
14952 <!--chtml endif--> 
14953 command with the cursor positioned above the
14954 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14956 &lt;End of help on this topic&gt;
14957 </BODY>
14958 </HTML>
14959 ======= h_edit_nav_cmds =========
14960 <HTML>
14961 <HEAD>
14962 <TITLE>Composer Editing Commands Explained</TITLE>
14963 </HEAD>
14964 <BODY>
14965 <H1>EDITING and NAVIGATION COMMANDS</H1>
14966 <!--chtml if pinemode="function_key"-->
14967 <PRE>
14968 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14969 ^B (Left Arrow)    Back character       | ^D       Delete current character
14970 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14971 ^P (Up Arrow)      Previous line        |
14972 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14973 ^A                 Beginning of line    |            delete current line
14974 ^E                 End of line          | F10      Undelete line(s)
14975 F7                 Previous page        |
14976 F8                 Next page            |-------------------------------------
14977 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14978 ----------------------------------------|
14979 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14980 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14981 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14982 </PRE>
14983 <!--chtml else-->
14984 <PRE>
14985 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14986 ^B (Left Arrow)    Back character       | ^D       Delete current character
14987 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14988 ^P (Up Arrow)      Previous line        |
14989 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14990 ^A                 Beginning of line    |            delete current line
14991 ^E                 End of line          | ^U       Undelete line(s)
14992 ^Y                 Previous page        |
14993 ^V                 Next page            |-------------------------------------
14994 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14995 ----------------------------------------|
14996 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14997 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14998 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14999 </PRE>
15000 <!--chtml endif-->
15001 &lt;End of help on this topic&gt;
15002 </BODY>
15003 </HTML>
15004 ===== h_composer_sigedit =====
15005 <HTML>
15006 <HEAD>
15007 <TITLE>Signature Editor Commands Explained</TITLE>
15008 </HEAD>
15009 <BODY>
15010 <H1>SIGNATURE EDITOR COMMANDS</H1>
15011 <!--chtml if pinemode="function_key"-->
15012 <PRE>
15013 CURSOR MOTION KEYS                     |EDITING KEYS
15014   ^B (Left Arrow)   Back character     | ^D       Delete current character
15015   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
15016   ^P (Up Arrow)     Previous line      | ^^       Set a mark
15017   ^N (Down Arrow)   Next line          | F9       Cut marked text or
15018   ^A                Beginning of line  |           delete current line
15019   ^E                End of line        | F10       Paste text, undelete lines
15020   F7                Previous page      |           cut with ^K, or unjustify
15021   F8                Next page          |-------------------------------------
15022   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
15023 ---------------------------------------| F6       Whereis (search for string)
15024 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
15025  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
15026                  |  ^Z    Suspend      | ^L       Redraw Screen
15027  F2   Send       |  F6    Alt. editor  | F5       Read in a file
15028 </PRE>
15029 <!--chtml else-->
15030 <PRE>
15031 CURSOR MOTION KEYS                     |EDITING KEYS
15032   ^B (Left Arrow)   Back character     | ^D       Delete current character
15033   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
15034   ^P (Up Arrow)     Previous line      | ^^       Set a mark
15035   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
15036   ^A                Beginning of line  |           delete current line
15037   ^E                End of line        | ^U        Paste text, undelete lines
15038   ^Y                Previous page      |           cut with ^K, or unjustify
15039   ^V                Next page          |-------------------------------------
15040   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
15041 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
15042 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
15043  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
15044                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
15045  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
15046 </PRE>
15047 <!--chtml endif-->
15049 NOTE: The presence or absence of the following commands is determined
15050 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
15051 some of these commands may be administratively disabled by your system
15052 manager; if they don't work, please check with your local help desk
15053 before reporting a bug.
15055 <UL>
15056  <LI>Suspend (suspends Alpine and gives a system prompt)
15057  <LI>Alternate editor (allows you to compose with your own editor)
15058 </UL>
15061 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
15062 Ctrl-&#92;, ESC
15065 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
15066 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
15068 &lt;End of help on this topic&gt;
15069 </BODY>
15070 </HTML>
15071 ===== h_composer_commentedit =====
15072 <HTML>
15073 <HEAD>
15074 <TITLE>Comment Editor Commands Explained</TITLE>
15075 </HEAD>
15076 <BODY>
15077 <H1>COMMENT EDITOR COMMANDS</H1>
15078 <!--chtml if pinemode="function_key"-->
15079 <PRE>
15080 CURSOR MOTION KEYS                     |EDITING KEYS
15081   ^B (Left Arrow)   Back character     | ^D       Delete current character
15082   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
15083   ^P (Up Arrow)     Previous line      | ^^       Set a mark
15084   ^N (Down Arrow)   Next line          | F9       Cut marked text or
15085   ^A                Beginning of line  |           delete current line
15086   ^E                End of line        | F10       Paste text, undelete lines
15087   F7                Previous page      |           cut with ^K, or unjustify
15088   F8                Next page          |-------------------------------------
15089   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
15090 ---------------------------------------| F6       Whereis (search for string)
15091 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
15092  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
15093                  |  ^Z    Suspend      | ^L       Redraw Screen
15094  F2   Send       |  F6    Alt. editor  | F5       Read in a file
15095 </PRE>
15096 <!--chtml else-->
15097 <PRE>
15098 CURSOR MOTION KEYS                     |EDITING KEYS
15099   ^B (Left Arrow)   Back character     | ^D       Delete current character
15100   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
15101   ^P (Up Arrow)     Previous line      | ^^       Set a mark
15102   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
15103   ^A                Beginning of line  |           delete current line
15104   ^E                End of line        | ^U        Paste text, undelete lines
15105   ^Y                Previous page      |           cut with ^K, or unjustify
15106   ^V                Next page          |-------------------------------------
15107   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
15108 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
15109 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
15110  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
15111                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
15112  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
15113 </PRE>
15114 <!--chtml endif-->
15116 NOTE: The presence or absence of the following commands is determined
15117 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
15118 some of these commands may be administratively disabled by your system
15119 manager; if they don't work, please check with your local help desk
15120 before reporting a bug.
15122 <UL>
15123  <LI>Suspend (suspends Alpine and gives a system prompt)
15124  <LI>Alternate editor (allows you to compose with your own editor)
15125 </UL>
15128 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
15129 Ctrl-&#92;, ESC
15132 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
15133 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
15135 &lt;End of help on this topic&gt;
15136 </BODY>
15137 </HTML>
15138 ======= h_composer_abook_nick =======
15139 <HTML>
15140 <HEAD>
15141 <TITLE>Addressbook Nickname Explained</TITLE>
15142 </HEAD>
15143 <BODY>
15144 This is a short nickname for this address book entry.  If it is used in
15145 place of an address from the composer, the composer will fill in the
15146 address(es) for the entry that matches the nickname. 
15149 Look <A HREF="h_edit_nav_cmds">here</A>
15150 to see the available Editing and Navigation commands.
15152 &lt;End of help on this topic&gt;
15153 </BODY>
15154 </HTML>
15155 ======= h_composer_abook_full =======
15156 <HTML>
15157 <HEAD>
15158 <TITLE>Addressbook Fullname Explained</TITLE>
15159 </HEAD>
15160 <BODY>
15161 This is the full name field for this entry.  If this is going to be a
15162 distribution list (more than one address), it should be a descriptive
15163 phrase describing the list.  It will be included in the mail header if you
15164 put the list in the To: or CC: field, or in the To: line if you put the
15165 list in the Lcc: field.  It's OK to leave this field blank (and OK to
15166 leave any of the other fields blank, too). If this address book entry is
15167 going to be a simple entry with just one address, then this field is the
15168 person's name. When you send mail to this entry, this is the field to the
15169 left of the brackets. That is, it is the most readable part of the 
15170 address. For example, in the sample address:
15171 <PRE>
15172        John Doe &lt;jdoe@some.domain&gt;
15173 </PRE>
15174 "John Doe" is the full name field. If you are sorting your address book
15175 with one of the options that uses full names, then it might be useful to
15176 enter the full name as "Last, First", for example:
15177 <PRE>
15178        Doe, John
15179 </PRE>
15180 so that it will be sorted using Doe instead of John. This will be changed
15181 back into John Doe when you use it.
15183 Look <A HREF="h_edit_nav_cmds">here</A>
15184 to see the available Editing and Navigation commands.
15186 &lt;End of help on this topic&gt;
15187 </BODY>
15188 </HTML>
15189 ======= h_composer_abook_fcc =======
15190 <HTML>
15191 <HEAD>
15192 <TITLE>Addressbook Fcc Explained</TITLE>
15193 </HEAD>
15194 <BODY>
15195 If this entry is the first one in the To: line of an outgoing message,
15196 this field will be used for the Fcc (File Carbon Copy) instead of whatever
15197 you would normally get (which depends on which
15198 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
15199 you've chosen). 
15201 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
15202 that you don't want any Fcc associated with this entry.
15204 Look <A HREF="h_edit_nav_cmds">here</A>
15205 to see the available Editing and Navigation commands.
15207 &lt;End of help on this topic&gt;
15208 </BODY>
15209 </HTML>
15210 ====== h_config_combined_abook_display =====
15211 <HTML>
15212 <HEAD>
15213 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
15214 </HEAD>
15215 <BODY>
15216 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
15218 This feature affects the address book display screens.
15219 Normally, expanding an address book from the ADDRESS BOOK LIST screen
15220 will cause the remaining address books and directory servers to disappear
15221 from the screen, leaving only the entries of the expanded address book.
15222 If this feature is set, then the other address books will remain on the screen,
15223 so that all of the address books can be present at once.
15226 The way that commands work won't be changed.
15227 For example, the Select All command will select all of the entries in the
15228 current address book, not all of the entries in all of the address books.
15229 The WhereIs command will change a little.
15230 It will search through all of the text on the screen plus all of the entries
15231 from expanded address books.
15234 When this feature is set, the setting of the feature
15235 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
15236 has an effect.
15238 &lt;End of help on this topic&gt;
15239 </BODY>
15240 </HTML>
15241 ====== h_config_titlebar_color_style =====
15242 <HTML>
15243 <HEAD>
15244 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
15245 </HEAD>
15246 <BODY>
15247 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
15249 This option affects the colors used to display the titlebar (the top
15250 line on the screen) when viewing a message.
15253 The available options include:
15256 <DL>
15257 <DT>default</DT>
15258 <DD>The color of the titlebar will be the color you set for the
15259 <A HREF="h_config_title_color">Title Color</A>.
15260 The Title Color may be set by using the
15261 <A HREF="h_color_setup">Setup Kolor</A> screen.
15262 </DD>
15264 <DT>indexline</DT>
15265 <DD>The color of the titlebar will be the same as the color of the
15266 index line corresponding to the message being viewed.
15267 The rules that determine what color the index line will be may be set
15268 up by going to the Setup/Rules/Indexcolor screen.
15269 If the index line for a message is not colored explicitly by the
15270 Indexcolor rules, then the titlebar will be colored the same as for
15271 the &quot;default&quot; option above (which is not the same color that
15272 the index line itself will have).
15273 </DD>
15275 <DT>reverse-indexline</DT>
15276 <DD>This is similar to the &quot;indexline&quot; option except the
15277 foreground and background colors from the corresponding index line will
15278 be reversed.
15279 For example, if the index line color is red letters on a white background,
15280 then the titlebar will be white letters on a red background.
15281 If the index line for a message is not colored explicitly by the
15282 Indexcolor rules, then the titlebar will be colored the same as for
15283 the &quot;default&quot; option above (which is not the same color that
15284 the index line itself will have).
15285 </DD>
15286 </DL>
15290 <UL>   
15291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15292 </UL><P>
15293 &lt;End of help on this topic&gt;
15294 </BODY>
15295 </HTML>
15296 ====== h_config_index_color_style =====
15297 <HTML>
15298 <HEAD>
15299 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
15300 </HEAD>
15301 <BODY>
15302 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
15304 This option affects the colors used to display the current line in the
15305 MESSAGE INDEX screen.
15306 If you do not have Index Color Rules defined, then this option will
15307 have no effect in the index.
15308 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
15310 If the option
15311 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
15312 is turned on and the
15313 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
15314 is set to something other than the default, then
15315 this option also affects the color used to display the current folder
15316 in the Incoming FOLDER LIST screen.
15319 The available options include:
15322 <DL>
15323 <DT>flip-colors</DT>
15324 <DD>This is the default.
15325 If an index line is colored because it matches one of your
15326 Index Color Rules, then its colors will be reversed when it is the currently
15327 highlighted line.
15328 For example, if the line is normally red text on a blue background, then
15329 when it is the current line it will be drawn as blue text on a red background.
15331 The rest of the option values all revert to this flip-colors behavior if
15332 there is no Reverse Color defined.
15333 </DD>
15335 <DT>reverse</DT>
15336 <DD>With this option the Reverse color is always used to highlight the
15337 current line.
15338 </DD>
15340 <DT>reverse-fg</DT>
15341 <DD>The foreground part of the Reverse Color is used to highlight
15342 the current line.
15343 If this would cause the text to be unreadable (because the foreground and
15344 background colors are the same) or if it would cause no change in the
15345 color of the index line, then the colors are flipped instead.
15347 Some people think this works particularly well if you use different
15348 background colors to emphasize &quot;interesting&quot; lines,
15349 but always with the same Normal foreground color,
15350 and you use a different foreground color for the Reverse Color.
15351 </DD>
15353 <DT>reverse-fg-no-ambiguity</DT>
15354 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
15355 the resulting color will be exactly the same as the regular Reverse
15356 Color.
15357 That can lead to some possible confusion because an
15358 &quot;interesting&quot;
15359 line that is the current line will be displayed exactly the same as a
15360 non-interesting line that is current.
15361 You can't tell whether the line is just a regular current line or if it is
15362 an &quot;interesting&quot; current line by looking at the color.
15363 Setting the option to this value removes that ambiguity.
15364 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
15365 interesting current line would look just like a non-interesting current line.
15366 In that case, the interesting line's colors are simply flipped (like in the
15367 default behavior).
15369 As an alternative way to preserve the line's interestingness in this case,
15370 you may find that using both a different foreground and a different
15371 background color for the interesting line will help.
15372 </DD>
15374 <DT>reverse-bg</DT>
15375 <DD>The background part of the Reverse Color is used to highlight
15376 the current line.
15377 If this would cause the text to be unreadable (because the foreground and
15378 background colors are the same) or if it would cause no change in the
15379 color of the index line, then the colors are flipped instead.
15381 Some people think this works particularly well if you use different
15382 foreground colors to emphasize &quot;interesting&quot; lines,
15383 but always with the same Normal background color,
15384 and you use a different background color for the Reverse Color.
15385 </DD>
15387 <DT>reverse-bg-no-ambiguity</DT>
15388 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
15389 rule may also result in a color that is exactly the same as the regular
15390 Reverse Color.
15391 Setting the option to this value removes that ambiguity.
15392 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
15393 current line has the same color as the Reverse Color.
15394 In that case, the interesting line's colors are simply flipped (like in the
15395 default behavior).
15396 </DD>
15397 </DL>
15401 <UL>   
15402 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15403 </UL><P>
15404 &lt;End of help on this topic&gt;
15405 </BODY>
15406 </HTML>
15407 ====== h_config_expanded_addrbooks =====
15408 <HTML>
15409 <HEAD>
15410 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
15411 </HEAD>
15412 <BODY>
15413 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
15415 If multiple address books (either personal or global) are defined, and you
15416 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
15417 screen, then set this feature. This feature will have no effect unless the
15418 feature
15419 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
15420 is also set.
15422 &lt;End of help on this topic&gt;
15423 </BODY>
15424 </HTML>
15425 ====== h_config_combined_folder_display =====
15426 <HTML>
15427 <HEAD>
15428 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
15429 </HEAD>
15430 <BODY>
15431 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
15433 This feature affects the folder list display screens.
15434 Normally, each folder list is viewed within its collection only.  This
15435 command allows folder lists to be viewed within a single screen that
15436 combines the contents of all collections.
15439 The way that commands work won't be changed.
15440 For example, the Select All command will select all of the folders in the
15441 current collection, not all of the entries in all of the collections.
15442 The WhereIs command will change a little.
15443 It will search through all of the folders in the current collection as well
15444 as all the folder in any other expanded collection.
15447 When this feature is set, the setting of the feature
15448 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
15449 has an effect.
15451 &lt;End of help on this topic&gt;
15452 </BODY>
15453 </HTML>
15454 ====== h_config_combined_subdir_display =====
15455 <HTML>
15456 <HEAD>
15457 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
15458 </HEAD>
15459 <BODY>
15460 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
15462 This feature affects the Folder List screen when
15464 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15465 feature is enabled.  Normally, selecting a directory from the Folder
15466 List takes you into a new screen displaying only the contents of
15467 that directory.
15470 Enabling this feature will cause the contents of the selected
15471 directory to be
15472 displayed within the boundaries of the &quot;Collection&quot; it
15473 is a part of.  All previously displayed collections will remain
15474 in the screen.
15477 The way that commands work won't be changed.
15478 For example, the Select All command will select all of the folders in the
15479 directory, as opposed to all of the entries in all of the collections.
15480 The WhereIs command will change a little.
15481 It will search through all of the folders in the current collection as well
15482 as all the folder in any other expanded collection.
15485 &lt;End of help on this topic&gt;
15486 </BODY>
15487 </HTML>
15488 ====== h_config_separate_fold_dir_view =====
15489 <HTML>
15490 <HEAD>
15491 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
15492 </HEAD>
15493 <BODY>
15494 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
15496 This feature affects folder collections wherein a folder
15497 and directory can have the same name.  By default, Alpine displays them
15498 only once, denoting that it is both a folder and directory by appending
15499 the folder name with the hierarchy character enclosed
15500 in square brackets.
15504 Enabling this feature will cause Alpine to display such names
15505 separately marking the name representing a directory with a trailing
15506 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
15509 The feature also alters the command set slightly.  By default, the
15510 right-arrow descends into the directory, while hitting the Return key will
15511 cause the folder by that name to be opened.
15514 With this feature set, the Return key will open the highlighted folder, or
15515 enter the highlighted directory.
15518 &lt;End of help on this topic&gt;
15519 </BODY>
15520 </HTML>
15521 ====== h_config_expanded_folders =====
15522 <HTML>
15523 <HEAD>
15524 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
15525 </HEAD>
15526 <BODY>
15527 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
15529 If multiple folder collections are defined, and you
15530 wish to have them all expanded implicitly upon entering the FOLDER LIST
15531 screen, then set this feature. This feature will have no effect unless the
15532 feature
15533 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15534 is also set.
15536 &lt;End of help on this topic&gt;
15537 </BODY>
15538 </HTML>
15539 ======= h_config_ldap_server =======
15540 <HTML>
15541 <HEAD>
15542 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
15543 </HEAD>
15544 <BODY>
15545 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
15546 This is the name of the host where an LDAP server is running.
15547 For redundancy, this may be a space-delimited set of server names, in which
15548 case the first server that answers is used.
15549 Each of the server names may be optionally followed by
15550 a colon and a port number.
15551 If this form is used then the port number configured below in the
15552 <EM>port</EM> field is not used.
15554 To find out whether your organization has its own LDAP server, 
15555 contact its computing support staff.
15556 <P><UL>
15557 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15558 </UL>
15560 &lt;End of help on this topic&gt;
15561 </BODY>
15562 </HTML>
15563 ======= h_config_ldap_base =======
15564 <HTML>
15565 <HEAD>
15566 <TITLE>LDAP OPTION: Search-Base</TITLE>
15567 </HEAD>
15568 <BODY>
15569 <H1>LDAP OPTION: Search-Base</H1>
15571 This is the search base to be used on this server.  It functions as a filter 
15572 by restricting your searches in the LDAP server database
15573 to the specified contents of the specified fields.  Without it, searches 
15574 submitted to this directory server may fail.  It might be something
15575 like:
15577 <PRE>
15578       O = &lt;Your Organization Name&gt;, C = US
15579 </PRE>
15580 or it might be blank.  
15581 (Some LDAP servers actually ignore anything specified here.)
15583 If in doubt what parameters you should specify here, 
15584 contact the maintainers of the LDAP server.
15585 <P><UL>
15586 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15587 </UL>
15589 &lt;End of help on this topic&gt;
15590 </BODY>
15591 </HTML>
15592 ======= h_config_ldap_port =======
15593 <HTML>
15594 <HEAD>
15595 <TITLE>LDAP OPTION: Port</TITLE>
15596 </HEAD>
15597 <BODY>
15598 <H1>LDAP OPTION: Port</H1>
15600 This is the TCP port number to be used with this LDAP server. If you leave
15601 this blank port 389 will be used.
15603 &lt;End of help on this topic&gt;
15604 </BODY>
15605 </HTML>
15606 ======= h_config_ldap_nick =======
15607 <HTML>
15608 <HEAD>
15609 <TITLE>LDAP OPTION: Nickname</TITLE>
15610 </HEAD>
15611 <BODY>
15612 <H1>LDAP OPTION: Nickname</H1>
15614 This is a nickname to be used in displays. If you don't supply a
15615 nickname the server name
15616 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15617 will be used instead.  This option is strictly for your convenience.
15619 &lt;End of help on this topic&gt;
15620 </BODY>
15621 </HTML>
15622 ======= h_config_ldap_binddn =======
15623 <HTML>
15624 <HEAD>
15625 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15626 </HEAD>
15627 <BODY>
15628 <H1>LDAP OPTION: Bind-DN</H1>
15630 You may need to authenticate to the LDAP server before you are able to use it.
15631 This is the Distinguished Name to bind to when authenticating to this server.
15632 Try leaving this blank until you know you need it.
15634 Alpine only knows about LDAP Simple authentication.
15635 It does not attempt LDAP SASL authentication.
15636 The DN and password will be sent in the clear unless TLS encryption is
15637 being used on this connection.
15638 Because of this, you may want to set the LDAP feature
15639 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15640 or the feature
15641 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15642 if you are going to be providing a password.
15643 <P><UL>
15644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15645 </UL>
15647 &lt;End of help on this topic&gt;
15648 </BODY>
15649 </HTML>
15650 ======= h_config_ldap_opts_impl =======
15651 <HTML>
15652 <HEAD>
15653 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15654 </HEAD>
15655 <BODY>
15656 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15658 Set this to have lookups done to this server implicitly from the composer.
15659 If an address doesn't look like a fully-qualified address, it will be looked
15660 up in your address books, and if it doesn't match a nickname there, then it
15661 will be looked up on the LDAP servers that have this feature set.
15662 The lookups will also be done when using the address completion feature
15663 (TAB command) in the composer if any of the serves have this feature set.
15664 Also see the LDAP feature
15665 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15666 and the Setup/Config feature
15667 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15669 &lt;End of help on this topic&gt;
15670 </BODY>
15671 </HTML>
15672 ======= h_config_ldap_opts_tls =======
15673 <HTML>
15674 <HEAD>
15675 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15676 </HEAD>
15677 <BODY>
15678 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15680 When connecting to this server Alpine will attempt to use TLS encryption
15681 on the connection.
15682 Also see the closely related feature
15683 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15685 Note that if this option is set, then 
15686 <A HREF="h_config_ldap_opts_ldaps">
15687 &quot;Require-LDAPS-On-Connection&quot;</A>
15688 can not be enabled for this server. You must disable this feature in
15689 order to use 
15690 <A HREF="h_config_ldap_opts_ldaps">
15691 &quot;Require-LDAPS-On-Connection&quot;</A>
15693 &lt;End of help on this topic&gt;
15694 </BODY>
15695 </HTML>
15696 ======= h_config_ldap_opts_tlsmust =======
15697 <HTML>
15698 <HEAD>
15699 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15700 </HEAD>
15701 <BODY>
15702 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15704 When connecting to this server Alpine will attempt to use TLS encryption
15705 on the connection.
15706 If the StartTLS operation fails then the connection will not be used.
15708 Note that if this option is set, then 
15709 <A HREF="h_config_ldap_opts_ldaps">
15710 &quot;Require-LDAPS-On-Connection&quot;</A>
15711 can not be enabled for this server. You must disable this feature in
15712 order to use 
15713 <A HREF="h_config_ldap_opts_ldaps">
15714 &quot;Require-LDAPS-On-Connection&quot;</A>
15716 &lt;End of help on this topic&gt;
15717 </BODY>
15718 </HTML>
15719 ======= h_config_ldap_opts_ldaps =======
15720 <HTML>
15721 <HEAD>
15722 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15723 </HEAD>
15724 <BODY>
15725 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15727 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15728 on the connection.
15730 This feature can not be used along with 
15731 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15732  or
15733 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15734 If you want to connect using StartTLS to this server, you must disable
15735 this feature first.
15737 &lt;End of help on this topic&gt;
15738 </BODY>
15739 </HTML>
15740 ====== h_config_ldap_opts_rhs =====
15741 <HTML>
15742 <HEAD>
15743 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15744 </HEAD>
15745 <BODY>
15746 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15748 Normally implicit LDAP lookups from the composer are done only for the
15749 strings you type in from the composer screen. In other words, you type in
15750 something in the To or CC field and press return, then the string is looked up.
15751 First that string is looked up in your address books. If a match is found
15752 there, then the results of that match are looked up again. If you place
15753 a string in your address book that you want to have looked up on the LDAP
15754 directory server, you need to turn on this feature. If you set this feature
15755 for a server, you almost always will also want to set the
15756 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15757 feature. An example might serve to best illustrate this feature.
15759 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15760 entry with an
15761 address of pres@whitehouse.gov, then you might put an entry in your address
15762 book that looks like:
15764 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15765 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15767 Now, when you type &quot;bill&quot; into an
15768 address field in the composer Alpine will
15769 find the &quot;bill&quot; entry in your address book.
15770 It will replace &quot;bill&quot; with
15771 &quot;William Clinton&quot;.
15772 It will then search for an entry with that nickname
15773 in your address book and not find one. If this feature
15774 is set, Alpine will then attempt to lookup
15775 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15776 pres@whitehouse.gov.
15778 A better way to accomplish the same thing is probably to use the feature
15779 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15781 &lt;End of help on this topic&gt;
15782 </BODY>
15783 </HTML>
15784 ====== h_config_ldap_opts_ref =====
15785 <HTML>
15786 <HEAD>
15787 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15788 </HEAD>
15789 <BODY>
15790 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15792 Normally when you save the results of an LDAP directory lookup to your
15793 address book the results of the lookup are saved. If this feature is set
15794 and the entry being saved was found on this directory server, then the
15795 search criteria is saved instead of the results of the search. When this
15796 address book entry is used in the future, instead of copying the results
15797 from the address book the directory lookup will be done again. This could
15798 be useful if the copied result might become stale because the data on
15799 the directory server changes (for example, the entry's email address changes).
15800 You probably don't want to set this feature if the server is at all slow or
15801 unreliable.
15803 The way this actually works is that instead of saving the email address
15804 in your address book, Alpine saves enough information to look up the same
15805 directory entry again. In particular, it saves the server name and the
15806 distinguished name of the entry. It's possible that the server administrators
15807 might change the format of distinguished names on the server, or that the
15808 entry might be removed from the server. If Alpine notices this, you will be warned
15809 and a backup copy of the email address will be used. You may want to create
15810 a new entry in this case, since you will get the annoying warning every
15811 time you use the old entry. You may do that by Saving the entry to a new
15812 nickname in the same address book. You will be asked whether or not you
15813 want to use the backup email address.
15815 A related feature in the Setup/Config screen is
15816 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15818 &lt;End of help on this topic&gt;
15819 </BODY>
15820 </HTML>
15821 ======= h_config_ldap_opts_nosub =======
15822 <HTML>
15823 <HEAD>
15824 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15825 </HEAD>
15826 <BODY>
15827 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15829 Spaces in your input are normally handled specially.
15830 Each space character is replaced
15833 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15835 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15836 The reason this is done is so the input string
15838 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15840 (which is converted to &quot;Greg* Donald&quot;) will match
15841 the names &quot;Greg Donald&quot;,
15842 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15843 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15844 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15845 then it would also match the name &quot;Greg Donaldson&quot;.
15847 Turning on this feature will disable this substitution.
15849 &lt;End of help on this topic&gt;
15850 </BODY>
15851 </HTML>
15852 ====== h_config_ldap_searchtypes =======
15853 <HTML>
15854 <HEAD>
15855 <TITLE>LDAP OPTION: Search-Type</TITLE>
15856 </HEAD>
15857 <BODY>
15858 <H1>LDAP OPTION: Search-Type</H1>
15860 This affects the way that LDAP searches are done.
15861 In particular, this tells the server where to look for the string to be matched.
15862 If set to &quot;name&quot; then the string that is being searched for will
15863 be compared with the string in the
15864 &quot;Name&quot; field on the server
15865 (technically, it is the &quot;commonname&quot; field on the server).
15866 &quot;Surname&quot; means we're looking for a
15867 match in the &quot;Surname&quot; field on the
15868 server (actually the &quot;sn&quot; field).
15869 &quot;Givenname&quot; really is &quot;givenname&quot;
15870 and &quot;email&quot; is the electronic mail address (this is actually the field
15871 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15872 The other three types are combinations of
15873 the types listed so far. &quot;Name-or-email&quot;
15874 means the string should appear
15875 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15876 Likewise, &quot;surname-or-givenname&quot;
15877 means &quot;surname&quot; OR &quot;givenname&quot;
15878 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15880 This search TYPE is combined with the
15881 search <A HREF="h_config_ldap_searchrules">RULE</A>
15882 to form the actual search query.
15884 The usual default value for this
15885 option is &quot;sur-or-given-or-name-or-email&quot;.
15886 This type of search may be slow on some servers.
15887 Try &quot;name-or-email&quot;, which is often
15888 faster, or just &quot;name&quot; if the performance seems to be a problem.
15890 Some servers have been configured with different attribute names for
15891 these four fields.
15892 In other words, instead of using the attribute name &quot;mail&quot;
15893 for the email address field, the server might be configured to use something
15894 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15895 Alpine can be configured to use these different attribute names by using
15896 the four configuration options:
15897 <P><UL>
15898 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15899 </UL>
15900 <P><UL>
15901 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15902 </UL>
15903 <P><UL>
15904 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15905 </UL>
15906 <P><UL>
15907 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15908 </UL>
15910 &lt;End of help on this topic&gt;
15911 </BODY>
15912 </HTML>
15913 ====== h_config_ldap_searchrules =======
15914 <HTML>
15915 <HEAD>
15916 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15917 </HEAD>
15918 <BODY>
15919 <H1>LDAP OPTION: Search-Rule</H1>
15921 This affects the way that LDAP searches are done.
15922 If set to &quot;equals&quot; then
15923 only exact matches count.
15924 &quot;Contains&quot; means that the string you type in
15925 is a substring of what you are matching against.
15926 &quot;Begins-with&quot; and &quot;ends-with&quot;
15927 mean that the string starts or ends with the string you type in.
15929 Spaces in your input are normally handled specially, but you can turn that
15930 special handling off with the
15931 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15932 feature.
15934 The usual default value for this option is &quot;begins-with&quot;.
15936 &lt;End of help on this topic&gt;
15937 </BODY>
15938 </HTML>
15939 ======= h_config_ldap_email_attr =======
15940 <HTML>
15941 <HEAD>
15942 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15943 </HEAD>
15944 <BODY>
15945 <H1>LDAP OPTION: EmailAttribute</H1>
15947 This is the name of the attribute that is searched for when looking for
15948 an email address. The default value for this option is &quot;mail&quot; or
15949 &quot;electronicmail&quot;.
15950 If the server you are using uses a different attribute name for the email
15951 address, put that attribute name here.
15953 This will affect the search filter used if your Search-Type is one that
15954 contains a search for &quot;email&quot;.
15955 It will also cause the attribute value matching this attribute name to be used
15956 as the email address when you look up an entry from the composer.
15958 &lt;End of help on this topic&gt;
15959 </BODY>
15960 </HTML>
15961 ======= h_config_ldap_sn_attr =======
15962 <HTML>
15963 <HEAD>
15964 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15965 </HEAD>
15966 <BODY>
15967 <H1>LDAP OPTION: SurnameAttribute</H1>
15969 This is the name of the attribute that is searched for when looking for
15970 the surname of the entry. The default value for this option is &quot;sn&quot;.
15971 If the server you are using uses a different attribute name for the surname,
15972 put that attribute name here.
15973 This will affect the search filter used if your Search-Type is one that
15974 contains a search for &quot;surname&quot;.
15976 &lt;End of help on this topic&gt;
15977 </BODY>
15978 </HTML>
15979 ======= h_config_ldap_gn_attr =======
15980 <HTML>
15981 <HEAD>
15982 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15983 </HEAD>
15984 <BODY>
15985 <H1>LDAP OPTION: GivennameAttribute</H1>
15987 This is the name of the attribute that is searched for when looking for
15988 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15989 If the server you are using uses a different attribute name for the given name,
15990 put that attribute name here.
15991 This will affect the search filter used if your Search-Type is one that
15992 contains a search for &quot;givenname&quot;.
15994 &lt;End of help on this topic&gt;
15995 </BODY>
15996 </HTML>
15997 ======= h_config_ldap_cn_attr =======
15998 <HTML>
15999 <HEAD>
16000 <TITLE>LDAP OPTION: NameAttribute</TITLE>
16001 </HEAD>
16002 <BODY>
16003 <H1>LDAP OPTION: NameAttribute</H1>
16005 This is the name of the attribute that is searched for when looking for
16006 the name of the entry. The default value for this option is &quot;cn&quot;, which
16007 stands for common name.
16008 If the server you are using uses a different attribute name for the name,
16009 put that attribute name here.
16010 This will affect the search filter used if your Search-Type is one that
16011 contains a search for &quot;name&quot;.
16013 &lt;End of help on this topic&gt;
16014 </BODY>
16015 </HTML>
16016 ======= h_config_ldap_time =======
16017 <HTML>
16018 <HEAD>
16019 <TITLE>LDAP OPTION: Timelimit</TITLE>
16020 </HEAD>
16021 <BODY>
16022 <H1>LDAP OPTION: Timelimit</H1>
16024 This places a limit on the number of seconds the LDAP search will continue.
16025 The default is 30 seconds. A value of 0 means no limit. Note that some servers
16026 may place limits of their own on searches.
16028 &lt;End of help on this topic&gt;
16029 </BODY>
16030 </HTML>
16031 ======= h_config_ldap_size =======
16032 <HTML>
16033 <HEAD>
16034 <TITLE>LDAP OPTION: Sizelimit</TITLE>
16035 </HEAD>
16036 <BODY>
16037 <H1>LDAP OPTION: Sizelimit</H1>
16039 This places a limit on the number of entries returned by the LDAP server.
16040 A value of 0 means no limit. The default is 0. Note that some servers
16041 may place limits of their own on searches.
16043 &lt;End of help on this topic&gt;
16044 </BODY>
16045 </HTML>
16046 ======= h_config_ldap_cust =======
16047 <HTML>
16048 <HEAD>
16049 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
16050 </HEAD>
16051 <BODY>
16052 <H1>LDAP OPTION: Custom-Search-Filter</H1>
16054 This one is for advanced users only! If you define this, then the
16055 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
16056 However, the feature
16057 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
16058 is still in effect.
16059 That is, the space substitution will take place even in a custom filter unless
16060 you disable it.
16062 If your LDAP service stops working and you suspect it might be because
16063 of your custom filter, just delete this filter and try using the
16064 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
16065 Another option that sometimes causes trouble is the
16066 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
16068 This variable may be set to the string representation of an LDAP search
16069 filter (see RFC1960). In the places where you want the address string to be
16070 substituted in, put a '%s' in this filter string. Here are some examples:
16072 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
16073 is equivalent to the &quot;Custom-Search-Filter&quot;
16074 <PRE>
16075      (cn=%s*)
16076 </PRE>
16077 When you try to match against the string &quot;string&quot; the program replaces
16078 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
16079 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
16081 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
16082 of &quot;contains&quot; is equivalent to
16083 <PRE>
16084      (|(cn=*%s*)(mail=*%s*))
16085 </PRE>
16087 If your server uses a different attribute <EM>name</EM> than
16088 Alpine uses by default,
16089 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
16090 then you may be able to use one or more of the four attribute configuration
16091 options instead of defining a custom filter:
16092 <P><UL>
16093 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
16094 </UL>
16095 <P><UL>
16096 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
16097 </UL>
16098 <P><UL>
16099 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
16100 </UL>
16101 <P><UL>
16102 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
16103 </UL>
16105 &lt;End of help on this topic&gt;
16106 </BODY>
16107 </HTML>
16108 ======= h_composer_abook_comment =======
16109 <HTML>
16110 <HEAD>
16111 <TITLE>Addressbook Comment Explained</TITLE>
16112 </HEAD>
16113 <BODY>
16114 This is a comment to help you remember what this entry is. The WhereIs
16115 command searches comments so that it is easier to find an entry with a comment
16116 you know about attached to it. This field is not used in the outgoing message.
16118 Look <A HREF="h_edit_nav_cmds">here</A>
16119 to see the available Editing and Navigation commands.
16121 &lt;End of help on this topic&gt;
16122 </BODY>
16123 </HTML>
16124 ======= h_composer_abook_addrs =======
16125 <HTML>
16126 <HEAD>
16127 <TITLE>Addressbook Lists</TITLE>
16128 </HEAD>
16129 <BODY>
16130 <H1>Addressbook Lists</H1>
16132 This is a list of addresses to send to when sending to this address book
16133 entry.  Each member of the list may be an address or another nickname from
16134 any of your address books.  If it is an address, it is OK to include the
16135 full name field as well as the electronic address portion of that address.
16136 For example, the following are all legitimate entries in this field:
16138 <DL><DT>&nbsp;</DT>
16139 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
16140 <DD>jdoe@some.domain
16141 <DD>John Doe &lt;jdoe@some.domain&gt;
16142 </DL>
16144 The addresses should be listed separated by commas, just like you would
16145 enter them from the composer.
16149 The only difference between a distribution list and a simple entry with a
16150 single address, is that a distribution list has more than one address   
16151 listed in the Addresses: field, whereas a simple personal entry has just  
16152 one address.
16156 For individual address book entries, if there is a full name in the
16157 Fullname: field (filling in the Fullname: field is not required), it is
16158 used.  If the full name is specified in the Address: field and not in the
16159 Fullname: field, then the full name from the Address: field is used.
16163 If you type the nickname of a distribution list from one of your address 
16164 books in the Lcc: field, then the full name of that list is used in the  
16165 To: field.  If you put a list in the To: or Cc: fields, that list will be
16166 expanded into all of its addresses.  If the list has a full name, then
16167 that will appear at the beginning of the addresses.
16169 <DL><DT>&nbsp;</DT>
16170 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
16171 &lt;sal@here.there&gt;
16172 </DL>
16174 If the first address in the distribution list also has a full name, then
16175 the list full name and that full name are combined into something like the
16176 following:
16178 <DL><DT>&nbsp;</DT>
16179 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
16180 </DL>
16183 If you specify a list via Lcc, the full name is used in the To: line.  If
16184 you specify a list in the To: or Cc: fields, then it uses the same method
16185 as for individual entries for filling in the full name.
16189 For help with editing and navigation commands, check the Help for the
16190 Nickname: field.
16193 &lt;End of help on this topic&gt;
16194 </BODY>
16195 </HTML>
16196 ======= h_config_xoauth2_client_id =======
16197 <HTML>
16198 <HEAD>
16199 <TITLE>Client-Id Explained</TITLE>
16200 </HEAD>
16201 <BODY>
16202 <H1>Client-Id Explained</H1>
16204 If you have registered Alpine with your service provider to use the XOAUTH2 authenticator, or
16205 someone has shared a client-id and client-secret with you, use this field to input the
16206 client-id.
16208 The Client-Id field is a string that your provider generates for the program
16209 being registered. However, some providers allow different users to register
16210 the same program. Users of the Mutt email program already do this to use
16211 XOAUTH2 authentication in Gmail.
16214 &lt;End of help on this topic&gt;
16215 </BODY>
16216 </HTML>
16217 ======= h_config_xoauth2_client_secret =======
16218 <HTML>
16219 <HEAD>
16220 <TITLE>Client-Secret Explained</TITLE>
16221 </HEAD>
16222 <BODY>
16223 <H1>Client-Secret Explained</H1>
16225 If you have registered Alpine with your service provider to use the XOAUTH2 authenticator, or
16226 someone has shared a client-id and client-secret with you, use this field to input the
16227 client-secret. Some servers require both a client-id and a client-secret, some other servers do
16228 not require a client-secret. If a client-secret is required, use this field to add one.
16230 <P> The client-secret field is supposed to be kept secret, that is, not
16231 shared with any of the users, but due to the open source nature of Alpine,
16232 it is not possible to keep it secret in any meaningful way. The intention
16233 of this field is so that only the coders of an app can use the codes given
16234 to them and authenticate their users to the services they are requesting.
16235 This means that other coders would not be able to impresonate that app,
16236 and use it to steal data from those users. In the case of Alpine this is
16237 not possible, as Alpine does not steal data from its users, so users are safe
16238 sharing client-secrets. Just make sure you obtain your copy of Alpine from
16239 a reputable provider or compile the source code by yourself. The official
16240 source code of this project is located at
16242 <P><CENTER><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A>.</CENTER>
16245 &lt;End of help on this topic&gt;
16246 </BODY>
16247 </HTML>
16248 ======= h_config_xoauth2_tenant =======
16249 <HTML>
16250 <HEAD>
16251 <TITLE>Tenant Explained</TITLE>
16252 </HEAD>
16253 <BODY>
16254 <H1>Tenant Explained</H1>
16256 The tenant is a way in which a service can either restrict an app to access
16257 only certain portions of its service. For example, a service may allow
16258 an app to have access to your work data, or school data, and not every app
16259 is allowed to access this data, or the access is not allowed for all accounts,
16260 but only those restructed in the tenant.
16262 <P> When Alpine registers with an email service provider, it does so with the
16263 intention that you can use Alpine for any of your needs (work, school or
16264 personal), and the client-id and tenant that it uses would allow you access to
16265 only your work email, say, and not your personal email, because the app is
16266 trusted only at work, and so the client-id and tenant are good for that
16267 organization only.
16269 &lt;End of help on this topic&gt;
16270 </BODY>
16271 </HTML>
16272 ======= h_config_xoauth2_flow =======
16273 <HTML>
16274 <HEAD>
16275 <TITLE>Flow Explained</TITLE>
16276 </HEAD>
16277 <BODY>
16278 <H1>Flow Explained</H1>
16280 The first time you connect to a service to authorize Alpine access to your
16281 email, you will have to do a certain number of steps, which typically involve
16282 to login to your account using a browser, and agreeing to give Alpine certain
16283 rights to access your account.
16286 How this process is going to be done depends on the service. Some services
16287 allow you to give access to Alpine and later generate a code that you
16288 input into Alpine, while others give you a code you have to use before you
16289 approve access to Alpine to access your email.
16291 <P> An example of a service that gives you a code after you authorize
16292 Alpine is Gmail, and this process is called internally as &quot;Authorize&quot;.
16293 An example of a service that gives you a code before you authorize Alpine
16294 is Outlook, and this process is called &quot;Device&quot;. However, some services,
16295 like Outlook, offer both services, and you can choose which flow you would like
16296 to use. You
16297 can choose between the &quot;Authorize&qupt; and &quot;Device&quot; in these servers.
16298 If you forget to configure
16299 this, Alpine will ask you in these situations which method to use before it starts
16300 to setup the process to get your authrization.
16303 &lt;End of help on this topic&gt;
16304 </BODY>
16305 </HTML>
16306 ======= h_config_xoauth2_username =======
16307 <HTML>
16308 <HEAD>
16309 <TITLE>Username Explained</TITLE>
16310 </HEAD>
16311 <BODY>
16312 <H1>Username Explained</H1>
16314 This variable is a list of usernames for which the configuration for the
16315 given service is valid. You may have more than one username for which this
16316 configuration is correct.
16319 Alpine will use the usernames in this list to associate your username with
16320 the correct configuration in Alpine. If Alpine cannot determine which configuration
16321 to use, Alpine will offer you a list of client-ids that you have configured
16322 for that service and ask you to pick one. Your answer will be saved  in your
16323 .pinerc file.
16326 &lt;End of help on this topic&gt;
16327 </BODY>
16328 </HTML>
16329 ======= h_config_role_nick =======
16330 <HTML>
16331 <HEAD>
16332 <TITLE>Nickname Explained</TITLE>
16333 </HEAD>
16334 <BODY>
16335 <H1>Nickname Explained</H1>
16337 This is a nickname to help you.
16338 You should have a different nickname for each role you define.
16339 The nickname will be used in the SETUP ROLE RULES screen to allow you to
16340 pick a role to edit.
16341 It will also be used when you send a message to let you know you are
16342 sending with a different role than you use by default, and
16343 it will be useful for choosing a role when composing with the Role command
16344 or when composing with one of the Role Uses set to With Confirmation.
16345 This field is not used in the outgoing message.
16347 Look <A HREF="h_edit_nav_cmds">here</A>
16348 to see the available Editing and Navigation commands.
16350 &lt;End of help on this topic&gt;
16351 </BODY>
16352 </HTML>
16353 ======= h_config_role_comment =======
16354 <HTML>
16355 <HEAD>
16356 <TITLE>Comment Explained</TITLE>
16357 </HEAD>
16358 <BODY>
16359 <H1>Comment Explained</H1>
16361 This is a comment to help you.
16362 This comment does not play any functional role, it is simply an optional
16363 comment to help you remember what the rule is for.
16365 Look <A HREF="h_edit_nav_cmds">here</A>
16366 to see the available Editing and Navigation commands.
16368 &lt;End of help on this topic&gt;
16369 </BODY>
16370 </HTML>
16371 ======= h_config_other_nick =======
16372 <HTML>
16373 <HEAD>
16374 <TITLE>Nickname Explained</TITLE>
16375 </HEAD>
16376 <BODY>
16377 <H1>Nickname Explained</H1>
16379 This is a nickname to help you.
16380 You should have a different nickname for each rule you define.
16381 The nickname will be used in the SETUP OTHER RULES screen to allow you to
16382 pick a rule to edit.
16384 Look <A HREF="h_edit_nav_cmds">here</A>
16385 to see the available Editing and Navigation commands.
16387 &lt;End of help on this topic&gt;
16388 </BODY>
16389 </HTML>
16390 ======= h_config_score_nick =======
16391 <HTML>
16392 <HEAD>
16393 <TITLE>Nickname Explained</TITLE>
16394 </HEAD>
16395 <BODY>
16396 <H1>Nickname Explained</H1>
16398 This is a nickname to help you.
16399 You should have a different nickname for each scoring rule you define.
16400 The nickname will be used in the SETUP SCORING RULES screen to allow you to
16401 pick a rule to edit.
16403 Look <A HREF="h_edit_nav_cmds">here</A>
16404 to see the available Editing and Navigation commands.
16406 &lt;End of help on this topic&gt;
16407 </BODY>
16408 </HTML>
16409 ======= h_config_incol_nick =======
16410 <HTML>
16411 <HEAD>
16412 <TITLE>Nickname Explained</TITLE>
16413 </HEAD>
16414 <BODY>
16415 <H1>Nickname Explained</H1>
16417 This is a nickname to help you.
16418 You should have a different nickname for each color rule you define.
16419 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
16420 pick a rule to edit.
16422 Look <A HREF="h_edit_nav_cmds">here</A>
16423 to see the available Editing and Navigation commands.
16425 &lt;End of help on this topic&gt;
16426 </BODY>
16427 </HTML>
16428 ======= h_config_filt_nick =======
16429 <HTML>
16430 <HEAD>
16431 <TITLE>Nickname Explained</TITLE>
16432 </HEAD>
16433 <BODY>
16434 <H1>Nickname Explained</H1>
16436 This is a nickname to help you.
16437 You should have a different nickname for each filtering rule you define.
16438 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
16439 pick a rule to edit.
16441 Look <A HREF="h_edit_nav_cmds">here</A>
16442 to see the available Editing and Navigation commands.
16444 &lt;End of help on this topic&gt;
16445 </BODY>
16446 </HTML>
16447 ======= h_config_score_topat =======
16448 <HTML>
16449 <HEAD>
16450 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16451 </HEAD>
16452 <BODY>
16453 <H1>&quot;To:&quot; Pattern Explained</H1>
16455 Any text you enter as the &quot;To pattern&quot;
16456 will be compared to the recipients from the To: line of
16457 the message being scored.
16458 When the text you entered matches
16459 all or part of the To: line of a message, then the Score Value
16460 you have specified will be added to the score for the message.
16461 (Any other non-blank parts of the Pattern must match, too.)
16464 You may enter a complete email address, part of an address, or a
16465 list of addresses or partial addresses.
16466 For example:
16469 <PRE>
16470  To pattern = friend@public.com
16472  To pattern = rated.net
16474  To pattern = xxx@adults.com
16475               admin@msn.com
16476               fool@motleyfool.com
16477 </PRE>
16480 Each of those are valid To patterns.
16483 Messages match those patterns if any of the
16484 addresses in the To: line of the message contains the pattern.
16485 If the pattern is a list of patterns
16486 (like the last example above) then it is a match if any of the patterns in
16487 the list match any of the addresses in the To: line.
16488 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16489 present for a match.
16490 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16491 address2 must be present.
16492 That is exactly what using a list does.)
16495 Some messages may be &quot;bounced&quot; to you, and will
16496 have a &quot;Resent-To:&quot; header line.
16497 If the message contains a Resent-To: line
16498 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16499 Alpine will look for
16500 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16501 the original To: line.
16504 When entering a pattern, you may choose an address from your address book
16505 with the &quot;T&quot; command.
16508 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16509 &quot;!&quot; &quot;toggle NOT&quot; command.
16510 This changes the meaning of the To pattern so that it has the opposite meaning.
16511 It will be considered a match if there are no matches between the
16512 addresses in the To: line and the list of To patterns.
16514 Don't make the mistake of putting the &quot;!&quot; in the data field for
16515 the pattern.
16516 For example, if you type the characters &quot;!frizzle&quot; into the To
16517 pattern, the pattern will look like:
16519 <PRE>
16520  To pattern = !frizzle
16521 </PRE>
16523 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16524 In order to match messages that do not have &quot;frizzle&quot; in
16525 their To field, first type the characters &quot;frizzle&quot; followed
16526 by carriage return for the value of the To pattern, then negate it
16527 by typing the &quot;!&quot; command.
16528 It should end up looking like
16530 <PRE>
16531  ! To pattern = frizzle
16532 </PRE>
16534 You are not limited to using the six standard header patterns that are
16535 normally shown (To, From, Sender, Cc, News, and Subject).
16536 You may add any other header to a Pattern by
16537 using the &quot;eXtraHdr&quot; command to specify a different
16538 message header line; and then the Add or Change command to fill in
16539 a pattern for the new header line, just like you would for a standard header.
16541 A technicality: Since comma is the character used to separate multiple
16542 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16543 you want to include a literal comma in the field.
16544 In other words, if you type a backslash followed by a comma it will
16545 be interpreted as a comma by Alpine, instead of as a separator between
16546 pattern values.
16547 All other backslashes are literal backslashes and should not be escaped.
16549 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16550 for more information on Patterns.
16552 Look <A HREF="h_edit_nav_cmds">here</A>
16553 to see the available Editing and Navigation commands.
16555 &lt;End of help on this topic&gt;
16556 </BODY>
16557 </HTML>
16558 ======= h_config_incol_topat =======
16559 <HTML>
16560 <HEAD>
16561 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16562 </HEAD>
16563 <BODY>
16564 <H1>&quot;To:&quot; Pattern Explained</H1>
16566 Any text you enter as the &quot;To pattern&quot;
16567 will be compared to the recipients from the To: lines of
16568 the messages in the index.
16569 When the text you entered matches
16570 all or part of the To: line of a message, then the Index Line Color you have
16571 specified will be used for that line in the index.
16572 (Any other non-blank parts of the Pattern must match, too.)
16575 You may enter a complete email address, part of an address, or a
16576 list of addresses or partial addresses.
16577 For example:
16580 <PRE>
16581  To pattern = friend@public.com
16582  To pattern = rated.net
16583  To pattern = xxx@adults.com
16584               admin@msn.com
16585               fool@motleyfool.com
16586 </PRE>
16589 Each of those are valid To patterns.
16592 Messages match those patterns if any of the
16593 addresses in the To: line of the message contains the pattern.
16594 If the pattern is a list of patterns
16595 (like the last example above) then it is a match if any of the patterns in
16596 the list match any of the addresses in the To: line.
16597 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16598 present for a match.
16599 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16600 address2 must be present.
16601 That is exactly what using a list does.)
16604 Some messages may be &quot;bounced&quot; to you, and will
16605 have a &quot;Resent-To:&quot; header line.
16606 If the message contains a Resent-To: line
16607 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16608 Alpine will look for
16609 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16610 the original To: line.
16613 When entering a pattern, you may choose an address from your address book
16614 with the &quot;T&quot; command.
16617 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16618 &quot;!&quot; &quot;toggle NOT&quot; command.
16619 This changes the meaning of the To pattern so that it has the opposite meaning.
16620 It will be considered a match if there are no matches between the
16621 addresses in the To: line and the list of To patterns.
16623 Don't make the mistake of putting the &quot;!&quot; in the data field for
16624 the pattern.
16625 For example, if you type the characters &quot;!frizzle&quot; into the To
16626 pattern, the pattern will look like:
16628 <PRE>
16629  To pattern = !frizzle
16630 </PRE>
16632 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16633 In order to match messages that do not have &quot;frizzle&quot; in
16634 their To field, first type the characters &quot;frizzle&quot; followed
16635 by carriage return for the value of the To pattern, then negate it
16636 by typing the &quot;!&quot; command.
16637 It should end up looking like
16639 <PRE>
16640  ! To pattern = frizzle
16641 </PRE>
16644 You are not limited to using the six standard header patterns that are
16645 normally shown (To, From, Sender, Cc, News, and Subject).
16646 You may add any other header to a Pattern by
16647 using the &quot;eXtraHdr&quot; command to specify a different
16648 message header line; and then the Add or Change command to fill in
16649 a pattern for the new header line, just like you would for a standard header.
16651 A technicality: Since comma is the character used to separate multiple
16652 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16653 you want to include a literal comma in the field.
16654 In other words, if you type a backslash followed by a comma it will
16655 be interpreted as a comma by Alpine, instead of as a separator between
16656 pattern values.
16657 All other backslashes are literal backslashes and should not be escaped.
16659 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16660 for more information on Patterns.
16662 Look <A HREF="h_edit_nav_cmds">here</A>
16663 to see the available Editing and Navigation commands.
16665 &lt;End of help on this topic&gt;
16666 </BODY>
16667 </HTML>
16668 ======= h_config_other_topat =======
16669 <HTML>
16670 <HEAD>
16671 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16672 </HEAD>
16673 <BODY>
16674 <H1>&quot;To:&quot; Pattern Explained</H1>
16676 For some of the OTHER RULES actions, there is no message that is being
16677 compared against.
16678 If that is the case, then only the Current Folder Type is checked.
16679 In particular, this To pattern is ignored.
16680 Actions that fall into this category include both
16681 Sort Order and Index Format.
16683 A technicality: Since comma is the character used to separate multiple
16684 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16685 you want to include a literal comma in the field.
16686 In other words, if you type a backslash followed by a comma it will
16687 be interpreted as a comma by Alpine, instead of as a separator between
16688 pattern values.
16689 All other backslashes are literal backslashes and should not be escaped.
16691 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16692 for more information on Patterns.
16694 Look <A HREF="h_edit_nav_cmds">here</A>
16695 to see the available Editing and Navigation commands.
16697 &lt;End of help on this topic&gt;
16698 </BODY>
16699 </HTML>
16700 ======= h_config_filt_topat =======
16701 <HTML>
16702 <HEAD>
16703 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16704 </HEAD>
16705 <BODY>
16706 <H1>&quot;To:&quot; Pattern Explained</H1>
16708 Any text you enter as the &quot;To pattern&quot;
16709 will be compared to the recipients from the To: line of
16710 messages when Alpine opens folders.
16711 When the text you entered matches
16712 all or part of the To: line of a message, then the Filter Action you have
16713 specified will be carried out.
16714 (Any other non-blank parts of the Pattern must match, too.)
16717 You may enter a complete email address, part of an address, or a
16718 list of addresses or partial addresses.
16719 For example:
16722 <PRE>
16723  To pattern = friend@public.com
16724  To pattern = rated.net
16725  To pattern = xxx@adults.com
16726               admin@msn.com
16727               fool@motleyfool.com
16728 </PRE>
16731 Each of those are valid To patterns.
16734 Messages match those patterns if any of the
16735 addresses in the To: line of the message contains the pattern.
16736 If the pattern is a list of patterns
16737 (like the last example above) then it is a match if any of the patterns in
16738 the list match any of the addresses in the To: line.
16739 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16740 present for a match.
16741 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16742 address2 must be present.
16743 That is exactly what using a list does.)
16746 Some messages may be &quot;bounced&quot; to you, and will
16747 have a &quot;Resent-To:&quot; header line.
16748 If the message contains a Resent-To: line
16749 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16750 Alpine will look for
16751 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16752 the original To: line.
16755 When entering a pattern, you may choose an address from your address book
16756 with the &quot;T&quot; command.
16759 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16760 &quot;!&quot; &quot;toggle NOT&quot; command.
16761 This changes the meaning of the To pattern so that it has the opposite meaning.
16762 It will be considered a match if there are no matches between the
16763 addresses in the To: line and the list of To patterns.
16765 Don't make the mistake of putting the &quot;!&quot; in the data field for
16766 the pattern.
16767 For example, if you type the characters &quot;!frizzle&quot; into the To
16768 pattern, the pattern will look like:
16770 <PRE>
16771  To pattern = !frizzle
16772 </PRE>
16774 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16775 In order to match messages that do not have &quot;frizzle&quot; in
16776 their To field, first type the characters &quot;frizzle&quot; followed
16777 by carriage return for the value of the To pattern, then negate it
16778 by typing the &quot;!&quot; command.
16779 It should end up looking like
16781 <PRE>
16782  ! To pattern = frizzle
16783 </PRE>
16786 You are not limited to using the six standard header patterns that are
16787 normally shown (To, From, Sender, Cc, News, and Subject).
16788 You may add any other header to a Pattern by
16789 using the &quot;eXtraHdr&quot; command to specify a different
16790 message header line; and then the Add or Change command to fill in
16791 a pattern for the new header line, just like you would for a standard header.
16793 A technicality: Since comma is the character used to separate multiple
16794 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16795 you want to include a literal comma in the field.
16796 In other words, if you type a backslash followed by a comma it will
16797 be interpreted as a comma by Alpine, instead of as a separator between
16798 pattern values.
16799 All other backslashes are literal backslashes and should not be escaped.
16801 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16802 for more information on Patterns.
16804 Look <A HREF="h_edit_nav_cmds">here</A>
16805 to see the available Editing and Navigation commands.
16807 &lt;End of help on this topic&gt;
16808 </BODY>
16809 </HTML>
16810 ======= h_config_role_topat =======
16811 <HTML>
16812 <HEAD>
16813 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16814 </HEAD>
16815 <BODY>
16816 <H1>&quot;To:&quot; Pattern Explained</H1>
16818 Any text you enter as the &quot;To pattern&quot;
16819 will be compared to the recipients from the To: line of
16820 the message being replied to or forwarded.
16821 (Any other non-blank parts of the Pattern must match, too.)
16822 In the case of the Compose command, this pattern and the other header
16823 patterns are ignored.
16826 You may enter a complete email address, part of an address, or a
16827 list of addresses or partial addresses.
16828 For example:
16831 <PRE>
16832  To pattern = friend@public.com
16833  To pattern = rated.net
16834  To pattern = xxx@adults.com
16835               admin@msn.com
16836               fool@motleyfool.com
16837 </PRE>
16840 Each of those are valid To patterns.
16843 Messages match those patterns if any of the
16844 addresses in the To: line of the message contains the pattern.
16845 If the pattern is a list of patterns
16846 (like the last example above) then it is a match if any of the patterns in
16847 the list match any of the addresses in the To: line.
16848 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16849 present for a match.
16850 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16851 address2 must be present.
16852 That is exactly what using a list does.)
16855 Some messages may be &quot;bounced&quot; to you, and will
16856 have a &quot;Resent-To:&quot; header line.
16857 If the message contains a Resent-To: line
16858 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16859 Alpine will look for
16860 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16861 the original To: line.
16864 When entering a pattern, you may choose an address from your address book
16865 with the &quot;T&quot; command.
16868 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16869 &quot;!&quot; &quot;toggle NOT&quot; command.
16870 This changes the meaning of the To pattern so that it has the opposite meaning.
16871 It will be considered a match if there are no matches between the
16872 addresses in the To: line and the list of To patterns.
16874 Don't make the mistake of putting the &quot;!&quot; in the data field for
16875 the pattern.
16876 For example, if you type the characters &quot;!frizzle&quot; into the To
16877 pattern, the pattern will look like:
16879 <PRE>
16880  To pattern = !frizzle
16881 </PRE>
16883 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16884 In order to match messages that do not have &quot;frizzle&quot; in
16885 their To field, first type the characters &quot;frizzle&quot; followed
16886 by carriage return for the value of the To pattern, then negate it
16887 by typing the &quot;!&quot; command.
16888 It should end up looking like
16890 <PRE>
16891  ! To pattern = frizzle
16892 </PRE>
16895 You are not limited to using the six standard header patterns that are
16896 normally shown (To, From, Sender, Cc, News, and Subject).
16897 You may add any other header to a Pattern by
16898 using the &quot;eXtraHdr&quot; command to specify a different
16899 message header line; and then the Add or Change command to fill in
16900 a pattern for the new header line, just like you would for a standard header.
16902 A technicality: Since comma is the character used to separate multiple
16903 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16904 you want to include a literal comma in the field.
16905 In other words, if you type a backslash followed by a comma it will
16906 be interpreted as a comma by Alpine, instead of as a separator between
16907 pattern values.
16908 All other backslashes are literal backslashes and should not be escaped.
16910 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16911 for more information on Patterns.
16913 Look <A HREF="h_edit_nav_cmds">here</A>
16914 to see the available Editing and Navigation commands.
16916 &lt;End of help on this topic&gt;
16917 </BODY>
16918 </HTML>
16919 ======= h_config_role_frompat =======
16920 <HTML>
16921 <HEAD>
16922 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16923 </HEAD>
16924 <BODY>
16925 <H1>&quot;From:&quot; Pattern Explained</H1>
16927 This is just like the &quot;To pattern&quot; except that it is compared with
16928 the address in the From: line of the message
16929 instead of the addresses from the To: line.
16930 See the help for the To pattern for more information on header patterns.
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_senderpat =======
16942 <HTML>
16943 <HEAD>
16944 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16945 </HEAD>
16946 <BODY>
16947 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16949 This is just like the &quot;To pattern&quot; except that it is compared with
16950 the address from the Sender: line of the message
16951 instead of the addresses from the To: line.
16952 See the help for the To pattern for more information on header patterns.
16954 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16955 for more information on Patterns.
16957 Look <A HREF="h_edit_nav_cmds">here</A>
16958 to see the available Editing and Navigation commands.
16960 &lt;End of help on this topic&gt;
16961 </BODY>
16962 </HTML>
16963 ======= h_config_role_ccpat =======
16964 <HTML>
16965 <HEAD>
16966 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16967 </HEAD>
16968 <BODY>
16969 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16971 This is just like the &quot;To pattern&quot; except that it is compared with
16972 the addresses from the Cc: line of the message
16973 instead of the addresses from the To: line.
16974 See the help for the To pattern for more information on header patterns.
16976 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16977 for more information on Patterns.
16979 Look <A HREF="h_edit_nav_cmds">here</A>
16980 to see the available Editing and Navigation commands.
16982 &lt;End of help on this topic&gt;
16983 </BODY>
16984 </HTML>
16985 ======= h_config_role_recippat =======
16986 <HTML>
16987 <HEAD>
16988 <TITLE>Recipient Pattern Explained</TITLE>
16989 </HEAD>
16990 <BODY>
16991 <H1>Recipient Pattern Explained</H1>
16993 This is just like the &quot;To pattern&quot; except that it is compared with
16994 the addresses from both the To: line and the Cc: line of the
16995 message instead of just the addresses from the To: line.
16996 In other words, it is considered a match if the pattern matches
16997 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16998 in the Cc: line.
16999 (Notice that defining the Recipient pattern does not have the same
17000 effect as defining both the To and Cc patterns.
17001 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
17002 It is equivalent to having two different rules;
17003 one with a To pattern and the other with the same Cc pattern.)
17005 A technicality: Since comma is the character used to separate multiple
17006 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17007 you want to include a literal comma in the field.
17008 In other words, if you type a backslash followed by a comma it will
17009 be interpreted as a comma by Alpine, instead of as a separator between
17010 pattern values.
17011 All other backslashes are literal backslashes and should not be escaped.
17013 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17014 for more information on Patterns.
17016 Look <A HREF="h_edit_nav_cmds">here</A>
17017 to see the available Editing and Navigation commands.
17019 &lt;End of help on this topic&gt;
17020 </BODY>
17021 </HTML>
17022 ======= h_config_role_particpat =======
17023 <HTML>
17024 <HEAD>
17025 <TITLE>Participant Pattern Explained</TITLE>
17026 </HEAD>
17027 <BODY>
17028 <H1>Participant Pattern Explained</H1>
17030 This is just like the &quot;To pattern&quot; except that it is compared with
17031 the addresses from the From: line, the To: line, and the Cc: line of the
17032 message instead of just the addresses from the To: line.
17033 In other words, it is considered a match if the pattern matches
17034 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
17035 in the To: line, <EM>OR</EM> an address in the Cc: line.
17036 (Notice that defining the Participant pattern does not have the same
17037 effect as defining all of the From, To, and Cc patterns.
17038 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
17039 From <EM>AND</EM> To <EM>AND</EM> Cc.
17040 It is equivalent to having three different rules;
17041 one with a From pattern, another with the same To pattern, and a third with
17042 the same Cc pattern.)
17044 A technicality: Since comma is the character used to separate multiple
17045 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17046 you want to include a literal comma in the field.
17047 In other words, if you type a backslash followed by a comma it will
17048 be interpreted as a comma by Alpine, instead of as a separator between
17049 pattern values.
17050 All other backslashes are literal backslashes and should not be escaped.
17052 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17053 for more information on Patterns.
17055 Look <A HREF="h_edit_nav_cmds">here</A>
17056 to see the available Editing and Navigation commands.
17058 &lt;End of help on this topic&gt;
17059 </BODY>
17060 </HTML>
17061 ======= h_config_role_newspat =======
17062 <HTML>
17063 <HEAD>
17064 <TITLE>News Pattern Explained</TITLE>
17065 </HEAD>
17066 <BODY>
17067 <H1>News Pattern Explained</H1>
17069 If this pattern is non-blank, then for this rule to be considered a
17070 match, at least one of the newsgroups from
17071 the Newsgroups line of the message must match this pattern.
17072 If this pattern is a list of patterns, then at least one of the
17073 newsgroups must match at least one of the patterns.
17074 (Any other non-blank parts of the Pattern must match, too.)
17076 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
17077 &quot;!&quot; &quot;toggle NOT&quot; command.
17078 This changes the meaning of the News pattern so that it has the opposite meaning.
17079 It will be considered a match if there are no matches between the
17080 addresses in the Newsgroups: line and the list of News patterns.
17082 Don't make the mistake of putting the &quot;!&quot; in the data field for
17083 the pattern.
17084 For example, if you type the characters &quot;!frizzle&quot; into the News
17085 pattern, the pattern will look like:
17087 <PRE>
17088  News pattern = !frizzle
17089 </PRE>
17091 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17092 In order to match messages that do not have &quot;frizzle&quot; in
17093 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
17094 by carriage return for the value of the News pattern, then negate it
17095 by typing the &quot;!&quot; command.
17096 It should end up looking like
17098 <PRE>
17099  ! News pattern = frizzle
17100 </PRE>
17102 A technicality: Since comma is the character used to separate multiple
17103 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17104 you want to include a literal comma in the field.
17105 In other words, if you type a backslash followed by a comma it will
17106 be interpreted as a comma by Alpine, instead of as a separator between
17107 pattern values.
17108 All other backslashes are literal backslashes and should not be escaped.
17111 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17112 for more information on Patterns.
17114 Look <A HREF="h_edit_nav_cmds">here</A>
17115 to see the available Editing and Navigation commands.
17117 &lt;End of help on this topic&gt;
17118 </BODY>
17119 </HTML>
17120 ======= h_config_role_subjpat =======
17121 <HTML>
17122 <HEAD>
17123 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
17124 </HEAD>
17125 <BODY>
17126 <H1>&quot;Subject:&quot; Pattern Explained</H1>
17128 This is similar to the other parts of the Pattern.
17129 It is compared with
17130 the contents from the Subject of the message.
17132 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17133 for more information on Patterns.
17135 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
17136 &quot;!&quot; &quot;toggle NOT&quot; command.
17137 This changes the meaning of the Subject pattern so that it has the opposite meaning.
17138 It will be considered a match if there are no matches between the
17139 text in the Subject: line and the list of Subject patterns.
17142 If you wish to have a header pattern that is not one of the six standard
17143 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
17145 A technicality: Since comma is the character used to separate multiple
17146 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17147 you want to include a literal comma in the field.
17148 In other words, if you type a backslash followed by a comma it will
17149 be interpreted as a comma by Alpine, instead of as a separator between
17150 pattern values.
17151 All other backslashes are literal backslashes and should not be escaped.
17153 Look <A HREF="h_edit_nav_cmds">here</A>
17154 to see the available Editing and Navigation commands.
17156 &lt;End of help on this topic&gt;
17157 </BODY>
17158 </HTML>
17159 ======= h_config_role_alltextpat =======
17160 <HTML>
17161 <HEAD>
17162 <TITLE>AllText Pattern Explained</TITLE>
17163 </HEAD>
17164 <BODY>
17165 <H1>AllText Pattern Explained</H1>
17167 This is similar to the header patterns.
17168 Instead of comparing with text in a particular header field it 
17169 is compared with all of the text in the message header and body.
17171 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
17172 &quot;!&quot; &quot;toggle NOT&quot; command.
17173 This changes the meaning of the AllText pattern so that it has the opposite meaning.
17174 It will be considered a match if there are no matches between the
17175 text of the message and the list of AllText patterns.
17177 Don't make the mistake of putting the &quot;!&quot; in the data field for
17178 the pattern.
17179 For example, if you type the characters &quot;!frizzle&quot; into the AllText
17180 pattern, the pattern will look like:
17182 <PRE>
17183  AllText pattern = !frizzle
17184 </PRE>
17186 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17187 In order to match messages that do not have &quot;frizzle&quot; in
17188 the text of the message, first type the characters &quot;frizzle&quot; followed
17189 by carriage return for the value of the AllText pattern, then negate it
17190 by typing the &quot;!&quot; command.
17191 It should end up looking like
17193 <PRE>
17194  ! AllText pattern = frizzle
17195 </PRE>
17197 It is possible that you may notice degraded performance when using
17198 AllText Patterns.
17200 A technicality: Since comma is the character used to separate multiple
17201 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17202 you want to include a literal comma in the field.
17203 In other words, if you type a backslash followed by a comma it will
17204 be interpreted as a comma by Alpine, instead of as a separator between
17205 pattern values.
17206 All other backslashes are literal backslashes and should not be escaped.
17208 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17209 for more information on Patterns.
17211 Look <A HREF="h_edit_nav_cmds">here</A>
17212 to see the available Editing and Navigation commands.
17214 &lt;End of help on this topic&gt;
17215 </BODY>
17216 </HTML>
17217 ======= h_config_role_bodytextpat =======
17218 <HTML>
17219 <HEAD>
17220 <TITLE>BodyText Pattern Explained</TITLE>
17221 </HEAD>
17222 <BODY>
17223 <H1>BodyText Pattern Explained</H1>
17225 This is similar to the header patterns.
17226 Instead of comparing with text in a particular header field it 
17227 is compared with all of the text in the message body.
17229 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
17230 &quot;!&quot; &quot;toggle NOT&quot; command.
17231 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
17232 It will be considered a match if there are no matches between the
17233 text of the body of the message and the list of BodyText patterns.
17235 Don't make the mistake of putting the &quot;!&quot; in the data field for
17236 the pattern.
17237 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
17238 pattern, the pattern will look like:
17240 <PRE>
17241  BdyText pattern = !frizzle
17242 </PRE>
17244 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17245 In order to match messages that do not have &quot;frizzle&quot; in
17246 their BodyText, first type the characters &quot;frizzle&quot; followed
17247 by carriage return for the value of the BodyText pattern, then negate it
17248 by typing the &quot;!&quot; command.
17249 It should end up looking like
17251 <PRE>
17252  ! BodyText pattern = frizzle
17253 </PRE>
17255 It is possible that you may notice degraded performance when using
17256 BodyText Patterns.
17258 A technicality: Since comma is the character used to separate multiple
17259 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17260 you want to include a literal comma in the field.
17261 In other words, if you type a backslash followed by a comma it will
17262 be interpreted as a comma by Alpine, instead of as a separator between
17263 pattern values.
17264 All other backslashes are literal backslashes and should not be escaped.
17266 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17267 for more information on Patterns.
17269 Look <A HREF="h_edit_nav_cmds">here</A>
17270 to see the available Editing and Navigation commands.
17272 &lt;End of help on this topic&gt;
17273 </BODY>
17274 </HTML>
17275 ======= h_config_role_charsetpat =======
17276 <HTML>
17277 <HEAD>
17278 <TITLE>Character Set Pattern Explained</TITLE>
17279 </HEAD>
17280 <BODY>
17281 <H1>Character Set Pattern Explained</H1>
17283 A message may use one or more character sets.
17284 This part of the Pattern matches messages that make use of
17285 certain specified character sets.
17286 It will be considered a match if a message uses any of the character
17287 sets in the list you give here.
17290 When filling in a value for this field, you may use
17291 the &quot;T&quot; command, which presents you with a large list of
17292 possible character sets to choose from.
17293 You may also just type in the name of a character set, and it need not
17294 be one that Alpine knows about.
17297 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
17298 GB2312) you may also use some shorthand names that Alpine provides.
17299 These names are more understandable shorthand names for sets of 
17300 character set names.
17301 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
17302 Selecting one of these shorthand names is equivalent to selecting all of
17303 the character sets that make up the set.
17304 You can see all of these shorthand names and the lists of character sets
17305 they stand for by typing the &quot;T&quot; command.
17308 For the purposes of this Pattern,
17309 Alpine will search through a message for all of the text parts and
17310 collect the character sets declared for each part.
17311 It will also look in the Subject line for a character set used there.
17312 Alpine does not actually look at the text of the message or the text
17313 of the Subject to determine if a declared character set is actually
17314 used, it looks only at the declarations themselves in the MIME part headers
17315 and in the Subject.
17318 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
17319 &quot;!&quot; &quot;toggle NOT&quot; command.
17320 This changes the meaning of the Character Set pattern so that
17321 it has the opposite meaning.
17322 It will be considered a match if none of the character sets in the
17323 list are used in a message.
17325 Don't make the mistake of putting the &quot;!&quot; in the data field for
17326 the pattern.
17327 For example, if you type the characters &quot;!GB2312&quot; into the
17328 Character Set pattern, the pattern will look like:
17330 <PRE>
17331  Charset pattern = !GB2312
17332 </PRE>
17334 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
17335 In order to match messages that do not have the
17336 character set &quot;GB2312&quot;
17337 set, first type the characters &quot;GB2312&quot; followed
17338 by carriage return for the value of the Character Set pattern, then negate it
17339 by typing the &quot;!&quot; command.
17340 It should end up looking like
17342 <PRE>
17343  ! Charset pattern = GB2312
17344 </PRE>
17346 A technicality: Since comma is the character used to separate multiple
17347 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17348 you want to include a literal comma in the field.
17349 In other words, if you type a backslash followed by a comma it will
17350 be interpreted as a comma by Alpine, instead of as a separator between
17351 pattern values.
17352 All other backslashes are literal backslashes and should not be escaped.
17354 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17355 for more information on Patterns.
17357 Look <A HREF="h_edit_nav_cmds">here</A>
17358 to see the available Editing and Navigation commands.
17360 &lt;End of help on this topic&gt;
17361 </BODY>
17362 </HTML>
17363 ======= h_config_role_keywordpat =======
17364 <HTML>
17365 <HEAD>
17366 <TITLE>Keyword Pattern Explained</TITLE>
17367 </HEAD>
17368 <BODY>
17369 <H1>Keyword Pattern Explained</H1>
17371 A folder may have user-defined keywords.
17372 These are similar to the Important flag, which the user may set using the
17373 Flag command.
17374 The difference is that the Important flag is always present for each folder.
17375 User-defined keywords are picked by the user.
17376 You may add new keywords by defining them in the
17377 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
17378 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
17379 the Flag command may be used to set or clear the keyword on individual messages.
17380 If you have given a keyword a nickname when configuring it,
17381 that nickname may be used instead of the actual keyword.
17384 When filling in a value for this field, it may be easiest to use
17385 the &quot;T&quot; command, which presents you with a list of the keywords
17386 you have defined to choose from.
17389 This part of the Pattern matches messages with certain keywords set.
17390 It will be considered a match if a message has any of the keywords in the
17391 list set.
17392 A keyword that you have not defined using the
17393 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
17394 will not be a match.
17397 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
17398 &quot;!&quot; &quot;toggle NOT&quot; command.
17399 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
17400 It will be considered a match if none of the keywords in the list are set
17401 for a message.
17402 A keyword that you have not defined using the
17403 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
17404 will not be a match, so a <EM>NOT</EM> of that keyword does match.
17406 Don't make the mistake of putting the &quot;!&quot; in the data field for
17407 the pattern.
17408 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
17409 pattern, the pattern will look like:
17411 <PRE>
17412  Keyword pattern = !frizzle
17413 </PRE>
17415 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17416 In order to match messages that do not have the keyword &quot;frizzle&quot;
17417 set, first type the characters &quot;frizzle&quot; followed
17418 by carriage return for the value of the Keyword pattern, then negate it
17419 by typing the &quot;!&quot; command.
17420 It should end up looking like
17422 <PRE>
17423  ! Keyword pattern = frizzle
17424 </PRE>
17426 A technicality: Since comma is the character used to separate multiple
17427 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17428 you want to include a literal comma in the field.
17429 In other words, if you type a backslash followed by a comma it will
17430 be interpreted as a comma by Alpine, instead of as a separator between
17431 pattern values.
17432 All other backslashes are literal backslashes and should not be escaped.
17434 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17435 for more information on Patterns.
17437 Look <A HREF="h_edit_nav_cmds">here</A>
17438 to see the available Editing and Navigation commands.
17440 &lt;End of help on this topic&gt;
17441 </BODY>
17442 </HTML>
17443 ======= h_config_role_arbpat =======
17444 <HTML>
17445 <HEAD>
17446 <TITLE>Extra Header Patterns Explained</TITLE>
17447 </HEAD>
17448 <BODY>
17449 <H1>Extra Header Patterns Explained</H1>
17451 The header patterns that come after the Participant pattern but before the 
17452 AllText pattern are extra header patterns that you have added to a rule's
17453 Pattern. These are just like the other header patterns except that
17454 the contents of the particular header listed on the left hand side will
17455 be used for comparisons.
17457 The &quot;eXtraHdr&quot; command may be used to add more of these
17458 header patterns to the rule you are editing.
17460 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
17461 extra header pattern from the rule you are editing.
17463 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
17464 &quot;!&quot; &quot;toggle NOT&quot; command.
17465 This changes the meaning of the pattern so that it has the opposite meaning.
17466 It will be considered a match if there are no matches between the
17467 text in the header line and the list of patterns.
17469 Don't make the mistake of putting the &quot;!&quot; in the data field for
17470 the pattern.
17471 For example, if you type the characters &quot;!frizzle&quot; into the
17472 pattern, the pattern will look like:
17474 <PRE>
17475  Xyz pattern = !frizzle
17476 </PRE>
17478 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17479 In order to match messages that do not have &quot;frizzle&quot; in
17480 their Xyz field, first type the characters &quot;frizzle&quot; followed
17481 by carriage return for the value of the pattern, then negate it
17482 by typing the &quot;!&quot; command.
17483 It should end up looking like
17485 <PRE>
17486  ! Xyz pattern = frizzle
17487 </PRE>
17490 A technicality: Since comma is the character used to separate multiple
17491 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17492 you want to include a literal comma in the field.
17493 In other words, if you type a backslash followed by a comma it will
17494 be interpreted as a comma by Alpine, instead of as a separator between
17495 pattern values.
17496 All other backslashes are literal backslashes and should not be escaped.
17498 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17499 for more information on Patterns.
17501 Look <A HREF="h_edit_nav_cmds">here</A>
17502 to see the available Editing and Navigation commands.
17504 &lt;End of help on this topic&gt;
17505 </BODY>
17506 </HTML>
17507 ======= h_config_role_cat_cmd =======
17508 <HTML>
17509 <HEAD>
17510 <TITLE>Categorizer Command Explained</TITLE>
17511 </HEAD>
17512 <BODY>
17513 <H1>Categorizer Command Explained</H1>
17515 This is a command that is run with its standard input set to the message
17516 being checked and its standard output discarded.
17517 The full directory path should be specified.
17518 The command will be run and then its exit status will be checked against
17519 the Exit Status Interval, which defaults to just the value zero.
17520 If the exit status of the command falls in the interval, it is considered
17521 a match, otherwise it is not a match.
17524 This option may actually be a list of commands.
17525 The first one that exists and is executable is used.
17526 That makes it possible to use the same configuration with Unix Alpine and
17527 PC-Alpine.
17530 If none of the commands in the list exists and is executable then the rule
17531 is <EM>not</EM> a match.
17532 If it is possible that the command may not exist, you should be careful
17533 to structure your rules so that nothing destructive
17534 happens when the command does not exist.
17535 For example, you might have a filter that filters away spam when there is
17536 a match but does nothing when there is not a match.
17537 That would cause no harm if the command didn't exist.
17538 However, if you have a filter that filters away spam when there is not
17539 a match and keeps it when there is a match, that would filter everything
17540 if the categorizer command didn't exist.
17542 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
17543 setup for the bogofilter filter.
17546 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17547 for more information on Patterns.
17549 Look <A HREF="h_edit_nav_cmds">here</A>
17550 to see the available Editing and Navigation commands.
17552 &lt;End of help on this topic&gt;
17553 </BODY>
17554 </HTML>
17555 ======= h_config_role_cat_cmd_example =======
17556 <HTML>
17557 <HEAD>
17558 <TITLE>Categorizer Command Example</TITLE>
17559 </HEAD>
17560 <BODY>
17561 <H1>Categorizer Command Example</H1>
17563 Bogofilter
17564 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
17565 is a mail filter that attempts to classify mail as spam or
17566 non-spam using statistical analysis of the message content.
17567 When run with no arguments and a message as standard input, it exits with
17568 exit status 0 if it thinks a message is spam and 1 if it thinks
17569 it is not spam.
17570 To use bogofilter as your Categorizer Command you would simply set Command to
17571 the pathname of the bogofilter program.
17572 For example,
17574 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
17576 Exit status of zero is what you are interested in, so you'd set the
17577 Exit Status Interval to
17579 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
17582 In order to prevent downloading an entire huge message to check for spam, you
17583 might want to set the Character Limit to a few thousand characters (the
17584 assumption being that the spam will reveal itself in those characters)
17586 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
17589 You would probably use bogofilter in an Alpine Filter Rule, and have the action
17590 be to move the message to a spam folder.
17591 It would usually be wise to also check the &quot;Message is Recent&quot;
17592 part of the rule so that messages are only checked when they first arrive,
17593 and to restrict the Current Folder Type to just your INBOX.
17594 The reason for checking only Recent messages is to save the time it takes
17595 to run bogofilter on each message.
17596 As an experiment, you might start out by using this in an Indexcolor Rule
17597 instead of a Filter Rule.
17598 In that case, you probably wouldn't check the Recent checkbox.
17600 The use described above assumes that you are somehow maintaining bogofilter's
17601 database of words associated with spam and non-spam messages.
17602 One way to start your database would be to select a bunch of spam messages
17603 in Alpine (you might Save spam messages to a special folder or use Alpine's
17604 Select command to select several) and then Apply
17605 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
17606 a pipe command to the spam messages.
17607 For example, you could have a shell script or an alias
17608 called <EM>this_is_spam</EM>, which would simply be the command
17610 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
17613 It is probably best to use the pipe command's Raw Text, With Delimiter,
17614 and Free Output options,
17615 which are at the bottom of the screen when you type the pipe command.
17616 That's because bogofilter expects the raw message as input, and uses
17617 the Delimiters to tell when a new message starts.
17618 You would not need to use a separate pipe for each message, because
17619 bogofilter can handle multiple messages at once.
17621 Similarly, you would select a group of non-spam messages
17622 and run them through a <EM>this_is_nonspam</EM> script
17623 that was something like
17625 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
17628 For the more adventurous, the next step might be to automate the upkeep of
17629 the bogofilter database.
17630 It might make more sense to have bogofilter be part of the delivery process,
17631 but it is also possible to do it entirely from within Alpine.
17632 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
17633 the &quot;-u&quot; argument will cause bogofilter to update the database.
17635 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17637 You'd want a couple more aliases or shell scripts called something like
17638 <EM>change_to_spam</EM>
17640 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
17643 <EM>change_to_nonspam</EM>
17645 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
17647 When you run across a message in your INBOX that should have been
17648 classified as spam you would pipe it to the change_to_spam script, and
17649 when you run across a message in your spam folder that should have been
17650 left in your INBOX you would pipe it through change_to_nonspam.
17653 There is a technical problem with this approach.
17654 Alpine may check your filters more than once.
17655 In particular, every time you start Alpine the filters will be checked for
17656 each message.
17657 Also, if you have any filters that depend on message state (New, Deleted, etc.)
17658 then Alpine will recheck for matches in messages that have changed state
17659 at the time you close the folder and before expunging.
17660 This is usually ok.
17661 However, in this case it is a problem because the command
17663 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17665 has the side effect of updating the database.
17666 So you run the risk of updating the database multiple times for a single
17667 message instead of updating it just once per message.
17668 There are some ways to work around this problem.
17669 What you need is a way to mark the message after you have run the filter.
17670 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
17671 Besides having the filter move the message to a spam folder, also have it
17672 set the Bogo keyword.
17673 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
17674 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
17675 This rule can only set the Bogo keyword for the messages that it matches.
17676 You will also need to add a second rule right after this one that
17677 matches all the messages that don't have the Bogo keyword set
17678 (put the keyword in the Keyword pattern and toggle
17679 the Not with the ! command)
17680 and takes the action of setting it.
17681 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
17682 (and so it won't re-run the bogofilter command) if the keyword is already
17683 set.
17685 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
17686 on all messages that don't have the Bogo keyword set.
17687 This will have the side effect of inserting that message in the bogofilter
17688 database, match or not.
17689 If this rule matches (it is spam), the Bogo keyword will be set and
17690 the message will be moved to a spam folder.
17691 If it does not match, the
17692 following rule will mark the message by turning on the keyword.
17693 This second rule should be a non-terminating
17694 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17695 rule so that it doesn't stop the filtering process before the rest of
17696 your rules are consulted.
17699 In summary, the first rule is something like
17700 <PRE>
17701   Nickname          = bogofilter -u rule
17702   Current Folder Type =
17703                (*) Specific
17704                    Folder = INBOX
17706   ! Keyword pattern = Bogo
17708   External Categorizer Commands =
17709        Command              = /usr/local/bin/bogofilter -u
17710        Exit Status Interval = (0,0)
17711        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17713   Filter Action =
17714        (*) Move
17715            Folder = spam
17716   
17717   Set These Keywords   = Bogo
17718 </PRE>
17720 and the following rule is
17721 <PRE>
17722   Nickname          = Set Bogo Keyword
17723   Current Folder Type =
17724                (*) Specific
17725                    Folder = INBOX
17727   ! Keyword pattern = Bogo
17729   Filter Action =
17730        (*) Just Set Message Status
17732   Set These Keywords   = Bogo
17734   Features =
17735       [X]  dont-stop-even-if-rule-matches
17736 </PRE>
17738 If it is possible for you to insert bogofilter in the delivery process instead
17739 of having it called from Alpine you could prevent having to wait
17740 for the bogofilter processing while you read your mail.
17741 You would have bogofilter add a header to the message at the time of delivery
17742 that identified it as spam or nonspam.
17743 With this method, you could avoid using a Categorizer Command while running Alpine,
17744 and just match on the header instead.
17745 You might still want to use the scripts mentioned above to initialize the
17746 database or to re-classify wrongly classified messages.
17749 Finally, it isn't for the faint-hearted,
17750 but it is also possible to run bogofilter from PC-Alpine.
17751 You can install Cygwin from
17752 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17753 then compile bogofilter in the cygwin environment, and run it from
17754 within PC-Alpine.
17755 You would end up with a Categorizer command that looked something like
17757 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17759 Note that the &quot;.exe&quot; extension is explicit,
17760 and that the bogofilter.exe executable should be in the same directory
17761 as cygwin1.dll.
17764 &lt;End of help on this topic&gt;
17765 </BODY>
17766 </HTML>
17767 ======= h_config_role_cat_status =======
17768 <HTML>
17769 <HEAD>
17770 <TITLE>Exit Status Interval Explained</TITLE>
17771 </HEAD>
17772 <BODY>
17773 <H1>Exit Status Interval Explained</H1>
17775 The categorizer command is run and the result is the exit status of
17776 that command.
17777 If that exit status falls in the Exit Status Interval
17778 then it is considered a match, otherwise it is not a match.
17779 Of course for the entire rule to match, it must also be checked against
17780 the other defined parts of the Pattern.
17782 The Exit Status Interval defaults to the single value 0 (zero).
17783 If you define it, it should be set to something like:
17785 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17787 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17788 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17789 positive and negative integers.
17791 Actually, a list of intervals may be used if you wish.
17792 A list would look like
17794 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17796 When there is an Exit Status Interval defined, it is a match if the exit status
17797 of the categorizer command is contained in any of the intervals.
17798 The intervals include both endpoints.
17800 The default interval is
17802 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17804 and it matches only if the command exits with exit status equal to zero.
17807 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17808 for more information on Patterns.
17810 Look <A HREF="h_edit_nav_cmds">here</A>
17811 to see the available Editing and Navigation commands.
17813 &lt;End of help on this topic&gt;
17814 </BODY>
17815 </HTML>
17816 ======= h_config_role_cat_limit =======
17817 <HTML>
17818 <HEAD>
17819 <TITLE>Character Limit Explained</TITLE>
17820 </HEAD>
17821 <BODY>
17822 <H1>Character Limit Explained</H1>
17824 Setting this option makes it possible to limit how much of the message
17825 is made available to the categorizer command as input.
17826 The default value (-1) means that the entire message is fed to the
17827 command.
17828 A value of 0 (zero) means that only the headers of the message are
17829 made available.
17830 A positive integer means that the headers plus that many characters from
17831 the body of the message are passed to the categorizer.
17834 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17835 for more information on Patterns.
17837 Look <A HREF="h_edit_nav_cmds">here</A>
17838 to see the available Editing and Navigation commands.
17840 &lt;End of help on this topic&gt;
17841 </BODY>
17842 </HTML>
17843 ======= h_config_role_age =======
17844 <HTML>
17845 <HEAD>
17846 <TITLE>Age Interval Explained</TITLE>
17847 </HEAD>
17848 <BODY>
17849 <H1>Age Interval Explained</H1>
17851 The Age Interval, if defined, is part of the Pattern.
17852 If you use this, it should be set to something like:
17854 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17856 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17857 The special value &quot;INF&quot; may be used for the max value.
17858 It represents infinity.
17860 In rare cases it may be useful to use the more general form of the value,
17861 which is a comma-separated list of intervals.
17862 It would look something like:
17864 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17866 When there is an Age Interval defined, it is a match if the age, in days, of
17867 the message is contained in the interval.
17868 The interval includes both endpoints.
17869 If the option is set to a list of intervals then it is a match if the
17870 age of the message is contained in any of the intervals.
17872 Even though this option is called Age, it isn't actually
17873 the <EM>age</EM> of the message.
17874 Instead, it is how many days ago the message arrived in one of your folders.
17875 If the current time is a little past midnight, then a message that arrived
17876 just before midnight arrived yesterday, even though the message is only
17877 a few minutes old.
17878 By default, the date being used is not the date in the Date
17879 header of the message.
17880 It is the date that the message arrived in one of your folders.
17881 When you Save a message from one folder to another that arrival date
17882 is preserved.
17883 If you would like to use the date in the Date header that is possible.
17884 Turn on the option
17885 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17886 near the bottom of the rule definition.
17888 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17889 The age interval
17891 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17893 matches all messages that arrived on the day before yesterday.
17894 The interval
17896 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17898 matches all messages that arrived at least 180 days before today.
17899 The interval
17901 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17903 matches all messages that arrived today or yesterday.
17906 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17907 for more information on Patterns.
17909 Look <A HREF="h_edit_nav_cmds">here</A>
17910 to see the available Editing and Navigation commands.
17912 &lt;End of help on this topic&gt;
17913 </BODY>
17914 </HTML>
17915 ======= h_config_role_size =======
17916 <HTML>
17917 <HEAD>
17918 <TITLE>Size Interval Explained</TITLE>
17919 </HEAD>
17920 <BODY>
17921 <H1>Size Interval Explained</H1>
17923 The Size Interval, if defined, is part of the Pattern.
17924 If you use this, it should be set to something like:
17926 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17928 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17929 The special value &quot;INF&quot; may be used for the max value.
17930 It represents infinity.
17932 In rare cases it may be useful to use the more general form of the value,
17933 which is a comma-separated list of intervals.
17934 It would look something like:
17936 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17938 When there is a Size Interval defined, it is a match if the size of
17939 the message is contained in the interval.
17940 The interval includes both endpoints.
17941 If the option is set to a list of intervals then it is a match if the
17942 size of the message is contained in any of the intervals.
17944 The size interval
17946 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17948 matches all messages with sizes greater than or equal to 10000, and less
17949 than or equal to 50000.
17950 The interval
17952 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17954 matches all messages with sizes greater than or equal to 100000.
17957 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17958 for more information on Patterns.
17960 Look <A HREF="h_edit_nav_cmds">here</A>
17961 to see the available Editing and Navigation commands.
17963 &lt;End of help on this topic&gt;
17964 </BODY>
17965 </HTML>
17966 ======= h_config_role_scorei =======
17967 <HTML>
17968 <HEAD>
17969 <TITLE>Score Interval Explained</TITLE>
17970 </HEAD>
17971 <BODY>
17972 <H1>Score Interval Explained</H1>
17974 The Score Interval, if defined, is part of the Pattern.
17975 If you use this, it should be set to something like:
17977 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17979 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17980 -32000 and 32000.
17981 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17982 the min and max values.
17983 These represent negative and positive infinity.
17985 Actually, the value may be a list of intervals rather than just a
17986 single interval if that is useful.
17987 The elements of the list are separated by commas like:
17989 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17991 When there is a Score Interval defined, it is a match if the score for
17992 the message is contained in any of the intervals.
17993 The intervals include both endpoints.
17994 The score for a message is calculated by looking at every scoring rule
17995 defined and adding up the Score Values for the rules that match the message.
17996 Scoring rules are created using the
17997 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
18000 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18001 for more information on Patterns.
18003 Look <A HREF="h_edit_nav_cmds">here</A>
18004 to see the available Editing and Navigation commands.
18006 &lt;End of help on this topic&gt;
18007 </BODY>
18008 </HTML>
18009 ======= h_config_role_fldr_type =======
18010 <HTML>
18011 <HEAD>
18012 <TITLE>Current Folder Type Explained</TITLE>
18013 </HEAD>
18014 <BODY>
18015 <H1>Current Folder Type Explained</H1>
18017 The Current Folder Type is part of the role's Pattern.
18018 It refers to the type of the currently open folder, which is the folder
18019 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
18020 In order for a role to be considered a match, the current folder must
18021 be of the type you set here.
18022 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18023 all what you might think.
18025 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
18026 example, then
18027 that role will only be a match if the current folder is a newsgroup and
18028 the rest of the Pattern matches.
18029 The value &quot;Specific&quot; may be used when you want to limit the match
18030 to a specific folder (not just a specific type of folder), or to a list of
18031 specific folders.
18033 In order to match a specific folder you Select the &quot;Specific&quot;
18034 button <EM>AND</EM> fill in
18035 the name (or list of names) of
18036 the folder in the &quot;Folder List&quot; field.
18037 If the current folder is any of the folders in the list, that is considered
18038 a match.
18039 The name of each folder in the list may be either &quot;INBOX&quot;,
18040 the technical specification
18041 of the folder (like what appears in your configuration file) or, if the
18042 folder is one of your incoming folders, it may be the nickname you've given
18043 the folder.
18044 Here are a couple samples of specific folder names:
18046 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
18048 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
18050 Observe that in order for an external folder (IMAP, POP, News) to be a match,
18051 you must also add the /user= option in the definition of the incoming folder.
18053 The easiest way to fill in the &quot;Folder List&quot; field is to use
18054 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
18055 highlighted, or to use the &quot;Take&quot; command with the configuration
18056 feature
18057 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
18058 turned on.
18059 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18060 Current Folder Type is set to &quot;Specific&quot;, and any value that
18061 &quot;Folder List&quot; has is ignored unless the type
18062 is set to &quot;Specific&quot;.
18064 When reading a newsgroup, there may be a performance penalty
18065 incurred when collecting the information necessary to check a Pattern.
18066 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18068 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18069 for more information on Patterns.
18071 Look <A HREF="h_edit_nav_cmds">here</A>
18072 to see the available Editing and Navigation commands.
18074 &lt;End of help on this topic&gt;
18075 </BODY>
18076 </HTML>
18077 ======= h_config_filt_rule_type =======
18078 <HTML>
18079 <HEAD>
18080 <TITLE>Filter Action Explained</TITLE>
18081 </HEAD>
18082 <BODY>
18083 <H1>Filter Action Explained</H1>
18085 The Filter Action specifies the action to be taken when the Pattern is a
18086 match.
18087 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
18088 &quot;Just Set Message Status&quot;.
18090 If it is set to &quot;Delete&quot;, then the message that matches the
18091 Pattern will be deleted from the open folder.
18093 If it is set to &quot;Move&quot;, then the name of the folder to which
18094 the matching message should be moved is given in the &quot;Folder List&quot; field on the
18095 next line of the screen.
18096 A list of folders separated by commas may be given, in which case the
18097 message will be copied to all of the folders in the list before it is
18098 deleted.
18100 If it is set to neither of those two values (it is set to the value
18101 labeled &quot;Just Set Message Status&quot;) then the message status
18102 setting will happen
18103 but the message will not be deleted or moved.
18105 If you are Moving a message you may also set Message Status if you wish.
18107 The easiest way to fill in the &quot;Folder List&quot; field is to use
18108 the T command that is available when the &quot;Folder List&quot; line is
18109 highlighted.
18110 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18111 Filter Action is set to &quot;Move&quot;, and any value that
18112 &quot;Folder List&quot; has is ignored unless the type
18113 is set to &quot;Move&quot;.
18115 There are a few tokens that may be used in the names in the Folder List.
18116 They are all related to the date on which the filtering is taking place.
18117 The tokens are words surrounded by underscores.
18118 For example, if you want your filter to move messages to a folder named
18119 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
18120 you could specify the folder as
18121 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
18122 which would result in a file named something like
18123 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
18125 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
18126 which would result in a file named something like
18127 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
18128 The available tokens are listed
18129 <A HREF="h_index_tokens">here</A>.
18131 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18132 for more information on Patterns.
18134 Look <A HREF="h_edit_nav_cmds">here</A>
18135 to see the available Editing and Navigation commands.
18137 &lt;End of help on this topic&gt;
18138 </BODY>
18139 </HTML>
18140 ======= h_config_score_fldr_type =======
18141 <HTML>
18142 <HEAD>
18143 <TITLE>Current Folder Type Explained</TITLE>
18144 </HEAD>
18145 <BODY>
18146 <H1>Current Folder Type Explained</H1>
18148 The Current Folder Type is part of the scoring rule's Pattern.
18149 It refers to the type of the folder that
18150 the message being scored is in.
18151 In order for a rule to be considered a match, the current folder must
18152 be of the type you set here.
18153 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18154 all what you might think.
18156 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18157 example, then
18158 that Pattern will only match if the current folder is a newsgroup and
18159 the rest of the Pattern matches.
18160 The value &quot;Specific&quot; may be used when you want to limit the match
18161 to a specific folder (not just a specific type of folder), or to a list of
18162 specific folders.
18164 In order to match a specific folder you Select the &quot;Specific&quot;
18165 button <EM>AND</EM> fill in
18166 the name (or list of names) of
18167 the folder in the &quot;Folder List&quot; field.
18168 If the current folder is any of the folders in the list, that is considered
18169 a match.
18170 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18171 of the folder (like what appears in your configuration file) or, if the
18172 folder is one of your incoming folders, it may be the nickname you've given
18173 the folder.
18174 Here are a couple samples of specific folder names:
18176 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18178 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18180 The easiest way to fill in the &quot;Folder List&quot; field is to use
18181 the T command that is available when the &quot;Folder List&quot; line is
18182 highlighted.
18183 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18184 Current Folder Type is set to &quot;Specific&quot;, and any value that
18185 &quot;Folder List&quot; has is ignored unless the type
18186 is set to &quot;Specific&quot;.
18188 When reading a newsgroup, there may be a performance penalty
18189 incurred when collecting the information necessary to check a Pattern.
18190 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18191 For example, if you have Index Line Coloring rules that have Score Intervals
18192 defined then the scores for all the visible messages will need to be calculated.
18193 If some of your Scoring rules have 
18194 a Current Folder Type of
18195 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
18196 screen to draw more slowly when in a newsgroup.
18198 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18199 for more information on Patterns.
18201 Look <A HREF="h_edit_nav_cmds">here</A>
18202 to see the available Editing and Navigation commands.
18204 &lt;End of help on this topic&gt;
18205 </BODY>
18206 </HTML>
18207 ======= h_config_other_fldr_type =======
18208 <HTML>
18209 <HEAD>
18210 <TITLE>Current Folder Type Explained</TITLE>
18211 </HEAD>
18212 <BODY>
18213 <H1>Current Folder Type Explained</H1>
18215 The Current Folder Type is part of the rule's Pattern.
18216 It refers to the type of the folder being viewed.
18217 In order for a rule to be considered a match, the current folder must
18218 be of the type you set here.
18219 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18220 all what you might think.
18222 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18223 example, then
18224 that Pattern will only match if the current folder is a newsgroup.
18225 The value &quot;Specific&quot; may be used when you want to limit the match
18226 to a specific folder (not just a specific type of folder), or to a list of
18227 specific folders.
18229 In order to match a specific folder you Select the &quot;Specific&quot;
18230 button <EM>AND</EM> fill in
18231 the name (or list of names) of
18232 the folder in the &quot;Folder List&quot; field.
18233 If the current folder is any of the folders in the list, that is considered
18234 a match.
18235 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18236 of the folder (like what appears in your configuration file) or, if the
18237 folder is one of your incoming folders, it may be the nickname you've given
18238 the folder.
18239 Here are a couple samples of specific folder names:
18241 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18243 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18245 The easiest way to fill in the &quot;Folder List&quot; field is to use
18246 the T command that is available when the &quot;Folder List&quot; line is
18247 highlighted.
18248 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18249 Current Folder Type is set to &quot;Specific&quot;, and any value that
18250 &quot;Folder List&quot; has is ignored unless the type
18251 is set to &quot;Specific&quot;.
18253 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18254 for more information on Patterns.
18256 Look <A HREF="h_edit_nav_cmds">here</A>
18257 to see the available Editing and Navigation commands.
18259 &lt;End of help on this topic&gt;
18260 </BODY>
18261 </HTML>
18262 ======= h_config_incol_fldr_type =======
18263 <HTML>
18264 <HEAD>
18265 <TITLE>Current Folder Type Explained</TITLE>
18266 </HEAD>
18267 <BODY>
18268 <H1>Current Folder Type Explained</H1>
18270 The Current Folder Type is part of the Line Coloring rule's Pattern.
18271 It refers to the type of the folder for which the MESSAGE INDEX is
18272 being viewed.
18273 In order for a rule to be considered a match, the current folder must
18274 be of the type you set here.
18275 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18276 all what you might think.
18278 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18279 example, then
18280 that Pattern will only match if the current folder is a newsgroup and
18281 the rest of the Pattern matches.
18282 The value &quot;Specific&quot; may be used when you want to limit the match
18283 to a specific folder (not just a specific type of folder), or to a list of
18284 specific folders.
18286 In order to match a specific folder you Select the &quot;Specific&quot;
18287 button <EM>AND</EM> fill in
18288 the name (or list of names) of
18289 the folder in the &quot;Folder List&quot; field.
18290 If the current folder is any of the folders in the list, that is considered
18291 a match.
18292 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18293 of the folder (like what appears in your configuration file) or, if the
18294 folder is one of your incoming folders, it may be the nickname you've given
18295 the folder.
18296 Here are a couple samples of specific folder names:
18298 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18300 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18302 The easiest way to fill in the &quot;Folder List&quot; field is to use
18303 the T command that is available when the &quot;Folder List&quot; line is
18304 highlighted.
18305 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18306 Current Folder Type is set to &quot;Specific&quot;, and any value that
18307 &quot;Folder List&quot; has is ignored unless the type
18308 is set to &quot;Specific&quot;.
18310 When reading a newsgroup, there may be a performance penalty
18311 incurred when collecting the information necessary to check a Pattern.
18312 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18313 For example, a rule with a non-Normal Index Line Color
18314 and a Current Folder Type of
18315 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
18316 screen to draw more slowly when in a newsgroup.
18318 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18319 for more information on Patterns.
18321 Look <A HREF="h_edit_nav_cmds">here</A>
18322 to see the available Editing and Navigation commands.
18324 &lt;End of help on this topic&gt;
18325 </BODY>
18326 </HTML>
18327 ======= h_config_filt_fldr_type =======
18328 <HTML>
18329 <HEAD>
18330 <TITLE>Current Folder Type Explained</TITLE>
18331 </HEAD>
18332 <BODY>
18333 <H1>Current Folder Type Explained</H1>
18335 The Current Folder Type is part of the Filtering rule's Pattern.
18336 It refers to the type of the folder for which the filtering is being done.
18337 In order for a rule to be considered a match, the current folder must
18338 be of the type you set here.
18339 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
18340 all what you might think.
18342 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
18343 example, then
18344 that Pattern will only match if the current folder is a newsgroup and
18345 the rest of the Pattern matches.
18346 The value &quot;Specific&quot; may be used when you want to limit the match
18347 to a specific folder (not just a specific type of folder), or to a list of
18348 specific folders.
18350 In order to match a specific folder you Select the &quot;Specific&quot;
18351 button <EM>AND</EM> fill in
18352 the name (or list of names) of
18353 the folder in the &quot;Folder List&quot; field.
18354 If the current folder is any of the folders in the list, that is considered
18355 a match.
18356 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
18357 of the folder (like what appears in your configuration file) or, if the
18358 folder is one of your incoming folders, it may be the nickname you've given
18359 the folder.
18360 Here are a couple samples of specific folder names:
18362 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
18364 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
18366 The easiest way to fill in the &quot;Folder List&quot; field is to use
18367 the T command that is available when the &quot;Folder List&quot; line is
18368 highlighted.
18369 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
18370 Current Folder Type is set to &quot;Specific&quot;, and any value that
18371 &quot;Folder List&quot; has is ignored unless the type
18372 is set to &quot;Specific&quot;.
18374 When reading a newsgroup, there may be a performance penalty
18375 incurred when collecting the information necessary to check a Pattern.
18376 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
18377 For example, a rule with a Current Folder Type of either
18378 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
18379 more slowly when opening a newsgroup.
18381 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18382 for more information on Patterns.
18384 Look <A HREF="h_edit_nav_cmds">here</A>
18385 to see the available Editing and Navigation commands.
18387 &lt;End of help on this topic&gt;
18388 </BODY>
18389 </HTML>
18390 ======= h_config_role_stat_imp =======
18391 <HTML>
18392 <HEAD>
18393 <TITLE>Message Important Status Explained</TITLE>
18394 </HEAD>
18395 <BODY>
18396 <H1>Message Important Status Explained</H1>
18398 This part of the Pattern may have one of three possible values.
18399 The default value is &quot;Don't care&quot;, which matches any message.
18400 The other two values are &quot;Yes&quot;, which means the message must be
18401 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
18402 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
18403 to be a match.
18405 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18406 for more information on Patterns.
18408 Look <A HREF="h_edit_nav_cmds">here</A>
18409 to see the available Editing and Navigation commands.
18411 &lt;End of help on this topic&gt;
18412 </BODY>
18413 </HTML>
18414 ======= h_config_role_stat_new =======
18415 <HTML>
18416 <HEAD>
18417 <TITLE>Message New Status Explained</TITLE>
18418 </HEAD>
18419 <BODY>
18420 <H1>Message New Status Explained</H1>
18422 This part of the Pattern may have one of three possible values.
18423 The default value is &quot;Don't care&quot;, which matches any message.
18424 The other two values are &quot;Yes&quot;, which means the message must be
18425 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
18426 means the message must <EM>not</EM> be &quot;New&quot; in order
18427 to be a match.
18428 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
18429 same as <EM>Seen</EM>.
18431 The nomenclature for New and Recent is a bit confusing:
18433 New means that the message is Unseen.
18434 It could have been in your mailbox for a long time but if you haven't looked
18435 at it, it is still considered New.
18436 That matches the default Alpine index display that shows an N for such a
18437 message.
18439 Recent means that the message was added to this folder since the last time
18440 you opened the folder.
18441 Alpine also shows an N by default for these types of messages.
18442 If you were to run two copies of Alpine that opened a folder one right after
18443 the other, a message would only show up as Recent in (at most) the first
18444 Alpine session.
18446 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18447 for more information on Patterns.
18449 Look <A HREF="h_edit_nav_cmds">here</A>
18450 to see the available Editing and Navigation commands.
18452 &lt;End of help on this topic&gt;
18453 </BODY>
18454 </HTML>
18455 ======= h_config_role_stat_recent =======
18456 <HTML>
18457 <HEAD>
18458 <TITLE>Message Recent Status Explained</TITLE>
18459 </HEAD>
18460 <BODY>
18461 <H1>Message Recent Status Explained</H1>
18463 This part of the Pattern may have one of three possible values.
18464 The default value is &quot;Don't care&quot;, which matches any message.
18465 The other two values are &quot;Yes&quot;, which means the message must be
18466 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
18467 means the message must <EM>not</EM> be &quot;Recent&quot; in order
18468 to be a match.
18469 &quot;Recent&quot; means that the message was added to the folder since
18470 the last time the folder was opened.
18471 If more than one mail client has the folder opened, the message will
18472 appear to be &quot;Recent&quot; to only one of the clients.
18474 The nomenclature for New and Recent is a bit confusing:
18476 New means that the message is Unseen.
18477 It could have been in your mailbox for a long time but if you haven't looked
18478 at it, it is still considered New.
18479 That matches the default Alpine index display that shows an N for such a
18480 message.
18482 Recent means that the message was added to this folder since the last time
18483 you opened the folder.
18484 Alpine also shows an N by default for these types of messages.
18485 If you were to run two copies of Alpine that opened a folder one right after
18486 the other, a message would only show up as Recent in (at most) the first
18487 Alpine session.
18489 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18490 for more information on Patterns.
18492 Look <A HREF="h_edit_nav_cmds">here</A>
18493 to see the available Editing and Navigation commands.
18495 &lt;End of help on this topic&gt;
18496 </BODY>
18497 </HTML>
18498 ======= h_config_role_stat_del =======
18499 <HTML>
18500 <HEAD>
18501 <TITLE>Message Deleted Status Explained</TITLE>
18502 </HEAD>
18503 <BODY>
18504 <H1>Message Deleted Status Explained</H1>
18506 This part of the Pattern may have one of three possible values.
18507 The default value is &quot;Don't care&quot;, which matches any message.
18508 The other two values are &quot;Yes&quot;, which means the message must be
18509 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
18510 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
18511 to be a match.
18513 If you are thinking of using this part of the Pattern as a way to prevent
18514 messages from being filtered more than once in a Filter Pattern,
18515 take a look at the Filter Option
18516 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
18517 instead.
18518 It should work better than using this field since it will hide the filtered
18519 messages even if they are already Deleted.
18520 That option is at the bottom of the Filter configuration screen.
18522 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18523 for more information on Patterns.
18525 Look <A HREF="h_edit_nav_cmds">here</A>
18526 to see the available Editing and Navigation commands.
18528 &lt;End of help on this topic&gt;
18529 </BODY>
18530 </HTML>
18531 ======= h_config_role_stat_ans =======
18532 <HTML>
18533 <HEAD>
18534 <TITLE>Message Answered Status Explained</TITLE>
18535 </HEAD>
18536 <BODY>
18537 <H1>Message Answered Status Explained</H1>
18539 This part of the Pattern may have one of three possible values.
18540 The default value is &quot;Don't care&quot;, which matches any message.
18541 The other two values are &quot;Yes&quot;, which means the message must be
18542 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
18543 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
18544 to be a match.
18546 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18547 for more information on Patterns.
18549 Look <A HREF="h_edit_nav_cmds">here</A>
18550 to see the available Editing and Navigation commands.
18552 &lt;End of help on this topic&gt;
18553 </BODY>
18554 </HTML>
18555 ======= h_config_role_abookfrom =======
18556 <HTML>
18557 <HEAD>
18558 <TITLE>Address in Address Book Explained</TITLE>
18559 </HEAD>
18560 <BODY>
18561 <H1>Address in Address Book Explained</H1>
18563 This option gives you a way to match messages that contain an address
18564 that is in one of your address books.
18565 Only the simple entries in your address books are searched.
18566 Address book distribution lists are ignored!
18568 This part of the Pattern may have one of five possible values.
18569 The default value is &quot;Don't care&quot;, which matches any message.
18570 The value &quot;Yes, in any address book&quot; means at least one of the addresses
18571 from the message must be in at least one of your
18572 address books in order to be a match.
18573 The value &quot;No, not in any address book&quot;
18574 means none of the addresses may
18575 be in any of your address books in order to be a match.
18577 The values &quot;Yes, in specific address books&quot; and
18578 &quot;No, not in any of specific address books&quot; are similar but instead
18579 of depending on all address books you are allowed to give a list of address
18580 books to look in.
18581 Usually this would be a single address book but it may be a
18582 list of address books as well.
18583 For each of these &quot;specific&quot; address book options you Select which
18584 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
18585 name (or list of names) of the address book in the
18586 &quot;Abook List&quot; field.
18587 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
18588 The easiest way to fill in the Abook List field it to use
18589 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
18590 line is highlighted.
18591 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
18592 option is set to one of the two &quot;Specific&quot;, values.
18594 The addresses from the message that are checked for are determined by the
18595 setting you have for &quot;Types of addresses to check for in address book&quot;.
18596 If you set this to &quot;From&quot; the From address from the message will
18597 be looked up in the address book.
18598 If you set it to &quot;To&quot; instead then the To addresses will be used.
18599 If any of the To addresses are in the address book then it is considered
18600 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
18601 You could set it to both From and To, in which case all of the From and To
18602 addresses are used.
18603 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
18604 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
18605 exists or the From address if there is no Reply-To address.
18606 Same for the Sender address.
18608 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18609 for more information on Patterns.
18611 Look <A HREF="h_edit_nav_cmds">here</A>
18612 to see the available Editing and Navigation commands.
18614 &lt;End of help on this topic&gt;
18615 </BODY>
18616 </HTML>
18617 ======= h_config_inabook_from =======
18618 <HTML>
18619 <HEAD>
18620 <TITLE>From</TITLE>
18621 </HEAD>
18622 <BODY>
18623 <H1>From</H1>
18625 Setting the From line will cause the address from the From header line
18626 of the message to be checked for in the address book.
18628 &lt;End of help on this topic&gt;
18629 </BODY>
18630 </HTML>
18631 ======= h_config_inabook_replyto =======
18632 <HTML>
18633 <HEAD>
18634 <TITLE>Reply-To</TITLE>
18635 </HEAD>
18636 <BODY>
18637 <H1>Reply-To</H1>
18639 Setting the Reply-To line will cause the address from the Reply-To header line
18640 of the message to be checked for in the address book.
18641 However, if there is no Reply-To header line in the message the From header
18642 line will be used instead.
18643 We understand this is dumb but we don't have an easy way around it.
18645 &lt;End of help on this topic&gt;
18646 </BODY>
18647 </HTML>
18648 ======= h_config_inabook_sender =======
18649 <HTML>
18650 <HEAD>
18651 <TITLE>Sender</TITLE>
18652 </HEAD>
18653 <BODY>
18654 <H1>Sender</H1>
18656 Setting the Sender line will cause the address from the Sender header line
18657 of the message to be checked for in the address book.
18658 However, if there is no Sender header line in the message the From header
18659 line will be used instead.
18660 We understand this is dumb but we don't have an easy way around it.
18662 &lt;End of help on this topic&gt;
18663 </BODY>
18664 </HTML>
18665 ======= h_config_inabook_to =======
18666 <HTML>
18667 <HEAD>
18668 <TITLE>To</TITLE>
18669 </HEAD>
18670 <BODY>
18671 <H1>To</H1>
18673 Setting the To line will cause the address from the To header line
18674 of the message to be checked for in the address book.
18676 &lt;End of help on this topic&gt;
18677 </BODY>
18678 </HTML>
18679 ======= h_config_inabook_cc =======
18680 <HTML>
18681 <HEAD>
18682 <TITLE>CC</TITLE>
18683 </HEAD>
18684 <BODY>
18685 <H1>CC</H1>
18687 Setting the CC line will cause the address from the CC header line
18688 of the message to be checked for in the address book.
18690 &lt;End of help on this topic&gt;
18691 </BODY>
18692 </HTML>
18693 ======= h_config_role_stat_8bitsubj =======
18694 <HTML>
18695 <HEAD>
18696 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18697 </HEAD>
18698 <BODY>
18699 <H1>Raw 8-bit in Subject Explained</H1>
18701 It seems that lots of unwanted email contains unencoded 8-bit characters
18702 in the Subject.
18703 Normally, characters with the 8th bit set are not allowed in the Subject
18704 header unless they are MIME-encoded.
18705 This option gives you a way to match messages that have Subjects that
18706 contain unencoded 8-bit characters.
18708 This part of the Pattern may have one of three possible values.
18709 The default value is &quot;Don't care&quot;, which matches any message.
18710 The other two values are &quot;Yes&quot;, which means the Subject of
18711 the message must contain unencoded 8-bit characters (characters with the
18712 most significant bit set)
18713 in order to be a match; or &quot;No&quot;, which
18714 means the Subject must <EM>not</EM>
18715 contain unencoded 8-bit characters in order to be a match.
18717 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18718 for more information on Patterns.
18720 Look <A HREF="h_edit_nav_cmds">here</A>
18721 to see the available Editing and Navigation commands.
18723 &lt;End of help on this topic&gt;
18724 </BODY>
18725 </HTML>
18726 ======= h_config_role_bom =======
18727 <HTML>
18728 <HEAD>
18729 <TITLE>Beginning of Month</TITLE>
18730 </HEAD>
18731 <BODY>
18732 <H1>Beginning of Month</H1>
18734 This option gives you a limited ability to take different actions depending on whether
18735 this is the first time Alpine has been run this month or not.
18736 Though it would be nice to have such an option available, this is not the
18737 same as whether or not this is the first time a paricular folder has been
18738 opened this month.
18739 If you want some action (probably Filtering) to take place in a folder each
18740 month, then you will need to be sure that the folder is opened during the
18741 first Alpine session of the month in order for this option to be helpful.
18743 This part of the Pattern may have one of three possible values.
18744 The default value is &quot;Don't care&quot;, which matches any message.
18745 The other two values are &quot;Yes&quot;, which means this is the first
18746 time Alpine has been run this month;
18747 or &quot;No&quot;, which
18748 means this is not the first time Alpine has been run this month.
18750 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18751 for more information on Patterns.
18753 Here are some technical details.
18754 The way that Alpine decides if it is the beginning of the month or not is
18755 to compare today's date with the date stored in the
18756 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18757 variable in the config file.
18758 If the month of today's date is later than the month stored in the variable,
18759 then this is considered to be the first time you have run Alpine this month, and
18760 that turns the Beginning of the Month option on.
18762 Look <A HREF="h_edit_nav_cmds">here</A>
18763 to see the available Editing and Navigation commands.
18765 &lt;End of help on this topic&gt;
18766 </BODY>
18767 </HTML>
18768 ======= h_config_role_boy =======
18769 <HTML>
18770 <HEAD>
18771 <TITLE>Beginning of Year</TITLE>
18772 </HEAD>
18773 <BODY>
18774 <H1>Beginning of Year</H1>
18776 This option gives you a limited ability to take different actions depending on whether
18777 this is the first time Alpine has been run this year or not.
18778 Though it would be nice to have such an option available, this is not the
18779 same as whether or not this is the first time a paricular folder has been
18780 opened this year.
18781 If you want some action (probably Filtering) to take place in a folder each
18782 year, then you will need to be sure that the folder is opened during the
18783 first Alpine session of the year in order for this option to be helpful.
18785 This part of the Pattern may have one of three possible values.
18786 The default value is &quot;Don't care&quot;, which matches any message.
18787 The other two values are &quot;Yes&quot;, which means this is the first
18788 time Alpine has been run this year;
18789 or &quot;No&quot;, which
18790 means this is not the first time Alpine has been run this year.
18792 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18793 for more information on Patterns.
18795 Here are some technical details.
18796 The way that Alpine decides if it is the beginning of the year or not is
18797 to compare today's date with the date stored in the
18798 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18799 variable in the config file.
18800 If the year of today's date is later than the year stored in the variable,
18801 then this is considered to be the first time you have run Alpine this year, and
18802 that turns the Beginning of the Year option on.
18804 Look <A HREF="h_edit_nav_cmds">here</A>
18805 to see the available Editing and Navigation commands.
18807 &lt;End of help on this topic&gt;
18808 </BODY>
18809 </HTML>
18810 ======= h_config_role_inick =======
18811 <HTML>
18812 <HEAD>
18813 <TITLE>Initialize Values From Role Explained</TITLE>
18814 </HEAD>
18815 <BODY>
18816 <H1>Initialize Values From Role Explained</H1>
18818 This is a power user feature.
18819 You will usually want to leave this field empty.
18820 The value of this field is the nickname of another one of your roles.
18821 The Action values from that other role
18822 are used as the initial values of the Action items for this role.
18823 If you put something in any of the action fields for this role, that will
18824 override whatever was in the corresponding field of the initializer role.
18826 You might use this field if the &quot;Action&quot; part of one of your roles
18827 is something you want to use in more than one role.
18828 Instead of filling in those action values again for each role, you
18829 may give the nickname of the role where the values are filled in.
18830 It's just a shortcut way to define Role Actions.
18832 Here's an example to help explain how this works.
18833 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18834 (among other things)
18836 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18838 set.
18839 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18840 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18841 from role1 by default (and any of the other inheritable action values
18842 that are set).
18843 So if role2 had
18845 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18847 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18848 However, if role2 had
18850 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18852 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18854 If you wish,
18855 you may choose a nickname from your list of roles by using the
18856 &quot;T&quot; command.
18857 If the role you are using to initialize also has a role it initializes from,
18858 then that initialization happens first.
18859 That is, inheritance works as expected with the grandparent and
18860 great-grandparent (and so on) roles having the expected effect.
18862 Look <A HREF="h_edit_nav_cmds">here</A>
18863 to see the available Editing and Navigation commands.
18865 &lt;End of help on this topic&gt;
18866 </BODY>
18867 </HTML>
18868 ======= h_config_role_setfrom =======
18869 <HTML>
18870 <HEAD>
18871 <TITLE>Set From Explained</TITLE>
18872 </HEAD>
18873 <BODY>
18874 <H1>Set From Explained</H1>
18876 This describes part of the action to be taken if the Pattern for this
18877 role is a match.
18878 This field consists of a single address that will be used as the From
18879 address on the message you are sending.
18880 This should be a fully-qualified address like
18882 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18884 or just
18886 <CENTER><SAMP>user@domain</SAMP></CENTER>
18888 If you wish,
18889 you may choose an address from your address book with the
18890 &quot;T&quot; command.
18892 If this is left blank, then your normal From address will be used.
18894 You may also find it useful to add the changed From address to the
18895 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18896 configuration option.
18898 Look <A HREF="h_edit_nav_cmds">here</A>
18899 to see the available Editing and Navigation commands.
18901 &lt;End of help on this topic&gt;
18902 </BODY>
18903 </HTML>
18904 ======= h_config_role_setreplyto =======
18905 <HTML>
18906 <HEAD>
18907 <TITLE>Set Reply-To Explained</TITLE>
18908 </HEAD>
18909 <BODY>
18910 <H1>Set Reply-To Explained</H1>
18912 This describes part of the action to be taken if the Pattern for this
18913 role is a match.
18914 This field consists of a single address that will be used as the Reply-To
18915 address on the message you are sending.
18916 This may be a fully-qualified address like
18918 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18920 or just
18922 <CENTER><SAMP>user@domain</SAMP></CENTER>
18924 If you wish,
18925 you may choose an address from your address book with the
18926 &quot;T&quot; command.
18928 If this is left blank, then there won't be a Reply-To address unless
18929 you have configured one specially with the
18930 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18931 configuration option.
18933 Look <A HREF="h_edit_nav_cmds">here</A>
18934 to see the available Editing and Navigation commands.
18936 &lt;End of help on this topic&gt;
18937 </BODY>
18938 </HTML>
18939 ======= h_config_role_setfcc =======
18940 <HTML>
18941 <HEAD>
18942 <TITLE>Set Fcc Explained</TITLE>
18943 </HEAD>
18944 <BODY>
18945 <H1>Set Fcc Explained</H1>
18947 This describes part of the action to be taken if the Pattern for this
18948 role is a match.
18949 This field consists of a single folder name that will be used in
18950 the Fcc field of the message you are sending.
18951 You may put anything here that you would normally type into the Fcc
18952 field from the composer.
18954 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18955 no Fcc.
18957 A blank field here means that Alpine will use its normal rules for deciding
18958 the default value of the Fcc field.
18959 For many roles, perhaps most, it may make more sense for you to use the
18960 other Alpine facilities for setting the Fcc.
18961 In particular, if you want the Fcc to depend on who you are sending the
18962 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18963 is probably more useful.
18964 In that case, you would want to leave the Fcc field here blank.
18965 However, if you have a role that depends on who the message you are replying
18966 to was From, or what address that message was sent to;
18967 then it might make sense to set the Fcc for that role here.
18969 If you wish,
18970 you may choose a folder from your folder collections by using the
18971 &quot;T&quot; command.
18973 Look <A HREF="h_edit_nav_cmds">here</A>
18974 to see the available Editing and Navigation commands.
18976 &lt;End of help on this topic&gt;
18977 </BODY>
18978 </HTML>
18979 ======= h_config_role_usesmtp =======
18980 <HTML>
18981 <HEAD>
18982 <TITLE>Use SMTP Server Explained</TITLE>
18983 </HEAD>
18984 <BODY>
18985 <H1>Use SMTP Server Explained</H1>
18987 This describes part of the action to be taken if the Pattern for this
18988 role is a match.
18989 If this field has a value, then it will be used as the SMTP server
18990 to send mail when this role is being used (unless the SMTP server variable
18991 is set in the system-wide fixed configuration file).
18992 It has the same semantics as the
18993 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18994 variable in the Setup/Config screen.
18996 If you are using this to post from home when you are at home and from
18997 work when you are at work you need to be careful about postponing messages.
18998 When you postpone a composition that was using a role with this variable
18999 set, the SMTP server list will be saved
19000 with the postponed composition.
19001 It cannot be changed later.
19002 Because of this, you may want to make this a list of SMTP servers
19003 with the preferred server at the front of the list and alternate servers
19004 later in the list.
19005 In your &quot;Home&quot; role you would put the home SMTP server first and
19006 the work SMTP server last.
19007 In your &quot;Work&quot; role you would put the work SMTP server first and
19008 the home SMTP server last.
19009 Then if you start a composition as &quot;Work&quot;, postpone
19010 it, and then later resume it from home the work SMTP server will fail but
19011 the home SMTP server later in the list will succeed.
19013 You may be able to simplify things by making the regular
19014 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
19015 variable in the Setup/Config screen a list instead of using roles
19016 to set the SMTP server.
19019 Look <A HREF="h_edit_nav_cmds">here</A>
19020 to see the available Editing and Navigation commands.
19022 &lt;End of help on this topic&gt;
19023 </BODY>
19024 </HTML>
19025 ======= h_config_role_usenntp =======
19026 <HTML>
19027 <HEAD>
19028 <TITLE>Use NNTP Server Explained</TITLE>
19029 </HEAD>
19030 <BODY>
19031 <H1>Use NNTP Server Explained</H1>
19033 This describes part of the action to be taken if the Pattern for this
19034 role is a match.
19035 If this field has a value, then it will be used as the NNTP server
19036 to post to newsgroups when this role is being used (unless the NNTP server
19037 variable
19038 is set in the system-wide fixed configuration file).
19039 It has the same semantics as the
19040 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
19041 variable in the Setup/Config screen.
19043 This role setting can facilitate posting to the right nntp server for someone
19044 who reads news from various news sources.  The feature
19045 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
19046 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
19047 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
19048 nntp servers for roles may be more desirable for some people.
19050 If you are using this to post from home when you are at home and from
19051 work when you are at work you need to be careful about postponing messages.
19052 When you postpone a composition that was using a role with this variable
19053 set, the NNTP server list will be saved
19054 with the postponed composition.
19055 It cannot be changed later.
19056 Because of this, you may want to make this a list of NNTP servers
19057 with the preferred server at the front of the list and alternate servers
19058 later in the list.
19059 In your &quot;Home&quot; role you would put the home NNTP server first and
19060 the work NNTP server last.
19061 In your &quot;Work&quot; role you would put the work NNTP server first and
19062 the home NNTP server last.
19063 Then if you start a composition as &quot;Work&quot;, postpone
19064 it, and then later resume it from home the work NNTP server will fail but
19065 the home NNTP server later in the list will succeed.
19067 You may be able to simplify things by making the regular
19068 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
19069 variable in the Setup/Config screen a list instead of using roles
19070 to set the NNTP server.
19073 Look <A HREF="h_edit_nav_cmds">here</A>
19074 to see the available Editing and Navigation commands.
19076 &lt;End of help on this topic&gt;
19077 </BODY>
19078 </HTML>
19079 ======= h_config_role_setotherhdr =======
19080 <HTML>
19081 <HEAD>
19082 <TITLE>Set Other Headers Explained</TITLE>
19083 </HEAD>
19084 <BODY>
19085 <H1>Set Other Headers Explained</H1>
19087 This describes part of the action to be taken if the Pattern for this
19088 role is a match.
19089 This field gives you a way to set values for headers besides
19090 &quot;From&quot; and &quot;Reply-To&quot;.
19091 If you want to set either of those, use the specific
19092 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
19094 This field is similar to the
19095 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
19096 Each header you specify here must include the header tag 
19097 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
19098 and may optionally include a value for that header.
19099 In order to see these headers when you compose using this role you 
19100 must use the rich header
19101 <!--chtml if pinemode="function_key"-->(F5)
19102 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
19103 Here's an example that shows how you might set the To address.
19105 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
19107 Headers set in this way are different from headers set with the
19108 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
19109 will replace any value that already exists.
19110 For example, if you are Replying to a message there will already be at
19111 least one address in the To header (the address you are Replying to).
19112 However, if you Reply using a role that sets the To header, that role's
19113 To header value will be used instead.
19115 Limitation: Because commas are used to separate the list of
19116 Other Headers, it is not possible to have the value of a
19117 header contain a comma;
19118 nor is there currently an &quot;escape&quot; mechanism provided
19119 to make this work.
19121 Look <A HREF="h_edit_nav_cmds">here</A>
19122 to see the available Editing and Navigation commands.
19124 &lt;End of help on this topic&gt;
19125 </BODY>
19126 </HTML>
19127 ======= h_config_role_setlitsig =======
19128 <HTML>
19129 <HEAD>
19130 <TITLE>Set Literal Signature Explained</TITLE>
19131 </HEAD>
19132 <BODY>
19133 <H1>Set Literal Signature Explained</H1>
19135 This describes part of the action to be taken if the Pattern for this
19136 role is a match.
19137 This field contains the actual text for your signature, as opposed to
19138 the name of a file containing your signature.
19139 If this is defined it takes precedence over any value set in the
19140 &quot;Set Signature&quot; field.
19142 This is simply a different way to store the signature.
19143 The signature is stored inside your Alpine configuration file instead of in
19144 a separate file.
19145 Tokens work the same way they do with
19146 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
19147 help text there for more information.
19150 The two character sequence &#92;n (backslash followed by
19151 the character n) will be used to signify a line-break in your signature.
19152 You don't have to enter the &#92;n, but it will be visible in the
19153 CHANGE THIS ROLE RULE window after you are done editing the signature.
19155 Look <A HREF="h_edit_nav_cmds">here</A>
19156 to see the available Editing and Navigation commands.
19158 &lt;End of help on this topic&gt;
19159 </BODY>
19160 </HTML>
19161 ======= h_config_role_setsig =======
19162 <HTML>
19163 <HEAD>
19164 <TITLE>Set Signature Explained</TITLE>
19165 </HEAD>
19166 <BODY>
19167 <H1>Set Signature Explained</H1>
19169 This describes part of the action to be taken if the Pattern for this
19170 role is a match.
19172 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
19173 option from Setup/Config
19174 or the &quot;Set LiteralSig&quot; option for this role are defined,
19175 then this option will be ignored.
19176 You can tell that that is the case because the value of this
19177 option will show up as
19179 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
19181 You may either use all Literal Signatures (signatures stored in your
19182 configuration file) throughout Alpine, or all signature files.
19183 You can't mix the two.
19185 This field consists of a filename that will be used as the signature
19186 file when using this role.
19188 If the filename is followed by a vertical bar (|) then instead
19189 of reading the contents of the file the file is assumed to be a
19190 program that will produce the text to be used on its standard output.
19191 The program can't have any arguments and doesn't receive any input from Alpine,
19192 but the rest of the processing works as if the contents came from a file.
19194 Instead of storing the data in a local file, the
19195 signature data may be stored remotely in an IMAP folder.
19196 In order to do this, 
19197 you must use a remote name for the signature.
19198 A remote signature name might look like:
19200 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
19203 The syntax used here is the same as the syntax used for a remote
19204 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
19205 Note that you may not access an existing signature file remotely,
19206 you have to create a new <EM>folder</EM> that contains the signature data.
19207 If the name you use here for the signature data is a remote name, then when
19208 you edit the file using the &quot;F&quot; command the data will
19209 be saved remotely in the folder.
19210 You aren't required to do anything special to create the folder, it
19211 gets created if you use a remote name.
19214 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
19215 the name of the file) you have specified.
19216 If you type &quot;T&quot; you may use a browser to choose an existing filename.
19218 Besides containing regular text, a signature file may also
19219 contain (or a signature program may produce) tokens that are replaced with text
19220 that depends on the message you are replying to or forwarding.
19221 The tokens all look like _word_ (a word surrounded by underscores).
19222 For example, if the token
19224 <CENTER><SAMP>_DATE_</SAMP></CENTER>
19226 is included in the text of the signature file, then when you reply to
19227 or forward a message, the token will be replaced with the actual date
19228 the message you are replying to or forwarding was sent.
19230 If you use a role that has a signature file for a plain composition
19231 (that is, not a reply or forward) then there is no original message, so
19232 any tokens that depend on the message will be replaced with nothing.
19233 So if you want a signature file to be useful for new compositions it
19234 shouldn't include any of the tokens that depend on the message being
19235 replied to or forwarded.
19237 The list of available tokens is
19238 <A HREF="h_index_tokens">here</A>.
19240 Actually, for the adventurous, there is a way to conditionally include text based
19241 on whether or not a token would result in specific replacement text.
19242 For example, you could include some text based on whether or not
19243 the _NEWS_ token would result in any newsgroups if it was used.
19244 It's explained in detail
19245 <A HREF="h_reply_token_conditionals">here</A>.
19247 In the very unlikely event that you want to include a literal token in
19248 a signature file, you must precede it with a backslash character.
19249 For example, to include the literal text _DATE_ you must actually use
19250 &#92;_DATE_.
19251 It is not possible to have a literal backslash followed by an expanded token.
19253 A blank field here means that Alpine will use its normal rules for deciding
19254 which file (if any) to use for the signature file.
19256 An alternate method for storing the signature is available in
19257 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
19259 Look <A HREF="h_edit_nav_cmds">here</A>
19260 to see the available Editing and Navigation commands.
19262 &lt;End of help on this topic&gt;
19263 </BODY>
19264 </HTML>
19265 ======= h_config_role_settempl =======
19266 <HTML>
19267 <HEAD>
19268 <TITLE>Set Template Explained</TITLE>
19269 </HEAD>
19270 <BODY>
19271 <H1>Set Template Explained</H1>
19273 This describes part of the action to be taken if the Pattern for this
19274 role is a match.
19275 This field consists of a filename that will be used as the template
19276 file when using this role.
19277 The template file is a file that is included at the top of the message you
19278 are composing.
19280 If the filename is followed by a vertical bar (|) then instead
19281 of reading the contents of the file the file is assumed to be a
19282 program that will produce the text to be used on its standard output.
19283 The program can't have any arguments and doesn't receive any input from Alpine,
19284 but the rest of the processing works as if the contents came from a file.
19286 Instead of storing the data in a local file, the
19287 template may be stored remotely in an IMAP folder.
19288 In order to do this, 
19289 you must use a remote name for the template.
19290 A remote template name might look like:
19292 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
19295 The syntax used here is the same as the syntax used for a remote
19296 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
19297 Note that you may not access an existing template file remotely,
19298 you have to create a new <EM>folder</EM> that contains the template data.
19299 If the name you use here for the template is a remote name, then when
19300 you edit the file using the &quot;F&quot; command the data will
19301 be saved remotely in the folder.
19302 You aren't required to do anything special to create the folder, it
19303 gets created if you use a remote name.
19305 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
19306 the name of the file) you have specified.
19307 If you type &quot;T&quot; you may use a browser to choose an existing filename.
19309 Besides containing regular text, the template file may also
19310 contain (or a template file program may produce) tokens that are replaced with text
19311 that depends on the message you are replying to or forwarding.
19312 The tokens all look like _word_ (a word surrounded by underscores).
19313 For example, if the token
19315 <CENTER><SAMP>_DATE_</SAMP></CENTER>
19317 is included in the text of the template file, then when you reply to
19318 or forward a message, the token will be replaced with the actual date
19319 the message you are replying to or forwarding was sent.
19321 If you use a role that has a template file for a plain composition
19322 (that is, not a reply or forward) then there is no original message, so
19323 any tokens that depend on the message will be replaced with nothing.
19324 So if you want a template file to be useful for new compositions it
19325 shouldn't include any of the tokens that depend on the message being
19326 replied to or forwarded.
19328 The list of available tokens is
19329 <A HREF="h_index_tokens">here</A>.
19331 Actually, for the adventurous, there is a way to conditionally include text based
19332 on whether or not a token would result in specific replacement text.
19333 For example, you could include some text based on whether or not
19334 the _NEWS_ token would result in any newsgroups if it was used.
19335 It's explained in detail
19336 <A HREF="h_reply_token_conditionals">here</A>.
19338 In the very unlikely event that you want to include a literal token in
19339 a template file, you must precede it with a backslash character.
19340 For example, to include the literal text _DATE_ you must actually use
19341 &#92;_DATE_.
19342 It is not possible to have a literal backslash followed by an expanded token.
19344 A blank template field means that Alpine will not use a template file when
19345 this role is being used.
19347 Look <A HREF="h_edit_nav_cmds">here</A>
19348 to see the available Editing and Navigation commands.
19350 &lt;End of help on this topic&gt;
19351 </BODY>
19352 </HTML>
19353 ======= h_config_filt_stat_imp =======
19354 <HTML>
19355 <HEAD>
19356 <TITLE>Set Important Status Explained</TITLE>
19357 </HEAD>
19358 <BODY>
19359 <H1>Set Important Status Explained</H1>
19361 This describes part of the action to be taken if the Pattern for this
19362 filter is a match.
19363 If set to &quot;Don't change it&quot; then this does nothing.
19364 If set to &quot;Set this state&quot; then the Important flag is set
19365 for the matching message.
19366 If set to &quot;Clear this state&quot; then the Important flag is cleared
19367 for the matching message.
19368 The important flag usually causes an asterisk to show up in the MESSAGE
19369 INDEX.
19370 It may also be useful when selecting a set of messages
19371 with the Select command.
19373 Look <A HREF="h_edit_nav_cmds">here</A>
19374 to see the available Editing and Navigation commands.
19376 &lt;End of help on this topic&gt;
19377 </BODY>
19378 </HTML>
19379 ======= h_config_filt_stat_new =======
19380 <HTML>
19381 <HEAD>
19382 <TITLE>Set New Status Explained</TITLE>
19383 </HEAD>
19384 <BODY>
19385 <H1>Set New Status Explained</H1>
19387 This describes part of the action to be taken if the Pattern for this
19388 filter is a match.
19389 If set to &quot;Don't change it&quot; then this does nothing.
19390 If set to &quot;Set this state&quot; then the
19391 matching message is marked New.
19392 If set to &quot;Clear this state&quot; then the
19393 matching message is marked Seen.
19395 Look <A HREF="h_edit_nav_cmds">here</A>
19396 to see the available Editing and Navigation commands.
19398 &lt;End of help on this topic&gt;
19399 </BODY>
19400 </HTML>
19401 ======= h_config_filt_stat_ans =======
19402 <HTML>
19403 <HEAD>
19404 <TITLE>Set Answered Status Explained</TITLE>
19405 </HEAD>
19406 <BODY>
19407 <H1>Set Answered Status Explained</H1>
19409 This describes part of the action to be taken if the Pattern for this
19410 filter is a match.
19411 If set to &quot;Don't change it&quot; then this does nothing.
19412 If set to &quot;Set this state&quot; then the Answered flag is set
19413 for the matching message.
19414 If set to &quot;Clear this state&quot; then the Answered flag is cleared
19415 for the matching message.
19417 Look <A HREF="h_edit_nav_cmds">here</A>
19418 to see the available Editing and Navigation commands.
19420 &lt;End of help on this topic&gt;
19421 </BODY>
19422 </HTML>
19423 ======= h_config_filt_stat_del =======
19424 <HTML>
19425 <HEAD>
19426 <TITLE>Set Deleted Status Explained</TITLE>
19427 </HEAD>
19428 <BODY>
19429 <H1>Set Deleted Status Explained</H1>
19431 This describes part of the action to be taken if the Pattern for this
19432 filter is a match.
19433 If set to &quot;Don't change it&quot; then this does nothing.
19434 If set to &quot;Set this state&quot; then the
19435 matching message is marked Deleted.
19436 If set to &quot;Clear this state&quot; then the
19437 matching message is marked UnDeleted.
19439 You should not use this option unless you are prepared to have matching
19440 messages expunged from the folder permanently.
19441 For example, if you type the Expunge command, this filter is applied
19442 before the expunge, so matching messages will be marked Deleted and then
19443 will be permanently expunged from the folder.
19444 However, since the index isn't redrawn in between the time that the message
19445 is marked Deleted and the time that you are asked to expunge, the only
19446 indication that you are expunging the message comes in the number of messages
19447 being expunged.
19448 The same thing may happen when you close a folder.
19449 It is also possible that an expunge not initiated by you will
19450 delete matching messages.
19452 Look <A HREF="h_edit_nav_cmds">here</A>
19453 to see the available Editing and Navigation commands.
19455 &lt;End of help on this topic&gt;
19456 </BODY>
19457 </HTML>
19458 ======= h_config_role_scoreval =======
19459 <HTML>
19460 <HEAD>
19461 <TITLE>Score Value Explained</TITLE>
19462 </HEAD>
19463 <BODY>
19464 <H1>Score Value Explained</H1>
19466 A message's score is the sum of the Score Values from all of the Scoring rules
19467 with Patterns that match the message.
19468 The value you give here is the Score Value associated with this rule.
19469 A Score Value is an integer between -100 and 100, with the default
19470 value of zero.
19472 Alternatively, if the
19473 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
19474 field is defined
19475 (on the line right below the &quot;Score Value&quot; field)
19476 then the &quot;Score Value&quot; is ignored and
19477 the &quot;Score From Header&quot; field is used instead.
19479 Look <A HREF="h_edit_nav_cmds">here</A>
19480 to see the available Editing and Navigation commands.
19482 &lt;End of help on this topic&gt;
19483 </BODY>
19484 </HTML>
19485 ======= h_config_role_scorehdrtok =======
19486 <HTML>
19487 <HEAD>
19488 <TITLE>Score Value From Header Explained</TITLE>
19489 </HEAD>
19490 <BODY>
19491 <H1>Score Value From Header Explained</H1>
19493 This option provides a way to use a number that appears in the headers of your
19494 messages as the message's score, or as a component of that score.
19495 If this field is defined then it is used instead of the &quot;Score Value&quot;.
19496 The idea behind this option is that there may be a score embedded in the
19497 headers of messages that has already been calculated outside of Alpine.
19498 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
19499 somewhere in that header there is a score.
19501 The value for this option is the name of the header followed by parentheses
19502 with two arguments inside:
19504 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
19506 No space is allowed between the comma and the start of the field_separators.
19507 It would be interpreted as the first separator if it was there.
19508 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
19509 starts after that and goes to the second separator, and so on.
19510 It's easier to explain with examples.
19512 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
19514 In the above example the header that is used is the &quot;X-Spam&quot; header.
19515 The value of that header (the part after the colon and the space) is split
19516 into fields separated by spaces.
19518 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
19520 The second field is selected and converted to an integer. It only makes sense
19521 if Field2 really is an integer.
19523 Here's an example of a SpamAssassin header.
19524 The exact look of the header will vary, but if your incoming mail
19525 contains headers that look like the following
19527 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19529 you might want to use the hits value as a score.
19530 Since the score is an integer value you can't make use of the decimal part of
19531 the number, but
19532 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
19533 and &quot;.&quot; as your separators.
19535 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
19537 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
19538 hits.
19539 The second field is &quot;10&quot; so the score value would be 10.
19541 Another example we've seen has headers that look like
19543 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19545 Because there are two equals before the 7% the value
19547 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
19549 should capture the probability as the score.
19551 The Score From Header scoring value actually works just like the
19552 regular Score Value in that the rest of the pattern has to match before
19553 it is used and the scores from all the different scoring rules that
19554 match for a particular message are added together.
19555 When using the Score From Header method it may (or may not) make sense to
19556 use only a single scoring rule with a pattern that matches every message.
19558 Look <A HREF="h_edit_nav_cmds">here</A>
19559 to see the available Editing and Navigation commands.
19561 &lt;End of help on this topic&gt;
19562 </BODY>
19563 </HTML>
19564 ======= h_config_role_replyuse =======
19565 <HTML>
19566 <HEAD>
19567 <TITLE>Reply Use Explained</TITLE>
19568 </HEAD>
19569 <BODY>
19570 <H1>Reply Use Explained</H1>
19572 This option determines how this particular role will be used when Replying
19573 to a message.
19574 There are three possible values for this option.
19575 The value &quot;Never&quot;
19576 means that this role will not be a candidate for use when Replying.
19577 The role's Pattern will not be checked for a match, however the role will
19578 be available to be manually switched to if there is a confirmation prompt.
19581 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19582 mean that you do want to consider this role when Replying.
19583 For either of these settings, the role's Pattern will be compared with
19584 the message being replied to.
19585 If there is a match then this role will either be used without confirmation
19586 or will be the default when confirmation is asked for, depending on
19587 which of the two options is selected.
19588 If confirmation is requested, you will also have a chance to
19589 manually change the role to any one of your other roles.
19592 You won't be prompted for confirmation if none of your role Patterns
19593 match the message being replied to.
19594 This is independent of the value of the current option.
19595 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19596 feature may be used to change this behavior.
19598 &lt;End of help on this topic&gt;
19599 </BODY>
19600 </HTML>
19601 ======= h_config_role_forwarduse =======
19602 <HTML>
19603 <HEAD>
19604 <TITLE>Forward Use Explained</TITLE>
19605 </HEAD>
19606 <BODY>
19607 <H1>Forward Use Explained</H1>
19609 This option determines how this particular role will be used when Forwarding
19610 a message.
19611 There are three possible values for this option.
19612 The value &quot;Never&quot;
19613 means that this role will not be a candidate for use when Forwarding.
19614 The role's Pattern will not be checked for a match, however the role will
19615 be available to be manually switched to if there is a confirmation prompt.
19618 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19619 mean that you do want to consider this role when Forwarding.
19620 For either of these settings, the role's Pattern will be compared with
19621 the message being forwarded.
19622 If there is a match then this role will either be used without confirmation
19623 or will be the default when confirmation is asked for, depending on
19624 which of the two options is selected.
19625 If confirmation is requested, you will also have a chance to
19626 manually change the role to any one of your other roles.
19629 You won't be prompted for confirmation if none of your role Patterns
19630 match the message being forwarded.
19631 This is independent of the value of the current option.
19632 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19633 feature may be used to change this behavior.
19635 &lt;End of help on this topic&gt;
19636 </BODY>
19637 </HTML>
19638 ======= h_config_role_composeuse =======
19639 <HTML>
19640 <HEAD>
19641 <TITLE>Compose Use Explained</TITLE>
19642 </HEAD>
19643 <BODY>
19644 <H1>Compose Use Explained</H1>
19646 This option determines how this particular role will be used when Composing
19647 a new message using the &quot;Compose&quot; command.
19648 This does not affect what happens when using the &quot;Role&quot; command
19649 to compose a new message.
19650 The &quot;Role&quot; command allows you to select a role from all of the
19651 roles you have defined, regardless of what Uses you've assigned to those
19652 roles.
19655 There are three possible values for this option.
19656 The value &quot;Never&quot;
19657 means that this role will not be a candidate for use when Composing.
19658 The role's Current Folder Type will not be checked for a match, however the role
19659 will be available to be manually switched to if there is a confirmation prompt.
19662 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19663 mean that you do want to consider this role when Composing.
19664 For either of these settings,
19665 the role's Current Folder Type will be checked (since there is no message
19666 to compare with, the rest of the Pattern is considered a match).
19667 If there is a match then this role will either be used without confirmation
19668 or will be the default when confirmation is asked for, depending on
19669 which of the two options is selected.
19670 If confirmation is requested, you will also have a chance to
19671 manually change the role to any one of your other roles.
19674 When using the Compose command the role checking is a little different
19675 because there is no message being replied to or forwarded.
19676 Because of this the Current Folder Type is checked but the header pattern
19677 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
19678 A role is considered to be a match if it is a candidate for Compose Use and
19679 its Current Folder Type matches the currently open folder.
19680 This could be useful if you want to set a role based on the folder you
19681 are reading, or the type of folder you are reading.
19684 You won't be prompted for confirmation if none of your role Patterns
19685 are a match.
19686 This is independent of the value of the current option.
19687 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19688 feature may be used to change this behavior.
19690 &lt;End of help on this topic&gt;
19691 </BODY>
19692 </HTML>
19693 ======= h_config_filter_folder =======
19694 <HTML>
19695 <HEAD>
19696 <TITLE>Filter Folder Explained</TITLE>
19697 </HEAD>
19698 <BODY>
19699 <H1>Filter Folder Explained</H1>
19701 When the Filter Action is set to &quot;Move&quot;,
19702 the folder or folders specified here will be used to store messages matching
19703 the provided pattern.
19706 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19707 here.
19710 If you wish,
19711 you may choose a folder from your folder collections by using the
19712 &quot;T&quot; command.
19714 Besides regular text, the folder name may also contain
19715 tokens that are replaced with text representing the current date
19716 when you run Alpine.
19717 For example, if the folder name you use is
19719 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19721 that is replaced with something like
19723 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19727 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19729 becomes
19731 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19733 The token names must be surrounded by underscores in order to be recognized
19734 as tokens.
19735 The tokens that may be used are those that are derived from the current date.
19736 They're listed near the bottom of the list of tokens give
19737 <A HREF="h_index_tokens">here</A>.
19739 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19740 for more information on Patterns.
19742 Look <A HREF="h_edit_nav_cmds">here</A>
19743 to see the available Editing and Navigation commands.
19745 &lt;End of help on this topic&gt;
19746 </BODY>
19747 </HTML>
19748 ======= h_config_filter_kw_set =======
19749 <HTML>
19750 <HEAD>
19751 <TITLE>Set These Keywords Explained</TITLE>
19752 </HEAD>
19753 <BODY>
19754 <H1>Set These Keywords Explained</H1>
19756 This describes part of the action to be taken if the Pattern for this
19757 filter is a match.
19758 Read a little about keywords in the help text for the
19759 <A HREF="h_common_flag">Flag</A> command.
19760 This option is a list of keywords that will be Set when there is a match.
19761 If you wish, you may choose keywords from the list of keywords you have
19762 defined with the &quot;T&quot; command.
19763 You may add new keywords by defining them in the
19764 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19765 If you have given a keyword a nickname when configuring it,
19766 that nickname may be used instead of the actual keyword.
19769 Look <A HREF="h_edit_nav_cmds">here</A>
19770 to see the available Editing and Navigation commands.
19772 &lt;End of help on this topic&gt;
19773 </BODY>
19774 </HTML>
19775 ======= h_config_filter_kw_clr =======
19776 <HTML>
19777 <HEAD>
19778 <TITLE>Clear These Keywords Explained</TITLE>
19779 </HEAD>
19780 <BODY>
19781 <H1>Clear These Keywords Explained</H1>
19783 This describes part of the action to be taken if the Pattern for this
19784 filter is a match.
19785 Read a little about keywords in the help text for the
19786 <A HREF="h_common_flag">Flag</A> command.
19787 This option is a list of keywords that will be Cleared when there is a match.
19788 If you wish, you may choose keywords from the list of keywords you have
19789 defined with the &quot;T&quot; command.
19790 You may add new keywords by defining them in the
19791 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19792 If you have given a keyword a nickname when configuring it,
19793 that nickname may be used instead of the actual keyword.
19796 Look <A HREF="h_edit_nav_cmds">here</A>
19797 to see the available Editing and Navigation commands.
19799 &lt;End of help on this topic&gt;
19800 </BODY>
19801 </HTML>
19802 ======= h_index_tokens =======
19803 <HTML>
19804 <HEAD>
19805 <TITLE>Tokens for Index and Replying</TITLE>
19806 </HEAD>
19807 <BODY>
19809 This set of special tokens may be used in the
19810 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19811 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19812 in signature files,
19813 in template files used in
19814 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19815 that is the target of a Filter Rule.
19816 Some of them aren't available in all situations.
19818 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19819 option, but they must be surrounded by underscores for the
19820 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19821 and in the target of Filter Rules.
19825 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19827 <DL>
19828 <DT>SUBJECT</DT>
19829 <DD>
19830 This token represents the Subject the sender gave the message.
19831 Alternatives for use in the index screen are SHORTSUBJECT,
19832 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19833 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19834 You may color the subject text in the MESSAGE INDEX screen differently by using the
19835 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19836 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19837 options available from
19838 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19839 </DD>
19841 <DT>FROM</DT>
19842 <DD>
19843 This token represents the personal name (or email address if the name
19844 is unavailable) of the person specified in the message's &quot;From:&quot;
19845 header field.
19846 You may color the from text in the MESSAGE INDEX screen differently by using the
19847 <A HREF="h_config_index_from_color">Index From Color</A>
19848 option available from
19849 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19850 </DD>
19852 <DT>ADDRESS</DT>
19853 <DD>
19854 This is similar to the &quot;FROM&quot; token, only it is always the
19855 email address, never the personal name.
19856 For example, &quot;mailbox@domain&quot;.
19857 </DD>
19859 <DT>MAILBOX</DT>
19860 <DD>
19861 This is the same as the &quot;ADDRESS&quot; except that the 
19862 domain part of the address is left off.
19863 For example, &quot;mailbox&quot;.
19864 </DD>
19866 <DT>SENDER</DT>
19867 <DD>
19868 This token represents the personal name (or email address) of the person
19869 listed in the message's &quot;Sender:&quot; header field.
19870 </DD>
19872 <DT>TO</DT>
19873 <DD>
19874 This token represents the personal names (or email addresses if the names
19875 are unavailable) of the persons specified in the
19876 message's &quot;To:&quot; header field.
19877 </DD>
19879 <DT>NEWSANDTO</DT>
19880 <DD>
19881 This token represents the newsgroups from the
19882 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19883 the personal names (or email addresses if the names
19884 are unavailable) of the persons specified in the
19885 message's &quot;To:&quot; header field.
19886 </DD>
19888 <DT>TOANDNEWS</DT>
19889 <DD>
19890 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19891 </DD>
19893 <DT>NEWS</DT>
19894 <DD>
19895 This token represents the newsgroups from the
19896 message's &quot;Newsgroups:&quot; header field.
19897 </DD>
19899 <DT>CC</DT>
19900 <DD>
19901 This token represents the personal names (or email addresses if the names
19902 are unavailable) of the persons specified in the
19903 message's &quot;Cc:&quot; header field.
19904 </DD>
19906 <DT>RECIPS</DT>
19907 <DD>
19908 This token represents the personal names (or email addresses if the names
19909 are unavailable) of the persons specified in both the
19910 message's &quot;To:&quot; header field and
19911 the message's &quot;Cc:&quot; header field.
19912 </DD>
19914 <DT>NEWSANDRECIPS</DT>
19915 <DD>
19916 This token represents the newsgroups from the
19917 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19918 the personal names (or email addresses if the names
19919 are unavailable) of the persons specified in the
19920 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19921 </DD>
19923 <DT>RECIPSANDNEWS</DT>
19924 <DD>
19925 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19926 </DD>
19928 <DT>INIT</DT>
19929 <DD>
19930 This token represents the initials from the personal name
19931 of the person specified in the message's &quot;From:&quot;
19932 header field.
19933 If there is no personal name, it is blank.
19934 </DD>
19936 <DT>DATE</DT>
19937 <DD>
19938 This token represents the date on which the message was sent, according
19939 to the &quot;Date&quot; header field.
19940 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19941 The feature
19942 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19943 which adjusts for the timezone the message was sent from,
19944 may have an effect on the value of this token as well as the values of
19945 all of the other DATE or TIME tokens.
19946 Some of the DATE and TIME tokens are displayed in a locale-specific
19947 way unless the option
19948 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19949 </DD>
19951 <DT>SMARTDATE</DT>
19952 <DD>
19953 This token represents the date on which the message was sent, according
19954 to the &quot;Date&quot; header field.
19955 It is &quot;Today&quot; if the message was sent today,
19956 &quot;Yesterday&quot; for yesterday,
19957 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19958 message is from last year and is more than six months old it includes the year, as well.
19959 See the SMARTDATE alternatives below, as well.
19960 </DD>
19962 <DT>SMARTTIME</DT>
19963 <DD>
19964 This token represents the most relevant elements of the date on which
19965 the message was sent (according to the &quot;Date&quot; header field),
19966 in a compact form. If the message was sent today, only the time is used
19967 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19968 the past week, the day of the week and the hour are used
19969 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19970 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19971 &quot;9Apr98&quot;).
19972 </DD>
19974 <DT>SMARTTIME24</DT>
19975 <DD>
19976 This token has the structure &quot;day hour:minute&quot;
19977 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19978 from the current date, or &quot;month day&quot; (e.g.
19979 &quot;Nov 23&quot;) for messages dated less than 6 months
19980 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19981 for messages dated more than 6 months ago. It uses 9 characters
19982 of the width of the screen, and it left aligned.
19983 </DD>
19985 <DT>SMARTDATETIME</DT>
19986 <DD>
19987 This is a combination of SMARTDATE and SMARTTIME.
19988 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19989 case it is SMARTTIME.
19990 See the SMARTDATETIME alternatives below, as well.
19991 </DD>
19993 <DT>DATEISO</DT>
19994 <DD>
19995 This token represents the date on which the message was sent, according
19996 to the &quot;Date&quot; header field.
19997 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19998 </DD>
20000 <DT>SHORTDATEISO</DT>
20001 <DD>
20002 This token represents the date on which the message was sent, according
20003 to the &quot;Date&quot; header field.
20004 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20005 </DD>
20007 <DT>SHORTDATE1</DT>
20008 <DD>
20009 This token represents the date on which the message was sent, according
20010 to the &quot;Date&quot; header field.
20011 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
20012 </DD>
20014 <DT>SHORTDATE2</DT>
20015 <DD>
20016 This token represents the date on which the message was sent, according
20017 to the &quot;Date&quot; header field.
20018 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
20019 </DD>
20021 <DT>SHORTDATE3</DT>
20022 <DD>
20023 This token represents the date on which the message was sent, according
20024 to the &quot;Date&quot; header field.
20025 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
20026 </DD>
20028 <DT>SHORTDATE4</DT>
20029 <DD>
20030 This token represents the date on which the message was sent, according
20031 to the &quot;Date&quot; header field.
20032 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
20033 </DD>
20035 <DT>LONGDATE</DT>
20036 <DD>
20037 This token represents the date on which the message was sent, according
20038 to the &quot;Date&quot; header field.
20039 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
20040 </DD>
20042 <DT>SMARTDATE alternatives</DT>
20043 <DD>
20044 There are several versions of SMARTDATE that are all the same except
20045 for the way they format dates far in the past.
20046 SMARTDATE formats the date using the information from your locale settings
20047 to format the date string. It may end up formatting dates so that they look
20048 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
20049 The feature
20050 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
20051 may have an effect on the values of these tokens.
20052 If you want more control you may use one of the following.
20053   <DL>
20054   <DT>SMARTDATE</DT> <DD>If the option
20055 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
20056 then this will be locale specific. Control this with the
20057 LC_TIME locale setting on a UNIX system. On Windows
20058 the Regional Options control panel may be used to set the Short date
20059 format. At the programming level, the strftime routine is what Alpine
20060 uses to print the date.
20061 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
20062 to SMARTDATES1.</DD>
20063   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
20064   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
20065   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
20066   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
20067   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
20068   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
20069   </DL>
20070 </DD>
20072 <DT>SMARTDATETIME alternatives</DT>
20073 <DD>
20074 There are several versions of SMARTDATETIME that are all very similar.
20075 The ones that end in 24 use a 24-hour clock for Today's messages instead
20076 of a 12-hour clock.
20077 The other variation is
20078 for the way they format dates far in the past.
20079 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
20080 to format the date string. It may end up formatting dates so that they look
20081 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
20082 The feature
20083 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
20084 may have an effect on the values of these tokens.
20085 The possible choices are:
20086   <DL>
20087   <DT>SMARTDATETIME</DT> <DD>If the option
20088 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
20089 then this will be locale specific. Control this with the
20090 LC_TIME locale setting on a UNIX system. On Windows
20091 the Regional Options control panel may be used to set the Short date
20092 format. At the programming level, the strftime routine is what Alpine
20093 uses to print the date.
20094 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
20095 to SMARTDATETIMES1.</DD>
20096   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
20097   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
20098   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
20099   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
20100   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
20101   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
20102   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
20103   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
20104   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
20105   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
20106   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
20107   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
20108   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
20109   </DL>
20110 </DD>
20112 <DT>DAYDATE</DT>
20113 <DD>
20114 This token represents the date on which the message was sent, according
20115 to the &quot;Date&quot; header field.
20116 It looks like &quot;Sat, 23 Oct 1998&quot;.
20117 This token is never converted in any locale-specific way.
20118 </DD>
20120 <DT>PREFDATE</DT>
20121 <DD>
20122 This token represents the date on which the message was sent, according
20123 to the &quot;Date&quot; header field.
20124 It is your operating system's idea of the preferred date representation for the current locale.
20125 Internally it uses the %x version of the date from the strftime routine.
20126 </DD>
20128 <DT>PREFTIME</DT>
20129 <DD>
20130 This token represents the time at which the message was sent, according
20131 to the &quot;Date&quot; header field.
20132 It is the preferred time representation for the current locale.
20133 Internally it uses the %X version of the time from the strftime routine.
20134 </DD>
20136 <DT>PREFDATETIME</DT>
20137 <DD>
20138 This token represents the date and time at which the message was sent, according
20139 to the &quot;Date&quot; header field.
20140 It is the preferred date and time representation for the current locale.
20141 Internally it uses the %c version of the time from the strftime routine.
20142 </DD>
20144 <DT>DAY</DT>
20145 <DD>
20146 This token represents the day of the month on which the message was sent,
20147 according to the &quot;Date&quot; header field.
20148 For example, &quot;23&quot; or &quot;9&quot;.
20149 </DD>
20151 <DT>DAY2DIGIT</DT>
20152 <DD>
20153 This token represents the day of the month on which the message was sent,
20154 according to the &quot;Date&quot; header field.
20155 For example, &quot;23&quot; or &quot;09&quot;.
20156 It is always 2 digits.
20157 </DD>
20159 <DT>DAYORDINAL</DT>
20160 <DD>
20161 This token represents the ordinal number that is the day of
20162 the month on which the message was sent,
20163 according to the &quot;Date&quot; header field.
20164 For example, &quot;23rd&quot; or &quot;9th&quot;.
20165 </DD>
20167 <DT>DAYOFWEEK</DT>
20168 <DD>
20169 This token represents the day of the week on which the message was sent,
20170 according to the &quot;Date&quot; header field.
20171 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20172 </DD>
20174 <DT>DAYOFWEEKABBREV</DT>
20175 <DD>
20176 This token represents the day of the week on which the message was sent,
20177 according to the &quot;Date&quot; header field.
20178 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20179 </DD>
20181 <DT>MONTHABBREV</DT>
20182 <DD>
20183 This token represents the month the message was sent, according
20184 to the &quot;Date&quot; header field.
20185 For example, &quot;Oct&quot;.
20186 </DD>
20188 <DT>MONTHLONG</DT>
20189 <DD>
20190 This token represents the month in which the message was sent, according
20191 to the &quot;Date&quot; header field.
20192 For example, &quot;October&quot;.
20193 </DD>
20195 <DT>MONTH</DT>
20196 <DD>
20197 This token represents the month in which the message was sent, according
20198 to the &quot;Date&quot; header field.
20199 For example, &quot;10&quot; or &quot;9&quot;.
20200 </DD>
20202 <DT>MONTH2DIGIT</DT>
20203 <DD>
20204 This token represents the month in which the message was sent, according
20205 to the &quot;Date&quot; header field.
20206 For example, &quot;10&quot; or &quot;09&quot;.
20207 It is always 2 digits.
20208 </DD>
20210 <DT>YEAR</DT>
20211 <DD>
20212 This token represents the year the message was sent, according
20213 to the &quot;Date&quot; header field.
20214 For example, &quot;1998&quot; or &quot;2001&quot;.
20215 </DD>
20217 <DT>YEAR2DIGIT</DT>
20218 <DD>
20219 This token represents the year the message was sent, according
20220 to the &quot;Date&quot; header field.
20221 For example, &quot;98&quot; or &quot;01&quot;.
20222 It is always 2 digits.
20223 </DD>
20225 <DT>TIME24</DT>
20226 <DD>
20227 This token represents the time at which the message was sent, according
20228 to the &quot;Date&quot; header field.
20229 There is no adjustment made for different time zones, so you'll get
20230 the time the message was sent according to the time zone the sender
20231 was in.
20232 It has the format HH:MM. For example, &quot;17:28&quot;.
20233 </DD>
20235 <DT>TIME12</DT>
20236 <DD>
20237 This token represents the time at which the message was sent, according
20238 to the &quot;Date&quot; header field.
20239 This time is for a 12 hour clock.
20240 It has the format HH:MMpm.
20241 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20242 </DD>
20244 <DT>TIMEZONE</DT>
20245 <DD>
20246 This token represents the numeric timezone from
20247 the &quot;Date&quot; header field.
20248 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
20249 </DD>
20251 </DL>
20254 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
20256 <DL>
20257 <DT>MSGNO</DT>
20258 <DD>
20259 This token represents the message's current position in the folder that,
20260 of course, may change as the folder is sorted or new mail arrives.
20261 </DD>
20263 <DT>STATUS</DT>
20264 <DD>
20265 This token represents a three character wide field displaying various
20266 aspects of the message's state.
20267 The first character is either blank,
20268 a '*' for message marked Important, or a '+' indicating a message
20269 addressed directly to you (as opposed to your having received it via a
20270 mailing list, for example).
20271 When the feature
20272 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
20273 is set, if the first character would have been
20274 blank then it will instead be a '-' if the message is cc'd to you.
20275 The second character is typically blank,
20276 though the arrow cursor may occupy it if either the 
20277 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
20278 or the
20279 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
20280 is set (or you actually are on a slow link).
20281 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
20282 '<A HREF="h_flag_answered">A</A>' (Answered),
20283 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
20284 '<A HREF="h_flag_new">N</A>' (New), or blank.
20286 If you are using a threaded view of the index and this message is at the
20287 top of a collapsed portion of a thread,
20288 then this token refers to all of the messages in the collapsed portion of
20289 the thread instead of just the top message.
20290 The first character will be a '*' if <EM>any</EM> of the messages in the thread
20291 are marked Important, else a '+' if any of the messages are addressed
20292 to you, else a '-' if any of the messages are cc'd to you.
20293 The third character will be a 'D' if <EM>all</EM> of the messages
20294 in the collapsed thread are marked deleted,
20295 an 'A' if <EM>all</EM> of the messages
20296 in the collapsed thread are marked answered,
20297 it will be an 'N' if any of
20298 the messages are undeleted and unseen, and it will be blank otherwise.
20299 </DD>
20301 <DT>FULLSTATUS</DT>
20302 <DD>
20303 This token represents a less abbreviated alternative
20304 to the &quot;STATUS&quot; token.
20305 It is six characters wide.
20306 The first character is '+', '-', or blank, the
20307 second blank, the third either '*' or blank, the fourth
20308 '<A HREF="h_flag_new">N</A>' or blank,
20309 the fifth '<A HREF="h_flag_answered">A</A>'
20310 or blank, and the sixth character is
20311 either '<A HREF="h_flag_deleted">D</A>' or
20312 blank.
20314 If you are using a threaded view of the index and this message is at the
20315 top of a collapsed portion of a thread,
20316 then this token refers to all of the messages in the collapsed portion of
20317 the thread instead of just the top message.
20318 The first character is '+', '-', or blank depending on whether <EM>any</EM>
20319 of the messages in the collapsed thread are addressed to you or cc'd to you.
20320 The third character will be '*' if any of the messages are marked
20321 Important.
20322 The fourth character will be 'N' if all of the messages in the thread
20323 are New, else 'n' if some of the messages in the thread are New, else blank.
20324 The fifth character will be 'A' or 'a' or blank, and the sixth character
20325 will be 'D' or 'd' or blank.
20326 </DD>
20328 <DT>IMAPSTATUS</DT>
20329 <DD>
20330 This token represents an even less abbreviated alternative to the
20331 &quot;STATUS&quot; token.
20332 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
20333 an 'N' if the message is new to this folder since the last time
20334 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
20335 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
20336 new to the folder since it was last opened <EM>but</EM> has not been
20337 viewed, or a blank if the message has been in the folder since it was
20338 last opened and has been viewed.
20340 If you are using a threaded view of the index and this message is at the
20341 top of a collapsed portion of a thread,
20342 then the fourth character will be
20343 'N' if all of the messages in the thread are unseen and recent;
20344 else 'n' if some of the messages in the thread are unseen and recent;
20345 else 'U' if all of the messages in the thread are unseen and not recent;
20346 else 'u' if some of the messages in the thread are unseen and not recent;
20347 else 'R' if all of the messages in the thread are seen and recent;
20348 else 'r' if some of the messages in the thread are seen and recent;
20349 else blank.
20350 </DD>
20352 <DT>SHORTIMAPSTATUS</DT>
20353 <DD>
20354 This is the same as the last four of the six characters of IMAPSTATUS,
20355 so the '+' To Me information will be missing.
20356 </DD>
20358 <DT>SIZE</DT>
20359 <DD>
20360 This token represents the total size, in bytes, of the message.
20361 If a &quot;K&quot; (Kilobyte)
20362 follows the number, the size is approximately 1,000
20363 times that many bytes (rounded to the nearest 1,000).
20364 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20365 1,000,000 times that many bytes.
20366 Commas are not used in this field.
20367 This field is seven characters wide, including the enclosing parentheses.
20368 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
20369 The progression of sizes used looks like:
20372 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
20374 </DD>
20376 <DT>SIZECOMMA</DT>
20377 <DD>
20378 This token represents the total size, in bytes, of the message.
20379 If a &quot;K&quot; (Kilobyte)
20380 follows the number, the size is approximately 1,000
20381 times that many bytes (rounded to the nearest 1,000).
20382 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20383 1,000,000 times that many bytes.
20384 Commas are used if the number shown is 1,000 or greater.
20385 The SIZECOMMA field is one character wider than the SIZE field.
20386 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
20387 The progression of sizes used looks like:
20390 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
20392 </DD>
20394 <DT>KSIZE</DT>
20395 <DD>
20396 This token represents the total size of the message, expressed in
20397 kilobytes or megabytes, as most appropriate.
20398 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
20399 The progression of sizes used looks like:
20402 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
20404 </DD>
20406 <DT>SIZENARROW</DT>
20407 <DD>
20408 This token represents the total size, in bytes, of the message.
20409 If a &quot;K&quot; (Kilobyte)
20410 follows the number, the size is approximately 1,000
20411 times that many bytes.
20412 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
20413 1,000,000 times that many bytes.
20414 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
20415 1,000,000,000 times that many bytes.
20416 This field uses only five characters of screen width, including the enclosing
20417 parentheses.
20418 The progression of sizes used looks like:
20421 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
20423 </DD>
20425 <DT>DESCRIPSIZE</DT>
20426 <DD>
20427 This token is intended to represent a more useful description of the
20428 message than just its size, but it isn't very useful at this point.
20429 The plus sign in this view means there are attachments.
20430 Note that including this token in
20431 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20432 display a little while Alpine collects the necessary information.
20433 </DD>
20435 <DT>SHORTSUBJECT</DT> 
20436 <DD> This token is the same as SUBJECT, but removes 
20437 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
20438 between these characters corresponds to mailing list names, and may be 
20439 unnecessary or unwanted in some instances. 
20440 </DD>
20442 <DT>SUBJKEY</DT>
20443 <DD>
20444 This token is the same as the SUBJECT token unless keywords are set for
20445 the message.
20446 In that case, a list of keywords enclosed in braces will be prepended to
20447 the subject of the message.
20448 Only those keywords that you have defined in your
20449 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20450 in Setup/Config are considered in the list.
20451 In other words, keywords that have been set by some other means, perhaps
20452 by another email program, won't show up unless included in
20453 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20454 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
20455 prepended to the subject in the MESSAGE TEXT screen.
20456 If you have given a keyword a nickname
20457 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20458 instead of the actual keyword.
20459 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20460 option may be used to modify this token slightly.
20461 It is also possible to color keywords in the index using the
20462 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20463 </DD>
20465 <DT>SHORTSUBJKEY</DT>
20466 <DD> This token is the same as SUBJKEY, but it is based on
20467 SHORTSUBJECT, instead of in SUBJECT.
20468 </DD>
20470 <DT>SUBJKEYINIT</DT>
20471 <DD>
20472 This token is the same as the SUBJKEY token except that instead of
20473 prepending a list of keywords to the subject, a list of first initials
20474 of keywords will be prepended instead.
20475 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
20476 set (or Work and Now are the Alpine nicknames of keywords that are set)
20477 then the SUBJKEY token would cause a result like
20479 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
20481 whereas the SUBJKEYINIT token would give
20483 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
20485 Only those keywords that you have defined in your
20486 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20487 in Setup/Config are considered in the list.
20488 In other words, keywords that have been set by some other means, perhaps
20489 by another email program, won't show up unless included in
20490 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20491 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20492 option may be used to modify this token slightly.
20493 It is also possible to color keywords in the index using the
20494 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20495 </DD>
20497 <DT>SHORTSUBJKEYINIT</DT>
20498 <DD> This token is the same as SUBJKEYINIT, but it is based on
20499 SHORTSUBJECT, instead of in SUBJECT.
20500 </DD>
20502 <DT>SUBJECTTEXT</DT>
20503 <DD>
20504 Same as SUBJECT but if there is room in the Subject field for more text,
20505 the opening part of the text of the message is displayed after the subject.
20506 The time needed to fetch the text may cause a performance problem
20507 which can, of course, be avoided by using the SUBJECT version of
20508 the Subject instead.
20509 You may color this opening text differently by using the
20510 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20511 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20512 You may adjust the characters that are displayed between the Subject and the
20513 opening text with the option
20514 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
20515 </DD>
20517 <DT>SUBJKEYTEXT</DT>
20518 <DD>
20519 Same as SUBJKEY but with the opening message text.
20520 </DD>
20522 <DT>OPENINGTEXT</DT>
20523 <DD>
20524 This is similar to SUBJECTTEXT.
20525 Instead of combining the Subject and the opening text in a single
20526 field in the index screen this token allows you to allocate a
20527 separate column just for the opening text of the message.
20528 The time needed to fetch this text may cause a performance problem.
20529 You may color this opening text differently by using the
20530 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20531 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20532 </DD>
20534 <DT>OPENINGTEXTNQ</DT>
20535 <DD>
20536 This is very similar to OPENINGTEXT.
20537 The NQ stands for No Quotes.
20538 The only difference is that quoted text (lines beginning with &gt;) is deleted.
20539 For some messages this may be confusing.
20540 For example, a message might have a line preceding some quoted
20541 text that reads something like &quot;On May 8th person A said.&quot;
20542 That no longer makes sense after the quoted text is deleted and it
20543 will appear that person A said whatever the text after the quote
20544 is, even though that is really person B talking.
20545 </DD>
20547 <DT>SUBJKEYINITTEXT</DT>
20548 <DD>
20549 Same as SUBJKEYINIT but with the opening message text.
20550 </DD>
20552 <DT>KEY</DT>
20553 <DD>
20554 This is a space-delimited list of keywords that are set for the message.
20555 Only those keywords that you have defined in your
20556 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20557 in Setup/Config are considered in the list.
20558 In other words, keywords that have been set by some other means, perhaps
20559 by another email program, won't show up unless included in
20560 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20561 If you have given a keyword a nickname
20562 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20563 instead of the actual keyword.
20564 It is also possible to color keywords in the index using the
20565 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20566 This token defaults to an arbitrary width of 5.
20567 You should set it to whatever width suits you using something
20568 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
20569 </DD>
20571 <DT>KEYINIT</DT>
20572 <DD>
20573 This is a list of keyword initials that are set for the message.
20574 If you have given a keyword a nickname
20575 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
20576 is displayed instead of the initial of the actual keyword.
20577 It is also possible to color keyword initials in the index using the
20578 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20579 This token defaults to an arbitrary width of 2.
20580 You should set it to whatever width suits you using something
20581 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
20582 </DD>
20584 <DT>PRIORITY</DT>
20585 <DD>
20586 The X-Priority header is a non-standard header that is used in a
20587 somewhat standard way by many mail programs.
20588 Alpine expects the value of this header to be a digit with a value
20589 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
20590 Since this priority is something that the sender sets it is only an indication
20591 of the priority that the sender attaches to the mail and it is therefore almost
20592 totally unreliable for use as a filtering criterion.
20593 This token will display the numeric value of the priority if it is between
20594 1 and 5.
20595 It will be suppressed (blank) if the value is 3, which is normal priority.
20596 This token may be colored with the
20597 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20598 </DD>
20600 <DT>PRIORITYALPHA</DT>
20601 <DD>
20602 This is a more verbose interpretation of the X-Priority field.
20603 Once again nothing is displayed unless the value of the field
20604 is 1, 2, 4, or 5.
20605 The values displayed for those values are:
20607 <TABLE>
20608 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
20609 <TR> <TD>2</TD> <TD>High</TD> </TR>
20610 <TR> <TD>4</TD> <TD>Low</TD> </TR>
20611 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
20612 </TABLE>
20614 This token may be colored with the
20615 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20616 </DD>
20618 <DT>PRIORITY!</DT>
20619 <DD>
20620 This is a one character, non-numeric version of the X-Priority field.
20621 If the value of the X-Priority header is 1 or 2 an exclamation
20622 point is displayed.
20623 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
20624 This token may be colored with the
20625 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20626 </DD>
20628 <DT>ATT</DT>
20629 <DD>
20630 This is a one column wide field that represents the number of attachments
20631 a message has. It will be blank if there are no attachments, a single
20632 digit for one to nine attachments, or an asterisk for more than nine.
20633 Note that including this token in
20634 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20635 display a little while Alpine collects the necessary information.
20636 </DD>
20638 <DT>FROMORTO</DT>
20639 <DD>
20640 This token represents <EM>either</EM> the personal name (or email address) of
20641 the person listed in the message's &quot;From:&quot; header
20642 field, <EM>or</EM>, if that address is yours or one of your
20643 <A HREF="h_config_alt_addresses">alternate addresses</A>,
20644 the first person specified in the
20645 message's &quot;To:&quot; header field
20646 with the prefix &quot;To: &quot; prepended.
20647 If the from address is yours and there is also no &quot;To&quot; address,
20648 Alpine will use the address on the &quot;Cc&quot; line.
20649 If there is no address there, either, Alpine will look for a newsgroup name
20650 from the &quot;Newsgroups&quot; header field and put
20651 that after the &quot;To: &quot; prefix.
20652 </DD>
20654 <DT>FROMORTONOTNEWS</DT>
20655 <DD>
20656 This is almost the same as <EM>FROMORTO</EM>.
20657 The difference is that newsgroups aren't considered.
20658 When a message is from you, doesn't have a To or Cc, and does have
20659 a Newsgroups header; this token will be your name instead of the name
20660 of the newsgroup (like it would be with FROMORTO).
20661 </DD>
20663 <DT>TEXT</DT>
20664 <DD>
20665 This is a different sort of token.
20666 It allows you to display a label within each index line.
20667 It will be the same fixed text for each line.
20668 It is different from all the other tokens in that there is no space column
20669 displayed after this token.
20670 Instead, it is butted up against the following field.
20671 It also has a different syntax.
20672 The text to display is given following a colon after the
20673 word &quot;TEXT&quot;.
20674 For example,
20676 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
20678 would insert the literal text &quot;abc=&quot; (without the quotes)
20679 into the index display line.
20680 You must quote the text if it includes space characters, like
20682 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
20684 </DD>
20686 <DT>HEADER</DT>
20687 <DD>
20688 This allows you to display the text from a particular header line in the
20689 message.
20690 The syntax for this token is substantially different from all the others
20691 in order that you might be able to display a portion of the text following
20692 a particular header.
20693 The header name you are interested in is given following a colon
20694 after the word &quot;HEADER&quot;.
20695 For example,
20697 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20699 would display the text of the X-Spam header, if any.
20700 Like for other index tokens a width field may (and probably should)
20701 follow this.
20703 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20705 displays the first ten characters of the X-Spam header.
20706 Unlike other index tokens, the syntax for HEADER is more flexible.
20707 An optional second argument comes after a comma inside the parentheses.
20708 It specifies the &quot;field&quot; number.
20709 By default, the field separator is a space character.
20710 No extra space characters are allowed in the argument list.
20712 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20714 would display the second field, left-justified, in a 10 character
20715 wide field.
20716 The second field would consist of all the text after the first space
20717 up to the next space or the end of the header.
20718 The default field number is zero, which stands for the entire line.
20719 There is also an optional third argument that is a list of field
20720 separators. It defaults to a space character.
20721 The example
20723 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20725 would cause the field separators to be any of colon, percent,
20726 or space (there is a space character between the percent and the
20727 right parenthesis).
20728 The first field runs from the start of the header value up to the first
20729 colon, percent, or space; the second goes from there to the next; and so on.
20730 In order to use a comma character as a field separator you must escape
20731 it by preceding it with a backslash (&#92;).
20732 The same is true of the backslash character itself.
20733 There is one further optional argument.
20734 It is an R or an L to specify right or left adjustment of the text
20735 within the field.
20736 The default is to left justify, however if you are displaying numbers
20737 you might prefer to right justify.
20739 Here's an example of a SpamAssassin header.
20740 The exact look of the header will vary, but if your incoming mail
20741 contains headers that look like the following
20743 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20745 you might want to display the hits value.
20746 The first field starts with the Y in Yes.
20747 To get what you're interested in you might use &quot;=&quot; and
20748 space as the field separators and display the third field, like
20750 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20752 or maybe you would break at the dot instead
20754 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20756 Another example we've seen has headers that look like
20758 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20760 Because there are two equals and a comma before the 7% and a comma
20761 after it, the token
20763 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20765 should display the probability (for example 7% or 83%) right justified
20766 in a 3-wide field.
20767 </DD>
20769 <DT>ARROW</DT>
20770 <DD>
20771 This gives an alternative way to display the current message in the
20772 MESSAGE INDEX screen.
20773 Usually the current message is indicated by the line being shown in
20774 reverse video.
20775 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20776 the current line will include an &quot;arrow&quot; that
20777 looks like
20779 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20781 in the ARROW token's field.
20782 For all of the non-current messages, the ARROW field will be filled
20783 with blanks.
20784 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20785 may be adjusted.
20786 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20787 For example, if you use ARROW(3) you will get
20789 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20791 and ARROW(1) will give you just
20793 <CENTER><SAMP>&gt;</SAMP></CENTER>
20795 It is also possible to set the color of the ARROW field.
20796 By default (and for non-current messages) the arrow is colored the same
20797 as the index line it is part of.
20798 You may set it to be another color with the 
20799 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20800 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20801 </DD>
20803 <DT>SCORE</DT>
20804 <DD>
20805 This gives the
20806 <a href="h_rules_score">score</a>
20807 of each message.
20808 This will be six columns wide to accommodate the widest possible score.
20809 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20810 to limit the width of the field to the widest score that
20811 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20812 If you have not defined any score rules the scores will all be zero.
20813 If any of your score rules contain AllText or BodyText patterns
20814 then including SCORE in the <!--#echo var="VAR_index-format"-->
20815 may slow down the display of the MESSAGE INDEX screen.
20816 </DD>
20817 </DL>
20820 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20822 <DL>
20823 <DT>CURNEWS</DT>
20824 <DD>
20825 This token represents the current newsgroup if there is one.
20826 For example, &quot;comp.mail.pine&quot;.
20827 </DD>
20829 <DT>MSGID</DT>
20830 <DD>
20831 This token represents the message ID of the message.
20832 This token does not work with Filter Rule folder names.
20833 </DD>
20835 <DT>CURDATE</DT>
20836 <DD>
20837 This token represents the current date.
20838 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20839 </DD>
20841 <DT>CURDATEISO</DT>
20842 <DD>
20843 This token represents the current date.
20844 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20845 </DD>
20847 <DT>CURDATEISOS</DT>
20848 <DD>
20849 This token represents the current date.
20850 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20851 </DD>
20853 <DT>CURPREFDATE</DT>
20854 <DD>
20855 This token represents the current date.
20856 It is your operating system's idea of the preferred date representation for the current locale.
20857 Internally it uses the %x version of the date from the strftime routine.
20858 </DD>
20860 <DT>CURPREFTIME</DT>
20861 <DD>
20862 This token represents the current time.
20863 It is the preferred time representation for the current locale.
20864 Internally it uses the %X version of the time from the strftime routine.
20865 </DD>
20867 <DT>CURPREFDATETIME</DT>
20868 <DD>
20869 This token represents the current date and time.
20870 It is the preferred date and time representation for the current locale.
20871 Internally it uses the %c version of the time from the strftime routine.
20872 </DD>
20874 <DT>CURTIME24</DT>
20875 <DD>
20876 This token represents the current time.
20877 It has the format HH:MM. For example, &quot;17:28&quot;.
20878 </DD>
20880 <DT>CURTIME12</DT>
20881 <DD>
20882 This token represents the current time.
20883 This time is for a 12 hour clock.
20884 It has the format HH:MMpm.
20885 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20886 </DD>
20888 <DT>CURDAY</DT>
20889 <DD>
20890 This token represents the current day of the month.
20891 For example, &quot;23&quot; or &quot;9&quot;.
20892 </DD>
20894 <DT>CURDAY2DIGIT</DT>
20895 <DD>
20896 This token represents the current day of the month.
20897 For example, &quot;23&quot; or &quot;09&quot;.
20898 It is always 2 digits.
20899 </DD>
20901 <DT>CURDAYOFWEEK</DT>
20902 <DD>
20903 This token represents the current day of the week.
20904 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20905 </DD>
20907 <DT>CURDAYOFWEEKABBREV</DT>
20908 <DD>
20909 This token represents the current day of the week.
20910 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20911 </DD>
20913 <DT>CURMONTH</DT>
20914 <DD>
20915 This token represents the current month.
20916 For example, &quot;10&quot; or &quot;9&quot;.
20917 </DD>
20919 <DT>CURMONTH2DIGIT</DT>
20920 <DD>
20921 This token represents the current month.
20922 For example, &quot;10&quot; or &quot;09&quot;.
20923 It is always 2 digits.
20924 </DD>
20926 <DT>CURMONTHLONG</DT>
20927 <DD>
20928 This token represents the current month.
20929 For example, &quot;October&quot;.
20930 </DD>
20932 <DT>CURMONTHABBREV</DT>
20933 <DD>
20934 This token represents the current month.
20935 For example, &quot;Oct&quot;.
20936 </DD>
20938 <DT>CURYEAR</DT>
20939 <DD>
20940 This token represents the current year.
20941 For example, &quot;1998&quot; or &quot;2001&quot;.
20942 </DD>
20944 <DT>CURYEAR2DIGIT</DT>
20945 <DD>
20946 This token represents the current year.
20947 For example, &quot;98&quot; or &quot;01&quot;.
20948 It is always 2 digits.
20949 </DD>
20951 <DT>LASTMONTH</DT>
20952 <DD>
20953 This token represents last month.
20954 For example, if this is November (the 11th month),
20955 it is equal to &quot;10&quot; or if this is October (the 10th month),
20956 it is &quot;9&quot;.
20957 It is possible that this and the other tokens beginning with LASTMONTH
20958 below could be useful when used with a Filtering Rule that
20959 has the &quot;Beginning of Month&quot; option set.
20960 </DD>
20962 <DT>LASTMONTH2DIGIT</DT>
20963 <DD>
20964 This token represents last month.
20965 For example, if this is November (the 11th month),
20966 it is equal to &quot;10&quot; or if this is October (the 10th month),
20967 it is &quot;09&quot;.
20968 It is always 2 digits.
20969 </DD>
20971 <DT>LASTMONTHLONG</DT>
20972 <DD>
20973 This token represents last month.
20974 For example, if this is November the value is &quot;October&quot;.
20975 </DD>
20977 <DT>LASTMONTHABBREV</DT>
20978 <DD>
20979 This token represents last month.
20980 For example, if this is November the value is &quot;Oct&quot;.
20981 </DD>
20983 <DT>LASTMONTHYEAR</DT>
20984 <DD>
20985 This token represents what the year was a month ago.
20986 For example, if this is October, 1998, it is &quot;1998&quot;.
20987 If this is January, 1998, it is &quot;1997&quot;.
20988 </DD>
20990 <DT>LASTMONTHYEAR2DIGIT</DT>
20991 <DD>
20992 This token represents what the year was a month ago.
20993 For example, if this is October, 1998, it is &quot;98&quot;.
20994 If this is January, 1998, it is &quot;97&quot;.
20995 </DD>
20997 <DT>LASTYEAR</DT>
20998 <DD>
20999 This token represents last year.
21000 For example, if this is 1998, it equals &quot;1997&quot;.
21001 It is possible that this
21002 could be useful when used with a Filtering Rule that
21003 has the &quot;Beginning of Year&quot; option set.
21004 </DD>
21006 <DT>LASTYEAR2DIGIT</DT>
21007 <DD>
21008 This token represents last year.
21009 For example, if this is 1998, it equals &quot;97&quot;.
21010 It is always 2 digits.
21011 </DD>
21013 <DT>ROLENICK</DT>
21014 <DD>
21015 This token represents the nickname of the
21016 role currently being used.  If no role is being used,
21017 then no text will be printed for this token.
21018 This token does not work with Filter Rule folder names.
21019 </DD>
21020 </DL>
21023 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
21024 See the help for the
21025 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
21026 to see why you might want to use this.
21027 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
21028 must be surrounded by underscores when used.
21030 <DL>
21031 <DT>NEWLINE</DT>
21032 <DD>
21033 This is an end of line marker.
21034 </DD>
21035 </DL>
21038 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
21040 <DL>
21041 <DT>CURSORPOS</DT>
21042 <DD>
21043 This token is different from the others.
21044 When it is replaced it is replaced with nothing, but it sets an Alpine
21045 internal variable that tells the composer to start with the cursor
21046 positioned at the position where this token was.
21047 If both the template file and the signature file contain
21048 a &quot;CURSORPOS&quot; token, then the position in the template file
21049 is used.
21050 If there is a template file and neither it nor the signature file contains
21051 a &quot;CURSORPOS&quot; token, then the cursor is positioned
21052 after the end of the contents of the
21053 template file when the composer starts up.
21054 </DD>
21055 </DL>
21058 &lt;End of help on this topic&gt;
21059 </BODY>
21060 </HTML>
21061 ======= h_reply_token_conditionals =======
21062 <HTML>
21063 <HEAD>
21064 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
21065 </HEAD>
21066 <BODY>
21067 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
21069 Conditional text inclusion may be used with
21070 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
21071 in signature files, and in template files used in
21072 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
21073 It may <EM>not</EM> be used with the
21074 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
21077 There is a limited if-else capability for including text.
21078 The if-else condition is based
21079 on whether or not a given token would result in replacement text you
21080 specify.
21081 The syntax of this conditional inclusion is
21083 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
21085 The left parenthesis must follow the underscore immediately, with no
21086 intervening space.
21087 It means the token is expanded and the results of that expansion are
21088 compared against the &quot;match_this&quot; argument.
21089 If there is an exact match, then the &quot;if_matched&quot; text is used
21090 as the replacement text.
21091 Otherwise, the &quot;if_not_matched&quot; text is used.
21092 One of the most useful values for the &quot;match_this&quot; argument is
21093 the empty string, &quot;&quot;.
21094 In that case the expansion is compared against the empty string.
21096 Here's an example to make it clearer.
21097 This text could be included in one of your template files:
21099 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
21101 If that is included in a template file that you are using while replying
21102 to a message (because you chose to use the role it was part of),
21103 and that message has a newsgroup header and a newsgroup in that header,
21104 then the text
21106 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
21108 will be included in the message you are about to compose.
21109 On the other hand, if the message you are replying to does not have
21110 a newsgroup, then the text
21112 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
21114 would be included instead.
21115 This would also work in signature files and in
21116 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
21117 If the &quot;match_this&quot;, &quot;if_matched&quot;,
21118 or &quot;if_not_matched&quot; arguments contain
21119 spaces, parentheses, or commas;
21120 they have to be quoted with double quotation marks (like in the example
21121 above).
21122 If you want to include a literal quote (&quot;) in the text you must escape the
21123 quote by preceding it with a backslash (&#92;) character.
21124 If you want to include a literal backslash character you must escape it
21125 by preceding it with another backslash.
21127 The comma followed by &quot;if_not_matched&quot; is optional.
21128 If there is no &quot;if_not_matched&quot;
21129 present then no text is included if the not_matched case is true.
21130 Here's another example:
21132 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
21134 Here you can see that tokens may appear in the arguments.
21135 The same is true for tokens with the conditional parentheses.
21136 They may appear in arguments,
21137 though you do have to be careful to get the quoting and escaping of
21138 nested double quotes correct.
21139 If this was in the signature file being used and you were replying to a message
21140 sent to comp.mail.pine the resulting text would be:
21142 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
21144 If you were replying to a message that wasn't sent to any newsgroup the
21145 resulting text would be a single blank line.
21146 The reason you'd get a blank line is because the end of the line is
21147 outside of the conditional, so is always included.
21148 If you wanted to get rid of that blank line you could do so by moving
21149 the end of line inside the conditional.
21150 In other words, it's ok to have multi-line
21151 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
21152 template file.
21153 The text just continues until the next double quotation, even if it's not
21154 on the same line.
21156 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
21158 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
21160 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
21161 while reading the newsgroup comp.mail.pine the resulting text would be:
21163 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
21165 If you were replying to a message while reading an email folder instead
21166 of a newsgroup the resulting leadin text would be
21168 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
21170 Here's one more (contrived) example illustrating a matching argument
21171 that is not the empty string.
21173 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
21175 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
21176 were replying to
21177 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
21178 would be
21180 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
21182 But if you were replying to a message sent on Oct. 27 (and that wasn't
21183 today) you would get
21185 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
21188 &lt;End of help on this topic&gt;
21189 </BODY>
21190 </HTML>
21191 ======= h_composer_cntxt_nick =======
21192 <HTML>
21193 <HEAD>
21194 <TITLE>Collection Nickname Explained</TITLE>
21195 </HEAD>
21196 <BODY>
21197 <H1>Collection Edit Help -- Nickname Field</H1>
21199 This field is provided so you can add a short nickname to use when
21200 referring to this collection within Alpine.  Spaces are allowed, and
21201 you don't need to use double-quotes.  However, the double-quote
21202 character is not allowed.
21204 Look <A HREF="h_edit_nav_cmds">here</A>
21205 to see the available Editing and Navigation commands.
21207 &lt;End of help on this topic&gt;
21208 </BODY>
21209 </HTML>
21210 ======= h_folder_server_syntax =======
21211 <HTML>
21212 <HEAD>
21213 <TITLE>Server Name Syntax</TITLE>
21214 </HEAD>
21215 <BODY>
21216 <H1>Server Name Syntax</H1>
21218 This help describes the syntax that may be used for server names
21219 that may be associated with remote folders or SMTP servers.
21222 A server name is the hostname of the server.
21223 It's a good idea to use the host's fully-qualified network name.
21226 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
21229 However, IP addresses are allowed if surrounded
21230 with square-brackets.
21233 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
21236 An optional network port number may be supplied by appending
21237 a colon (:) followed by the port number
21238 to the server name.
21239 By default, the IMAP port number, 143, is used.
21242 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
21245 Besides server name and optional port number, various other optional
21246 parameters may be supplied that alter Alpine's interaction with the server.
21247 A parameter is supplied by appending a slash (/) character followed by
21248 the parameter's name and,
21249 depending on the particular parameter, the value assigned to that
21250 name, to the server name (and optional port number).
21251 Parameter names are <EM>not</EM> case sensitive.
21252 Currently supported parameters include:
21254 <DL>
21256 <DT>User</DT>
21257 <DD>This parameter requires an associated value, and is intended to
21258 provide the username identifier with which to establish the server
21259 connection.
21260 If your SMTP server offers SMTP AUTH authentication, adding this 
21261 parameter to the
21262 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
21263 option will cause Alpine to attempt to authenticate to the server using the
21264 supplied username.
21265 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
21266 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
21267 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
21268 option (or to the server name for any folder collection using NNTP)
21269 will cause Alpine to attempt
21270 to authenticate to the server using the supplied username.
21271 An example might be:
21274 <CENTER><SAMP>/user=katie</SAMP></CENTER>
21277 </DD>
21279 <DT>STARTTLS</DT>
21280 <DD>
21281 This is a unary parameter indicating communication with the server must 
21282 take place over a TLS connection. If you use this parameter, Alpine will 
21283 establish an insecure connection to the server, and later will attempts to 
21284 use a secure encrypted connection. If the attempt to use TLS fails then 
21285 this parameter will cause the connection to fail instead of falling back 
21286 to an insecure connection.
21288 Use this option when you are told to use STARTTLS. If you are told to use 
21289 SSL or TLS on port 993, use the /ssl unary parameter instead, and not this 
21290 parameter. Use this parameter when establishing a connection to a server 
21291 on an insecure port (normally port 143 for IMAP) and then needing to 
21292 establish a secure connection using STARTTLS.
21294 <P><A href="h_security_considerations">Learn more</A> about security 
21295 considerations when you use this option.
21298 <CENTER><SAMP>/starttls</SAMP></CENTER>
21301 </DD>
21303 <DT>SSL</DT>
21304 <DD>
21305 This is a unary parameter indicating communication with the server should 
21306 take place over a Secure Socket Layer connection.  The server must support
21307 this method, and be prepared to accept connections on the appropriate
21308 port (993 by default).
21309 Alpine must be linked with an SSL library for this option to be operational.
21310 Using this option will make Alpine try to connect to the server using the
21311 most secure encrypted SSL connection that both your version of Alpine and the
21312 server support.
21315 <CENTER><SAMP>/ssl</SAMP></CENTER>
21318 </DD>
21320 <DT>TLS1</DT>
21321 <DD>
21322 This parameter indicates that the connection to the server will be made
21323 over the SSL port, but using the TLSv1 protocol, instead of the usual
21324 SSLv3 or SSLv2 protocols.
21325 Alpine must be linked with an SSL library for this option to be operational.
21328 <CENTER><SAMP>/tls1</SAMP></CENTER>
21330 </DD>
21332 <DT>TLS1_1</DT>
21333 <DD>
21334 This parameter indicates that the connection to the server will be made
21335 over the SSL port, but using the TLSv1.1 protocol.
21336 Alpine must be linked with an SSL library that supports this encryption
21337 protocol for this option to be operational.
21340 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
21342 </DD>
21344 <DT>TLS1_2</DT>
21345 <DD>
21346 This parameter indicates that the connection to the server will be made
21347 over the SSL port, but using the TLSv1.2 protocol.
21348 Alpine must be linked with an SSL library that supports this encryption
21349 protocol for this option to be operational.
21352 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
21354 </DD>
21356 <DT>TLS1_3</DT>
21357 <DD>
21358 This parameter indicates that the connection to the server will be made
21359 over the SSL port, but using the TLSv1.3 protocol.
21360 Alpine must be linked with an SSL library that supports this encryption
21361 protocol for this option to be operational.
21364 <CENTER><SAMP>/tls1_3</SAMP></CENTER>
21366 </DD>
21368 <DT>NoValidate-Cert</DT>
21369 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
21370 This is needed if the server uses self-signed certificates or if Alpine
21371 cannot validate the certificate for some other known reason. You should avoid
21372 using this option, and instead install the certificate of the server, so you
21373 are not a victim of a cracker-in-the-middle attack.
21375 </DD>
21377 <DT>Anonymous</DT>
21378 <DD>This is a unary parameter (that means it does not have a value)
21379 indicating that the connection be logged in as
21380 &quot;anonymous&quot; rather than a specific user.
21381 Not all servers offer anonymous
21382 access; those which do generally only offer read-only access to certain
21383 &quot;public&quot; folders.
21386 <CENTER><SAMP>/anonymous</SAMP></CENTER>
21389 </DD>
21391 <DT>Secure</DT>
21392 <DD>This is a unary parameter indicating that the connection use the
21393 most secure authentication method mutually supported by Alpine and the
21394 server.
21395 Alpine is capable of authenticating connections to 
21396 the server using several methods.
21397 By default, Alpine will attempt each
21398 method until either a connection is established or the
21399 list of methods is exhausted.
21400 This parameter causes Alpine to instead fail 
21401 the connection if the first (generally most &quot;secure&quot;) method fails.
21404 <CENTER><SAMP>/secure</SAMP></CENTER>
21407 </DD>
21409 <DT>Submit</DT>
21410 <DD>This is a unary parameter for use with the
21411 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
21412 It indicates that the connection should be made to the Submit server
21413 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
21414 (port 587) instead of the SMTP port (25).
21415 At the time this help was written the submit option was equivalent to
21416 specifying port 587. <A href="h_security_considerations">Learn more</A>
21417 about security considerations when you use this option.
21420 <CENTER><SAMP>/submit</SAMP></CENTER>
21424 <CENTER><SAMP>host:587</SAMP></CENTER>
21427 </DD>
21429 <DT>Debug</DT>
21430 <DD>This is a unary parameter indicating that the connection be established
21431 in a verbose mode.  Basically, it causes Alpine to log the communication with
21432 the server in Alpine's debug file.
21433 Normally, the pine -d command-line flag would be used instead.
21435 </DD>
21437 <DT>NoRsh</DT>
21438 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
21439 the UNIX remote shell program.
21440 Including &quot;NoRsh&quot; will cause connections to this server to skip
21441 the &quot;rsh&quot; attempt.
21442 This might be useful to avoid long timeouts caused by rsh firewalls, for
21443 example.
21445 </DD>
21447 <DT>Loser</DT>
21448 <DD>This option makes sense only for IMAP servers that do not perform
21449 a SEARCH command correctly. If your filtering rules
21450 fail to filter some messages, that should have been filtered, then this
21451 option will make Alpine download all data necessary data to perform that 
21452 search. There is a performance penalty when using this option. Downloading 
21453 the data to perform the search will take longer than requesting the IMAP
21454 server to perform the filtering, but the filtering will be done correctly.
21456 </DD>
21459 <DT>Service</DT>
21460 <DD>This parameter requires an associated value.  The default value is
21461 &quot;IMAP&quot; which indicates communication with the server based
21462 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
21463 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
21465 Other service values include:
21466  <DL>
21467  <DT>NNTP</DT>
21468  <DD>This value indicates communication with the server takes place via
21469 the Network News Transfer Protocol.  Use this to define a collection
21470 of newsgroups on a remote news server.  So
21473 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
21475 or just
21477 <CENTER><SAMP>/NNTP</SAMP></CENTER>
21480 is the way to specify NNTP access.
21482  </DD>
21484  <DT>POP3</DT>
21485  <DD>This value indicates communication with the server takes place via the
21486 Post Office Protocol 3 protocol.
21489 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
21491 or just
21493 <CENTER><SAMP>/POP3</SAMP></CENTER>
21496 Note that there are several important issues
21497 to consider when selecting this option:
21498 <OL>
21499  <LI> POP3 provides access to only your INBOX.  In other words,
21500 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
21501  <LI> Alpine's implementation of POP3 does not follow the traditional POP
21502 model and will leave your mail on the server. Refer to the
21503 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
21504  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
21505 </OL>
21506 </DD>
21507 </DL>
21508 </DL>
21511 Note that it is possible to include more than one parameter in a server
21512 specification by concatenating the parameters. For example:
21515 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
21519 &lt;End of help on this topic&gt;
21520 </BODY>
21521 </HTML>
21522 ======= h_security_considerations =======
21523 <HTML>
21524 <HEAD>
21525 <TITLE>SSL, TLS, STARTTLS and More Security Considerations</TITLE>
21526 </HEAD>
21527 <BODY>
21528 <H1>SSL, TLS, STARTTLS and More Security Considerations</H1>
21530 The purpose of this text is to educate users on how to best choose
21531 the type of security connection to a remote server using the SSL and TLS
21532 encryption protocols.
21535 In the past, and when Alpine originally started to support encrypted connections
21536 to remote servers, the /ssl modifier was needed, and it meant any of the SSLv2
21537 or SSLv3 protocols. Those encryption protocols are considered not fully secure
21538 anymore, and in fact, you might not be able to use them anymore.
21540 <P> Today the /ssl modifier means to use the most secure encryption 
21541 protocol between your version of Alpine and what the server supports. This 
21542 might mean more modern protocols, such as TLS 1.0, TLS 1.1, etc. As of 
21543 this writing, Alpine supports connection using TLS 1.3. These protocols
21544 are considered more secure today and they should be preferred over the old
21545 SSL protocols.
21547 <P> A source of confusion for Alpine users might be the meaning of the 
21548 modifier /tls with respect to the names of the encryption protocols, such 
21549 as TLS 1.2. The meaning of /tls is to start an encrypted connection to a 
21550 server after an insecure connection has been established, and we will 
21551 discuss this later in this help text. The preferred way flag is to use
21552 /starttls, instead of /tls.
21554 <P>The best way to start an encrypted connection to a server is to use the 
21555 /ssl modifier. If your provider allows encrypted connections on port 993 
21556 for IMAP, or port 995 for POP3, or in port 465 for SMTP, just define your 
21557 server by adding the /ssl modifier and do not add the port to the server. 
21558 Alpine knows that the secure connection will be done in the correct port, 
21559 and will use the most secure encryption available between Alpine and the 
21560 server. You only need to use the port number when it is different from the
21561 default port numbers for this type of connections, and those were given
21562 above.
21564 <P>Most email service providers identify secure connections by saying 
21565 &quot;SSL or TLS&quot;. In this case, use the /ssl modifier, and only use 
21566 the port number in case it is different to the ones above.
21568 <P>If your service provider says to use STARTTLS, then you need to use the 
21569 /starttls modifier. If your service provider gives you the option to use SSL or 
21570 TLS and to use STARTTLS choose the secure port and choose the /ssl 
21571 modifier. This is because connections using the /starttls modifier can be 
21572 attacked and your username and password can be stolen by a hacker. The next
21573 paragraph describes in short how to do this.
21575 <P> When you use the /starttls modifier, Alpine connects insecurely to the 
21576 remote server. Because the connection is insecure, it is possible that you 
21577 connect to a different server, which connects you to the real server. This 
21578 is called &quot;man-in-the-middle&quot; attack, and so your communication 
21579 will pass through the hackers computer before it reaches the real target. 
21580 An example of a possible man-in-the-middle is your internet service provider, 
21581 or your employer in some instances.
21582 This means that the hacker can modify the replies from the correct server 
21583 and give you the illusion of security before you are actually connected to 
21584 the secure server. Therefore, you might disclose your username and 
21585 password to the hacker before you establish a secure connection to the correct
21586 server.
21588 <P> Therefore, if possible avoid using STARTTLS (for IMAP and POP) or SUBMIT
21589 for SMTP (in port 587), as these are subject to attack. If possible
21590 ask your provider for secure connections for SSL or TLS in the secure ports
21591 993 for IMAP, 995 for POP or 465 for SMTP.
21593 <P> In the current state, even as of TLS 1.3, these protocols are considered 
21594 secure but they do not protect your privacy. For example your internet 
21595 service provider might track to which servers you are connecting securely. 
21596 Encryption protocols are evolving to not only protect the security of your 
21597 data, but also your privacy.
21599 <P> Other types of errors can lead to insecure connections. An example is
21600 when the name of the server as provided by the user does not match the
21601 name of the server in the certificate. 
21602 <A href="h_tls_validation_failure">Read more</A> about security errors
21603 of this type and learn how to protect yourself against this type of
21604 errors.
21607 &lt;End of help on this topic&gt;
21608 </BODY>
21609 </HTML>
21610 ======= h_composer_cntxt_server =======
21611 <HTML>
21612 <HEAD>
21613 <TITLE>Collection Server: Explained</TITLE>
21614 </HEAD>
21615 <BODY>
21616 <H1>Collection Edit Help -- Server Field</H1>
21618 This collection's &quot;Server:&quot; definition indicates the
21619 hostname of the server providing access to the folders in this
21620 collection.
21621 The syntax of this server name is the same as for other server names used
21622 in remote folder names in
21623 Alpine and is described
21624 <A HREF="h_folder_server_syntax">here</A>.
21627 &lt;End of help on this topic&gt;
21628 </BODY>
21629 </HTML>
21630 ======= h_composer_cntxt_path =======
21631 <HTML>
21632 <HEAD>
21633 <TITLE>Collection Path: Explained</TITLE>
21634 </HEAD>
21635 <BODY>
21636 <H1>Collection Edit Help -- Path Field</H1>
21638 The collection's &quot;Path:&quot; definition indicates the location
21639 of the folders in this collection.  If the path or any of its components
21640 do not exist, Alpine will prompt you for their creation when exiting the
21641 Add/Change screen.
21643 <P> 
21644 By default the path is interpreted as defining a section of your personal
21645 folder area.  This area and how you specify it are defined by the
21646 server, if one is specified in the collection, or, typically, the home
21647 directory if no server is defined.
21650 To define a collection outside the default &quot;area&quot;, prefix
21651 the path with the &quot;namespace&quot; to use when interpreting the
21652 given path.  If a namespace is specified, the Path begins with the
21653 sharp, &quot;#&quot;, character followed by the name of the namespace
21654 and then the namespace's path-element-delimiter.  Aside from the
21655 path's format, namespaces can also imply access rights, content
21656 policy, audience, location, and, occasionally, access methods.
21659 Each server exports its own set (possibly of size one) of 
21660 namespaces.  Hence, it's likely communication with your server's
21661 administrator will be required for specific configurations.  Some of
21662 the more common namespaces, however, include:
21664 <DL>
21665 <DT>#news.</DT>
21666 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
21667 names are hierarchically defined with each level delimited by a period.
21668 </DD>
21669 <DT>#public/</DT>
21670 <DD>This specifies a folder area that the server may export to the general
21671 public.
21672 </DD>
21673 <DT>#shared/</DT>
21674 <DD>This specifies a folder area that the folder may export to groups
21675 of users.
21676 </DD>
21677 <DT>#ftp/</DT>
21678 <DD>This specifies a folder area that is the same as that it may have 
21679 exported via the &quot;File Transfer Protocol&quot;.
21680 </DD>
21681 <DT>#mh/</DT>
21682 <DD>This specifies the personal folder area associated with folders
21683 and directories that were created using the MH message handling system.
21684 </DD>
21685 </DL>
21688 In addition, the server may support access to other user's folders,
21689 provided you have suitable permissions.  Common methods use a prefix
21690 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
21691 indicate the root of the other user's folder area.
21694 No, nothing's simple.
21697 &lt;End of help on this topic&gt;
21698 </BODY>
21699 </HTML>
21700 ======= h_composer_cntxt_view =======
21701 <HTML>
21702 <HEAD>
21703 <TITLE>Collection View: Explained</TITLE>
21704 </HEAD>
21705 <BODY>
21706 <H1>Collection Edit Help -- View Field</H1>
21708 The collection's &quot;View:&quot; definition provides a way to limit
21709 the displayed list of folders within a collection.  By default, only
21710 folders that contain the specified characters anywhere in their name
21711 are shown in the collection's folder list.
21714 Additionally, you can use a wildcard character to better control
21715 the list of folders selected for display.  The wildcard specifier is
21716 the star, &quot;*&quot;, character.
21719 So, for example, to define a collection of all folders ending with
21720 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
21721 quote characters!).  Or, similarly, to define a collection of folders
21722 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
21723 specify a view of &quot;a*z&quot;.
21726 &lt;End of help on this topic&gt;
21727 </BODY>
21728 </HTML>
21729 ======= h_composer_abook_add_server =======
21730 <HTML>
21731 <HEAD>
21732 <TITLE>Addressbook Server Name Field Explained</TITLE>
21733 </HEAD>
21734 <BODY>
21735 This field should be left blank if the address book is stored in a regular
21736 file on this system.  If it is a remote address book stored on an IMAP
21737 server then this is the name of that IMAP server.
21739 Look <A HREF="h_edit_nav_cmds">here</A>
21740 to see the available Editing and Navigation commands.
21742 &lt;End of help on this topic&gt;
21743 </BODY>
21744 </HTML>
21745 ======= h_composer_abook_add_folder =======
21746 <HTML>
21747 <HEAD>
21748 <TITLE>Addressbook Folder Name Field Explained</TITLE>
21749 </HEAD>
21750 <BODY>
21751 For a remote address book (one for which the Server Name is filled in)
21752 this is the name of a folder on the remote server. The address book data
21753 will be stored in this folder. This folder should be used only for
21754 storing this single address book, not for other address books or for
21755 other messages.
21757 For a local address book (one for which the Server Name is not filled in)
21758 this is the name of a file in which the address book will be stored.
21759 The file is in the same directory as the Alpine configuration file if the
21760 configuration file is local.
21761 If the configuration file is remote, then this will be in the home directory
21762 for Unix Alpine and in the directory specified by the
21763 &quot;-aux local_directory&quot; command line argument.
21765 Look <A HREF="h_edit_nav_cmds">here</A>
21766 to see the available Editing and Navigation commands.
21768 &lt;End of help on this topic&gt;
21769 </BODY>
21770 </HTML>
21771 ======= h_composer_abook_add_nick =======
21772 <HTML>
21773 <HEAD>
21774 <TITLE>Addressbook NickName Field Explained</TITLE>
21775 </HEAD>
21776 <BODY>
21777 This is just an optional nickname for this address book. If present, it
21778 is used in some of the displays and error messages in the address book
21779 maintenance screens. It is for your convenience only and serves no
21780 other purpose.
21782 Look <A HREF="h_edit_nav_cmds">here</A>
21783 to see the available Editing and Navigation commands.
21785 &lt;End of help on this topic&gt;
21786 </BODY>
21787 </HTML>
21788 ======= h_composer_qserv_cn =======
21789 <HTML>
21790 <HEAD>
21791 <TITLE>Directory Query Form Explained</TITLE>
21792 </HEAD>
21793 <BODY>
21795 Fill in as many of these fields as you wish to narrow down your
21796 search. All the fields you fill in must match in order for an entry
21797 to be returned. You may use the wildcard character &quot;*&quot; in
21798 any of the fields, it matches any zero or more characters at that
21799 point in the string. There are no implicit wildcards, so the match is
21800 exact unless you include wildcards.
21803 Note that if an attribute isn't present at all, then the match will fail.
21804 For example, if a server doesn't support the Locality attribute, then no
21805 matter what you put in the Locality field (other than leaving it empty)
21806 the search will fail.
21809 This field, the Common Name field, is typically a person's full name.
21812 <H1>EDITING and NAVIGATION COMMANDS</H1>
21813 <!--chtml if pinemode="function_key"-->
21814 <PRE>
21815 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21816 ^B (Left Arrow)    Back character       | ^D       Delete current character
21817 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21818 ^P (Up Arrow)      Previous line        |
21819 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21820 ^A                 Beginning of line    |            delete current line
21821 ^E                 End of line          | F10      Undelete line(s)
21822 F7                 Previous page        |
21823 F8                 Next page            |-------------------------------------
21824 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21825 ----------------------------------------|
21826 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21827 F2   Cancel      |   F1    Get help     |
21828 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21829 </PRE>
21830 <!--chtml else-->
21831 <PRE>
21832 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21833 ^B (Left Arrow)    Back character       | ^D       Delete current character
21834 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21835 ^P (Up Arrow)      Previous line        |
21836 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21837 ^A                 Beginning of line    |            delete current line
21838 ^E                 End of line          | ^U       Undelete line(s)
21839 ^Y                 Previous page        |
21840 ^V                 Next page            |-------------------------------------
21841 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21842 ----------------------------------------|
21843 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21844 ^C   Cancel      |   ^G    Get help     |
21845 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21846 </PRE>
21847 <!--chtml endif-->
21848 <P><UL>
21849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21850 </UL><P>
21851 &lt;End of help on this topic&gt;
21852 </BODY>
21853 </HTML>
21854 ======= h_composer_qserv_sn =======
21856 The Surname is usually the family name of a person.
21858 <End of help on this topic>
21859 ======= h_composer_qserv_gn =======
21861 This is the part of a person's name that isn't the surname or initials.
21863 <End of help on this topic>
21864 ======= h_composer_qserv_mail =======
21866 This is the email address of a person.
21868 <End of help on this topic>
21869 ======= h_composer_qserv_org =======
21871 This is the organization a person belongs to.
21873 <End of help on this topic>
21874 ======= h_composer_qserv_unit =======
21876 This is the organizational unit a person belongs to.
21878 <End of help on this topic>
21879 ======= h_composer_qserv_country =======
21881 This is the country a person belongs to.
21883 <End of help on this topic>
21884 ======= h_composer_qserv_state =======
21886 This is the state a person belongs to.
21888 <End of help on this topic>
21889 ======= h_composer_qserv_locality =======
21891 This is the locality a person belongs to.
21893 <End of help on this topic>
21894 ======= h_composer_qserv_custom =======
21896 This one is for advanced users only! If you put something in this field,
21897 then the rest of the fields are ignored.
21899 This field may be set to the string representation of an LDAP search
21900 filter (see RFC1960). Here are some examples:
21902 To search for an entry with a surname equal to "clinton" you could set
21903 the custom filter to:
21905      (sn=clinton)
21906     
21907 This is equivalent to putting "clinton" in the SurName field.
21908 To search for an entry that has a surname that begins with "clint" and
21909 has a givenname equal to "william" you could use:
21911      (&(sn=clint*)(givenname=william))
21912     
21913 This is equivalent to setting the SurName field to "clint*" and the
21914 GivenName field to "william".
21915 To search for an entry where either the common name OR the email address
21916 contains "abcde" you could use:
21918      (|(cn=*abcde*)(mail=*abcde*))
21920 That isn't equivalent to anything you can do by setting the other fields
21921 because of the OR.
21923 <End of help on this topic>
21924 ======= h_composer_qserv_qq =======
21926 This one is a little different from the rest of the categories.  It causes
21927 a search to be formed from the configured search filter that you filled
21928 in when you added the directory server to your configuration. It can also
21929 be combined with the other fields if you'd like.
21931 <End of help on this topic>
21932 ======= h_address_format =======
21933 <HTML>
21934 <HEAD>
21935 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21936 </HEAD>
21937 <BODY>
21938 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21940 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21941 and then a domain, with no spaces.  
21942 For example, jsmith@art.example.com might be the email address
21943 of a person  
21944 with the username &quot;jsmith&quot; who has an account in the domain
21945 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21946 right of the &quot;@&quot; sign can vary - a shorter example would be 
21947 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21948 organization's domain is specified after the &quot;@&quot; sign); a longer 
21949 example would be 
21950  jsingh@shakti.edutech.example.com
21951 (here, the name of the host &quot;shakti&quot; in the domain 
21952 edutech.example.com is also specified).  
21953 <P>  
21954 If you do not know the exact email address of someone you want to write 
21955 to, ask them what it is using other means of communication than email; or 
21956 use the tools for 
21957 finding people's addresses that are available on the Internet.
21959 If you are sending to someone on the same system as you are, you can leave
21960 the &quot;@&quot; sign and all the information to its right off of the 
21961 address, and Alpine will fill it in automatically, 
21962 unless the feature 
21963 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21966 When an email address you send a message to is not reachable -- either because 
21967 it is simply an incorrect address, or because email can temporarily not be 
21968 delivered to it due to a technical problem on the way to or at the recipient's 
21969 end -- you will almost always get an error notification email message back.
21971 If you encounter problems with, or have questions about, email delivery or
21972 email address syntax, contact your local network computing consultants.
21973 <P><UL>
21974 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21975 </UL>
21977 &lt;End of help on this topic&gt;
21978 </BODY>
21979 </HTML>
21980 ======= h_flag_user_flag =======
21981 <HTML>
21982 <HEAD>
21983 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21984 </HEAD>
21985 <BODY>
21986 <H1>STATUS FLAG: User Defined Keyword</h1>
21988 This is a keyword that is defined for this folder.
21989 It was most likely defined by the owner of the folder.
21990 Alpine will not set or clear this flag on its own.
21992 <P><UL>
21993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21994 </UL><P>
21995 &lt;End of help on this topic&gt;
21996 </BODY>
21997 </HTML>
21998 ======= h_flag_important =======
21999 <html>
22000 <title>STATUS FLAG: Important</title>
22001 <body>
22002 <h1>STATUS FLAG: Important</h1>
22005 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
22006 MESSAGE&nbsp;INDEX
22007 screen, can only be set by the user, and is intended to be used in
22008 whatever fashion makes sense to you.  You are the only one that can set or
22009 clear it. 
22012 &lt;End of help on this topic&gt;
22013 </BODY>
22014 </HTML>
22015 ======= h_flag_new =======
22016 <html>
22017 <title>STATUS FLAG: New</title>
22018 <body>
22019 <h1>STATUS FLAG: New</h1>
22022 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
22023 MESSAGE&nbsp;INDEX screen,
22024 is automatically set when messages are delivered to your Inbox (or other
22025 folder specified outside of Alpine).  Likewise, it is cleared automatically
22026 the first time you read the message it is associated with.
22029 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
22030 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
22031 you'd like to be reminded of it next time you read mail.  This can be done
22032 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
22036 &lt;End of help on this topic&gt;
22037 </BODY>
22038 </HTML>
22039 ======= h_flag_answered =======
22040 <html>
22041 <title>STATUS FLAG: Answered</title>
22042 <body>
22043 <h1>STATUS FLAG: Answered</h1>
22045 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
22046 MESSAGE&nbsp;INDEX
22047 screen, is automatically set when you reply to a message.  This flag is not
22048 automatically cleared.
22051 &lt;End of help on this topic&gt;
22052 </BODY>
22053 </HTML>
22054 ======= h_flag_forwarded =======
22055 <html>
22056 <title>STATUS FLAG: Forwarded</title>
22057 <body>
22058 <h1>STATUS FLAG: Forwarded</h1>
22060 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
22061 MESSAGE&nbsp;INDEX
22062 screen, is automatically set when you forward a message.  This flag is not
22063 automatically cleared.
22066 &lt;End of help on this topic&gt;
22067 </BODY>
22068 </HTML>
22069 ======= h_flag_deleted =======
22070 <html>
22071 <title>STATUS FLAG: Deleted</title>
22072 <body>
22073 <h1>STATUS FLAG: Deleted</h1>
22075 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
22076 MESSAGE&nbsp;INDEX
22077 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
22078 It is cleared
22079 when you use the &quot;U&nbsp;Undelete&quot; command.
22082 Messages marked with this flag will be permanently removed from
22083 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
22084 command, or
22085 when you indicate acceptance of their removal upon leaving the folder.
22088 Note, there can be other actions implicit in the
22089 &quot;D&nbsp;Delete&quot; command,
22090 such as advancing to the next message, that may be momentarily undesirable.
22091 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
22092 flag <A HREF="h_common_flag">explicitly</A>.
22095 &lt;End of help on this topic&gt;
22096 </BODY>
22097 </HTML>
22098 ====== h_config_incoming_timeo ======
22099 <HTML>
22100 <HEAD>
22101 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
22102 </HEAD>
22103 <BODY>
22104 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
22106 This option has no effect unless the feature
22107 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
22108 is set, which in turn has no effect unless
22109 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
22110 is set.
22112 Sets the time in seconds that Alpine will
22113 attempt to open a network connection used for monitoring for Unseen
22114 messages in Incoming Folders. The default is 5.
22115 If a connection has not completed within this many seconds Alpine will
22116 give up and consider it a failed connection.
22118 <UL>   
22119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22120 </UL><P>
22121 &lt;End of help on this topic&gt;
22122 </BODY>
22123 </HTML>
22124 ====== h_config_incoming_interv ======
22125 <HTML>
22126 <HEAD>
22127 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
22128 </HEAD>
22129 <BODY>
22130 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
22132 This option has no effect unless the feature
22133 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
22134 is set, which in turn has no effect unless
22135 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
22136 is set.
22138 This option specifies, in seconds, how often Alpine will check
22139 for new mail and state changes in Incoming Folders when Incoming Folders
22140 Checking is turned on.
22141 The default is 3 minutes (180).
22142 This value applies only to folders that are local to the system that
22143 Alpine is running on or that are accessed using the IMAP protocol.
22144 The similar option
22145 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
22146 applies to all other monitored folders.
22148 <UL>   
22149 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22150 </UL><P>
22151 &lt;End of help on this topic&gt;
22152 </BODY>
22153 </HTML>
22154 ====== h_config_incoming_second_interv ======
22155 <HTML>
22156 <HEAD>
22157 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
22158 </HEAD>
22159 <BODY>
22160 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
22162 This option has no effect unless the feature
22163 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
22164 is set, which in turn has no effect unless
22165 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
22166 is set.
22168 This option together with the option
22169 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
22170 specifies, in seconds, how often Alpine will check
22171 for new mail and state changes in Incoming Folders when Incoming Folders
22172 Checking is turned on.
22173 The default for this option is 3 minutes (180).
22174 For folders that are local to this system or
22175 that are accessed using the IMAP protocol
22176 the value of the option
22177 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
22178 is used.
22179 For all other monitored folders, the value of this option is used.
22181 The reason there are two separate options is because it is usually
22182 less expensive to check local and IMAP folders than it is to check
22183 other types, like POP or NNTP folders.
22184 You may want to set this secondary value to a higher number than
22185 the primary check interval.
22187 <UL>   
22188 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22189 </UL><P>
22190 &lt;End of help on this topic&gt;
22191 </BODY>
22192 </HTML>
22193 ====== h_config_incoming_list ======
22194 <HTML>
22195 <HEAD>
22196 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
22197 </HEAD>
22198 <BODY>
22199 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
22201 This option has no effect unless the feature
22202 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
22203 is set, which in turn has no effect unless
22204 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
22205 is set.
22207 When monitoring the Incoming Message Folders for Unseen messages Alpine will
22208 normally monitor all Incoming Folders.
22209 You may use this option to restrict the list of monitored folders to a
22210 subset of all Incoming Folders.
22212 <UL>   
22213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22214 </UL><P>
22215 &lt;End of help on this topic&gt;
22216 </BODY>
22217 </HTML>
22218 ====== h_config_pers_name ======
22219 <HTML>
22220 <HEAD>
22221 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
22222 </HEAD>
22223 <BODY>
22224 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
22226 This value is used to determine the full name part of the "From" address
22227 on messages you send.
22228 <!--chtml if pinemode="os_windows"-->
22229  PC-Alpine requires that this be set in order to properly construct the "From" address.
22230 <!--chtml else-->
22231  If unset, Unix Alpine will obtain your full name from
22232  the system password file. PC-Alpine, on the other hand, requires that this be set.
22233 <!--chtml endif-->
22235 If you want to change the value of what gets included in the From header
22236 in messages you send (other than just the Personal Name)
22237 look <A HREF="h_config_change_your_from">here</A> for a description.
22238 <P><UL>
22239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22240 </UL><P>
22241 &lt;End of help on this topic&gt;
22242 </BODY>
22243 </HTML>
22244 ====== h_config_pruned_folders ======
22245 <html>
22246 <header>
22247 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
22248 </header>
22249 <body>
22250 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
22252 This variable allows you to define a list of one or more folders that
22253 Alpine will offer to prune for you in the same way it automatically offers
22254 to prune your "sent-mail" folder each month.
22255 Each folder in this list must be a folder in your default folder collection
22256 (the first folder collection if you have more than one), and it is just
22257 the relative name of the folder in the collection, not the fully-qualified name.
22258 It is similar to sent-mail.
22259 Instead of something like
22261 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
22263 the correct value to use would be
22265 <CENTER><SAMP>folder</SAMP></CENTER>
22267 There is an assumption here that your first collection is the folders in
22269 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
22272 Once a month, for each folder listed, Alpine will offer to move
22273 the contents of the folder to a new folder of the same name but with
22274 the previous month's date appended.  Alpine will then look for any such
22275 date-appended folder names created for a previous month, and offer each
22276 one it finds for deletion.
22279 If you decline the first offer, no mail is moved and no new folder is
22280 created.
22283 The new folders will be created
22284 in your default folder collection.
22287 <UL>   
22288 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22289 </UL><P>
22290 &lt;End of help on this topic&gt;
22291 </body>
22292 </html>
22293 ====== h_config_upload_cmd ======
22294 <HTML>
22295 <HEAD>
22296 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
22297 </HEAD>
22298 <BODY>
22299 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
22301 This option affects the behavior of the Composer's &quot;Read File&quot; 
22302 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
22303 commands.  It specifies
22304 a Unix program name, and any necessary command line arguments, that Alpine can
22305 use to transfer files from your personal computer into messages that you are
22306 composing.<P>
22308 <B>Note:</B> this facility is intended for use with serial line transfer 
22309 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
22310 to work with TCP/IP file transfer programs such as ftp.<P>
22312 If a program is specified, the commands listed above are modified to offer a
22313 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
22314 specified here must match the transfer program or protocol available on the
22315 personal computer.<P>
22317 Alpine expects to exchange uploaded data via a file on your Unix system.  When
22318 the specified upload program finishes, Alpine expects the uploaded data to be
22319 contained in this file.<P>
22321 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
22322 generates a
22323 temporary file name that it will pass to the specified Unix program.  Alpine
22324 will read the resulting uploaded text from this file and then delete it when
22325 the upload command is finished.<P>
22327 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
22328 prompt
22329 you for the name of the file that is to contain the uploaded information that
22330 it is to attach.  Alpine will attach this file to the composition, but will
22331 <B>not</B> delete this file after the upload command is finished.<P>
22333 The special token &quot;_FILE_&quot; may be included among the Unix program's 
22334 command
22335 line arguments.  Alpine will replace this symbol with the name of the file
22336 being used to exchange the uploaded information.  This token allows you to
22337 position the file name where it is required in the Unix program's command
22338 line arguments.<P>
22340 If the &quot;_FILE_&quot; token is not present in the specified command, the
22341 temporary file's name is automatically appended to the specified Unix
22342 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
22343 <B>last</B> command line argument.
22344 <P><UL>
22345 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22346 </UL><P>
22347 &lt;End of help on this topic&gt;
22348 </BODY>
22349 </HTML>
22350 ====== h_config_upload_prefix ======
22351 <HTML>
22352 <HEAD>
22353 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
22354 </HEAD>
22355 <BODY>
22356 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
22358 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
22359 It defines text to be written to the terminal emulator (via standard output)
22360 immediately prior to starting upload command.  This is useful for
22361 integrated serial line file transfer agents that permit command passing
22362 (e.g., Kermit's APC method).<P>
22364 The special token &quot;_FILE_&quot; may be included in the string specification.
22365 That symbol will be replaced with the (Alpine-created) name of the temporary
22366 file in which Alpine will expect to find the uploaded file.
22367 <P><UL>
22368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22369 </UL><P>
22370 &lt;End of help on this topic&gt;
22371 </BODY>
22372 </HTML>
22373 ====== h_config_download_cmd ======
22374 <HTML>
22375 <HEAD>
22376 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
22377 </HEAD>
22378 <BODY>
22379 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
22381 This option affects the behavior of the Export command.  It specifies a Unix
22382 program name, and any necessary command line arguments, that Alpine can use to
22383 transfer the exported message to your personal computer's disk.<P>
22384 Note: this facility is intended for use with serial line transfer 
22385 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
22386 to work with TCP/IP file transfer programs such as ftp.<P>
22387 If a program is specified, the Export command is modified to offer a
22388 subcommand (^V) to activate the transfer (in lieu of saving it to
22389  the machine where Alpine is running).  Obviously, the Unix program
22390 specified here must match the transfer program or protocol available on the
22391 personal computer.<P>
22393 When this subcommand is selected and before Alpine invokes the specified Unix
22394 program, Alpine will create a temporary file containing the text of the
22395 exported message.  Alpine uses this file to pass the exported message text to
22396 the specified Unix program.<P>
22398 The special token &quot;_FILE_&quot; may be included among the Unix program's command
22399 line arguments.  Alpine will replace this symbol with the temporary file's name
22400 before executing the Unix program.  This token allows you to position the
22401 file name where it is required in the Unix program's command line arguments.
22403 If the &quot;_FILE_&quot; token is not present in the specified command, the
22404 temporary file's name is automatically appended to the specified Unix
22405 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
22406 <B>last</B> command line argument.
22407 <P><UL>
22408 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22409 </UL><P>
22410 &lt;End of help on this topic&gt;
22411 </BODY>
22412 </HTML>
22413 ====== h_config_download_prefix ======
22414 <HTML>
22415 <HEAD>
22416 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
22417 </HEAD>
22418 <BODY>
22419 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
22421 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
22422 It defines text to be written to the terminal emulator (via standard output)
22423 immediately prior to starting the download command.  This is useful for
22424 integrated serial line file transfer agents that permit command passing
22425 (e.g., Kermit's APC method).
22427 The special token &quot;_FILE_&quot; may be included in the string 
22428 specification.
22429 That symbol will be replaced with the (Alpine-created) name of the temporary
22430 file into which Alpine will place the message to be downloaded.
22431 <P><UL>
22432 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22433 </UL><P>
22434 &lt;End of help on this topic&gt;
22435 </BODY>
22436 </HTML>
22437 ====== h_config_mailcap_path ======
22438 <HTML>
22439 <HEAD>
22440 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
22441 </HEAD>
22442 <BODY>
22443 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
22444 This variable is used to replace Alpine's default mailcap file search path.
22445 It takes one or more file names (full paths must be specified) in which to
22446 look for mail capability data.  The default search path can be found in this
22447 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
22448 If there is more than one file name listed, list members should be delimited
22449 by 
22450 <!--chtml if pinemode="os_windows"-->
22451 a semi-colon (;) under Windows; for example:<PRE>
22452         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
22453 </PRE>
22454 <!--chtml else-->
22455 a colon (:) under UNIX; for example:<PRE>
22456         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
22457 </PRE>
22458 <!--chtml endif-->
22459 <P><UL>
22460 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22461 </UL>
22463 &lt;End of help on this topic&gt;
22464 </BODY>
22465 </HTML>
22466 ====== h_config_mimetype_path ======
22467 <HTML>
22468 <HEAD>
22469 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
22470 </HEAD>
22471 <BODY>
22472 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
22474 This variable is used to replace Alpine's default mime.types file search path.
22475 It takes one or more file names (full paths must be specified) in which to
22476 look for file-name-extension to MIME type mapping data.  The default search
22477 path can be found in this
22478 <A HREF="h_news_config">Alpine Configuration</A> help.
22482 If there is more than one file name listed, list members should be delimited
22483 by a colon (:) under UNIX and a semi-colon (;) under Windows.
22485 &lt;End of help on this topic&gt;
22486 </BODY></HTML>
22487 ====== h_config_system_certs_path ======
22488 <HTML>
22489 <HEAD>
22490 <TITLE>OPTION: <!--#echo var="VAR_system-certs-path"--></TITLE>
22491 </HEAD>
22492 <BODY>
22493 <H1>OPTION: <!--#echo var="VAR_system-certs-path"--></H1>
22495 When Alpine is built to support secure connections to remote servers, a directory
22496 must be reserved in the system to store certificates that will be used to validate
22497 remote servers. This is normally configured at the time that Alpine is built, but
22498 there might be circumstances under which a user might want to use a different
22499 directory. For example, the directory might not be accessible, or has not been 
22500 updated and contains old certificates that have expired.
22503 This variable can be used to list
22504 the directory where such certificates can be found. Alpine will use the first
22505 directory in this list that exists in your system and can be accessed. This
22506 allows for users to be able to use the same pinerc file in different systems.
22509 Example of values for this option might be:
22511 <PRE>
22512 System CACerts Dir = /etc/ssl/certs
22513                      /usr/local/ssl/certs
22514                      C:\\libressl\\ssl\\certs
22515 <PRE>
22518 In unix systems, the default location of the certificates for openssl can
22519 be obtained by first executing the command
22521 <PRE>openssl version -d</PRE>
22523 and adding &quot;/certs&quot; to that value. In Windows the default location
22524 for the certificates is C:\\libressl\\ssl\\certs. This value was set by
22525 LibreSSL developers, and this option can be used to override this default.
22528 &lt;End of help on this topic&gt;
22529 </BODY></HTML>
22530 ====== h_config_system_certs_file ======
22531 <HTML>
22532 <HEAD>
22533 <TITLE>OPTION: <!--#echo var="VAR_system-certs-file"--></TITLE>
22534 </HEAD>
22535 <BODY>
22536 <H1>OPTION: <!--#echo var="VAR_system-certs-file"--></H1>
22538 This option sets the location of the container file that holds 
22539 certificate authority (CA) certificates.
22540 Alpine will use the first
22541 container in this list that exists in your system and can be accessed. This
22542 allows for users to be able to use the same pinerc file in different systems.
22545 Example of values for this option might be:
22547 <PRE>
22548 System CACerts File = /etc/ssl/certs/cert.pem
22549                       /usr/local/ssl/ca-root-nss.crt
22550                       C:\\libressl\\ssl\\certs\\cert.pem
22551 <PRE>
22554 In unix systems, the default location of the certificates for openssl can
22555 be obtained by first executing the command
22557 <PRE>openssl version -d</PRE>
22559 and adding &quot;/certs&quot; to that value. In Windows the default location
22560 for the certificates is C:\\libressl\\ssl\\certs\\cert.pem. This value was set 
22561 by LibreSSL developers, and this option can be used to override this default.
22564 &lt;End of help on this topic&gt;
22565 </BODY></HTML>
22566 ====== h_config_user_certs_path ======
22567 <HTML>
22568 <HEAD>
22569 <TITLE>OPTION: <!--#echo var="VAR_user-certs-path"--></TITLE>
22570 </HEAD>
22571 <BODY>
22572 <H1>OPTION: <!--#echo var="VAR_user-certs-path"--></H1>
22574 (UNIX ALPINE ONLY)
22575 This directory is used by Alpine to store certificates that a user
22576 trusts. Alpine will use the first directory in this list that exists in your
22577 system and can be accessed. This allows for users to be able to
22578 use the same pinerc file in different systems. The default location
22579 is ~/.alpine-certs.
22582 In addition to the certificates stored in this directory, Alpine also
22583 trusts certificates saved in the container file referenced in the
22584 configuration variable
22585 <A HREF="h_config_user_certs_file"><!--#echo var="VAR_user-certs-file"--></A>.
22588 Example of values for this option might be:
22590 <PRE>
22591 User Certs Dir = /home/fred/.alpine-certs
22592                  C:\\Users\\Admin\\alpine-certs
22593 <PRE>
22596 &lt;End of help on this topic&gt;
22597 </BODY></HTML>
22598 ====== h_config_user_certs_file ======
22599 <HTML>
22600 <HEAD>
22601 <TITLE>OPTION: <!--#echo var="VAR_user-certs-file"--></TITLE>
22602 </HEAD>
22603 <BODY>
22604 <H1>OPTION: <!--#echo var="VAR_user-certs-file"--></H1>
22606 (UNIX ALPINE ONLY)
22607 This option sets the location of a container file that holds certificate
22608 authority (CA) certificates that the user trusts. Its value is the
22609 full path referencing the location of this file. Alpine will use the first
22610 container in this list that exists and can be accessed in your system. This
22611 allows for users to be able to use the same pinerc file in different
22612 systems. The default location is ~/.alpine-certs/certs.pem.
22615 In addition to the certificates stored in this directory, Alpine also
22616 trusts certificates saved in the directory referenced in the
22617 configuration variable
22618 <A HREF="h_config_user_certs_path"><!--#echo var="VAR_user-certs-path"--></A>.
22621 Example of values for this option might be:
22623 <PRE>
22624 User Certs File = /home/fred/.alpine-certs/certs.pem
22625                   C:\\libressl\\ssl\\certs\\cert.pem
22626 <PRE>
22629 &lt;End of help on this topic&gt;
22630 </BODY></HTML>
22631 ====== h_config_set_att_ansi ======
22632 <HTML><HEAD>
22633 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
22634 </HEAD>
22635 <BODY>
22636 <H1>OPTION: Set printer to attached ansi printer</H1>
22638 Type "S" to set your printer to "attached-to-ansi".<BR>
22639 It is OK to include "attached-to-ansi" in your personal list below.
22641 &lt;End of help on this topic&gt;
22642 </BODY></HTML>
22643 ====== h_config_set_att_ansi2 ======
22644 <HTML><HEAD>
22645 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
22646 </HEAD>
22647 <BODY>
22648 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
22650 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
22651 It is OK to include "attached-to-ansi-no-formfeed" in your personal
22652 list below.
22656 This is the same as the "attached-to-ansi" option except that a
22657 formfeed character will not be appended to the end of the print job.
22658 If your printer already ejects the paper by itself at the end of the
22659 job, you may prefer the "no-formfeed" form of this printer so that you
22660 don't get an extra blank page between print jobs.
22663 &lt;End of help on this topic&gt;
22664 </BODY></HTML>
22665 ====== h_config_set_att_wyse ======
22666 <HTML><HEAD>
22667 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
22668 </HEAD>
22669 <BODY>
22670 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
22672 Type "S" to set your printer to "attached-to-wyse".<BR>
22673 It is OK to include "attached-to-wyse" in your personal list below.
22675 This is very similar to "attached-to-ansi".
22676 The only difference is in the control characters sent to turn the printer
22677 on and off.
22678 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
22679 to turn on the printer and ESC LEFT_BRACKET 4 i
22680 to turn it off.
22681 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
22682 &lt;End of help on this topic&gt;
22683 </BODY></HTML>
22684 ====== h_config_set_att_wyse2 ======
22685 <HTML><HEAD>
22686 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
22687 </HEAD>
22688 <BODY>
22689 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
22691 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
22692 It is OK to include "attached-to-wyse-no-formfeed" in your personal
22693 list below.
22697 This is the same as the "attached-to-wyse" option except that a
22698 formfeed character will not be appended to the end of the print job.
22699 If your printer already ejects the paper by itself at the end of the
22700 job, you may prefer the "no-formfeed" form of this printer so that you
22701 don't get an extra blank page between print jobs.
22704 &lt;End of help on this topic&gt;
22705 </BODY></HTML>
22706 ====== h_config_set_stand_print ======
22707 <HTML>
22708 <HEAD>
22709 <TITLE>OPTION: Set default printer</TITLE>
22710 </HEAD>
22711 <H1>OPTION: Set default printer</H1>
22712 <BODY>
22713 Move to the printer you want and type "S" to set it to be your
22714 default printer.  This list is not modifiable by you and has been
22715 set up by the system administrators.  If there is more than one printer
22716 listed in the Command List, you will be able to cycle through that
22717 whole list at the time you print, starting with your default.
22718 It is OK to include entries from this Standard list in your personal
22719 list below.
22721 &lt;End of help on this topic&gt;
22722 </BODY>
22723 </HTML>
22724 ====== h_config_set_custom_print ======
22725 <HTML>
22726 <HEAD>
22727 <TITLE>OPTION: Set default printer</TITLE>
22728 </HEAD>
22729 <H1>OPTION: Set default printer</H1>
22730 <BODY>
22731 You may add as many print commands as you want to your personal list.
22732 Specify one of them as your default printer by moving to the printer
22733 you want and typing "S".  If there is more than one printer listed
22734 in the Command List, you will be able to cycle through that list at
22735 the time you print, starting with your default.  It is OK to include
22736 entries from the Standard list above or to include the command
22737 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
22738 "attached-to-wyse-no-formfeed" as one of the entries here.
22740 &lt;End of help on this topic&gt;
22741 </BODY>
22742 </HTML>
22743 ====== h_config_user_id =====
22744 <HTML>
22745 <HEAD>
22746 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
22747 </HEAD>
22748 <BODY>
22749 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
22751 This value is used as part of the "From" address on messages you send.
22752 It is also the default login name for remote IMAP server access.  Set this
22753 to the username part you want to appear on outgoing email.
22755 If you want to change the value of what gets included in the From header
22756 in messages you send (other than just the User ID)
22757 look <A HREF="h_config_change_your_from">here</A> for a description.
22759 <P><UL>   
22760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22761 </UL><P>
22762 &lt;End of help on this topic&gt;
22763 </BODY>
22764 </HTML>
22765 ====== h_config_user_dom =====
22766 <HTML>
22767 <HEAD>
22768 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
22769 </HEAD>
22770 <BODY>
22771 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
22773 This value specifies the domain part (right-hand side) of your return
22774 address on outgoing email and is also used as the default domain for email
22775 composed to a local user.
22776 <!--chtml if pinemode="os_windows"-->
22777  This value is required for PC-Alpine. If you are unsure as to what this should be,
22778  contact your local help desk, system administrator, or Internet Service Provider.
22779 <!--chtml else-->
22780  If unset, Unix Alpine will obtain the domain from
22781  the system.  Often this value will be set for your whole site by the
22782  system administrator.<P>
22783 <!--chtml endif-->
22784 If you set this, see also the <A HREF="h_config_quell_local_lookup">
22785 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
22787 If you want to change the value of what gets included in the From header
22788 in messages you send (other than just the User Domain)
22789 look <A HREF="h_config_change_your_from">here</A> for a description.
22790 <P><UL>
22791 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22792 </UL><P>
22793 &lt;End of help on this topic&gt;
22794 </BODY>
22795 </HTML>
22796 ====== h_config_smtp_server =====
22797 <HTML>
22798 <HEAD>
22799 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
22800 </HEAD>
22801 <BODY>
22802 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
22803 This value specifies the name of one or more SMTP 
22804 (Simple Mail Transfer Protocol) servers for sending mail. 
22805 <!--chtml if pinemode="os_windows"-->
22806 You must have an SMTP server for use with PC-Alpine.
22807 SMTP servers are
22808 normally set up by a system administrator for use by all members of a given
22809 campus or department.
22810 Contact your local help desk to ask what SMTP
22811 servers you should use.  
22812 <!--chtml else-->
22813 Unix Alpine users may not need to set an SMTP server.
22814 Alpine will attempt to execute the program (usually sendmail) that is used
22815 to insert mail into the mail system.
22816 If this works for you, you may leave this option blank.
22817 If there is an SMTP server running on the Unix host you may be able to
22818 improve sending performance slightly by setting the SMTP server option
22819 to &quot;localhost&quot; or to the actual name of the Unix host.
22821 If the Unix host doesn't work the way Alpine was expecting you will need to
22822 set the value of this option.
22823 SMTP servers are
22824 normally set up by a system administrator for use by all members of a given
22825 campus or department.
22826 Contact your local help desk to ask what SMTP
22827 servers you should use.  
22828 <!--chtml endif-->
22830 Your SMTP server may offer SMTP AUTH authentication.
22831 It may even require it.
22832 If your SMTP server offers SMTP AUTH authentication you may specify a
22833 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
22834 This parameter requires an associated value,
22835 the username identifier with which to establish the server
22836 connection.
22837 An example might be:
22840 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
22843 If AUTH authentication is offered by the server, this will cause Alpine to
22844 attempt to use it.
22845 If AUTH authentication is not offered by the server, this will cause Alpine
22846 to fail sending with an error similar to:
22849 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
22852 Another type of authentication that is used by some ISPs is called
22853 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
22854 which means that you have to authenticate
22855 yourself to the POP or IMAP server by opening a mailbox before you
22856 can send mail.
22857 To do this, you usually only have to open your INBOX.
22860 You may tell Alpine to use the
22861 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
22862 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
22863 parameter
22864 in this option.
22865 At this time &quot;/submit&quot; is simply equivalent to specifying
22866 port 587, though it may imply more than that at some point in the future.
22867 Some ISPs are blocking port 25 in order to reduce the amount of spam
22868 being sent to their users.
22869 You may find that the submit option allows you to get around such a block.
22872 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
22875 To specify any non-standard port number on the SMTP server you may follow
22876 the hostname with a colon followed by the portnumber.
22879 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
22882 Normally, when a connection is made to the Smtp-Server Alpine will attempt
22883 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
22884 If that fails then a non-encrypted connection will be attempted instead.
22885 You may specify that a TLS connection is required if you wish.
22886 If you append &quot;/starttls&quot; to the name then the connection will fail
22887 instead of falling back to a non-secure connection.
22890 <CENTER><SAMP>smtpserver.example.com/starttls</SAMP></CENTER>
22894 For more details about server name possibilities see
22895 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22898 <UL>
22899 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22900 </UL>
22902 &lt;End of help on this topic&gt;
22903 </BODY>
22904 </HTML>
22905 ====== h_config_nntp_server =====
22906 <HTML>
22907 <HEAD>
22908 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22909 <BODY>
22910 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22912 This value specifies the name of one or more NNTP
22913 (Network News Transfer Protocol)
22914 servers for reading and posting USENET news.
22915 NNTP servers are normally
22916 set up by a system administrator for use by all members of a given campus
22917 or department.
22918 Contact your local help desk to ask what NNTP servers you should use.  
22919 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22920 Often Unix Alpine users will find that this variable has been
22921 set for the whole system (and they don't have to worry about it).  
22922 <!--chtml endif-->
22923 When you define an NNTP server here, Alpine implicitly defines a news
22924 collection for you, assuming that server as the news server and assuming
22925 that you will use the NNTP protocol and a local newsrc configuration file
22926 for reading news.
22927 For more about reading news with Alpine, see
22928 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22930 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22931 or &quot;AUTHINFO USER&quot; authentication.
22932 It may even require it.
22933 If your NNTP server does offer such authentication you may specify a user name
22934 parameter to cause Alpine to attempt to authenticate.
22935 The same is true for the server name in a folder collection that uses NNTP.
22936 This parameter requires an associated value,
22937 the username identifier with which to establish the server connection.
22938 An example might be:
22941 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22944 If authentication is offered by the server, this will cause Alpine to
22945 attempt to use it.
22946 If authentication is not offered by the server, this will cause Alpine
22947 to fail with an error similar to:
22950 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22952 For more details about the server name possibilities see
22953 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22954 <P><UL>
22955 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22956 </UL><P>
22957 &lt;End of help on this topic&gt;
22958 </BODY>
22959 </HTML>
22960 ====== h_config_inbox_path =====
22961 <HTML>
22962 <HEAD>
22963 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22964 </HEAD>
22965 <BODY>
22966 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22968 This value overrides the default value of your INBOX name/path/location.
22969 <!--chtml if pinemode="os_windows"-->
22970 PC-Alpine users must specify an inbox path and it must be a folder on an
22971 IMAP server.  
22972 <!--chtml else-->
22973 Unix and VMS Alpine users will often find that this variable
22974 has been pre-configured by your system administrator.  
22975 <!--chtml endif-->
22976 You may be able to specify an alternate INBOX that is either a local folder 
22977 or a folder on an IMAP server.
22979 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22980 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22981 mail server.
22983 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22984 details on the syntax of folder definitions.
22986 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22987 mail is disappearing.
22988 <P><UL>
22989 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22990 </UL><P>
22991 &lt;End of help on this topic&gt;
22992 </BODY>
22993 </HTML>
22994 ====== h_config_change_your_from =====
22995 <HTML>
22996 <HEAD>
22997 <TITLE>How to Change your From Address</TITLE>
22998 </HEAD>
22999 <BODY>
23000 <H1>How to Change your From Address</H1>
23002 If the From address that Alpine includes in mail that you send is not correct,
23003 you may want to configure a different default value for the From address.
23004 You may follow these directions to change the default:
23007 <UL>
23008   <LI> Go to the Main Alpine Menu
23009   <LI> From there type the Setup Command
23010   <LI> From there type the Config Command
23011 </UL>
23014 You've probably already seen this SETUP CONFIGURATION screen.
23015 If not, there are many options you may want to set here.
23016 To set the value of the From header you may use the
23017 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
23018 Find it by scrolling down a few pages or use the WhereIs command to
23019 search for &quot;customized&quot;.
23020 You may want to read the help text associated with the option.
23022 To add a custom From header, type the Add command and enter the
23023 full header line, including the leading &quot;From:&nbsp;&quot;.
23024 For example:
23026 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
23028 Now exit the Setup command and try sending mail to yourself to see
23029 what the From line looks like.
23031 When you are in the composer you may edit the custom From line by typing
23032 Ctrl-R while your cursor is in the headers of the message and then moving
23033 to the From line and editing.
23034 If you want to leave the default value the same but add the possibility
23035 of being able to edit the header when you compose, add just the header
23036 name without a value.
23037 For example:
23039 <CENTER><SAMP>From:</SAMP></CENTER>
23041 If you change your From address you may also find it useful to add the
23042 changed From address to the
23043 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
23044 configuration option.
23046 <UL>   
23047 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23048 </UL><P>
23049 &lt;End of help on this topic&gt;
23050 </BODY>
23051 </HTML>
23052 ====== h_config_default_fcc =====
23053 <HTML>
23054 <HEAD>
23055 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
23056 </HEAD>
23057 <BODY>
23058 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
23060 This value specifies where a copy of outgoing mail should be saved.  If
23061 this is not a path name, it will be in the default collection for saves.
23062 Any valid folder specification, local or IMAP, is allowed.  This default
23063 folder carbon copy only applies when the 
23064 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
23065 is set to use the default folder.  
23066 <!--chtml if pinemode="os_windows"-->
23067 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
23068 <!--chtml else-->
23069 Unix Alpine default
23070 is normally &quot;sent-mail&quot; in the default folder collection. 
23071 <!--chtml endif-->
23073 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
23074 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
23075 IMAP server (remember that in order to later access this remote folder through Alpine, it
23076 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
23077 for more information). An example:<p>
23078 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
23080 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
23082 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23083 details on the syntax of folder definitions.
23085 <UL>   
23086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23087 </UL><P>
23088 &lt;End of help on this topic&gt;
23089 </BODY>
23090 </HTML>
23091 ====== h_config_def_save_folder =====
23092 <HTML>
23093 <HEAD>
23094 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
23095 </HEAD>
23096 <BODY>
23097 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
23099 This option determines the default folder name for save-message operations 
23100 (&quot;saves&quot;).
23102 If this is not a path name, it will be in the default collection for saves.
23103 Any valid folder specification, local or IMAP, is allowed.  This default
23104 folder only applies when the
23105 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
23106 doesn't override it.  
23107 <!--chtml if pinemode="os_windows"-->
23108 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
23109 <!--chtml else-->
23110 Unix Alpine default
23111 is normally &quot;saved-messages&quot; in the default folder collection.
23112 <!--chtml endif-->
23113 If you access your email through an IMAP server, especially if you often switch between Unix
23114 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
23115 IMAP server (remember that in order to later access this remote folder through Alpine, it
23116 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
23117 for more information). An example:<p>
23118 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
23120 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23121 details on the syntax of folder definitions.
23123 <UL>   
23124 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23125 </UL><P>
23126 &lt;End of help on this topic&gt;
23127 </BODY>
23128 </HTML>
23129 ====== h_config_postponed_folder =====
23130 <HTML>
23131 <HEAD>
23132 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
23133 </HEAD>
23134 <BODY>
23135 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
23137 This value overrides the default name for the folder where postponed
23138 messages are saved.  If this is not a path name, it will be in the default
23139 collection for message Saves.  Any valid folder specification, local or
23140 remote, is allowed. 
23141 PC-Alpine default
23142 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
23143 The Unix Alpine default is normally &quot;postponed-msgs&quot;
23144 in the default collection. 
23146 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
23147 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
23148 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
23149 in all Alpine copies you use. 
23150 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
23151 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
23152 for more information). An
23153 example:<p> 
23154 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
23156 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23157 details on the syntax of folder definitions.
23159 <UL>   
23160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23161 </UL><P>
23162 &lt;End of help on this topic&gt;
23163 </BODY>
23164 </HTML>
23165 ====== h_config_read_message_folder =====
23166 <HTML>
23167 <HEAD>
23168 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
23169 </HEAD>
23170 <BODY>
23171 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
23173 By virtue of specifying a folder name here, Alpine will be configured to
23174 save all messages that you have read during a session into the designated
23175 &quot;read messages&quot; folder.  This allows you to more easily distinguish
23176 between your really new email (in your INBOX) and those that you have
23177 already read.  Depending on how you define the 
23178 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
23179 setting, you may or may not be asked when you quit
23180 Alpine if you want read messages to be moved to this folder.  In either
23181 case, moving the messages means they will be deleted from your INBOX.
23183 If this is not a path name, it will be in the default collection for
23184 saves.  Any valid folder specification, local or remote (via IMAP), is
23185 allowed.  There is no default for the name of the read message folder.
23187 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23188 details on the syntax of folder definitions.
23190 <UL>   
23191 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23192 </UL><P>
23193 &lt;End of help on this topic&gt;
23194 </BODY>
23195 </HTML>
23196 ====== h_config_form_folder =====
23197 <HTML>
23198 <HEAD>
23199 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
23200 </HEAD>
23201 <BODY>
23202 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
23204 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
23205 contain messages that you have composed and that are intended to be
23206 sent in their original form repeatedly.
23209 Setting this variable will alter Alpine's usual behavior when you
23210 execute the Compose command.  Normally, Alpine offers a chance to
23211 continue a postponed or interrupted message should one or the other
23212 exist.  When this variable is set to a folder name that exists, Alpine
23213 will also offer the chance to select a message from the folder to
23214 insert into the composer (much like when continuing a postponed message).
23215 The difference, however, is that Alpine will not automatically delete
23216 the selected message from the Form Letter Folder.
23218 Setting this variable will also affect Alpine's behavior when you
23219 Postpone a message from the composer.  Normally, Alpine simply stashes
23220 the message away in your
23221 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
23222 Regardless of the specified folder's existence, Alpine will ask which
23223 folder you intend the message to be stored in.  Choose the
23224 &quot;F&quot; option to store the message in your Form Letter Folder.
23225 This is the most common way to add a message to the folder.
23228 Another method of adding messages to the folder is via the Alpine
23229 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
23230 you expect to send in the same form again, you can enter the Form
23231 Letter Folder's name in this field.  Alpine, as usual, will copy the
23232 message as it's sent.  Note, when you later select this message from 
23233 your Form Letter Folder, it will have the same recipients as the original
23234 message.
23237 To delete a message from the Form Letter Folder, you can either select
23238 the folder from a suitable FOLDER LIST screen, or use the Delete
23239 command in the MESSAGE INDEX offered when selecting from the folder as
23240 part of the Compose command.  You can delete a Form Letter Folder just
23241 as any other folder from a suitable FOLDER LIST screen.
23244 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
23245 facility can be used
23246 to replace the Form Letter Folder.
23249 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23250 details on the syntax of folder definitions.
23253 <UL>   
23254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23255 </UL><P>
23256 &lt;End of help on this topic&gt;
23257 </BODY>
23258 </HTML>
23259 ====== h_config_archived_folders =====
23260 <HTML>
23261 <HEAD>
23262 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
23263 </HEAD>
23264 <BODY>
23265 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
23267 This is like
23268 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
23269 only more general.  You may archive
23270 any of the folders in your incoming collection.  This is a list of folder
23271 pairs, with the first separated from the second in the pair by a space.
23272 The first folder in a pair is the folder you want to archive, and the
23273 second folder is the folder that read messages from the first should be
23274 moved to.  Depending on how you define the
23275 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
23276 setting, you may or may not be asked when you
23277 leave the first folder if you want read messages to be moved to the
23278 second folder.  In either case, moving the messages means they will be
23279 deleted from the first folder.
23281 The name of the first folder in each pair can be either the technical
23282 specification of the folder (like what appears in your configuration file)
23283 or (much easier) the nickname that you gave the folder when you made it
23284 an incoming folder.
23286 For example:<p>
23287 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
23288 <p>or, using nicknames:<p>
23289 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
23291 If these are not path names, they will be in the default collection for
23292 saves. Any valid folder specification, local or remote (via IMAP), is
23293 allowed. There is no default.
23295 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
23296 details on the syntax of folder definitions.
23298 <UL>   
23299 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23300 </UL><P>
23301 &lt;End of help on this topic&gt;
23302 </BODY>
23303 </HTML>
23304 ====== h_config_newsrc_path ======
23305 <HTML>
23306 <HEAD>
23307 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
23308 </HEAD>
23309 <BODY>
23310 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
23312 This option overrides the default name Alpine uses for your "newsrc" news
23313 status and subscription file.  If set, Alpine will take this value as the
23314 full pathname for the desired newsrc file.<P>
23316 If this option is <B>not</B> set, 
23317 <!--chtml if pinemode="os_windows"-->
23318 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
23319 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
23320 directory as your pinerc file for NEWSRC.
23321 <!--chtml else-->
23322 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
23323 your account's home directory).
23324 <!--chtml endif-->
23325 <P><UL>
23326 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23327 </UL>
23329 &lt;End of help on this topic&gt;
23330 </BODY>
23331 </HTML>
23332 ====== h_config_literal_sig =====
23333 <HTML>
23334 <HEAD>
23335 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
23336 </HEAD>
23337 <BODY>
23338 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
23340 With this option your actual signature, as opposed to
23341 the name of a file containing your signature,
23342 is stored in the Alpine configuration file.
23343 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
23346 This is simply a different way to store the signature.
23347 The signature is stored inside your Alpine configuration file instead of in
23348 a separate file.
23349 Tokens work the same way they do with the
23350 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
23351 help.
23354 The Setup/Signature command on Alpine's MAIN MENU will edit
23355 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
23356 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
23357 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
23358 instead.
23361 The two character sequence &#92;n (backslash followed by
23362 the character n) will be used to signify a line-break in your signature.
23363 You don't have to enter the &#92;n, but it will be visible in the
23364 SETUP CONFIGURATION window after you are done editing the signature.
23367 <UL>   
23368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23369 </UL><P>
23370 &lt;End of help on this topic&gt;
23371 </BODY>
23372 </HTML>
23373 ====== h_config_signature_file =====
23374 <HTML>
23375 <HEAD>
23376 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
23377 </HEAD>
23378 <BODY>
23379 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
23381 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
23382 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
23383 You can tell that that is the case because the value of the
23384 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
23386 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
23388 You may either use all Literal Signatures (signatures stored in your
23389 configuration file) throughout Alpine, or all signature files.
23390 You can't mix the two.
23392 This is the name of a file that will be automatically inserted into
23393 outgoing messages.
23394 It typically contains information such as your
23395 name, email address and organizational affiliation.
23396 Alpine adds the
23397 signature into the message as soon as you enter the composer so you
23398 can choose to remove it or edit it on a message by message basis.
23399 Signature file placement in message replies is controlled by the
23400 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
23401 setting in the feature list.
23404 The default file name is
23405 <!--chtml if pinemode="os_windows"-->
23406 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
23407 PINERC file is a local file.
23408 If your PINERC file is remote, then it will be in the directory specified
23409 by the &quot;-aux local_directory&quot; command line option.
23410 <!--chtml else-->
23411 &quot;.signature&quot;.
23412 <!--chtml endif-->
23415 To create or edit your signature file choose Setup from the MAIN MENU
23416 and then select S for Signature (Main/Setup/Signature).  This puts you
23417 into the Signature Editor where you can enter a <EM>few</EM> lines of
23418 text containing your identity and affiliation.
23421 If the filename is followed by a vertical bar (|) then instead
23422 of reading the contents of the file the file is assumed to be a
23423 program that will produce the text to be used on its standard output.
23424 The program can't have any arguments and doesn't receive any input from Alpine,
23425 but the rest of the processing works as if the contents came from a file.
23428 Instead of storing the data in a local file, the
23429 signature data may be stored remotely in an IMAP folder.
23430 In order to do this, 
23431 you must use a remote name for the file.
23432 A remote <!--#echo var="VAR_signature-file"--> name might look like:
23434 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
23437 The syntax used here is the same as the syntax used for remote configuration
23438 files from the command line.
23439 Note that you may not access an existing signature file remotely,
23440 you have to create a new <EM>folder</EM> that contains the signature data.
23441 If the name you use here for the signature file is a remote name, then when
23442 you edit the file from the Setup/Signature command the data will be stored
23443 remotely in the folder.
23444 You aren't required to do anything special to create the folder, it
23445 gets created automatically if you use a remote name.
23448 Besides regular text, the signature file may also contain
23449 (or a signature program may produce) tokens that
23450 are replaced with text that usually depends on the message you are replying
23451 to or forwarding.
23452 For example, if the signature file contains the token
23454 <CENTER><SAMP>_DATE_</SAMP></CENTER>
23456 anywhere in the text, then that token is replaced by the date
23457 the message you are replying to or forwarding was sent.
23458 If it contains
23460 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
23462 that is replaced with the current date.
23463 The first is an example of a token that depends on the message you
23464 are replying to (or forwarding) and the second is an example which
23465 doesn't depend on anything other than the current date.
23466 You have to be a little careful with this facility since tokens that
23467 depend on the message you are replying to or forwarding will be replaced
23468 by nothing in the case where you are composing a new message from scratch.
23469 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
23470 in this respect.
23471 It allows you to use different signature files in different cases.
23474 The list of tokens available for use in the signature file is
23475 <A HREF="h_index_tokens">here</A>.
23478 Instead of, or along with the use of &quot;roles&quot; to give you
23479 different signature files in different situations, there is also
23480 a way to conditionally include text based
23481 on whether or not a token would result in specific replacement text.
23482 For example, you could include some text based on whether or not
23483 the _NEWS_ token would result in any newsgroups if it was used.
23484 This is explained in detail
23485 <A HREF="h_reply_token_conditionals">here</A>.
23486 This isn't for the faint of heart.
23488 In the very unlikely event that you want to include a literal token
23489 in the signature you must precede it with a backslash character.
23490 For example,
23492 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
23494 would produce something like
23496 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
23498 It is not possible to have a literal backslash followed by an expanded token.
23500 An alternate method for storing the signature data is available by using the
23501 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
23502 This variable will be used by default.
23504 <UL>   
23505 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23506 </UL><P>
23507 &lt;End of help on this topic&gt;
23508 </BODY>
23509 </HTML>
23510 ====== h_config_init_cmd_list =====
23511 <HTML>
23512 <HEAD>
23513 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
23514 </HEAD>
23515 <BODY>
23516 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
23518 The initial keystroke--or command--list option lets you start Alpine at
23519 any place you like.
23520 Whatever keystrokes you specify here will be executed
23521 by Alpine upon startup as a macro.
23522 The words SPACE, TAB, DOWN, UP, LEFT, and
23523 RIGHT indicate the pressing of those keys.
23524 CR indicates the pressing of the RETURN key.
23525 F1 through F12 represent the function keys, and ^ followed
23526 by a character indicates that key pressed along with the control key (in
23527 other words, ^P means Ctrl-P).
23528 As a shortcut notation, an element of the list may be several characters
23529 surrounded by double-quotes (").
23530 That will be expanded into the individual keystrokes
23531 (excluding the double-quote characters).
23532 For example, the quoted-string
23534 <P><CENTER>"ABC"</CENTER>
23537 is interpreted the same as the three separate list members
23539 <P><CENTER>A and B and C</CENTER>
23542 which is also the same as
23544 <P><CENTER>A,B,C</CENTER>
23547 An example: To view message 1 on startup,
23548 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
23550 <P><CENTER>I,J,1,CR,V</CENTER>
23553 An equivalent version of this is
23555 <P><CENTER>"IJ1",CR,V</CENTER>
23558 Restrictions: You cannot pre-type into the composer with the initial
23559 keystroke list, and you cannot mix function key commands with letter
23560 commands.
23562 <P><UL>   
23563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23564 </UL>
23566 &lt;End of help on this topic&gt;
23567 </BODY>
23568 </HTML>
23569 ====== h_config_comp_hdrs =====
23570 <html>
23571 <header>
23572 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
23573 </header>
23574 <body>
23575 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
23577 You can control which headers you want visible when composing outgoing
23578 email using this option.
23579 You can specify any of the regular set, any
23580 <A HREF="h_compose_richhdr">Rich Header</A>,
23581 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
23582 that you have already defined.
23583 If you use this setting at all, you must specify all the
23584 headers you want to see, you can't just add to the regular header set.
23585 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
23587 Note that the "Newsgroups:" header will be abbreviated in the Composer
23588 display, but should be spelled out in full here.<p>
23589 <UL>   
23590 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23591 </UL><P>
23592 &lt;End of help on this topic&gt;
23593 </body>
23594 </html>
23595 ====== h_config_custom_hdrs =====
23596 <HTML>
23597 <HEAD>
23598 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
23599 </HEAD>
23600 <BODY>
23601 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
23603 You may add your own custom headers to outgoing messages.
23604 Each header you specify here must include the header tag 
23605 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
23606 and may optionally include a value for that header.
23607 If you want to see these custom headers each time you compose a message,
23608 you must add them to your
23609 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
23610 otherwise they become part
23611 of the rich header set that you only see when you press the
23612 <A HREF="h_compose_richhdr">Rich Header</A>
23613 <!--chtml if pinemode="function_key"-->(F5)
23614 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
23615 (If you are looking for a way to change which headers are <EM>displayed</EM>
23616 when you view a message, take a look at the
23617 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
23618 option instead.)
23619 Here's an example that shows how you might set your From address
23621 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
23623 and another showing how you might set a Reply-To address
23625 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
23627 You may also set non-standard header values here.
23628 For example, you could add
23630 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
23632 or even
23634 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
23636 If you include a value after the colon then that header will be included
23637 in your outgoing messages unless you delete it before sending.
23638 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
23639 it will not be included in outgoing messages unless you edit a value
23640 in manually.
23641 For example, if
23643 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
23645 is in the list, then the Reply-To header will be available for editing
23646 but won't be included unless a value is added while in the composer.
23648 It's actually a little more complicated than that.
23649 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
23650 defaults.
23651 If the message you are about to compose already has a value for a header,
23652 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
23653 For example, if you are Replying to a message the Subject field
23654 will already be filled in.
23655 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
23656 custom subject will <EM>NOT</EM> be used.
23657 The subject derived from the subject of the message you are Replying
23658 to will be used instead.
23660 It is also possible to make header setting even more complicated and more
23661 automatic by using
23662 <A HREF="h_rules_roles">Roles</A>,
23663 but if all you want to do is set a default value for a header, you don't
23664 need to think about Roles.
23666 If you change your From address you may also find it useful to add the
23667 changed From address to the
23668 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
23669 configuration option.
23671 Limitation: Because commas are used to separate the list of
23672 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
23673 header contain a comma.
23674 Nor is there currently an &quot;escape&quot; mechanism provided
23675 to make this work.
23676 <P><UL>
23677 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23678 </UL>
23680 &lt;End of help on this topic&gt;
23681 </BODY>
23682 </HTML>
23683 ====== h_config_viewer_headers =====
23684 <HTML>
23685 <HEAD>
23686 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
23687 </HEAD>
23688 <BODY>
23689 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
23691 You may change the default list of headers that are viewed by listing
23692 the headers you want to view here.  If the headers in your
23693 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
23694 will be shown.  The order of the headers you list will be honored.  If
23695 the special value &quot;all-except&quot; is included as the first
23696 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
23697 message except those in the list will be shown.  The values are all
23698 case insensitive.
23701 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
23702 then the original default headers are ignored.  So, if you just wanted
23703 to add the header Organization to the list, you would have to list
23704 Organization plus all of the other headers originally in the default
23705 list.  If you just included Organization and nothing else, then you
23706 would see only the Organization header, nothing else.
23709 The default list of headers includes:
23710 <UL>
23711   <LI>From
23712   <LI>Resent-From
23713   <LI>To
23714   <LI>Resent-To
23715   <LI>Cc
23716   <LI>Resent-cc
23717   <LI>Bcc
23718   <LI>Newsgroups
23719   <LI>Followup-To
23720   <LI>Date
23721   <LI>Resent-Date
23722   <LI>Subject
23723   <LI>Resent-Subject
23724   <LI>Reply-To
23725 </UL>
23728 If you are looking for a way to control which headers are included in
23729 outgoing mail and are visible or not in the composer, take a look at the
23730 options
23731 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
23732 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
23733 this option.
23735 <UL>   
23736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23737 </UL><P>
23738 &lt;End of help on this topic&gt;
23739 </BODY>
23740 </HTML>
23741 ====== h_config_viewer_margin_left =====
23742 <HTML>
23743 <HEAD>
23744 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
23745 </HEAD>
23746 <BODY>
23747 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
23749 This variable controls the left-hand vertical margin's width in
23750 Alpine's Message Viewing screen.
23751 Its value is the number of space characters preceding each displayed line.
23752 For consistency with
23753 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
23754 you may specify the column number to start in
23755 (column numbering begins with number 1)
23756 instead of the width of the margin by appending a lower case letter
23757 &quot;c&quot; to the number.
23758 For example, a value of &quot;2c&quot; means to start the text in column two,
23759 which is entirely equivalent to a value of &quot;1&quot;, which means to
23760 leave a margin of 1 space.
23762 The default is a left margin of 0 (zero).
23763 Misconfigurations (for example, negative values or values with starting
23764 left columns greater than the ending right column)
23765 are silently ignored.
23766 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
23767 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23768 instead.
23771 &lt;End of help on this topic&gt;
23772 </BODY>
23773 </HTML>
23774 ====== h_config_viewer_margin_right =====
23775 <HTML>
23776 <HEAD>
23777 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
23778 </HEAD>
23779 <BODY>
23780 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
23782 This variable controls the right-hand vertical margin's width in
23783 Alpine's Message Viewing screen.
23784 Its value is the number of space characters following each displayed line.
23785 You may specify the column number to end the text in
23786 (column numbering begins with number 1)
23787 instead of the width of the margin by appending a lower case letter
23788 &quot;c&quot; to the number.
23789 For example, a value of &quot;76c&quot; means to end the text in column 76.
23790 If the screen is 80 characters wide, this is equivalent to a value
23791 of &quot;4&quot;, which means to leave a margin of 4 spaces.
23792 However, if you use different size screens at different times, then these
23793 two values are not equivalent.
23795 The default right margin is 4.
23796 Misconfigurations (for example, negative values or values with starting
23797 left columns greater than the ending right column)
23798 are silently ignored.
23799 If the number of columns for text between the
23800 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
23801 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23802 instead.
23805 &lt;End of help on this topic&gt;
23806 </BODY>
23807 </HTML>
23808 ====== h_config_quote_suppression =====
23809 <HTML>
23810 <HEAD>
23811 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
23812 </HEAD>
23813 <BODY>
23814 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
23816 This option should be used with care.
23817 It will cause some of the quoted text to be eliminated from the
23818 display when viewing a message in the MESSAGE TEXT screen.
23819 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
23820 value &quot;5&quot;,
23821 this will cause quoted text that is longer than five lines to be truncated.
23822 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
23823 Quoted text of more than six lines will have the first five lines displayed
23824 followed by a line that looks something like
23826 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
23828 As a special case, if exactly one line of quoted text would be hidden, the
23829 entire quote will be shown instead.
23830 So for the above example, quoted text that is exactly six lines long will
23831 will be shown in its entirety.
23832 (In other words, instead of hiding a single line and adding a line
23833 that announces that one line was hidden, the line is just shown.)
23835 If the sender of a message has carefully chosen the quotes that he or she
23836 includes, hiding those quotes may change the meaning of the message.
23837 For that reason, Alpine requires that when you want to set the value of this
23838 variable to something less than four lines, you actually have to set it
23839 to the negative of that number.
23840 So if you want to set this option to &quot;3&quot;, you actually have to
23841 set it to &quot;-3&quot;.
23842 The only purpose of this is to get you to think about whether or not you
23843 really want to do this!
23844 If you want to delete all quoted text you set the value of this option
23845 to the special value &quot;-10&quot;.
23847 The legal values for this option are
23849 <TABLE>   
23850 <TR>
23851   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23852   <TD> Default, don't hide anything </TD>
23853 </TR>
23854 <TR>
23855   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
23856   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
23857 </TR>
23858 <TR>
23859   <TD> &nbsp;4,5,6,...&nbsp; </TD>
23860   <TD> Suppress if more than that many lines </TD>
23861 </TR>
23862 <TR>
23863   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23864   <TD> Suppress all quoted lines </TD>
23865 </TR>
23866 </TABLE>
23868 If you set this option to a non-default value you may sometimes wish to
23869 view the quoted text that is not shown.
23870 When this is the case, the
23871 <A HREF="h_common_hdrmode">HdrMode Command</A>
23872 may be used to show the hidden text.
23873 Typing the &quot;H&quot; command once will show the hidden text.
23874 Typing a second &quot;H&quot; will also turn on Full Header mode.
23875 The presence or absence of the HdrMode command is determined by the
23876 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
23877 Feature-List option in your Alpine configuration, so you will want to
23878 be sure that is turned on if you use quote suppression.
23880 For the purposes of this option, a quote is a line that begins with the
23881 character &quot;&gt;&quot;.
23883 Quotes are only suppressed when displaying a message on the screen.
23884 The entire quote will be left intact when printing or forwarding or something
23885 similar.
23887 &lt;End of help on this topic&gt;
23888 </BODY>
23889 </HTML>
23890 ====== h_config_saved_msg_name_rule =====
23891 <HTML>
23892 <HEAD>
23893 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23894 </HEAD>
23895 <BODY>
23896 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23898 This option determines the default folder name when saving
23899 a message.
23902 The default option is &quot;default-folder&quot;, which is the folder
23903 called &quot;saved-messages&quot; in Unix Alpine and
23904 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23905 the Alpine option called
23906 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23909 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23910 get the chosen option's value for the message being saved (or for the
23911 first message being saved if using an aggregrate save).
23912 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23913 value of who the message came from (i.e. the from address).
23914 Alpine then attempts to save the message to a folder matching that value.
23915 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23916 &quot;by-sender&quot;.
23917 The opposite is also true.
23918 If &quot;by-recipient&quot; is chosen and the message was posted to a
23919 newsgroup, Alpine will use the newsgroup name.
23920 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23921 &quot;by-from&quot;.
23924 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23925 to use the personal name part of the address instead of the mailbox part.
23926 If any of the &quot;by-nick&quot; options are chosen, the
23927 address is looked up in your address book and if found, the
23928 nickname for that entry is used.
23929 Only simple address book entries are checked, not distribution lists.
23930 Similarly, if any of the
23931 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23932 address book entry is used.
23933 If by-realname, or the by-nick or by-fcc lookups result in no value,
23934 then if the chosen option ends with the &quot;then-from&quot;,
23935 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23936 or &quot;then-recip&quot; suffix, Alpine
23937 reverts to the same behavior as &quot;by-from&quot;,
23938 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23939 depending on which option was specified.
23940 If the chosen option doesn't end with one of
23941 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23942 folder when no match is found in the address book.
23945 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23946 to save to the folder that you saved to the last time you saved a
23947 message.  The first time you save a message in an Alpine session, Alpine
23948 attempts to save the message to the default folder.
23951 Here is an example to make some of the options clearer.
23952 If the message is From
23954 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23956 and this rule is set to &quot;by-from&quot;, then the default folder offered
23957 in the save dialog would be &quot;flint&quot;.
23959 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23960 be &quot;Fred Flintstone&quot;.
23962 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23963 for the address &quot;flint@bedrock.org&quot; in your address book.
23964 If an entry is found and it has a nickname associated with it, that nickname
23965 will be offered as the default folder.
23966 If not, the default saved message folder will be offered as the default.
23968 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23969 for the address &quot;flint@bedrock.org&quot; in your address book.
23970 If an entry is found and it has an Fcc associated with it, that Fcc
23971 will be offered as the default folder.
23972 If not, the default saved message folder will be offered as the default.
23974 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23975 for the address &quot;flint@bedrock.org&quot; in your address book.
23976 If an entry is found and it has a nickname associated with it, that nickname
23977 will be offered as the default folder.
23978 If it is not found (or has no nickname) then the default offered will be
23979 the same as it would be for the &quot;by-from&quot; rule.
23980 That is, it would be &quot;flint&quot;
23982 <UL>   
23983 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23984 </UL><P>
23985 &lt;End of help on this topic&gt;
23986 </BODY>
23987 </HTML>
23988 ====== h_config_fcc_rule =====
23989 <HTML>
23990 <HEAD>
23991 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23992 </HEAD>
23993 <BODY>
23994 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23996 This option determines the default name for folder carbon copy. Choose
23997 one:
23999 <DL>
24000 <DT>default-fcc</DT>
24001 <DD>This is the normal default, the value of which is set in the
24002 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
24003 configuration.
24004 </DD>
24006 <DT>last-fcc-used</DT>
24007 <DD> Causes Alpine to use the folder that was last
24008 used in the fcc field
24009 </DD>
24011 <DT>by-nickname</DT>
24012 <DD>Means that Alpine will use the nickname
24013 from your address book that matches the first address in the To line.
24014 If there is no match, it will use the value of the
24015 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
24016 </DD>
24018 <DT>by-recipient</DT>
24019 <DD>Means Alpine will form a folder name
24020 based on the left hand side of the first address in the To line.
24021 </DD>
24023 <DT>by-nick-then-recip</DT>
24024 <DD>Means that it will use the
24025 matching nickname from your address book if there is one, otherwise it
24026 will extract the recipient name from the address and use that (like
24027 by-recipient).
24028 </DD>
24030 <DT>current-folder</DT>
24031 <DD>Causes a copy to be written to
24032 the currently open folder, unless that is the INBOX.  In the case
24033 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
24034 used instead.
24035 </DD>
24036 </DL>
24039 Note: Whatever the fcc specified by the rule here, it will be
24040 over-ridden by any fcc entries you have in your address book.
24043 <UL>   
24044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24045 </UL><P>
24046 &lt;End of help on this topic&gt;
24047 </BODY>
24048 </HTML>
24049 ====== h_config_sort_key =====
24050 <HTML>
24051 <HEAD>
24052 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
24053 </HEAD>
24054 <BODY>
24055 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
24057 This option determines the order in which messages will be displayed in
24058 the MESSAGE INDEX screen.  Choose from:
24060 <UL>
24061  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
24062  <LI> <A HREF="h_index_sort_date">Date</A>
24063  <LI> <A HREF="h_index_sort_subj">Subject</A>
24064  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
24065  <LI> <A HREF="h_index_sort_thread">Thread</A>
24066  <LI> <A HREF="h_index_sort_from">From</A>
24067  <LI> <A HREF="h_index_sort_size">Size</A>
24068  <LI> <A HREF="h_index_sort_score">Score</A>
24069  <LI> <A HREF="h_index_sort_to">To</A>
24070  <LI> <A HREF="h_index_sort_cc">Cc</A>
24071 </UL>
24074 Each type of sort may also be reversed.
24075 Normal default is by &quot;Arrival&quot;.
24078 A possible point of confusion arises when you change the configuration
24079 of the <!--#echo var="VAR_sort-key"-->.
24080 The folder will normally be re-sorted when you go back to viewing the
24081 index.
24082 However, if you have manually sorted the folder with the
24083 Sort
24084 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
24085 command, then it will not be re-sorted until the next time it is opened.
24088 <UL>   
24089 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24090 </UL><P>
24091 &lt;End of help on this topic&gt;
24092 </BODY>
24093 </HTML>
24094 ====== h_config_other_startup =====
24095 <HTML>
24096 <HEAD>
24097 <TITLE>OPTION: Set Startup Rule</TITLE>
24098 </HEAD>
24099 <BODY>
24100 <H1>OPTION: Set Startup Rule</H1>
24102 This option determines which message will be the <EM>current message</EM> when
24103 the folder is first opened.
24104 It works the same way that the option
24105 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
24106 works, so look there for help.
24107 It may be used for any folder, not just incoming folders.
24110 <UL>   
24111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24112 </UL><P>
24113 &lt;End of help on this topic&gt;
24114 </BODY>
24115 </HTML>
24116 ====== h_config_perfolder_sort =====
24117 <HTML>
24118 <HEAD>
24119 <TITLE>Set Sort Order</TITLE>
24120 </HEAD>
24121 <BODY>
24122 <H1>Set Sort Order</H1>
24124 This option determines the order in which messages will be displayed in
24125 the MESSAGE INDEX screen when the Current Folder Type set in the
24126 Pattern is a match. Choose from:
24128 <UL>
24129  <LI> <A HREF="h_index_sort_default">Default</A>
24130  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
24131  <LI> <A HREF="h_index_sort_date">Date</A>
24132  <LI> <A HREF="h_index_sort_subj">Subject</A>
24133  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
24134  <LI> <A HREF="h_index_sort_thread">Thread</A>
24135  <LI> <A HREF="h_index_sort_from">From</A>
24136  <LI> <A HREF="h_index_sort_size">Size</A>
24137  <LI> <A HREF="h_index_sort_score">Score</A>
24138  <LI> <A HREF="h_index_sort_to">To</A>
24139  <LI> <A HREF="h_index_sort_cc">Cc</A>
24140 </UL>
24143 Each type of sort may also be reversed.
24144 Normal default is by &quot;Arrival&quot;.
24147 A possible point of confusion arises when you change the configuration
24148 of the Sort Order for the currently open folder.
24149 The folder will normally be re-sorted when you go back to viewing the
24150 index.
24151 However, if you have manually sorted the folder with the
24152 Sort
24153 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
24154 command, then it will not be re-sorted until the next time it is opened.
24157 <UL>   
24158 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24159 </UL><P>
24160 &lt;End of help on this topic&gt;
24161 </BODY>
24162 </HTML>
24163 ====== h_config_fld_sort_rule =====
24164 <HTML>
24165 <HEAD>
24166 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
24167 </HEAD>
24168 <BODY>
24169 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
24171 This option controls the order in which folder list entries will be
24172 presented in the FOLDER LIST screen.  Choose one of the following:
24174 <DL>
24175 <DT>Alphabetical</DT>
24176 <DD>sort by alphabetical name independent of type
24177 </DD>
24179 <DT>Alpha-with-dirs-last</DT>
24180 <DD>sort by alphabetical name grouping directory entries
24181 to the end of the list
24182 </DD>
24184 <DT>Alpha-with-dirs-first</DT>
24185 <DD>sort by alphabetical name grouping directory entries
24186 to the start of the list
24187 </DD>
24188 </DL>
24190 The normal default is &quot;Alphabetical&quot;.
24193 <UL>   
24194 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24195 </UL><P>
24196 &lt;End of help on this topic&gt;
24197 </BODY>
24198 </HTML>
24199 ====== h_config_ab_sort_rule =====
24200 <HTML>
24201 <HEAD>
24202 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
24203 </HEAD>
24204 <BODY>
24205 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
24207 This option controls the order in which address book entries will be
24208 presented.  Choose one of the following:
24210 <DL>
24211 <DT>fullname</DT>
24212 <DD>use fullname field, lists mixed in
24213 </DD>
24215 <DT>fullname-with-lists-last</DT>
24216 <DD>use fullname field, but put lists at end
24217 </DD>
24219 <DT>nickname</DT>
24220 <DD>use nickname field, lists mixed in
24221 </DD>
24223 <DT>nickname-with-lists-last</DT>
24224 <DD>use nickname field, but put lists at end
24225 </DD>
24227 <DT>dont-sort</DT>
24228 <DD>don't change order of file
24229 </DD>
24230 </DL>
24233 The normal default is &quot;fullname-with-lists-last&quot;.
24234 If you use an address book from more than one computer and those
24235 computers sort the address book differently then the sort order
24236 will be the order where the last change to the address book was
24237 made.
24238 There are two reasons the sorting might be different on different
24239 systems.
24240 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
24241 places.
24242 Second, the collation rules on the two computers may be different.
24243 For example, one system might ignore special characters while the other
24244 doesn't or one may sort upper and lower case letters together while
24245 the other doesn't.
24246 In any case, the order you see is the order on the system where the
24247 last change was made, for example by an address book edit or a
24248 Take Address command.
24251 <UL>   
24252 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24253 </UL><P>
24254 &lt;End of help on this topic&gt;
24255 </BODY>
24256 </HTML>
24257 ====== h_config_post_char_set =====
24258 <HTML>
24259 <HEAD>
24260 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
24261 </HEAD>
24262 <BODY>
24263 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
24265 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
24266 when sending messages.
24270 When sending a message the text typed in the composer is
24271 labeled with the character set specified by this option.
24272 If the composed text is not fully representable in the 
24273 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
24274 instead;
24277 Attachments are labeled with your
24278 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
24281 Generally, there should be little need to set this option.
24282 If left unset, the
24283 default behavior is to label composed text as specifically as
24284 possible.  That is, if the composed text has no non-ASCII characters,
24285 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
24286 only ISO-8859-15 characters, it is labeled as such.  Alpine will
24287 attempt to automatically detect a number of character sets including ISO-8859-15,
24288 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
24289 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
24290 If the message contains a mix of character sets,
24291 it is labeled as &quot;UTF-8.&quot;
24295 This setting is provided to allow you to force a particular character set that
24296 Alpine does not automatically detect. For example, if a message is representable
24297 in more than one character set then Alpine may choose a different default
24298 than you want.
24299 Lastly, by setting this option explicitly to
24300 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
24301 &quot;UTF-8&quot; instead of something more specific.
24304 In the Setup/Config screen you may choose from a list of all the
24305 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24308 The options
24309 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
24310 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
24311 are closely related.
24312 Setting the feature
24313 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
24314 should cause this option to be ignored.
24317 <UL>   
24318 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24319 </UL><P>
24320 &lt;End of help on this topic&gt;
24321 </BODY>
24322 </HTML>
24323 ====== h_config_unk_char_set =====
24324 <HTML>
24325 <HEAD>
24326 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
24327 </HEAD>
24328 <BODY>
24329 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
24331 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
24332 when reading or replying to messages.
24336 A text message should either be made up of all US-ASCII characters
24337 or it should contain a charset label which tells the software which
24338 character set encoding to use to interpret the message.
24339 Sometimes a malformed message may be unlabeled but contain non-ascii text.
24340 This message is outside of the standards so any attempt to read it could fail.
24341 When Alpine attempts to read such a message it will try to interpret the
24342 text in the character set you specify here.
24343 For example, if you have correspondents who send you unlabeled messages that
24344 are usually made up of characters from the WINDOWS-1251 character set, setting
24345 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
24346 allow you to read those messages.
24347 Of course, if the unlabeled message is actually in some other character set,
24348 then you may see garbage on your screen.
24350 Instead of just unlabeled text, this option also affects text which is labeled
24351 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
24352 or &quot;US-ASCII&quot;.
24355 In the Setup/Config screen you may choose from a list of all the
24356 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24359 <UL>   
24360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24361 </UL><P>
24362 &lt;End of help on this topic&gt;
24363 </BODY>
24364 </HTML>
24365 ====== h_config_char_set =====
24366 <HTML>
24367 <HEAD>
24368 <TITLE>OPTION: Display Character Set</TITLE>
24369 </HEAD>
24370 <BODY>
24371 <H1>OPTION: Display Character Set</H1>
24373 The Display Character Set configuration option is used when viewing messages.
24375 Alpine uses Unicode characters internally and 
24376 it is a goal for Alpine to handle email in many different languages.
24377 Alpine will properly display only left-to-right character sets
24378 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
24379 font is in use, in the sense that
24380 characters are assumed to take up zero, one, or two character cell
24381 widths from left to right on the screen. This is true even in PC-Alpine.
24384 Alpine recognizes some local character sets that are right-to-left
24385 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
24386 (Arabic) and properly converts texts in these character sets to/from
24387 Unicode; however, there are known display bugs with these character
24388 sets.
24391 There are three possible configuration character settings and some
24392 environment variable settings that can affect how Alpine
24393 handles international characters.
24394 The first two of these are only available in UNIX Alpine.
24395 The three configuration options are
24396 Display Character Set,
24397 Keyboard Character Set, and
24398 <!--#echo var="VAR_posting-character-set"-->.
24399 The Keyboard Character Set defaults to being the same value
24400 as the Display Character Set, and that is usually correct, because
24401 the keyboard almost always produces characters in the same character set
24402 as the display displays.
24403 The Display Character Set is the character set that Alpine
24404 will attempt to use when sending characters to the display.
24407 By default, the Display Character Set variable is not set and UNIX Alpine
24408 will attempt to get this information from the environment.
24409 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
24410 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
24411 An explicit configuration setting for Display Character Set will,
24412 of course, override any default setting.
24414 For PC-Alpine the Display Character Set
24415 and the Keyboard Character Set
24416 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
24419 It is probably best to use UNIX Alpine in a terminal emulator
24420 capable of displaying UTF-8 characters, since that will allow you to
24421 view just about any received text that is correctly formatted (note,
24422 however, the above comments about known index display bugs with certain
24423 character sets). You'll need to have an emulator that uses a UTF-8 font
24424 and you'll need to set up your environment to use a UTF-8 charmap. For
24425 example, on a Linux system you might include
24427 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
24430 or something similar in your UNIX startup files.
24431 You'd also have to select a UTF-8 font in your terminal emulator.
24434 The types of values that the character set variables may be set to are
24435 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
24436 The <CODE>ISO-2022</CODE> character sets are not supported for input or
24437 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
24438 for use only as a <!--#echo var="VAR_posting-character-set"-->.
24439 In the Setup/Config screen you may choose from a list of all the
24440 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24441 Here is a list of many of the possible character sets:
24444 <TABLE>
24445 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
24446 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
24447 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
24448 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
24449 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
24450 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
24451 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
24452 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
24453 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
24454 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
24455 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
24456 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
24457 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
24458 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
24459 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
24460 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
24461 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
24462 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
24463 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
24464 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukrainian</TD> </TR>
24465 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
24466 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
24467 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
24468 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24469 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24470 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
24471 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
24472 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
24473 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
24474 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
24475 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
24476 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
24477 </TABLE>
24480 When reading incoming email, Alpine understands many different
24481 character sets and is able to convert the incoming mail into Unicode.
24482 The Unicode will be converted to the Display Character Set
24483 for display on your terminal.
24484 Characters typed at the keyboard will be converted from the
24485 Keyboard Character Set to Unicode for Alpine's internal
24486 use.
24487 You may find that you can read some malformed messages that do not
24488 contain a character set label by setting the option
24489 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
24492 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
24493 The default behavior obtained by leaving this variable unset is usually
24494 what is wanted. In that default case, Alpine will attempt
24495 to label the message with the most specific character set from the
24496 rather arbitrary set
24498 US-ASCII, ISO-8859-15,
24499 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
24500 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
24503 For example, if the message is made up of only US-ASCII characters, it
24504 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
24505 that will be the label. If that doesn't work the same is tried for the
24506 remaining members of the list.
24509 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
24510 explicit value instead.
24511 For example, if you usually send messages in Greek, setting this
24512 option to ISO-8859-7 will result in messages being labeled as
24513 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
24514 are only Greek characters, or UTF-8 if there are some characters
24515 that aren't representable in ISO-8859-7.
24516 Another possibility is to set this option explicitly to UTF-8.
24517 In that case
24518 Alpine labels only ascii messages as US-ASCII and all other
24519 messages as UTF-8.
24522 The options
24523 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
24524 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
24525 are closely related to this option.
24526 Setting the feature
24527 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
24528 should cause this option to be ignored.
24531 When displaying a message, Alpine compares this setting to the character
24532 set specified in the message.  If not all of the
24533 characters in the message can be displayed using the Display Character Set
24534 then Alpine places an editorial
24535 comment in the displayed text (enclosed in square-brackets) indicating
24536 that some characters may not be displayed correctly.
24537 This comment may be eliminated by turning on the option
24538 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
24541 <UL>   
24542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24543 </UL><P>
24544 &lt;End of help on this topic&gt;
24545 </BODY>
24546 </HTML>
24547 ====== h_config_key_char_set =====
24548 <HTML>
24549 <HEAD>
24550 <TITLE>OPTION: Keyboard Character Set</TITLE>
24551 </HEAD>
24552 <BODY>
24553 <H1>OPTION: Keyboard Character Set</H1>
24555 UNIX Alpine only.
24557 The Keyboard Character Set identifies the character set of the characters
24558 coming from your keyboard.
24559 It defaults to having the same value as your
24560 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
24561 which in turn defaults to a value obtained from your environment.
24562 It is unlikely that you will need to use this option, because the keyboard
24563 almost always produces the same kind of characters as the display displays.
24566 This character set is also used when accessing files in your local
24567 file system.
24568 The names of the files are assumed to be in the same character set as
24569 what the keyboard produces, as well as the contents of the files.
24572 In the Setup/Config screen you may choose from a list of all the
24573 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
24576 The options
24577 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
24578 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
24579 are closely related.
24580 Setting the feature
24581 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
24582 should cause this option to be ignored.
24585 <UL>   
24586 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24587 </UL><P>
24588 &lt;End of help on this topic&gt;
24589 </BODY>
24590 </HTML>
24591 ====== h_config_editor =====
24592 <HTML>
24593 <HEAD>
24594 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
24595 </HEAD>
24596 <BODY>
24597 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
24599 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
24600 normally an alternative to Alpine's internal composer (Pico).  You could use
24601 this setting to specify an alternate editor to use occasionally or if you
24602 have a favorite editor and want to use it all the time (see the 
24603 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
24604 If you specify multiple editors for this option, ^_ will invoke the first one 
24605 of those specified that exists and is executable.  When specifying a program 
24606 for use here, make sure that the format of the text it saves -- which, when 
24607 you exit it, will become the message body in Alpine -- is appropriate 
24608 for the body of an email message; avoid proprietary formats that may result in 
24609 a message body that the recipient of your message will be unable to decipher.
24611 <!--chtml if pinemode="os_windows"-->
24612 <!--chtml else-->
24613 If you are in doubt about what editors are available on your system, or which 
24614 of them may be appropriate for specification here, ask your local computing 
24615 support staff.  
24616 <!--chtml endif-->
24618 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
24619 unset, outgoing text will be set as flowed.  In most cases this will be fine,
24620 but if the editor has a &quot;flowed text&quot; mode, it would be best to
24621 use that.
24623 <P><UL>
24624 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24625 </UL>
24627 &lt;End of help on this topic&gt;
24628 </BODY>
24629 </HTML>
24630 ====== h_config_speller =====
24631 <HTML>
24632 <HEAD>
24633 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
24634 </HEAD>
24635 <BODY>
24636 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
24638 UNIX Alpine only.
24640 For PC-Alpine, you must install the aspell library code that you
24641 may get from
24642 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
24644 This option affects the behavior of the ^T (spell check) command in the
24645 Composer.  It specifies the program invoked by ^T in the Composer.
24646 By default, Alpine uses
24648 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
24650 if it knows where to find &quot;aspell&quot;.
24651 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
24652 then the command used is
24654 <CENTER><SAMP>ispell -l</SAMP></CENTER>
24656 Otherwise, the ancient &quot;spell&quot; command is used.
24658 If you specify a value for this command (with full pathname) then that is what
24659 will be used instead of any of the defaults.
24660 When invoking this
24661 spell-checking program, Alpine appends a tempfile name (where the message is
24662 passed) to the command line. Alpine expects the speller to correct the
24663 spelling in that file. When you exit from that program Alpine will read the
24664 tempfile back into the composer.
24666 Don't set this speller option to the standard Unix spell command.
24667 That won't work because spell works in a different way.
24670 <UL>   
24671 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24672 </UL><P>
24673 &lt;End of help on this topic&gt;
24674 </BODY>
24675 </HTML>
24676 ====== h_config_aspell_dictionary =====
24677 <HTML>
24678 <HEAD>
24679 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
24680 </HEAD>
24681 <BODY>
24682 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
24684 PC Alpine only.
24686 This option specifies a list of dictionaries you will use with
24687 aspell. A sample entry is &quot;en_US&quot; for american english, or
24688 &quot;en_GB&quot; for british english.
24691 <UL>   
24692 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24693 </UL><P>
24694 &lt;End of help on this topic&gt;
24695 </BODY>
24696 </HTML>
24697 ====== h_config_display_filters =====
24698 <HTML>
24699 <HEAD>
24700 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
24701 </HEAD>
24702 <BODY>
24703 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
24705 This option defines a list of text-filtering commands (programs or
24706 scripts) that may be used to filter text portions of received messages
24707 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
24708 display screen, exporting to a text file).  
24709 For security reasons, the full path name of the
24710 filter command must be specified.
24713 The command is executed and the message is piped into its standard input. 
24714 The standard output of the command is read back by Alpine.  The
24715 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
24717 <P> 
24718 The filter's use is based on the configured &quot;trigger&quot; string.  The
24719 format of a filter definition is:
24721 <P>   
24722 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
24725 You can specify as many filters as you wish, separating them with a comma.  
24726 Each filter can have only one trigger and command.  Thus, two trigger 
24727 strings that invoke the same command require separate filter 
24728 specifications. 
24730 <P> 
24731 The &quot;trigger&quot; is simply text that, if found in the message,
24732 will invoke the associated command.  If the trigger contains any space
24733 characters, it must be placed within quotes.  Likewise, should you
24734 wish a filter to be invoked unconditionally, define the trigger as the
24735 null string, &quot;&quot; (two consecutive double-quote characters).  If the
24736 trigger string is found anywhere in the text of the message the filter
24737 is invoked.  Placing the trigger text within the tokens defined below
24738 changes where within the text the trigger must be before considering
24739 it a match.
24741 <P>  
24742 Trigger Modifying Tokens:
24743 <DL>
24744 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
24745 <DD>This token tells Alpine to invoke the supplied command
24746 if the text is in a character set matching <VAR>string</VAR>
24747 (e.g., ISO-8859-2 or ISO-2022-JP).
24748 </DD>
24751 <DT>_LEADING(<VAR>string</VAR>)_</DT>
24752 <DD>This token tells Alpine to invoke the supplied command
24753 if the enclosed <VAR>string</VAR> is found to be the first
24754 non-whitespace text.
24755 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24756 the space character.
24757 </DD>
24759 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
24760 <DD>This token tells Alpine to invoke the supplied command
24761 if the enclosed <VAR>string</VAR> is found at the beginning
24762 of any line in the text.
24763 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24764 the space character.
24765 </DD>
24766 </DL>
24769 The &quot;command&quot; and &quot;arguments&quot; portion is simply
24770 the command line to be invoked if the trigger string is found.  Below
24771 are tokens that Alpine will recognize and replace with special values
24772 when the command is actually invoked.
24775 Command Modifying Tokens:
24777 <DL>
24778 <DT>_TMPFILE_</DT>
24779 <DD>When the command is executed, this token is 
24780 replaced with the path and name of the temporary 
24781 file containing the text to be filtered.  Alpine 
24782 expects the filter to replace this data with the 
24783 filter's result.
24786 NOTE: Use of this token implies that the text to 
24787 be filtered is not piped into standard input of the 
24788 executed command and its standard output is ignored. 
24789 Alpine restores the tty modes before invoking the
24790 filter in case the filter interacts with the user
24791 via its own standard input and output.  
24792 </DD>
24793                         
24794 <DT>_RESULTFILE_</DT>
24795 <DD>When the command is executed, this token is 
24796 replaced with the path and name of a temporary 
24797 file intended to contain a status message from the 
24798 filter.  Alpine displays this in the message status 
24799 field. 
24800 </DD>
24802 <DT>_DATAFILE_</DT>
24803 <DD>When the command is executed, this token is 
24804 replaced with the path and name of a temporary 
24805 file that Alpine creates once per session and deletes 
24806 upon exit.  The file is intended to be used by the 
24807 filter to store state information between instances 
24808 of the filter.
24809 </DD>
24810    
24811 <DT>_PREPENDKEY_</DT>
24812 <DD>When the command is executed, this token indicates that a random
24813 number will be passed down the input stream before the message text.
24814 This number could be used as a session key.  It is sent in this way to
24815 improve security.  The number is unique to the current Alpine session
24816 and is only generated once per session.
24817 </DD>
24819 <DT>_SILENT_</DT>
24820 <DD>When the filter is executed, this token tells Alpine not to repaint
24821 the screen while the command is being executed. This can be used with 
24822 filters that do not interact with the user, and therefore repainting 
24823 the screen is not necessary. 
24824 </DD>
24825 </DL>
24828 The feature
24829 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
24831 Performance caveat/considerations:
24832 <BR>
24833 Testing for the trigger and invoking the filter doesn't come for free.
24834 There is overhead associated with searching for the trigger string, testing
24835 for the filter's existence and actually piping the text through the filter.
24836 The impact can be reduced if the Trigger Modifying Tokens above are 
24837 employed.
24839 &lt;End of help on this topic&gt;
24840 </BODY>
24841 </HTML>
24842 ====== h_config_sending_filter =====
24843 <HTML>
24844 <HEAD>
24845 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
24846 </HEAD>
24847 <BODY>
24848 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
24849       
24850 This option defines a list of text-filtering commands (programs and
24851 scripts) that may be selectively invoked to process a message just before
24852 it is sent.  If set, the Composer's ^X (Send) command will allow you to
24853 select which filter (or none) to apply to the message before it is sent. 
24854 For security reasons, the full path of the filter program must be
24855 specified.
24858 Command Modifying Tokens:
24860 <DL>
24861 <DT>_RECIPIENTS_</DT>
24862 <DD>When the command is executed, this token is replaced 
24863 with the space delimited list of recipients of the 
24864 message being sent. 
24865 </DD>
24866         
24867 <DT>_TMPFILE_</DT>
24868 <DD>
24869 When the command is executed, this token is 
24870 replaced with the path and name of the temporary 
24871 file containing the text to be filtered.  Alpine 
24872 expects the filter to replace this data with the 
24873 filter's result.
24876 NOTE: Use of this token implies that the text to 
24877 be filtered is not piped into standard input of the 
24878 executed command and its standard output is ignored. 
24879 Alpine restores the tty modes before invoking the
24880 filter in case the filter interacts with the user
24881 via its own standard input and output.  
24882 </DD>
24883                         
24884 <DT>_RESULTFILE_</DT>
24885 <DD>When the command is executed, this token is 
24886 replaced with the path and name of a temporary 
24887 file intended to contain a status message from the 
24888 filter.  Alpine displays this in the message status 
24889 field. 
24890 </DD>
24892 <DT>_DATAFILE_</DT>
24893 <DD>When the command is executed, this token is replaced 
24894 in the command line with the path and name of a 
24895 temporary file that Alpine creates once per session 
24896 and deletes upon exit.  The file is intended to be 
24897 used by the filter to store state information between 
24898 instances of the filter.
24899 </DD>
24900    
24901 <DT>_PREPENDKEY_</DT>
24902 <DD>When the command is executed, this token indicates 
24903 that a random number will be passed down the input 
24904 stream before the message text.  This number could 
24905 be used as a session key.  It is sent in this way 
24906 to improve security.  The number is unique to the 
24907 current Alpine session and is only generated once per 
24908 session. 
24909 </DD>
24911 <DT>_INCLUDEALLHDRS_</DT>
24912 <DD>When the command is executed, this token indicates 
24913 that the headers of the message will be passed down the input stream
24914 before the message text.
24915 </DD>
24917 <DT>_MIMETYPE_</DT>
24918 <DD>When the command is executed, this token is replaced in the
24919 command name with a temporary file name used to accept any new MIME
24920 Content-Type information necessitated by the output of the filter.
24921 Upon the filter's exit, if the file contains new MIME type
24922 information, Alpine verifies its format and replaces the outgoing
24923 message's MIME type information with that contained in the file. This
24924 is basically a cheap way of sending something other than Text/Plain.
24925 </DD>
24926 </DL>
24928 <P>   
24929 NOTE: Only the body text, which is visible in the Composer, is piped
24930 through this filter.  Attachments are not sent to the filter.
24931 <P>   
24932 Sending filters are not used if the feature
24933 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24935 <UL>   
24936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24937 </UL><P>
24938 &lt;End of help on this topic&gt;
24939 </BODY>
24940 </HTML>
24941 ====== h_config_keywords =====
24942 <HTML>
24943 <HEAD>
24944 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24945 </HEAD>
24946 <BODY>
24947 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24949 You may define your own set of keywords and optionally set them on a
24950 message by message basis.
24951 These are similar to the &quot;Important&quot; flag which the user
24952 may set using the Flag command.
24953 The difference is that the Important flag is always present for each folder.
24954 User-defined keywords are chosen by the user.
24955 You may set up the list of possible keywords here, or you may add keywords
24956 from the Flag Details screen that you
24957 can get to after typing the
24958 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24959 command.
24960 After the keywords have been defined,
24961 then you use the <A HREF="h_common_flag">Flag command</A>
24962 to set or clear the keywords in each message.
24963 The behavior of the flag command may be modified by using the
24964 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24965 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24968 Keywords may be used when Selecting messages (Select Keyword).
24969 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24970 Filter Rules may be used to set keywords automatically.
24971 Keywords may be displayed as part of the Subject of a message by using
24972 the SUBJKEY or SUBJKEYINIT tokens in the
24973 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24974 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24975 option may be used to modify the display of keywords using
24976 SUBJKEY and SUBJKEYINIT slightly.
24977 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24978 screen by using the KEY or KEYINIT tokens.
24979 It is also possible to color keywords in the index using the
24980 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24981 Keywords are not supported by all mail servers.
24984 You may give keywords nicknames if you wish.
24985 If the keyword definition you type in contains a SPACE character, then the
24986 actual value of the keyword is everything after the last SPACE and the
24987 nickname for that keyword is everything before the last SPACE.
24988 For example, suppose you are trying to interoperate with another email program
24989 that uses a particular keyword with an unpleasant name.
24990 Maybe it uses a keyword called
24992 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24994 but for you that keyword means that the message is work-related.
24995 You could define a keyword to have the value
24997 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24999 and then you would use the name &quot;Work&quot; when dealing with
25000 that keyword in Alpine.
25001 If you defined it as
25003 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
25005 the nickname would be everything before the last SPACE, that is the nickname
25006 would be &quot;My Work&quot;.
25008 Some commonly used keywords begin with dollar signs.
25009 This presents a slight complication, because the dollar sign is normally used
25010 to signify
25011 <A HREF="h_news_config">environment variable expansion</A>
25012 in the Alpine configuration.
25013 In order to specify a keyword that begins with a dollar sign you must
25014 precede the dollar sign with a second dollar sign to escape its special
25015 meaning.
25016 For example, if you want to include the keyword
25018 <CENTER><SAMP>$Label1</SAMP></CENTER>
25020 as one of your possible keywords, you must enter the text
25022 <CENTER><SAMP>$$Label1</SAMP></CENTER>
25025 instead.
25027 There are a couple limitations.
25028 First, not all servers support keywords.
25029 Second, some servers (including the IMAP server included with Alpine)
25030 have a per folder limit on the number of keywords that may be defined.
25031 This count commonly includes every keyword you have ever used in the
25032 folder, even if it is no longer being used.
25033 In other words, you can add keywords but you cannot remove them easily.
25034 If you have changed keywords over the life of a folder and find that
25035 you have reached such a limit, one possible solution might be to copy
25036 all of the messages to a newly created folder (using Alpine) and then
25037 delete the original and rename the new folder.
25038 The reason this might work is that only the keywords currently set in
25039 any of the messages will be used in the new folder, hopefully putting you
25040 under the limit.
25043 <UL>   
25044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25045 </UL><P>
25046 &lt;End of help on this topic&gt;
25047 </BODY>
25048 </HTML>
25049 ====== h_config_alt_addresses =====
25050 <HTML>
25051 <HEAD>
25052 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
25053 </HEAD>
25054 <BODY>
25055 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
25057 This option provides a place for you to list alternate email addresses
25058 you may have.
25059 Each address in the list should be the actual email address part of an
25060 address, without the full name field or the angle brackets.
25061 For example:
25064 <CENTER><SAMP>user@example.com</SAMP></CENTER>
25067 The matching is case-insensitive, so this would match any of
25068 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
25069 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
25072 If set, the option affects the behavior of the Reply
25073 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
25074 a message has been addressed specifically to you.
25077 In the default INDEX display
25078 the personal name (or email address) of
25079 the person listed in the message's &quot;From:&quot; header
25080 field is usually displayed except when that address is yours or one of your
25081 alternate addresses.
25082 In that case you will usually see the name of
25083 the first person specified in the
25084 message's &quot;To:&quot; header field
25085 with the prefix &quot;To: &quot; prepended.
25088 With respect to Reply, the reply-to-all option will exclude addresses
25089 listed here.
25092 The feature
25093 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
25094 is somewhat related to this option.
25097 In addition to a list of actual addresses,
25098 you may use regular expressions (as used with egrep with the ignore case flag)
25099 to describe the addresses you want to match.
25100 Alpine will somewhat arbitrarily interpret your entry as a regular
25101 expression if it contains any of the characters
25102 *, |, +, ?, {, [, ^, $, or &#92;.
25103 Otherwise, it will be treated literally.
25104 The feature
25105 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
25106 may be used to turn off regular expression processing regardless of whether or not
25107 special characters appear in the entry.
25110 A description of how regular expressions work is beyond the
25111 scope of this help text, but some examples follow.
25114 The entry
25117 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
25120 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
25121 address with a domain name of <SAMP>example.com</SAMP> (such as
25122 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
25123 one of your alternate addresses.
25124 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
25125 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
25126 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
25127 Complicating things further, the dollar sign
25128 is special in the Alpine configuration (it signifies environment variable expansion)
25129 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
25130 Quotes around the whole expression will not escape the dollar sign successfully.
25131 So this example should look like
25134 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
25138 The entry
25141 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
25144 would match
25145 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
25146 as <SAMP>fred@example.com</SAMP>.
25149 You could match all addresses that look like
25150 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
25151 entry
25154 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
25157 Notice that you have to escape the plus sign with a backslash because plus
25158 is a special character in regular expressions.
25159 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
25160 the expression
25163 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
25166 would do it, but it would be easier to just add fred@example.com as a
25167 separate entry.
25170 One more example, a match of all first-level subdomains, is given by
25173 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
25177 Because the regular expression matching is based on an old library
25178 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
25179 but they should be close.
25182 <UL>   
25183 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25184 </UL><P>
25185 &lt;End of help on this topic&gt;
25186 </BODY>
25187 </HTML>
25188 ====== h_config_abook_formats =====
25189 <HTML>
25190 <HEAD>
25191 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
25192 </HEAD>
25193 <BODY>
25194 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
25196 This option specifies the format that address books are displayed in.
25197 Normally, address books are displayed with the nicknames in the first
25198 column, the fullnames in the second column, and addresses in the third
25199 column.  The system figures out reasonable defaults for the widths of
25200 the columns.  An address book may be given a different format by
25201 listing special tokens in the order you want them to display.  The
25202 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
25203 So, for example, to get the default behavior you could list
25206 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
25209 (You can also use the token DEFAULT to get the default behavior for
25210 an address book format.)
25213 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
25214 is a list, so if you have more than one address book you may have a
25215 separate format for each by putting its format at the corresponding
25216 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
25220 Listed first are the personal address books, then the global address
25221 books.  So, if you have two personal address books and one global
25222 address book, you may have up to three formats in the
25223 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
25224 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
25225 are address books, the last element is used repeatedly.
25229 Each of the tokens may also be optionally followed by parentheses with
25230 either a number or a percentage inside the parentheses.  For example,
25231 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
25232 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
25233 of the available space (the screen width minus the space for
25234 inter-column spaces) to the fullnames column, while plain
25235 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
25236 reasonable number of columns.
25239 There are always 2 spaces between every column, so if you use
25240 fixed column widths (like 13) you should remember to take that into
25241 account.
25244 <UL>   
25245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25246 </UL><P>
25247 &lt;End of help on this topic&gt;
25248 </BODY>
25249 </HTML>
25250 ====== h_config_set_index_format =====
25251 <HTML>
25252 <HEAD>
25253 <TITLE>Set Index Format</TITLE>
25254 </HEAD>
25255 <BODY>
25256 <H1>Set Index Format</H1>
25258 This option is used to customize the content of lines in the
25259 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
25260 This action works exactly like the regular
25261 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
25262 except that you can have a folder-specific value for it if you specify it here.
25263 Consult the help for
25264 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
25265 for more information.
25268 <UL>   
25269 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25270 </UL><P>
25271 &lt;End of help on this topic&gt;
25272 </BODY>
25273 </HTML>
25274 ====== h_config_index_format =====
25275 <HTML>
25276 <HEAD>
25277 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
25278 </HEAD>
25279 <BODY>
25280 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
25282 This option is used to customize the content of lines in the
25283 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
25284 to convey some amount of immediately relevant information about each 
25285 message in the current folder.
25288 Alpine provides a pre-defined set of informational fields with
25289 reasonable column widths automatically computed.  You can, however,
25290 replace this default set by listing special tokens in the order you
25291 want them displayed.
25294 The list of available tokens is
25295 <A HREF="h_index_tokens">here</A>.
25298 Spaces are used to separate listed tokens.  Additionally, you can
25299 specify how much of the screen's width the token's associated data
25300 should occupy on the index line by appending to the token a pair of
25301 parentheses enclosing either a number or percentage.  For example,
25302 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
25303 column, and &quot;SUBJECT(20%)&quot; means to
25304 allocate 20% of the available space
25305 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
25306 attempt to figure out a reasonable amount of space.
25309 There is always one space between every pair of columns, so if you use fixed
25310 column widths (like 13) you should remember to take that into account.
25311 Several of the fields are virtually fixed-width, so it doesn't make
25312 much sense to specify the width for them.  The fields STATUS,
25313 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
25314 and DESCRIPSIZE all fall into that category.
25315 You <EM>may</EM> specify widths for those if you wish, but
25316 you're probably better off letting the system pick those widths.  <P>
25319 The default is equivalent to:
25322 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
25325 This means that the four fields without percentages will be allocated
25326 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
25327 the from and subject fields.  If one of those two fields is specified
25328 as a percentage and the other is left for the system to choose, then
25329 the percentage is taken as an absolute percentage of the screen, not
25330 of the space remaining after allocating the first four columns.  It
25331 doesn't usually make sense to do it that way.  If you leave off all
25332 the widths, then the subject and from fields (if both are present) are
25333 allocated space in a 2 to 1 ratio, which is almost exactly the same as
25334 the default.
25337 What you are most likely to do with this configuration option is to
25338 specify which fields appear at all, which order they appear in, and the
25339 percentage of screen that is used for the from and subject fields if you
25340 don't like the 2 to 1 default.
25343 If you want to retain the default format that Pine 4.64 had, use
25346 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
25348 <EM>and</EM> set the feature
25349 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
25350 <UL>   
25351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25352 </UL><P>
25353 &lt;End of help on this topic&gt;
25354 </BODY>
25355 </HTML>
25356 ====== h_config_reply_intro =====
25357 <HTML>
25358 <HEAD>
25359 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
25360 </HEAD>
25361 <BODY>
25362 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
25364 This option is used to customize the content of the introduction line
25365 that is included when replying to a message and including the original
25366 message in the reply.
25367 The normal default (what you will get if you delete this variable) looks
25368 something like:
25370 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
25372 where the day of the week is only included if it is available in the
25373 original message.
25374 You can replace this default with text of your own.
25375 The text may contain tokens that are replaced with text
25376 that depends on the message you are replying to.
25377 For example, the default is equivalent to:
25379 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
25382 Since this variable includes regular text mixed with special tokens
25383 the tokens have to be surrounded by underscore characters.
25384 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
25385 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
25386 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
25388 The list of available tokens is
25389 <A HREF="h_index_tokens">here</A>.
25392 By default, the text is all on a single line and is followed by a blank line.
25393 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
25394 than 80 characters when replying to a particular message, it is shortened.
25395 However, if you use the token
25397 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
25400 anywhere in the value, no end of line or blank line is appended, and no
25401 shortening is done.
25402 The _NEWLINE_ token may be used to get rid of the blank line following
25403 the text, to add more blank lines, or to form a multi-line
25404 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
25405 To clarify how _NEWLINE_ works recall that the default value is:
25407 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
25410 That is equivalent to
25412 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
25415 In the former case, two newlines are added automatically because
25416 no _NEWLINE_ token appears in the value of the option (for backwards
25417 compatibility). In the latter case, the newlines are explicit.
25418 If you want to remove the blank line that follows the
25419 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
25420 _NEWLINE_ token like
25422 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
25425 Because of the backwards compatibility problem, it is not possible to
25426 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
25427 and that will cause the automatic adding of two newlines!
25428 If you want, you may embed newlines in the middle of the text, as well,
25429 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
25432 By default, no attempt is made to localize the date.
25433 If you prefer a localized form you may find that one of the tokens
25434 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
25435 If you want more control one of the many other date tokens, such as _DATEISO_,
25436 might be better.
25439 For the adventurous, there is a way to conditionally include text based
25440 on whether or not a token would result in specific replacement text.
25441 For example, you could include some text based on whether or not
25442 the _NEWS_ token would result in any newsgroups if it was used.
25443 It's explained in detail
25444 <A HREF="h_reply_token_conditionals">here</A>.
25447 In the very unlikely event that you want to include a literal token
25448 in the introduction line you must precede it with a backslash character.
25449 For example,
25451 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
25453 would produce something like
25455 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
25457 It is not possible to have a literal backslash followed by an expanded token.
25459 <UL>   
25460 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25461 </UL><P>
25462 &lt;End of help on this topic&gt;
25463 </BODY>
25464 </HTML>
25465 ====== h_config_remote_abook_history =====
25466 <HTML>
25467 <HEAD>
25468 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
25469 </HEAD>
25470 <BODY>
25471 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
25473 Sets how many extra copies of
25474 remote address book
25475 data will be kept in each remote address book folder.
25476 The default is three.
25477 These extra copies are simply old versions of the data. Each time a change
25478 is made a new copy of the address book data is appended to the folder. Old
25479 copies are trimmed, if possible, when Alpine exits.
25480 An old copy can be put back into use by
25481 deleting and expunging newer versions of the data from the folder.
25482 Don't delete the first message from the folder. It is a special header
25483 message for the remote address book and it must be there.
25484 This is to prevent regular folders from being used as remote address book
25485 folders and having their data destroyed.
25487 This option is also used to determine how many extra copies of remote
25488 Alpine configuration files are kept.
25490 <UL>   
25491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25492 </UL><P>
25493 &lt;End of help on this topic&gt;
25494 </BODY>
25495 </HTML>
25496 ====== h_config_remote_abook_validity =====
25497 <HTML>
25498 <HEAD>
25499 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
25500 </HEAD>
25501 <BODY>
25502 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
25504 Sets the minimum number of minutes that a
25505 remote address book will be considered up to date.
25506 Whenever an entry contained in a remote address book is used,
25507 if more than this many minutes have
25508 passed since the last check the remote server will be queried to see if the
25509 address book has changed.
25510 If it has changed, the local copy is updated.
25511 The default value is five minutes.
25512 The special value of -1 means never check.
25513 The special value of zero means only check when the address book is first
25514 opened.
25516 No matter what the value, the validity check is always done when the
25517 address book is about to be changed by the user.
25518 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
25519 while in the address book maintenance screen for the remote address book.
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_user_input_timeo =====
25528 <HTML>
25529 <HEAD>
25530 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
25531 </HEAD>
25532 <BODY>
25533 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
25535 If this is set to an integer greater than zero, then this is the number
25536 of <EM>hours</EM> to wait for user input before Alpine times out.
25537 If Alpine is
25538 in the midst of composing a message or is waiting for user response to
25539 a question, then it will not timeout.
25540 However, if Alpine is sitting idle waiting for
25541 the user to tell it what to do next and the user does not give any
25542 input for this many hours, Alpine will exit.
25543 No expunging or moving of read
25544 messages will take place.
25545 It will exit similarly to the way it would exit
25546 if it received a hangup signal.
25547 This may be useful for cleaning up unused Alpine sessions that have been
25548 forgotten by their owners.
25549 The Alpine developers envision system administrators
25550 setting this to a value of several hours (24?) so that it won't surprise
25551 a user who didn't want to be disconnected.
25553 <UL>   
25554 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25555 </UL><P>
25556 &lt;End of help on this topic&gt;
25557 </BODY>
25558 </HTML>
25559 ====== h_config_ssh_open_timeo =====
25560 <HTML>
25561 <HEAD>
25562 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
25563 </HEAD>
25564 <BODY>
25565 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
25567 Sets the time in seconds that Alpine will
25568 attempt to open a UNIX secure shell connection.
25569 The default is 15, the minimum non-zero value is 5,
25570 and the maximum is unlimited. If this is set to zero ssh connections
25571 will be completely disabled.
25573 <UL>   
25574 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25575 </UL><P>
25576 &lt;End of help on this topic&gt;
25577 </BODY>
25578 </HTML>
25579 ====== h_config_rsh_open_timeo =====
25580 <HTML>
25581 <HEAD>
25582 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
25583 </HEAD>
25584 <BODY>
25585 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
25587 Sets the time in seconds that Alpine will
25588 attempt to open a UNIX remote shell connection.
25589 The default is 15, the minimum non-zero value is 5,
25590 and the maximum is unlimited. If this is set to zero rsh connections
25591 will be completely disabled.
25592 This might be useful if rsh connections will never work in your environment
25593 but are causing delays due to firewalls or some other reason.
25595 <UL>   
25596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25597 </UL><P>
25598 &lt;End of help on this topic&gt;
25599 </BODY>
25600 </HTML>
25601 ====== h_config_tcp_open_timeo =====
25602 <HTML>
25603 <HEAD>
25604 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
25605 </HEAD>
25606 <BODY>
25607 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
25609 Sets the time in seconds that Alpine will
25610 attempt to open a network connection. The default is 30, the minimum is 5,
25611 and the maximum is system defined (typically 75). If a connection has not
25612 completed within this many seconds Alpine will give up and consider it a
25613 failed connection.
25615 <UL>   
25616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25617 </UL><P>
25618 &lt;End of help on this topic&gt;
25619 </BODY>
25620 </HTML>
25621 ====== h_config_tcp_readwarn_timeo =====
25622 <HTML>
25623 <HEAD>
25624 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
25625 </HEAD>
25626 <BODY>
25627 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
25629 Sets the time in seconds that Alpine will
25630 wait for a network read before warning you that things are moving slowly
25631 and possibly giving you the option to break the connection.
25632 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
25633 1000 seconds.
25635 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
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_tcp_writewarn_timeo =====
25644 <HTML>
25645 <HEAD>
25646 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
25647 </HEAD>
25648 <BODY>
25649 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
25651 Sets the time in seconds that Alpine will
25652 wait for a network write before warning you that things are moving slowly
25653 and possibly giving you the option to break the connection.
25654 The default is 0 which means it is unset. If set to a non-zero value, the
25655 minimum is 5 and the maximum is 1000.
25657 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
25659 <UL>   
25660 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25661 </UL><P>
25662 &lt;End of help on this topic&gt;
25663 </BODY>
25664 </HTML>
25665 ====== h_config_tcp_query_timeo =====
25666 <HTML>
25667 <HEAD>
25668 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
25669 </HEAD>
25670 <BODY>
25671 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
25673 When Alpine times out a network read or write it will normally just display
25674 a message saying &quot;Still waiting&quot;.
25675 However, if enough time has elapsed since it started waiting it will offer
25676 to let you break the connection.
25677 That amount of time is set by this option, which defaults to 60 seconds,
25678 has a minimum of 5 seconds, and a maximum of 1000 seconds.
25680 <UL>   
25681 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25682 </UL><P>
25683 &lt;End of help on this topic&gt;
25684 </BODY>
25685 </HTML>
25686 ====== h_config_quit_query_timeo =====
25687 <HTML>
25688 <HEAD>
25689 <TITLE>OPTION: <!--#echo var="VAR_close-connection-timeout"--></TITLE>
25690 </HEAD>
25691 <BODY>
25692 <H1>OPTION: <!--#echo var="VAR_close-connection-timeout"--></H1>
25694 The original purpose of this option was to close a connection after this
25695 much time has elapsed without response from the server. The problem this
25696 generates is that a server might not reply on time due to a slow operation
25697 (for example, sorting a large folder, or filtering messages, etc.) In those
25698 situations it is desirable to wait for the server, even when this takes
25699 a long time.
25702 In order to have a good compromise so that a user can distinguish between
25703 when a connection is closed, therefore
25704 we do not need to wait for it, and the operation that the user is waiting
25705 for takes a long time, this option only applies to the
25706 &quot;NOOP&quot; IMAP command. So, if a NOOP command has been issued,
25707 and the connection does not return after the number of seconds configured
25708 here, which must be at least the amount configured in the option
25709 <a href="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></a>,
25710 then Alpine will close the connection.
25713 Closing connections that have connectivity problems is a good idea. In an ideal
25714 world, one would like all connections to be fast and reliable, so the amount
25715 of time and effort put into parsing a folder to report its state when it is
25716 opened is not wasted, so keeping connections alive is good, but the problem
25717 with this is that waiting for a user to reply to a &quot;keep connection
25718 alive?&quot; question can take a long time, and that might affect other
25719 connections that could be closed because Alpine is not pinging them while it
25720 is waiting for a reply from a user for a different connection. Therefore
25721 setting this value helps to keep other connections alive, in case
25722 you have several incoming folders in other servers.
25725 The default value for this option is 0, which means that no connections will
25726 be closed automatically, so if you want connections to be closed automatically
25727 you must set this option to a positive number bigger or equal than the
25728 value of the option <!--#echo var="VAR_tcp-query-timeout"-->.
25730 <UL>
25731 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25732 </UL><P>
25733 &lt;End of help on this topic&gt;
25734 </BODY>
25735 </HTML>
25736 ====== h_config_incoming_folders =====
25737 <HTML>
25738 <HEAD>
25739 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
25740 </HEAD>
25741 <BODY>
25742 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
25744 This is a list of one or more folders other than <EM>INBOX</EM> that
25745 may receive new messages.
25746 It is related to the
25747 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
25748 feature.
25749 This variable is normally manipulated with the Add, Delete, and Rename
25750 commands in the FOLDER LIST for the Incoming Message Folders collection.
25752 <UL>   
25753 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25754 </UL><P>
25755 &lt;End of help on this topic&gt;
25756 </BODY>
25757 </HTML>
25758 ====== h_config_folder_spec =====
25759 <HTML>
25760 <HEAD>
25761 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
25762 </HEAD>
25763 <BODY>
25764 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
25766 This is a list of one or more collections where saved mail is stored. 
25767 The first collection in this list is the default
25768 collection for <EM>Save</EM>s,
25769 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
25771 This variable is normally manipulated using the Setup/collectionList screen.
25773 <UL>   
25774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25775 </UL><P>
25776 &lt;End of help on this topic&gt;
25777 </BODY>
25778 </HTML>
25779 ====== h_config_news_spec =====
25780 <HTML>
25781 <HEAD>
25782 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
25783 </HEAD>
25784 <BODY>
25785 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
25787 This is a list of collections where news folders are located.
25789 This variable is normally manipulated using the Setup/collectionList screen.
25791 <UL>   
25792 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25793 </UL><P>
25794 &lt;End of help on this topic&gt;
25795 </BODY>
25796 </HTML>
25797 ====== h_config_address_book =====
25798 <HTML>
25799 <HEAD>
25800 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
25801 </HEAD>
25802 <BODY>
25803 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
25805 A list of personal address books.
25806 Each entry in the list is an
25807 optional nickname followed by a pathname or file name relative to the home
25808 directory.
25809 The nickname is separated from the rest of the line with whitespace.
25810 Instead of a local pathname or file name, a remote folder name can be given.
25811 This causes the address book to
25812 be a Remote address book.
25814 Use the Setup/AddressBook screen to modify this variable.
25816 <UL>   
25817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25818 </UL><P>
25819 &lt;End of help on this topic&gt;
25820 </BODY>
25821 </HTML>
25822 ====== h_config_glob_addrbook =====
25823 <HTML>
25824 <HEAD>
25825 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
25826 </HEAD>
25827 <BODY>
25828 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
25830 A list of shared address books.  Each entry in the list is an
25831 optional nickname followed by a pathname or file name relative to the home
25832 directory.
25833 A SPACE character separates the nickname from the rest of the line.
25834 Instead of a local pathname or file name, a remote folder name can be given.
25835 This causes the address book to
25836 be a Remote address book.
25837 Global address books are
25838 defined to be ReadOnly.
25840 Use the Setup/AddressBook screen to modify this variable.
25842 <UL>   
25843 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25844 </UL><P>
25845 &lt;End of help on this topic&gt;
25846 </BODY>
25847 </HTML>
25848 ====== h_config_last_vers =====
25849 <HTML>
25850 <HEAD>
25851 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
25852 </HEAD>
25853 <BODY>
25854 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
25856 This is set automatically by Alpine. 
25857 It is used to keep track of the last version of Alpine that
25858 was run by the user.
25859 Whenever the version number increases, a new version message is printed out.
25860 This may not be set in the system-wide configuration files.
25862 <UL>   
25863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25864 </UL><P>
25865 &lt;End of help on this topic&gt;
25866 </BODY>
25867 </HTML>
25868 ====== h_config_printer =====
25869 <HTML>
25870 <HEAD>
25871 <TITLE>OPTION: Printer</TITLE>
25872 </HEAD>
25873 <BODY>
25874 <H1>OPTION: Printer</H1>
25876 Your default printer selection.
25878 Use the Setup/Printer screen to modify this variable.
25880 <UL>   
25881 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25882 </UL><P>
25883 &lt;End of help on this topic&gt;
25884 </BODY>
25885 </HTML>
25886 ====== h_config_print_cat =====
25887 <HTML>
25888 <HEAD>
25889 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
25890 </HEAD>
25891 <BODY>
25892 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
25894 This is an internal Alpine variable.
25895 It will be equal to 1, 2, or 3 depending on whether the default printer is
25896 attached, standard, or a personal print command.
25898 Use the Setup/Printer screen to modify this variable.
25900 <UL>   
25901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25902 </UL><P>
25903 &lt;End of help on this topic&gt;
25904 </BODY>
25905 </HTML>
25906 ====== h_config_print_command =====
25907 <HTML>
25908 <HEAD>
25909 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
25910 </HEAD>
25911 <BODY>
25912 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
25914 List of personal print commands.
25916 Use the Setup/Printer screen to modify this variable.
25918 <UL>   
25919 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25920 </UL><P>
25921 &lt;End of help on this topic&gt;
25922 </BODY>
25923 </HTML>
25924 ====== h_config_pat_old =====
25925 <HTML>
25926 <HEAD>
25927 <TITLE>OPTION: Patterns</TITLE>
25928 </HEAD>
25929 <BODY>
25930 <H1>OPTION: Patterns</H1>
25932 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
25933 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
25934 and Patterns-Other.
25935 Patterns-Scores and Patterns-Filters have been replaced since then by
25936 Patterns-Scores2 and Patterns-Filters2.
25938 Use the Setup/Rules screens to modify these variable.
25940 <UL>   
25941 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25942 </UL><P>
25943 &lt;End of help on this topic&gt;
25944 </BODY>
25945 </HTML>
25946 ====== h_config_pat_roles =====
25947 <HTML>
25948 <HEAD>
25949 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25950 </HEAD>
25951 <BODY>
25952 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25954 List of rules used for roles.
25955 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25956 other options.
25958 Use the Setup/Rules/Roles screen to modify this variable.
25960 <UL>   
25961 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25962 </UL><P>
25963 &lt;End of help on this topic&gt;
25964 </BODY>
25965 </HTML>
25966 ====== h_config_pat_filts =====
25967 <HTML>
25968 <HEAD>
25969 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25970 </HEAD>
25971 <BODY>
25972 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25974 List of rules used for filters.
25976 Use the Setup/Rules/Filters screen to modify this variable.
25978 <UL>   
25979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25980 </UL><P>
25981 &lt;End of help on this topic&gt;
25982 </BODY>
25983 </HTML>
25984 ====== h_config_pat_scores =====
25985 <HTML>
25986 <HEAD>
25987 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25988 </HEAD>
25989 <BODY>
25990 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25992 List of rules used for scoring.
25994 Use the Setup/Rules/SetScores screen to modify this variable.
25996 <UL>   
25997 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25998 </UL><P>
25999 &lt;End of help on this topic&gt;
26000 </BODY>
26001 </HTML>
26002 ====== h_config_pat_other =====
26003 <HTML>
26004 <HEAD>
26005 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
26006 </HEAD>
26007 <BODY>
26008 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
26010 List of rules used for miscellaneous configuration.
26012 Use the Setup/Rules/Other screen to modify this variable.
26014 <UL>   
26015 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26016 </UL><P>
26017 &lt;End of help on this topic&gt;
26018 </BODY>
26019 </HTML>
26020 ====== h_config_pat_incols =====
26021 <HTML>
26022 <HEAD>
26023 <TITLE>OPTION: patterns-indexcolors</TITLE>
26024 </HEAD>
26025 <BODY>
26026 <H1>OPTION: patterns-indexcolors</H1>
26028 List of rules used for coloring lines in the index.
26030 Use the Setup/Rules/Indexcolor screen to modify this variable.
26032 <UL>   
26033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26034 </UL><P>
26035 &lt;End of help on this topic&gt;
26036 </BODY>
26037 </HTML>
26038 ====== h_config_pat_srch =====
26039 <HTML>
26040 <HEAD>
26041 <TITLE>OPTION: patterns-search</TITLE>
26042 </HEAD>
26043 <BODY>
26044 <H1>OPTION: patterns-search</H1>
26046 List of rules used only for searching with the Select command in the MESSAGE INDEX.
26048 Use the Setup/Rules/searCh screen to modify this variable.
26050 <UL>   
26051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26052 </UL><P>
26053 &lt;End of help on this topic&gt;
26054 </BODY>
26055 </HTML>
26056 ====== h_config_font_name =====
26057 <HTML>
26058 <HEAD>
26059 <TITLE>OPTION: Font Name</TITLE>
26060 </HEAD>
26061 <BODY>
26062 <H1>OPTION: Font Name</H1>
26064 PC-Alpine only.
26066 Name of normal font.
26068 Use the pulldown Config menu to modify this variable.
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_font_size =====
26077 <HTML>
26078 <HEAD>
26079 <TITLE>OPTION: Font Size</TITLE>
26080 </HEAD>
26081 <BODY>
26082 <H1>OPTION: Font Size</H1>
26084 PC-Alpine only.
26086 Size of normal font.
26088 Use the pulldown Config menu to modify this variable.
26090 <UL>   
26091 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26092 </UL><P>
26093 &lt;End of help on this topic&gt;
26094 </BODY>
26095 </HTML>
26096 ====== h_config_font_style =====
26097 <HTML>
26098 <HEAD>
26099 <TITLE>OPTION: Font Style</TITLE>
26100 </HEAD>
26101 <BODY>
26102 <H1>OPTION: Font Style</H1>
26104 PC-Alpine only.
26106 Style of normal font.
26108 Use the pulldown Config menu to modify this variable.
26110 <UL>   
26111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26112 </UL><P>
26113 &lt;End of help on this topic&gt;
26114 </BODY>
26115 </HTML>
26116 ====== h_config_font_char_set =====
26117 <HTML>
26118 <HEAD>
26119 <TITLE>OPTION: Font Character Set</TITLE>
26120 </HEAD>
26121 <BODY>
26122 <H1>OPTION: Font Character Set</H1>
26124 PC-Alpine only.
26126 Character set of normal font.
26128 Use the pulldown Config menu to modify this variable.
26130 <UL>   
26131 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26132 </UL><P>
26133 &lt;End of help on this topic&gt;
26134 </BODY>
26135 </HTML>
26136 ====== h_config_print_font_name =====
26137 <HTML>
26138 <HEAD>
26139 <TITLE>OPTION: Print-Font-Name</TITLE>
26140 </HEAD>
26141 <BODY>
26142 <H1>OPTION: Print-Font-Name</H1>
26144 PC-Alpine only.
26146 Name of printer font.
26148 Use the pulldown Config menu to modify this variable.
26150 <UL>   
26151 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26152 </UL><P>
26153 &lt;End of help on this topic&gt;
26154 </BODY>
26155 </HTML>
26156 ====== h_config_print_font_size =====
26157 <HTML>
26158 <HEAD>
26159 <TITLE>OPTION: Print-Font-Size</TITLE>
26160 </HEAD>
26161 <BODY>
26162 <H1>OPTION: Print-Font-Size</H1>
26164 PC-Alpine only.
26166 Size of printer font.
26168 Use the pulldown Config menu to modify this variable.
26170 <UL>   
26171 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26172 </UL><P>
26173 &lt;End of help on this topic&gt;
26174 </BODY>
26175 </HTML>
26176 ====== h_config_print_font_style =====
26177 <HTML>
26178 <HEAD>
26179 <TITLE>OPTION: Print-Font-Style</TITLE>
26180 </HEAD>
26181 <BODY>
26182 <H1>OPTION: Print-Font-Style</H1>
26184 PC-Alpine only.
26186 Style of printer font.
26188 Use the pulldown Config menu to modify this variable.
26190 <UL>   
26191 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26192 </UL><P>
26193 &lt;End of help on this topic&gt;
26194 </BODY>
26195 </HTML>
26196 ====== h_config_print_font_char_set =====
26197 <HTML>
26198 <HEAD>
26199 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
26200 </HEAD>
26201 <BODY>
26202 <H1>OPTION: Print-Font-Char-Set</H1>
26204 PC-Alpine only.
26206 Character set of printer font.
26208 Use the pulldown Config menu to modify this variable.
26210 <UL>   
26211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26212 </UL><P>
26213 &lt;End of help on this topic&gt;
26214 </BODY>
26215 </HTML>
26216 ====== h_config_window_position =====
26217 <HTML>
26218 <HEAD>
26219 <TITLE>OPTION: Window-Position</TITLE>
26220 </HEAD>
26221 <BODY>
26222 <H1>OPTION: Window-Position</H1>
26224 PC-Alpine only.
26226 Position on the screen of the Alpine window.
26228 Alpine normally maintains this variable itself, and it is set automatically. 
26229 This variable is provided to those who wish to use the same window position 
26230 across different machines from the same configuration.
26231 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
26232 must also be set for this setting to be used.
26234 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
26235 C is the number of columns, R is the number of rows, and X and Y specify the
26236 top left corner of the window.
26238 <UL>   
26239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26240 </UL><P>
26241 &lt;End of help on this topic&gt;
26242 </BODY>
26243 </HTML>
26244 ====== h_config_cursor_style =====
26245 <HTML>
26246 <HEAD>
26247 <TITLE>OPTION: Cursor Style</TITLE>
26248 </HEAD>
26249 <BODY>
26250 <H1>OPTION: Cursor Style</H1>
26252 PC-Alpine only.
26254 Cursor style.
26256 Use the pulldown Config menu to modify this variable.
26258 <UL>   
26259 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26260 </UL><P>
26261 &lt;End of help on this topic&gt;
26262 </BODY>
26263 </HTML>
26264 ====== h_config_ldap_servers =====
26265 <HTML>
26266 <HEAD>
26267 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
26268 </HEAD>
26269 <BODY>
26270 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
26272 List of LDAP servers and associated data.
26274 Use the Setup/Directory screen to modify this variable.
26276 <UL>   
26277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26278 </UL><P>
26279 &lt;End of help on this topic&gt;
26280 </BODY>
26281 </HTML>
26282 ====== h_config_sendmail_path =====
26283 <HTML>
26284 <HEAD>
26285 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
26286 </HEAD>
26287 <BODY>
26288 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
26290 This names the path to an
26291 alternative program, and any necessary arguments, to be used in posting
26292 mail messages. See the Technical notes for more information.
26294 <UL>   
26295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26296 </UL><P>
26297 &lt;End of help on this topic&gt;
26298 </BODY>
26299 </HTML>
26300 ====== h_config_oper_dir =====
26301 <HTML>
26302 <HEAD>
26303 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
26304 </HEAD>
26305 <BODY>
26306 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
26308 This names the root of the
26309 tree to which you are restricted when reading and writing folders and
26310 files. It is usually used in the system-wide,
26311 <EM>fixed</EM> configuration file.
26313 <UL>   
26314 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26315 </UL><P>
26316 &lt;End of help on this topic&gt;
26317 </BODY>
26318 </HTML>
26319 ====== h_config_rshpath =====
26320 <HTML>
26321 <HEAD>
26322 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
26323 </HEAD>
26324 <BODY>
26325 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
26327 Sets the name of the command used to open a UNIX remote shell
26328 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
26330 <UL>   
26331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26332 </UL><P>
26333 &lt;End of help on this topic&gt;
26334 </BODY>
26335 </HTML>
26336 ====== h_config_rshcmd =====
26337 <HTML>
26338 <HEAD>
26339 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
26340 </HEAD>
26341 <BODY>
26342 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
26344 Sets the format of the command used to
26345 open a UNIX remote shell connection. The default is
26346 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
26347 provided command. The first is for the command's pathname, the second is
26348 for the host to connect to, the third is for the user to connect as, and
26349 the fourth is for the connection method (typically <CODE>imap</CODE>).
26351 <UL>   
26352 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26353 </UL><P>
26354 &lt;End of help on this topic&gt;
26355 </BODY>
26356 </HTML>
26357 ====== h_config_sshpath =====
26358 <HTML>
26359 <HEAD>
26360 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
26361 </HEAD>
26362 <BODY>
26363 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
26365 Sets the name of the command used to open a UNIX secure shell
26366 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
26368 <UL>   
26369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26370 </UL><P>
26371 &lt;End of help on this topic&gt;
26372 </BODY>
26373 </HTML>
26374 ====== h_config_sshcmd =====
26375 <HTML>
26376 <HEAD>
26377 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
26378 </HEAD>
26379 <BODY>
26380 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
26382 Sets the format of the command used to
26383 open a UNIX secure shell connection. The default is
26384 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
26385 provided command. The first is for the command's pathname, the second is
26386 for the host to connect to, the third is for the user to connect as, and
26387 the fourth is for the connection method (typically <CODE>imap</CODE>).
26389 <UL>   
26390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26391 </UL><P>
26392 &lt;End of help on this topic&gt;
26393 </BODY>
26394 </HTML>
26395 ====== h_config_new_ver_quell =====
26396 <HTML>
26397 <HEAD>
26398 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
26399 </HEAD>
26400 <BODY>
26401 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
26403 When a new version of Alpine is run for the first time it offers a
26404 special explanatory screen to the user upon startup.  This option
26405 helps control when and if that special screen appears for users that
26406 have previously run Alpine.  It takes as its value an Alpine version
26407 number.  Alpine versions less than the specified value will suppress this
26408 special screen while versions equal to or greater than that specified
26409 will behave normally.
26411 <UL>   
26412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26413 </UL><P>
26414 &lt;End of help on this topic&gt;
26415 </BODY>
26416 </HTML>
26417 ====== h_config_disable_drivers =====
26418 <HTML>
26419 <HEAD>
26420 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
26421 </HEAD>
26422 <BODY>
26423 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
26425 This variable is a list of mail drivers that will be disabled.
26426 The candidates for disabling are listed below.
26427 There may be more in the future if you compile Alpine with
26428 a newer version of the c-client library.
26431 <UL>
26432 <LI> mbox
26433 <LI> mbx
26434 <LI> mh
26435 <LI> mmdf
26436 <LI> mtx
26437 <LI> mx
26438 <LI> news
26439 <LI> phile
26440 <LI> tenex
26441 <LI> unix
26442 </UL>
26445 The <EM>mbox</EM> driver enables the following behavior: if there is a
26446 file called <CODE>mbox</CODE>
26447 in your home directory, and if that file is either empty or in Unix mailbox
26448 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
26449 will automatically transfer mail from the system mail spool directory into the
26450 <CODE>mbox</CODE> file and
26451 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
26452 this will not happen.
26455 It is not recommended to disable the driver that supports the system default
26456 mailbox format. On most non-SCO systems, that driver is the
26457 <EM>unix</EM> driver.
26458 On most SCO systems, it is the <EM>mmdf</EM> driver.
26459 The system default driver may be
26460 configured to something else on your system; check with your system manager
26461 for additional information.
26464 It is most likely not very useful for you to disable any of the drivers other
26465 than possibly <EM>mbox</EM>.
26466 You could disable some of the others if you know for
26467 certain that you don't need them but the performance gain in doing so
26468 is very modest.
26470 <UL>   
26471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26472 </UL><P>
26473 &lt;End of help on this topic&gt;
26474 </BODY>
26475 </HTML>
26476 ====== h_config_disable_auths =====
26477 <HTML>
26478 <HEAD>
26479 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
26480 </HEAD>
26481 <BODY>
26482 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
26484 This variable is a list of SASL (Simple Authentication and Security
26485 Layer) authenticators that will be disabled.
26486 SASL is a mechanism for
26487 authenticating to IMAP, POP3, SMTP, and other network servers.
26490 Alpine matches its list of supported authenticators with the server to
26491 determine the most secure authenticator that is supported by both.
26492 If no matching authenticators are found, Alpine will revert to plaintext
26493 login (or, in the case of SMTP, will be unable to authenticate at all).
26495 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
26498 Normally, you will not disable any authenticators.
26499 There are two exceptions:
26501 <OL>
26502 <LI> You use a broken server that advertises an authenticator,
26503 but does not actually implement it.
26504 <LI> You have a Kerberos-capable version of Alpine and the server is
26505 also Kerberos-capable, but you can not obtain Kerberos
26506 credentials on the server machine, thus you desire to disable
26507 GSSAPI (which in turn disables Alpine's Kerberos support).
26508 </OL>
26510 It is never necessary to disable authenticators, since Alpine will try
26511 other authenticators before giving up.
26512 However, disabling the relevant authenticator avoids annoying error messages.
26514 <UL>   
26515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26516 </UL><P>
26517 &lt;End of help on this topic&gt;
26518 </BODY>
26519 </HTML>
26520 ====== h_config_encryption_range =====
26521 <HTML>
26522 <HEAD>
26523 <TITLE>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></TITLE>
26524 </HEAD>
26525 <BODY>
26526 <H1>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></H1>
26528 This option sets a range of encryption protocols that can be attempted when
26529 Alpine will try to establish a secure connection using the SSL or TLS
26530 protocols.
26533 Before a secure connection to an external server is established, Alpine and the
26534 server will attempt to negotiate a secure connection. This part is known as the
26535 &quot;ClientHello&quot;. At that time Alpine will announce the version of
26536 encryption that it would like to establish. The server can reject that, and announce
26537 a different version of encryption. Once both the server and Alpine have found
26538 a version of encryption that they both agree on, they will both use it to start
26539 a secure connection.
26542 The use of the /ssl parameter in the definition of the server will make Alpine
26543 attempt the highest encryption protocol that it can use, in agreement with the
26544 server. However, using this option, you will set limits to the versions of
26545 the protocols that are used. This would, for example, allow you to disable the use
26546 of ssl3, in favor of more modern protocols. 
26549 For purposes of this option, the protocols are sorted 
26550 as follows
26553 <CENTER>
26554 no_min < ssl3 < tls1 < tls1_1 < tls1_2 < tls1_3 < no_max
26555 </CENTER>
26558 For example, if you want to disable ssl3, all you have to do is to set the minimum 
26559 version to tls1, or any higher protocol. 
26561 <P>The name of the parameters used to configure this option is the same as the 
26562 parameters that are added to the definition of a server to make it a secure 
26563 connection, and they are listed above for your reference.
26566 The special values &quot;no_min&quot; and &quot;no_max&quot; do not set values
26567 for the minimum and maximum protocol versions, and Alpine will use the maximum
26568 and minimum values of encryption protocols built into your SSL library.
26571 <UL>   
26572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26573 </UL><P>
26574 &lt;End of help on this topic&gt;
26575 </BODY>
26576 </HTML>
26577 ====== h_config_abook_metafile =====
26578 <HTML>
26579 <HEAD>
26580 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
26581 </HEAD>
26582 <BODY>
26583 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
26585 This is usually set by Alpine and is the name of a file
26586 that contains data about
26587 remote address books and remote configuration files.
26589 <UL>   
26590 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26591 </UL><P>
26592 &lt;End of help on this topic&gt;
26593 </BODY>
26594 </HTML>
26595 ====== h_config_composer_wrap_column =====
26596 <HTML>
26597 <HEAD>
26598 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
26599 </HEAD>
26600 <BODY>
26601 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
26604 This option specifies an aspect of Alpine's Composer.  This gives the
26605 maximum width that auto-wrapped lines will have.  It's also the maximum
26606 width of lines justified using the <A HREF="h_compose_justify">^J
26607 Justify</A> command.  The normal default
26608 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
26609 in order to
26610 prevent very long lines from being sent in outgoing mail.  When the mail
26611 is actually sent, trailing spaces will be stripped off of each line.
26614 <UL>   
26615 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26616 </UL><P>
26617 &lt;End of help on this topic&gt;
26618 </BODY>
26619 </HTML>
26620 ====== h_config_deadlets =====
26621 <HTML>
26622 <HEAD>
26623 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
26624 </HEAD>
26625 <BODY>
26626 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
26629 This option affects Alpine's behavior when you cancel a message being
26630 composed.  Alpine's usual behavior is to write the canceled message to
26631 a file named 
26632 <!--chtml if pinemode="os_windows"-->
26633 &quot;DEADLETR&quot;,
26634 <!--chtml else-->
26635 &quot;dead.letter&quot; in your home directory,
26636 <!--chtml endif-->
26637 overwriting any previous message.
26639 If you set this option to a value higher than one, then that many copies
26640 of dead letter files will be saved.
26641 For example, if you set this option to &quot;3&quot; then you may have
26642 files named
26643 <!--chtml if pinemode="os_windows"-->
26644 &quot;DEADLETR&quot;,
26645 &quot;DEADLETR2&quot;, and
26646 &quot;DEADLETR3&quot;.
26647 <!--chtml else-->
26648 &quot;dead.letter&quot;,
26649 &quot;dead.letter2&quot;, and
26650 &quot;dead.letter3&quot; in your home directory.
26651 <!--chtml endif-->
26652 In this example, the most recently cancelled message will be in
26653 <!--chtml if pinemode="os_windows"-->
26654 &quot;DEADLETR&quot;,
26655 <!--chtml else-->
26656 &quot;dead.letter&quot;,
26657 <!--chtml endif-->
26658 and the third most recently cancelled message will be in
26659 <!--chtml if pinemode="os_windows"-->
26660 &quot;DEADLETR3&quot;.
26661 <!--chtml else-->
26662 &quot;dead.letter3&quot;.
26663 <!--chtml endif-->
26664 The fourth most recently cancelled message will no longer be saved.
26667 If you set this option to zero, then NO record of canceled messages is
26668 maintained.
26670 If the feature
26671 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
26672 is set, that overrides whatever you set for this option.
26673 If this option had existed at the time, then the Quell feature would not
26674 have been added, but it is still there for backwards compatibility.
26675 So, in order for this option to have the desired effect, make sure the
26676 Quell feature is turned off.
26679 <UL>   
26680 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26681 </UL><P>
26682 &lt;End of help on this topic&gt;
26683 </BODY>
26684 </HTML>
26685 ====== h_config_maxremstream =====
26686 <HTML>
26687 <HEAD>
26688 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
26689 </HEAD>
26690 <BODY>
26691 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
26693 This option affects low-level behavior of Alpine.
26694 The default value for this option is <EM>3</EM>.
26695 If your INBOX is accessed using the IMAP protocol
26696 from an IMAP server, that connection is kept open throughout the
26697 duration of your Alpine session, independent of the value of this option.
26698 The same is true of any 
26699 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26700 you have defined.
26701 This option controls Alpine's behavior when connecting to remote IMAP folders
26702 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
26703 It specifies the maximum number of remote IMAP connections (other than
26704 those mentioned above) that Alpine will use for accessing the rest of your
26705 folders.
26706 If you set this option to zero, you will turn off most remote connection
26707 re-use.
26708 It's difficult to understand exactly what this option does, and it is usually
26709 fine to leave it set to its default value.
26710 It is probably more likely that you will be interested in setting the
26711 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
26712 instead of changing the value of this option.
26713 A slightly longer explanation of what is going on with this option
26714 is given in the next paragraphs.
26717 There are some time costs involved in opening and closing remote IMAP 
26718 folders, the main costs being the time you have to wait for the connection
26719 to the server and the time for the folder to open.
26720 Opening a folder may involve not only the time the server takes to do its
26721 processing but time that Alpine uses to do filtering.
26722 These times can vary widely.
26723 They depend on how loaded the server is, how large
26724 the folder being opened is, and how you set up filtering, among other things.
26725 Once Alpine has opened a connection to a particular folder, it will attempt
26726 to keep that connection open in case you use it again.
26727 In order to do this,
26728 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
26729 this option) IMAP connections you have allotted for this purpose.
26731 For example, suppose the value of this option is set to &quot;2&quot;.
26732 If your INBOX is accessed on a remote server using the IMAP protocol, that
26733 doesn't count as one of the remote connections but it is always kept open.
26734 If you then open another IMAP folder, that would be your first
26735 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
26736 If you open a third folder the second will be left open, in case you
26737 return to it.
26738 You won't be able to tell it has been left open.
26739 It will appear to be closed when you leave the folder but the connection
26740 will remain in the background.
26741 Now suppose you go back to the second folder (the first folder after the
26742 INBOX).
26743 A connection to that folder is still open so you won't have to wait
26744 for the startup time to open it.
26745 Meanwhile, the connection to the third folder will be left behind.
26746 Now, if you open a fourth folder, you will bump into the
26747 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
26748 than INBOX and you have the option set to &quot;2&quot;.
26749 The connection that is being used for
26750 the third folder will be re-used for this new fourth folder.
26751 If you go back to the third folder after this, it is no longer already
26752 connected when you get there.
26753 You'll still save some time since Alpine will re-use the connection to the
26754 fourth folder and you have already logged in on that connection,
26755 but the folder will have to be re-opened from scratch.
26757 If a folder is large and the startup cost is dominated by the time it takes
26758 to open that folder or to run filters on it, then it will pay to make the
26759 value of this option large enough to keep it open.
26760 On the other hand, if you only revisit a handful of folders or if
26761 the folders are small, then it might
26762 make more sense to keep this number small so that the reconnect
26763 time (the time to start up a new connection and authenticate)
26764 is eliminated instead.
26766 You may also need to consider the impact on the server.
26767 On the surface, a larger number here may cause a larger impact on the
26768 server, since you will have more connections open to the server.
26769 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
26770 associated with reopening a folder, but the <EM>server</EM> will be
26771 avoiding those costs as well.
26773 When twenty five minutes pass without any active use of an IMAP connection
26774 being saved for possible re-use, that connection will be shut down,
26777 <UL>   
26778 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26779 </UL><P>
26780 &lt;End of help on this topic&gt;
26781 </BODY>
26782 </HTML>
26783 ====== h_config_permlocked =====
26784 <HTML>
26785 <HEAD>
26786 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
26787 </HEAD>
26788 <BODY>
26789 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
26791 This option affects low-level behavior of Alpine.
26792 There is no default value for this option.
26793 It is related to the options
26794 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
26795 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
26796 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
26799 Note: changes made to this list take effect the next time you open a
26800 folder in the list.
26803 This is a list of folders that will be permanently kept open once they
26804 are first opened.
26805 The names in this list may be either the nickname of an Incoming folder
26806 or the full technical specification of a folder.
26807 The folders in this list need not be remote IMAP folders, they could usefully
26808 be local folders, as well.
26809 If a folder in the list is a newsgroup or is not accessed either locally
26810 or via IMAP, then the entry will be ignored.
26811 For example, folders accessed via NNTP or POP3 will not be kept open, since
26812 the way that new mail is found with those protocols involves closing and
26813 reopening the connection.
26815 Once a Stay Open folder has been opened, new-mail checking will continue
26816 to happen on that folder for the rest of the Alpine session.
26817 Your INBOX is always implicitly included in this Stay-Open list and doesn't
26818 need to be added explicitly.
26820 Another difference that you may notice between a Stay Open folder and a
26821 non-Stay Open folder is which message is selected as the current message
26822 when you enter the folder index.
26823 Normally, the starting position for an incoming folder (which most Stay Open
26824 folders will likely be) is controlled by the
26825 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
26826 However, if a folder is a Stay Open folder, when you re-enter the folder
26827 after the first time the current message will be the same as it was when
26828 you left the folder.
26829 An exception is made if you use the TAB command to get to the folder.
26830 In that case, the message number will be incremented by one from what it
26831 was when you left the folder.
26833 The above special behavior is thought to be useful.
26834 However, it is special and different from what you might at first expect.
26835 The feature
26836 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
26837 may be used to turn off this special treatment.
26839 If the message that was current when you left the folder no longer exists,
26840 then the regular startup rule will be used instead.
26843 <UL>   
26844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26845 </UL><P>
26846 &lt;End of help on this topic&gt;
26847 </BODY>
26848 </HTML>
26849 ====== h_config_viewer_overlap =====
26850 <html>
26851 <header>
26852 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
26853 </header>
26854 <body>
26855 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
26857 This option specifies an aspect of Alpine's Message Viewing screen.  When
26858 the space bar is used to page forward in a message, the number of lines
26859 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
26860 bottom of the screen.  That is, if this was set to two lines, then the
26861 bottom two lines of the screen would be repeated on the top of the next
26862 screen.  The normal default value is "2".<p>
26863 <UL>   
26864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26865 </UL><P>
26866 &lt;End of help on this topic&gt;
26867 </body>
26868 </html>
26869 ====== h_config_scroll_margin =====
26870 <HTML>
26871 <HEAD>
26872 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
26873 </HEAD>
26874 <BODY>
26875 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
26877 This option controls when Alpine's line-by-line scrolling occurs.
26878 Typically, when a selected item is at the top or bottom screen edge
26879 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
26880 displayed items are scrolled down or up by a single line.
26883 This option allows you to tell Alpine the number of lines from the top and
26884 bottom screen edge that line-by-line paging should occur.  For example,
26885 setting this value to one (1) will cause Alpine to scroll the display
26886 vertically when you move to select an item on the display's top or
26887 bottom edge.
26890 By default, this variable is zero, indicating that scrolling happens
26891 when you move up or down to select an item immediately off the display's
26892 top or bottom edge.
26895 <UL>   
26896 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26897 </UL><P>
26898 &lt;End of help on this topic&gt;
26899 </BODY>
26900 </HTML>
26901 ====== h_config_wordseps =====
26902 <HTML>
26903 <HEAD>
26904 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
26905 </HEAD>
26906 <BODY>
26907 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
26909 This option affects how a &quot;word&quot; is defined in the composer.
26910 The definition of a word is used when using the Forward Word and Backward
26911 Word commands in the composer, as well as when using the spell checker.
26912 Whitespace is always considered a word separator.
26913 Punctuation (like question marks, periods, commas, and so on) is always
26914 a word separator if it comes at the end of a word.
26915 By default, a punctuation character that is in the middle of a word does
26916 not break up that word as long as the character before and the character
26917 after it are both alphanumeric.
26918 If you add a character to this option it will be considered a
26919 word separator even when it occurs in the middle of an alphanumeric word.
26920 For example, if you want to skip through each part of an address instead
26921 of skipping the whole address at once you might want to include &quot;@&quot;
26922 and &quot;.&quot; in this list.
26923 If you want the word-skipper to stop on each part of a UNIX filename you
26924 could add &quot;/&quot; to the list.
26925 The equal sign and dash are other possibilities you might find helpful.
26927 <UL>   
26928 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26929 </UL><P>
26930 &lt;End of help on this topic&gt;
26931 </BODY>
26932 </HTML>
26933 ====== h_config_reply_indent_string =====
26934 <HTML>
26935 <HEAD>
26936 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
26937 </HEAD>
26938 <BODY>
26939 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
26941 This option specifies an aspect of Alpine's Reply command.
26942 When a message is replied to and the text of the message is included, the
26943 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
26944 to each line indicating it is quoted text.
26945 (In case you haven't seen this before, &quot;string&quot; is a technical term
26946 that means chunk of text.)
26949 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
26950 in 1999 and its wide-spread adoption since then, you will usually be better off if you
26951 use one of the standard values,
26952 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
26955 This option specifies a different value for that string.
26956 If you wish to use a string that begins or ends with a space,
26957 enclose the string in double quotes.
26960 Besides simple text, the prepended string can be based
26961 on the message being replied to.
26962 The following tokens are substituted for the message's corresponding value:
26964 <DL>
26965 <DT>_FROM_</DT>
26966 <DD>This token gets replaced with the message sender's &quot;username&quot;.
26967 If the name is longer than six characters, only the first six characters are
26968 used.
26969 </DD>
26971 <DT>_NICK_</DT>
26972 <DD>This token gets replaced with the nickname of the message sender's
26973 address as found in your addressbook.
26974 If no addressbook entry is found,
26975 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
26976 If the nickname is longer than six characters, only the first six characters are
26977 used.
26978 </DD>
26980 <DT>_INIT_</DT>
26981 <DD>This token gets replaced with the initials of the sender of the message.
26982 </DD>
26984 </DL>
26986 NOTE: When the
26987 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
26988 feature is enabled, you are given the opportunity to edit the string, whether 
26989 it is the default or one automatically generated using the above tokens.
26991 If you change your <!--#echo var="VAR_reply-indent-string"-->
26992 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
26993 quoted text will not be flowed
26994 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26995 when you reply.
26996 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26997 set to the default value.
26999 <UL>   
27000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27001 </UL><P>
27002 &lt;End of help on this topic&gt;
27003 </BODY>
27004 </HTML>
27005 ====== h_config_quote_replace_string =====
27006 <HTML>
27007 <HEAD>
27008 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
27009 </HEAD>
27010 <BODY>
27011 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
27013 This option specifies what string to use as a quote when <b>viewing</b> a
27014 message.  The standard way of quoting messages when replying is the string
27015 &quot;&gt;&nbsp;&quot; (quote space).
27016 With this variable set, viewing a message will
27017 replace occurrences of 
27018 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
27019 This setting works best when
27020 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
27021 or the equivalent setting in your correspondents' mail programs
27022 is set to the default
27023 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
27024 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
27026 By default, this setting will only work on messages that are flowed, which is
27027 the default way of sending messages for many mail clients including
27028 Alpine.  Enable the feature
27029 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
27030 to also have quote-replacement performed on non-flowed messages.
27033 Setting this option will replace  &quot;&gt;&quot; and 
27034 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
27035 spaces. To preserve those spaces enclose the full string in double quotes.
27037 No padding to separate the text of the message from the quote string is
27038 added. This means that if you do not add trailing spaces to the value of
27039 this variable, text will be displayed right next to the quote string,
27040 which may be undesirable. This can be avoided by adding a new string
27041 separated by a space from your selection of quote string replacement. This
27042 last string will be used for padding. For example, setting this variable to 
27043 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
27044 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
27045 a space from the last quote string to make it more readable.
27047 One possible setting for this variable could be
27048 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
27049 would have the effect of indenting each level of quoting four spaces and
27050 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
27051 more discernible by setting colors for quoted text.
27053 Replying to or forwarding the viewed message will preserve the original
27054 formatting of the message, so quote-replacement will not be performed on
27055 messages that are being composed.
27057 <UL>   
27058 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27059 </UL><P>
27060 &lt;End of help on this topic&gt;
27061 </BODY>
27062 </HTML>
27063 ====== h_config_empty_hdr_msg =====
27064 <HTML>
27065 <HEAD>
27066 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
27067 </HEAD>
27068 <BODY>
27069 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
27071 When sending, if both the To and Cc fields are empty and you
27072 are sending the message to a Bcc,
27073 Alpine will put a special address in the To line.  The default value is:
27076 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
27079 The reason for this is to avoid embarrassment caused by some Internet
27080 mail transfer software that interprets a &quot;missing&quot;
27081 <SAMP>To:</SAMP> header as an error and replaces it with an
27082 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
27083 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
27084 Bcc.  You may change the part of this message that comes before the
27085 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
27086 variable to something else.
27089 The normal default is &quot;undisclosed-recipients&quot;.
27092 <UL>   
27093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27094 </UL><P>
27095 &lt;End of help on this topic&gt;
27096 </BODY>
27097 </HTML>
27098 ====== h_config_status_msg_delay =====
27099 <HTML>
27100 <HEAD>
27101 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
27102 </HEAD>
27103 <BODY>
27104 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
27106 This option has evolved over time, causing the possible values to be
27107 counter-intuitive.
27108 Read carefully before you set this option.
27109 First we explain what the option does, then there is a longer discussion
27110 following that.
27112 If this is set to zero, the default value, it has <EM>no</EM> effect.
27113 Positive and negative values serve two similar, but different purposes.
27115 If it is set to a positive number, it causes the cursor to move to the
27116 status line whenever a status message is printed and pause there for this
27117 many seconds.
27118 It will probably only be useful if the 
27119 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
27120 also turned on.
27121 Setting this option to a positive number can only be used to
27122 <EM>increase</EM> the status message delay.
27123 This may be useful for Braille displays, or other non-traditional displays.
27125 If it is set to a negative number the interpretation is a bit complicated.
27126 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
27127 allow you to read important status messages.
27128 Of course, this may cause you to miss some important messages.
27129 If you see a message flash by but miss what it says you can use the
27130 Journal command from the MAIN MENU to read it.
27131 If you set this option to a negative value, the delay will be
27132 no more than one second less than the absolute value
27133 of the value you set.
27134 So if you set it to -1, the delay will be no more than zero seconds, no
27135 delay at all.
27136 If you set it to -2, the delay will be no more than 1 second.
27137 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
27138 If the delay that Alpine would have used by default is less than this delay,
27139 then the smaller delay set by Alpine will be used.
27140 Setting this option to a negative value can only reduce the amount of
27141 delay, never increase it.
27143 Here is a more detailed explanation.
27144 Status messages are the messages that show up spontaneously in the
27145 status message line, usually the third line from the bottom of the screen.
27146 By default, Alpine assigns each status message it produces a minimum
27147 display time.
27148 Some status messages have a minimum display time of zero.
27149 You can see an example of such a message by paging up in this help text
27150 until you reach the top of the screen.
27151 If you try to page past the top you will see the message
27153 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
27155 in the status line.
27156 If there is another more important use of the status message line this message
27157 might be replaced quickly, or it even might not be shown at all.
27158 However, if there is no reason to get rid of the message, it might stay
27159 there for several seconds while you read the help.
27160 An example where it is replaced immediately happens when you page up in
27161 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
27162 command right after paging up.
27163 The message will disappear immediately without causing a delay (unless you
27164 have set this option to a positive value) to allow you to type input for
27165 the &quot;WhereIs&quot; command.
27166 Since it isn't a very important message, Alpine has set its minimum display
27167 time to zero seconds.
27169 Other messages have minimum display times of three or more seconds.
27170 These are usually error messages that Alpine thinks you ought to see.
27171 For example, it might be a message about a failed Save or a failed folder open.
27172 It is often the case that this minimum display time won't delay you in
27173 any way because the status message line is not needed for another reason.
27174 However, there are times when Alpine has to delay what it is doing in
27175 order to display a status message for the minimum display time.
27176 This happens when a message is being displayed and Alpine wants to ask
27177 for input from the keyboard.
27178 For example, when you Save a message you use the status message line.
27179 You get a prompt there asking for the name of the folder to save to.
27180 If there is a status message being displayed that has not
27181 yet displayed for its minimum
27182 time Alpine will display that status message surrounded with the characters
27183 &gt; and &lt; to show you that it is delaying.
27184 That might happen, for example, if you tried to save to a folder that
27185 caused an error, then followed that immediately with another Save command.
27186 You might find yourself waiting for a status message like
27188 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
27190 to finish displaying for three seconds.
27191 If that is something you find happening to you frequently, you may use
27192 negative values of this option to decrease or eliminate that delay, at
27193 the risk of missing the message.
27195 <UL>   
27196 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27197 </UL><P>
27198 &lt;End of help on this topic&gt;
27199 </BODY>
27200 </HTML>
27201 ====== h_config_active_msg_interval =====
27202 <HTML>
27203 <HEAD>
27204 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
27205 </HEAD>
27206 <BODY>
27207 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
27209 When Alpine is delayed for some reason it usually shows that
27210 something is happening with a small animated display in the status
27211 message line near the bottom of the screen.
27212 This option sets how frequently the characters (for example, a spinning bar)
27213 in the active status message lines are updated.
27214 At most, it can be set to be updated 20 times per second. 
27217 Setting this value to zero will prevent display of the animations
27218 altogether.
27221 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
27222 can be used to remove the randomness from this animated display.
27225 <UL>   
27226 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27227 </UL><P>
27228 &lt;End of help on this topic&gt;
27229 </BODY>
27230 </HTML>
27231 ====== h_config_mailchecknoncurr =====
27232 <HTML>
27233 <HEADER>
27234 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
27235 </HEADER>
27236 <BODY>
27237 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
27239 This option is closely related to the
27240 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
27241 option, as well as the
27242 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
27243 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
27244 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
27245 new-mail checking is disabled and this option will have no effect.
27247 Normally this option is set to zero, which means that the value used will be
27248 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
27249 If you set this option to a value different from zero
27250 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
27251 then that is the check interval that will be used
27252 for folders that are not the currently open folder or the INBOX.
27253 You may not even have any folders that are noncurrent and not the INBOX.
27254 If you do, it is likely that they are due to
27255 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
27256 you have configured.
27257 This option also affects the rate of mail checking done on cached
27258 connections to folders you previously had open but are no longer actively
27259 using.
27260 You aren't expected to understand that last sentence, but if you are interested
27261 take a look at
27262 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
27263 and the related options.
27265 <UL>   
27266 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27267 </UL><P>
27268 &lt;End of help on this topic&gt;
27269 </BODY>
27270 </HTML>
27271 ====== h_config_fifopath =====
27272 <HTML>
27273 <HEADER>
27274 <TITLE>OPTION: NewMail FIFO Path</TITLE>
27275 </HEADER>
27276 <BODY>
27277 <H1>OPTION: NewMail FIFO Path</H1>
27279 This option is only available in UNIX Alpine.
27280 However, there is a very similar feature built in to PC-Alpine.
27281 In PC-Alpine's Config menu at the top of the screen
27282 is an option called &quot;New Mail Window&quot;.
27284 You may have Alpine create a FIFO special file (also called a named pipe) where
27285 it will send a one-line message each time a new message is received in
27286 the current folder, the INBOX, or any open
27287 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
27288 To protect against two different Alpines both writing to the same FIFO, Alpine
27289 will only create the FIFO and write to it if it doesn't already exist.
27291 A possible way to use this option would be to have a separate window
27292 on your screen running the command
27294 <CENTER><SAMP>cat filename</SAMP></CENTER>
27296 where &quot;filename&quot; is the name of the file given for this option.
27297 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
27298 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
27299 You may be tempted to use &quot;tail -f filename&quot; to view the new
27300 mail log.
27301 However, the common implementations of the tail command will not do what you
27302 are hoping.
27304 The width of the messages produced for the FIFO may be altered with the
27305 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
27307 On some systems, fifos may only be created in a local filesystem.
27308 In other words, they may not be in NFS filesystems.
27309 This requirement is not universal.
27310 If the system you are using supports it, it should work.
27311 (It is often the case that your home directory is in an NFS filesystem.
27312 If that is the case, you might try using a file in the &quot;/tmp&quot;
27313 filesystem, which is usually a local filesystem.)
27314 Even when it is possible to use an NFS-mounted filesystem as a place to name
27315 the fifo (for example, your home directory), it will still be the case that
27316 the reader (probably the &quot;cat&quot; command) and the
27317 writer (Alpine) of the fifo must be running on the same system.
27319 <UL>   
27320 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27321 </UL><P>
27322 &lt;End of help on this topic&gt;
27323 </BODY>
27324 </HTML>
27325 ====== h_config_newmailwidth =====
27326 <HTML>
27327 <HEADER>
27328 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
27329 </HEADER>
27330 <BODY>
27331 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
27333 For UNIX Alpine, this option is only useful if you have turned on the
27334 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
27335 That option causes new mail messages to be sent to a fifo file.
27336 Those messages will be 80 characters wide by default.
27337 You can change the width of those messages by changing this option.
27338 For example, if you are reading those messages in another window you might
27339 want to set this width to the width of that other window.
27341 If you are using PC-Alpine, it has an option in the Config menu to turn
27342 on the &quot;New Mail Window&quot;.
27343 This present option also controls the width of that window.
27345 <UL>   
27346 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27347 </UL><P>
27348 &lt;End of help on this topic&gt;
27349 </BODY>
27350 </HTML>
27351 ====== h_config_mailcheck =====
27352 <HTML>
27353 <HEADER>
27354 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
27355 </HEADER>
27356 <BODY>
27357 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
27359 This option specifies, in seconds,
27360 how often Alpine will check for new mail.
27361 If set to zero, new-mail checking is disabled.
27362 (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
27363 current message is the last message of the folder.)
27364 There is a minimum value for this option, normally 15 seconds.
27365 The default value is normally 150 seconds.
27366 The higher you set this option, the easier it is on the server.
27368 There are some situations where automatic new-mail checking does not work.
27369 See the discussion about new-mail checking in
27370 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
27372 The new-mail checking will not happen exactly at the frequency that you specify.
27373 For example, Alpine may elect to defer a non-INBOX mail check if you
27374 are busy typing.
27375 Or, it may check more frequently than you have specified if that is
27376 thought to be necessary to keep the server from closing the connection
27377 to the folder due to inactivity.
27378 If Alpine checks for new mail as a side effect of another command, it will reset
27379 the timer, so that new-mail checking may seem to happen irregularly instead of
27380 every X seconds like clockwork.
27382 If you are anxious to know about new mail as soon as possible, set the check
27383 interval low, and you'll know about the new mail by approximately
27384 that amount of time after it arrives.
27385 If you aren't so worried about knowing right away, set this option to a
27386 higher value.
27387 That will save the server some processing time and may save you some of
27388 the time you spend waiting for new-mail checks to happen if you are
27389 dealing with a slow server or slow network connection.
27391 If you suspect that new-mail checking is causing slow downs for you,
27392 you may want to look into the options
27393 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
27394 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
27395 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
27396 which refine when mail checking is done.
27398 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
27399 there is a minimum time
27400 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
27401 between new-mail checks.
27402 Because of this minimum you may notice that new mail does not
27403 appear promptly when you expect it.
27404 The reason for this is to protect the server from over-zealous opening and
27405 closing of the Mail Drop folder, since that is a costly operation.
27407 <UL>   
27408 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27409 </UL><P>
27410 &lt;End of help on this topic&gt;
27411 </BODY>
27412 </HTML>
27413 ====== h_config_quell_checks_comp =====
27414 <HTML>
27415 <HEAD>
27416 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
27417 </HEAD>
27418 <BODY>
27419 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
27421 This option is closely related to the
27422 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
27423 option, the
27424 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
27425 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
27427 If this option is set, then the normal new-mail checking that happens
27428 while you are composing will not happen for folders other than your
27429 INBOX (which depends on the setting
27430 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
27432 You might want to set this option if you are experiencing delays while
27433 composing that you think might be related to the speed of the new-mail
27434 checks.
27436 Even with this option turned on, an occasional new-mail check may be done
27437 in order to keep the server from killing the connection to the folder.
27438 For example, IMAP servers may remove a connection to a folder if there
27439 has been no activity on the connection for 30 minutes or more.
27440 Instead of letting that happen, Alpine will check for new mail before the
27441 30 minutes is up even though you have turned on this feature to quell
27442 those checks.
27444 Besides new-mail checks, checkpoint operations on the folders
27445 will also be quelled when you set this option.
27446 The purpose of checkpointing is to write the changes to a folder out to
27447 disk periodically in order to avoid losing those changes when system or
27448 software problems occur.
27449 New-mail checking and checkpointing while you are not composing are not
27450 affected by this option.
27453 &lt;End of help on this topic&gt;
27454 </BODY>
27455 </HTML>
27456 ====== h_config_quell_checks_comp_inbox =====
27457 <HTML>
27458 <HEAD>
27459 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
27460 </HEAD>
27461 <BODY>
27462 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
27464 This option is closely related to the
27465 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
27466 option, the
27467 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
27468 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
27470 If this option is set, then the normal new-mail checking that happens
27471 while you are composing will not happen for your INBOX.
27472 Checking of other folders is controlled in a similar way with the
27473 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
27475 You might want to set this option if you are experiencing delays while
27476 composing that you think might be related to the speed of the new-mail
27477 checks.
27479 Even with this option turned on, an occasional new-mail check may be done
27480 in order to keep the server from killing the connection to the folder.
27481 For example, IMAP servers may remove a connection to a folder if there
27482 has been no activity on the connection for 30 minutes or more.
27483 Instead of letting that happen, Alpine will check for new mail before the
27484 30 minutes is up even though you have turned on this feature to quell
27485 those checks.
27487 Besides new-mail checks, checkpoint operations on the INBOX
27488 will also be quelled when you set this option.
27489 The purpose of checkpointing is to write the changes to a folder out to
27490 disk periodically in order to avoid losing those changes when system or
27491 software problems occur.
27492 New-mail checking and checkpointing while you are not composing are not
27493 affected by this option.
27495 &lt;End of help on this topic&gt;
27496 </BODY>
27497 </HTML>
27498 ====== h_config_maildropcheck =====
27499 <HTML>
27500 <HEADER>
27501 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
27502 </HEADER>
27503 <BODY>
27504 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
27506 New-mail checking for a
27507 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
27508 mail checking for a regular folder.
27509 One of the differences is that the connection to the Mail Drop is not
27510 kept open and so the cost of checking
27511 (delay for you and additional load for the server) may be significant.
27512 Because of this additional cost we set a minimum time that
27513 must pass between checks.
27514 This minimum only applies to the automatic checking done by Alpine.
27515 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
27516 at the end of a folder index, then the check is done right away.
27518 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
27519 new-mail checks.
27520 You may want to set this minimum high in order to avoid experiencing some
27521 of the delays associated with the checks.
27522 Note that the time between checks is still controlled by the regular
27523 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
27524 When Alpine is about to do an automatic check for new mail (because
27525 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
27526 new-mail check
27527 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
27528 the Mail Drop is checked for new mail as well.
27529 Therefore, it is only useful to set this option to a value that is higher
27530 than the <!--#echo var="VAR_mail-check-interval"-->.
27532 If this option is set to zero, automatic Mail Drop new-mail
27533 checking is disabled.
27534 There is a minimum value, normally 60 seconds.
27535 The default value is normally 60 seconds as well.
27536 This applies to the INBOX and to the currently open folder if that is
27537 different from the INBOX.
27540 <UL>   
27541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27542 </UL><P>
27543 &lt;End of help on this topic&gt;
27544 </BODY>
27545 </HTML>
27546 ====== h_config_nntprange =====
27547 <HTML>
27548 <HEADER>
27549 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
27550 </HEADER>
27551 <BODY>
27552 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
27554 This option applies only to newsgroups accessed using the NNTP protocol.
27555 It does not, for example,
27556 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
27559 When you open a connection to a News server using the NNTP protocol, you
27560 normally have access to all of the articles in each newsgroup.
27561 If a server keeps a large backlog of messages it may speed performance
27562 some to restrict attention to only the newer messages in a group.
27563 This option allows you to set how many article numbers should be checked
27564 when opening a newsgroup.
27565 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
27566 of messages you ever want to see.
27567 For example, if you only ever wanted to look at the last 500 messages in each
27568 newsgroup you could set this option to 500.
27569 In actuality, it isn't quite that.
27570 Instead, for performance reasons, it specifies the range of article
27571 numbers to be checked, beginning
27572 with the highest numbered article and going backwards from there.
27573 If there are messages that have been canceled or deleted
27574 their article numbers are still counted as part of the range.
27576 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
27577 numbers
27578 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
27580 to be considered when reading a newsgroup.
27581 The number of messages that show up in your index will be less than or equal
27582 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
27585 The purpose of this option is simply to speed up access when reading news.
27586 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
27587 numbers, and can avoid downloading any information about the ignored articles.
27588 There is a cost you pay for this speedup.
27589 That cost is that there is no way for you to see those ignored articles.
27590 The articles that come before the range you specify are invisible to you and
27591 to Alpine, as if they did not exist at all.
27592 There is no way to see those messages using, for example, an unexclude command
27593 or something similar.
27594 The only way to see those articles is to set this option high enough (or
27595 set it to zero) and then to reopen the newsgroup.
27598 If this option is set to 0 (which is also the default),
27599 then the range is unlimited.
27600 This option applies globally to all NNTP servers and to all newsgroups
27601 on those servers.
27602 There is no way to set different values for different newsgroups or servers.
27605 <UL>   
27606 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27607 </UL><P>
27608 &lt;End of help on this topic&gt;
27609 </BODY>
27610 </HTML>
27611 ====== h_config_news_active =====
27612 <html>
27613 <header>
27614 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
27615 </header>
27616 <body>
27617 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
27619 This option tells Alpine where to look for the "active file" for newsgroups
27620 when accessing news locally, rather than via NNTP.  The default path is
27621 usually "/usr/lib/news/active".<p>
27622 <UL>   
27623 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27624 </UL><P>
27625 &lt;End of help on this topic&gt;
27626 </body>
27627 </html>
27628 ====== h_config_news_spool =====
27629 <html>
27630 <header>
27631 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
27632 </header>
27633 <body>
27634 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
27636 This option tells Alpine where to look for the "news spool" for newsgroups
27637 when accessing news locally, rather than via NNTP.  The default path is
27638 usually "/var/spool/news".<p>
27639 <UL>   
27640 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27641 </UL><P>
27642 &lt;End of help on this topic&gt;
27643 </body>
27644 </html>
27645 ====== h_config_image_viewer =====
27646 <html>
27647 <header>
27648 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
27649 </header>
27650 <body>
27651 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
27652 <body>
27653 This option specifies the program Alpine should call to view MIME
27654 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
27655 no longer needed, but remains for backward compatibility.  The more
27656 general method for associating external printing and viewing programs with
27657 specific MIME data types is to use the system's (or your personal)
27658 "mailcap" configuration file.<p>
27659 <UL>   
27660 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27661 </UL><P>
27662 &lt;End of help on this topic&gt;
27663 </body>
27664 </html>
27665 ====== h_config_domain_name =====
27666 <HTML>
27667 <HEAD>
27668 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
27669 </HEAD>
27670 <BODY>
27671 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
27673 This option is used only if the 
27674 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
27675 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
27676 strips the hostname from your return (&quot;From&quot;) address and when 
27677 completing unqualified addresses that you enter into the composer.
27679 If you set this, see also the <A HREF="h_config_quell_local_lookup">
27680 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
27683 <!--chtml if pinemode="os_windows"-->
27684 <P>This option is not applicable to PC-Alpine.
27685 <!--chtml else-->
27687 <!--chtml endif-->
27688 <UL>
27689 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27690 </UL>
27692 &lt;End of help on this topic&gt;
27693 </BODY>
27694 </HTML>
27695 ====== h_config_prune_date =====
27696 <HTML>
27697 <HEAD>
27698 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
27699 </HEAD>
27700 <BODY>
27701 <H1>OPTION: Last-Time-Prune Question</H1>
27703 This value records the last time you were asked about deleting old
27704 sent-mail.
27705 It is set automatically by Alpine at the beginning of each month.
27706 In the past, if you wished to suppress the monthly sent-mail
27707 pruning feature, you could set this to a date in the future.
27708 This value is relative to the year 1900, so 
27709 to set this, for example, to October 2005, use 105.10.
27711 You can still do that if you wish, or you can use the
27712 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
27713 a little more convenient to use.
27715 <UL>   
27716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27717 </UL><P>
27718 &lt;End of help on this topic&gt;
27719 </BODY>
27720 </HTML>
27721 ====== h_config_goto_default =====
27722 <HTML>
27723 <HEAD>
27724 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
27725 </HEAD>
27726 <BODY>
27727 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
27729 This value affects Alpine's behavior when you use the Goto command.
27730 Alpine's usual behavior has two parts.  If your current folder is
27731 &quot;Inbox&quot;, Alpine will offer the last open folder as the
27732 default.  If the current folder is other than &quot;Inbox&quot;,
27733 &quot;Inbox&quot; is offered as the default.
27736 The available options include:
27738 <DL>
27740  <DT>folder-in-first-collection</DT>
27742  <DD> Alpine will offer the most recently visited folder in the default
27743 collection found in the &quot;Collection List&quot; screen as the default.
27744 </DD>
27746  <DT> inbox-or-folder-in-first-collection</DT>
27748  <DD> If the current folder is &quot;Inbox&quot;,
27749 Alpine will offer the most recently visited folder in the
27750 default collection found in the &quot;Collection List&quot; screen.
27751 If the current folder is other than &quot;Inbox&quot;,
27752 &quot;Inbox&quot; is offered as the default.
27753 </DD>
27755  <DT> inbox-or-folder-in-recent-collection</DT>
27757  <DD> This is Alpine's default behavior.
27758 If the current folder is &quot;Inbox&quot;,
27759 Alpine will offer the last open
27760 folder as the default.
27761 If the current folder is other than &quot;Inbox&quot;,
27762 &quot;Inbox&quot; is offered as the default.
27763 </DD>
27765  <DT> first-collection-with-inbox-default</DT>
27767  <DD> Instead of offering the most recently visited folder in the default
27768 collection, the default collection is offered but with &quot;Inbox&quot; as
27769 the default folder.
27770 If you type in a folder name it will be in the default collection.
27771 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
27772 </DD>
27774  <DT> most-recent-folder</DT>
27776  <DD> The last accepted value simply causes the most recently opened
27777 folder to be offered as the default regardless of the currently opened
27778 folder.
27779 </DD>
27780 </DL>
27783 NOTE: The default while a newsgroup is open remains the same; the last
27784 open newsgroup.
27787 <UL>   
27788 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27789 </UL><P>
27790 &lt;End of help on this topic&gt;
27791 </BODY>
27792 </HTML>
27793 ====== h_config_thread_lastreply_char =====
27794 <HTML>
27795 <HEAD>
27796 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
27797 </HEAD>
27798 <BODY>
27799 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
27801 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
27802 INDEX display when using a
27803 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
27804 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
27805 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
27806 The value of this option is a single character.
27807 This character is used instead of the vertical line character when there are
27808 no more replies directly to the parent of the current message.
27809 It can be used to &quot;round-off&quot; the bottom of the vertical line
27810 by setting it to a character such as a backslash (&#92;) or
27811 a backquote (&#96;).
27812 The default value of this option is the backslash character (&#92;).
27813 This option may not be set to the Empty Value.
27814 In that case, the default will be used instead.
27817 <UL>   
27818 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27819 </UL><P>
27820 &lt;End of help on this topic&gt;
27821 </BODY>
27822 </HTML>
27823 ====== h_config_thread_indicator_char =====
27824 <HTML>
27825 <HEAD>
27826 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
27827 </HEAD>
27828 <BODY>
27829 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
27831 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
27832 INDEX display when using a
27833 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27834 than &quot;none&quot; and sorting by Threads or OrderedSubject.
27835 The value of this option is a single character.
27836 This character is used to indicate that part of a thread (a conversation) is
27837 hidden beneath a message.
27838 The message could be expanded
27839 if desired with the &quot;/&quot; Collapse/Expand command.
27840 By default, the value of this option is the greater than sign (&gt;).
27842 If this option is set to the Empty Value, then the column (and the following
27843 blank column) will be deleted from the display.
27846 This option is closely related to the
27847 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
27848 Another similar option that affects the thread display is the
27849 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27852 <UL>   
27853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27854 </UL><P>
27855 &lt;End of help on this topic&gt;
27856 </BODY>
27857 </HTML>
27858 ====== h_config_thread_exp_char =====
27859 <HTML>
27860 <HEAD>
27861 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
27862 </HEAD>
27863 <BODY>
27864 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
27866 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
27867 INDEX display when using a
27868 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27869 than &quot;none&quot;.
27870 The value of this option is a single character.
27871 This character is used to indicate that part of a thread has been expanded
27872 and could be collapsed if desired with
27873 the &quot;/&quot; Collapse/Expand command.
27874 By default, the value of this option is a dot (.).
27876 If this option is set to the Empty Value, then the column (and the following
27877 blank column) will be deleted from the display.
27880 This option is closely related to the
27881 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
27882 Another similar option that affects the thread display is the
27883 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27886 <UL>   
27887 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27888 </UL><P>
27889 &lt;End of help on this topic&gt;
27890 </BODY>
27891 </HTML>
27892 ====== h_config_thread_index_style =====
27893 <HTML>
27894 <HEAD>
27895 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
27896 </HEAD>
27897 <BODY>
27898 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
27900 When a folder is sorted by Threads or OrderedSubject,
27901 this option will affect the INDEX displays.
27904 The possible values for this option are:
27906 <DL>
27907 <DT>regular-index-with-expanded-threads</DT>
27908 <DD>This is the default display.
27909 If the configuration option
27910 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27911 is set to something other than &quot;none&quot;, then this setting
27912 will cause Alpine to start off with a MESSAGE INDEX with all of
27913 the threads expanded.
27914 That is, each message will have a line in the MESSAGE INDEX display.
27915 The Collapse/Expand command (/) may be used to manually collapse or
27916 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27918 This setting affects the display when the folder is first threaded.
27919 The collapsed state may also be re-initialized by re-sorting the folder manually
27920 using the SortIndex command ($).
27921 After re-sorting the threads will once again all be expanded, even if you
27922 have previously collapsed some of them.
27924 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
27925 the display will be the regular default Alpine MESSAGE INDEX, but sorted
27926 in a different order.
27927 </DD>
27929 <DT>regular-index-with-collapsed-threads</DT>
27930 <DD>If the configuration option
27931 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27932 is set to something other than &quot;none&quot;, then this setting
27933 will cause Alpine to start out with all of the threads collapsed instead of
27934 starting out with all of the threads expanded.
27935 The Collapse/Expand command (/) may be used to manually collapse or
27936 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27938 This setting affects the display when the folder is first threaded.
27939 The collapsed state may also be re-initialized by re-sorting the folder manually
27940 using the SortIndex command ($).
27941 After re-sorting the threads will once again all be collapsed, even if you
27942 have previously expanded some of them.
27943 </DD>
27945 <DT>separate-index-screen-always</DT>
27946 <DD>With this setting and the next, you will see an index of threads
27947 instead of an
27948 index of messages, provided you have sorted by Threads or OrderedSubject.
27950 The THREAD INDEX contains a '*' in the first column if any message in the thread
27951 is marked Important.
27952 If not, it contains a '+' if any message in the thread is to you.
27953 The second column is blank. The third column contains a 'D' if all of the
27954 messages in the thread are deleted.
27955 Otherwise, it contains an 'N' if any of the messages in the thread are New.
27957 When you view a particular thread from the THREAD INDEX you will be
27958 in the MESSAGE INDEX display
27959 but the index will only contain messages from the thread you are viewing.
27960 </DD>
27962 <DT>separate-index-screen-except-for-single-messages</DT>
27963 <DD>This is very similar to the option above.
27964 When you are in the THREAD INDEX, one of the available commands
27965 is &quot;ViewThd&quot;.
27966 With the setting &quot;separate-index-screen-always&quot; (the option above)
27967 when you view a particular thread you will be in the
27968 MESSAGE INDEX display and the index will only contain messages from
27969 the thread you are viewing.
27970 If the thread you are viewing consists of a single message, the MESSAGE INDEX
27971 will be an index with only one message in it.
27972 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
27973 setting instead, then that index that contains a single message
27974 will be skipped and you will go directly from the THREAD INDEX into the
27975 MESSAGE TEXT screen.
27976 </DD>
27978 </DL>
27981 <UL>   
27982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27983 </UL><P>
27984 &lt;End of help on this topic&gt;
27985 </BODY>
27986 </HTML>
27987 ====== h_config_thread_disp_style =====
27988 <HTML>
27989 <HEAD>
27990 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
27991 </HEAD>
27992 <BODY>
27993 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27995 When a folder is sorted by Threads or OrderedSubject,
27996 this option will affect the MESSAGE INDEX display.
27997 By default, Alpine will display the MESSAGE INDEX in the
27998 &quot;show-thread-structure&quot; style if a folder is sorted
27999 by Threads or OrderedSubject.
28002 The possible values for this option are:
28004 <DL>
28005 <DT>none</DT>
28006 <DD>Regular index display.
28007 The same index line as would be displayed without threading is used.
28008 The only difference will be in the order of the messages.
28009 </DD>
28011 <DT>show-thread-structure</DT>
28012 <DD>Threaded Subjects will be indented and vertical bars and horizontal
28013 lines will be added to make it easier to see the relationships among
28014 the messages in a thread (a conversation).
28015 </DD>
28017 <DT>mutt-like</DT>
28018 <DD>This is the same as the option above except that the Subject
28019 is suppressed (is blank) if it matches the previous Subject in the thread.
28020 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
28021 Here is an example of what a mutt-like index might look like.
28022 In this example, the first column represents the message number, the
28023 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
28024 is set to &quot;regular-index-with-expanded-threads&quot;, and the
28025 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
28026 is set to a backslash:
28027 <PRE>
28028 &nbsp;&nbsp;&nbsp;1    Some topic
28029 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
28030 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
28031 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
28032 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
28033 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
28034 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
28035 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
28036 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
28037 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
28038 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
28039 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
28040 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
28041 &nbsp;&nbsp;&nbsp;14    Next topic
28042 </PRE>
28043 </DD>
28045 <DT>indent-subject-1</DT>
28046 <DD>Threaded Subjects will be indented one space per level of the conversation.
28047 The bars and lines that show up in the show-thread-structure display will
28048 not be there with this style.
28049 </DD>
28051 <DT>indent-subject-2</DT>
28052 <DD>Same as above but indent two spaces per level instead of one space.
28053 </DD>
28055 <DT>indent-from-1</DT>
28056 <DD>Similar to indent-subject-1, except that instead of indenting the
28057 Subject field one space the From field of a thread will be indented one
28058 space per level of the conversation.
28059 </DD>
28061 <DT>indent-from-2</DT>
28062 <DD>Same as above but indent two spaces per level instead of one space.
28063 </DD>
28065 <DT>show-structure-in-from</DT>
28066 <DD>The structure of the thread is illustrated with indenting, vertical bars,
28067 and horizontal lines just like with the show-thread-structure option, but
28068 the From field is used to show the relationships instead of the Subject field. 
28069 </DD>
28071 </DL>
28074 <UL>   
28075 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28076 </UL><P>
28077 &lt;End of help on this topic&gt;
28078 </BODY>
28079 </HTML>
28080 ====== h_config_pruning_rule =====
28081 <HTML>
28082 <HEAD>
28083 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
28084 </HEAD>
28085 <BODY>
28086 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
28088 By default, Alpine will ask at the beginning of each month whether or not
28089 you want to rename your sent-mail folder to a name like sent-mail-month-year.
28090 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
28091 change the format of the folder to sent-mail-yyyy-mm.)
28092 It will also ask whether you would like to delete old sent-mail folders.
28093 If you have defined
28094 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
28096 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
28097 Alpine will also ask about pruning those folders.
28100 With this option you may provide an automatic answer to these questions.
28101 The default value is to ask you what you'd like to do.
28104 The six possible values for this option are:
28106 <DL>
28107 <DT>ask about rename, ask about deleting</DT>
28108 <DD>This is the default.
28109 Alpine will ask whether you want to rename the folders and whether you
28110 want to delete each of the old folders.
28111 </DD>
28113 <DT>ask about rename, don't delete</DT>
28114 <DD>Alpine will ask whether you want to rename the folders, but won't
28115 ask about or delete old folders.
28116 </DD>
28118 <DT>always rename, ask about deleting</DT>
28119 <DD>This means you want to always answer yes and have Alpine automatically
28120 rename the folder if possible.
28121 You will also be asked about deleting old folders.
28122 </DD>
28124 <DT>always rename, don't delete</DT>
28125 <DD>This means you want to always answer yes and have Alpine automatically
28126 rename the folder if possible.
28127 There will be no deleting of old folders.
28128 </DD>
28130 <DT>don't rename, ask about deleting</DT>
28131 <DD>This means you want to always answer no.
28132 Alpine will not rename the folder.
28133 You will be asked about deleting old folders.
28134 </DD>
28136 <DT>don't rename, don't delete</DT>
28137 <DD>This means you want to always answer no.
28138 Alpine will not rename the folder.
28139 There will be no deleting of old folders, either.
28140 </DD>
28141 </DL>
28144 <UL>   
28145 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28146 </UL><P>
28147 &lt;End of help on this topic&gt;
28148 </BODY>
28149 </HTML>
28150 ====== h_config_reopen_rule =====
28151 <HTML>
28152 <HEAD>
28153 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
28154 </HEAD>
28155 <BODY>
28156 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
28158 Alpine normally checks for new mail in the currently open folder
28159 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
28162 There are some situations where automatic new-mail checking does not work.
28163 For example, if a mail folder is opened using the POP protocol or a newsgroup
28164 is being read using the NNTP protocol, then new-mail checking is disabled.
28167 It may be possible to check for new mail in these cases by reopening the
28168 folder.
28169 Alpine does not do this for you automatically, but you may do the commands
28170 manually to cause this to happen.
28171 You reopen by going back to the folder list screen from the message
28172 index screen with the &quot;&lt;&quot; command,
28173 and then going back into the message index screen with
28174 the &quot;&gt;&quot; command.
28175 (Actually, any method you would normally use to open a folder will work the
28176 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
28177 For example, the GoTo Folder command will work, or you may use L to go to the
28178 Folder List screen and Carriage Return to reopen the folder.)
28181 There are some cases where Alpine knows that reopening the folder should
28182 be useful as a way to discover new mail.
28183 At the time of this writing, connections made using the POP protocol,
28184 news reading using the NNTP protocol, local news reading, and local
28185 ReadOnly folders that are in the traditional UNIX or the MMDF format all
28186 fall into this category.
28187 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
28188 has no way of knowing, so it might also just be an exercise in futility.
28189 All remote, ReadOnly folders other than those listed just above fall into this
28190 category.
28191 The setting of this option together with the type of folder
28192 controls how Alpine will react to the apparent attempt to reopen a folder.
28195 If you don't reopen, then you will just be back in
28196 the message index with no change.
28197 You left the index and came back, but the folder remained &quot;open&quot;
28198 the whole time.
28199 However, if you do reopen the folder, the folder is closed and then reopened.
28200 In this case, the current state of the open folder is lost.
28201 The New status, Important and Answered flags,
28202 selected state, Zoom state, collapsed or expanded state of threads,
28203 current message number,
28204 and any other temporary state is all lost when the reopen happens.
28205 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
28208 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
28209 several places.
28210 That really implies the case where Alpine knows it is a good way to discover
28211 new mail, which is more than just POP and NNTP, but POP and NNTP are
28212 the cases of most interest.
28213 This option probably has more possible values than it deserves. They are:
28215 <DL>
28216 <DT>Always reopen</DT>
28217 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
28218 whenever you type a command that implies a reopen, regardless of the
28219 access method.
28220 In other words, it is assumed you would always answer Yes if asked
28221 about reopening.
28222 </DD>
28224 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
28225 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
28226 will ask you whether to reopen other remote folders,
28227 with a default answer of Yes.
28228 </DD>
28230 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
28231 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
28232 will ask you whether to reopen other remote folders,
28233 with a default answer of No.
28234 </DD>
28236 <DT>Yes for POP/NNTP, No for other remote</DT>
28237 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
28238 will assume a No answer for all other remote folders.
28239 </DD>
28241 <DT>Always ask [Yes]</DT>
28242 <DD>Alpine will not differentiate based on access method.
28243 It will always ask for all remote folders, with a default answer of Yes.
28244 </DD>
28246 <DT>Always ask [No]</DT>
28247 <DD>Alpine will not differentiate based on access method.
28248 It will always ask for all remote folders, with a default answer of No.
28249 </DD>
28251 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
28252 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
28253 of Yes.
28254 It will never attempt to reopen other remote folders.
28255 </DD>
28257 <DT>Ask about POP/NNTP [No], No for other remote</DT>
28258 <DD>This is the default.
28259 Alpine will ask if the access method is POP or NNTP, with a default answer
28260 of No.
28261 It will never attempt to reopen other remote folders.
28262 </DD>
28264 <DT>Never reopen</DT>
28265 <DD>Alpine will never attempt to reopen already open folders.
28266 </DD>
28267 </DL>
28270 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
28271 any of the other situations where it is likely that reopening is a good way
28272 to discover new mail.
28275 There is an alternative that may be of useful in some situations.
28276 Instead of manually checking for new mail you can set up a
28277 <A HREF="h_maildrop">Mail Drop</A>
28278 and automatically check for new mail.
28281 <UL>   
28282 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28283 </UL><P>
28284 &lt;End of help on this topic&gt;
28285 </BODY>
28286 </HTML>
28287 ====== h_config_inc_startup =====
28288 <HTML>
28289 <HEAD>
28290 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
28291 </HEAD>
28292 <BODY>
28293 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
28295 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
28296 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
28297 It determines which message will be the <EM>current message</EM> when
28298 the folder is first opened.
28299 The default value is &quot;first-unseen&quot;.
28302 The seven possible values for this option are:
28304 <DL>
28305 <DT>first-unseen</DT>
28306 <DD>The current message is set to the first
28307 unseen message that has not been marked deleted, or the last message if
28308 all of the messages have been seen previously.
28309 Messages which have not been seen or which have been seen but re-marked
28310 as New are considered unseen messages.
28311 See the note at the bottom of this help about newsgroups.
28312 </DD>
28314 <DT>first-recent</DT>
28315 <DD>Similar to the default, but rather than starting on the first
28316 unseen message Alpine starts on the first <EM>recent</EM> message.
28317 A message is recent if it arrived since the last time the folder was
28318 open.  This value causes the current message to be set to the first
28319 recent message if there is one, otherwise to the last
28320 message in the folder.
28321 </DD>
28323 <DT>first-important</DT>
28324 <DD>This will result in the current message being set to the first
28325 message marked Important (but not Deleted).
28326 If no messages are marked Important, then it will be the last message.
28327 Messages are marked Important by <EM>you</EM>, not by the sender, using
28329 <A HREF="h_common_flag">Flag command</A>.
28330 Or they may be marked Important by an Alpine
28331 <A HREF="h_mainhelp_filtering">Filter</A>
28332 that you have set up.
28333 </DD>
28335 <DT>first-important-or-unseen</DT>
28336 <DD>This selects the first of the first unseen and the first important
28337 messages.
28338 </DD>
28340 <DT>first-important-or-recent</DT>
28341 <DD>This selects the first of the first recent and the first important
28342 messages.
28343 </DD>
28345 <DT>first</DT>
28346 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
28347 If all messages are deleted you start on the last message.
28348 </DD>
28350 <DT>last</DT>
28351 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
28352 If all messages are deleted you start on the last message.
28353 </DD>
28354 </DL>
28357 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
28358 &quot;first-recent&quot; are the same and are affected by whether or not the
28359 feature 
28360 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
28361 is turned on. 
28362 Also, there is no permanent storage in news for an Important flag.
28363 This means that no messages will be marked Important when a newsgroup is
28364 first opened.
28367 <UL>   
28368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28369 </UL><P>
28370 &lt;End of help on this topic&gt;
28371 </BODY>
28372 </HTML>
28373 ====== h_config_browser =====
28374 <HTML>
28375 <HEAD>
28376 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
28377 </HEAD>
28378 <BODY>
28379 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
28380 <!--chtml if pinemode="os_windows"-->
28381 PC-Alpine users do not need to enter anything here, unless:<UL>
28382 <LI> they want to override, for use with Alpine, the application defined
28383 in the Windows operating system for handling URLs; or
28384 <LI> they are (planning on) using the same configuration file with 
28385 Unix Alpine.
28386 </UL>
28388 Note that if using a viewer that has a space in its path, you should
28389 use the DOS name for that directory or file. Example:
28390 <PRE>
28391 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
28392 </PRE>
28393 <HR><P>
28394 <!--chtml endif-->
28395 This option affects Alpine's handling of URLs that are found in 
28396 messages you read.  Normally, only URLs Alpine can handle directly
28397 are automatically offered for selection in the &quot;Message
28398 Text&quot; screen.  When one or more applications
28399 capable of deciphering URLs on their command line are added here, Alpine
28400 will choose the first available to display URLs it cannot handle directly.
28401 A viewer's availability is based on its being specified with a <B>full
28402 directory path</B> and the evaluation of any optionally supplied
28403 parameters described below.
28406 Additionally, to support various connection methods and applications, each
28407 entry in this list can optionally begin with one or more of
28408 the following special tokens.  The allowed tokens include:
28411 <DL>
28412 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
28413 <DD>
28414 The <VAR>test-string</VAR> is a shell command that Alpine will run to
28415 evaluate a viewer's availability.  The command specified by the test
28416 string is run and if its resulting exit status is non-zero, Alpine will
28417 not consider the associated viewer for use.
28418 </DD>
28420 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
28421 <DD>
28422 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
28423 URL schemes that are to be used with the associated viewer.  This is
28424 the way to configure Alpine to recognize URLs other than the built-in set.
28426 It can also be used to override Alpine's built-in handlers.
28427 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
28428 and Alpine would use (provided it passed all other criteria) the associated
28429 viewer when it encountered a URL of the form &quot;news:comp.mail.pine&quot;.
28431 </DD>
28432 </DL>
28435 By default, Alpine will simply append a space character followed by the
28436 selected URL prior to launching the command in your specified SHELL.  You can
28437 optionally specify where in the command the selected URL should appear
28438 by using the &quot;_URL_&quot; token.  All occurrences found in the command
28439 will be replaced with the selected URL before the command is handed
28440 to the shell.  If such replacement occurs, the default appending of the
28441 selected URL does not take place.
28444 NOTE: If the viewer you specify has any command-line arguments,
28445 including the &quot;_URL_&quot; token, you will need to add a
28446 double-quote character before the command path and after the last
28447 argument (see the &quot;lynx&quot; example below).
28450 So, here are some example entries:
28451 <PRE>
28452 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
28453               &quot;/usr/local/bin/lynx _URL_&quot;
28454               C:&#92;BIN&#92;NETSCAPE.BAT
28455 </PRE>
28457 This example shows that for the first viewer in the list to be used
28458 the environment variable &quot;DISPLAY&quot; must be defined.  If it
28459 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
28460 If neither condition is met,
28461 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
28462 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
28463 If the path to &quot;lynx&quot; is invalid,
28464 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
28465 Note that the last
28466 entry is a DOS/Windows path.  This is one way to support Alpine running
28467 on more than one architecture with the same configuration file.<P>
28469 <!--chtml if pinemode="os_windows"-->
28470 <!--chtml else-->
28471 Note that depending on the type of browser used and the method of 
28472 its invocation (such as whether it will open in a separate window) from
28473 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
28474 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
28475 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
28476 In other words, launching the browser from Alpine may make Alpine 
28477 &quot;disappear&quot; (although it is still &quot;running&quot;)
28478 until you close the browser again.<P>  
28479 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
28480 environment: for advanced users and  systems administrators</A>
28481 </UL>
28482 <!--chtml endif-->
28483 <P>If you are unsure what browsers are available on your system or how to 
28484 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
28485 local computing support staff.
28486 <P><UL>
28487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28488 </UL>
28490 &lt;End of help on this topic&gt;
28491 </BODY>
28492 </HTML>
28493 ====== h_config_history =====
28494 <HTML>
28495 <HEAD>
28496 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
28497 </HEAD>
28498 <BODY>
28499 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
28501 This option allows you to input a list of directories that Alpine will offer 
28502 for you to use when you are saving or exporting attachments. This is useful
28503 when navigating to specific directories becomes too tedious, or when you 
28504 need to do this on a daily basis, and want Alpine to remember this on a 
28505 permanent basis.
28507 The list of directories saved here can be accessed using the ^Y and ^V commands
28508 in the save prompt for attachments, or the export command.
28510 <P><UL>
28511 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28512 </UL>
28514 &lt;End of help on this topic&gt;
28515 </BODY>
28516 </HTML>
28517 ====== h_config_browser_xterm =====
28518 <HTML>
28519 <HEAD>
28520 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
28521 </HEAD>
28522 <BODY>
28523 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
28524 environment: for advanced users and  systems administrators</H1>
28525 If you are using Alpine with an X-terminal (emulator) and want to define an 
28526 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
28527 you may want to do so in a manner that causes any <B>already</B> 
28528 invoked viewer application to be used for viewing URLs you select from Alpine 
28529 messages, and a <B>new</B> URL-viewer process to be 
28530 started <B>only</B> if the same application has <B>not already</B> 
28531 been launched -- for one reason, to avoid file-locking contentions among 
28532 multiple invocations of the same URL-viewer application.  
28533 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
28534 option does not do this.)  A method of doing that would be:<OL>
28535 <LI> use 
28536 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
28537 check (using commands appropriate for your Unix shell
28538 in place of <VAR>test-string</VAR>) for the presence of a 
28539 lockfile created by the URL-viewer application -- which implies that the 
28540 application is already running, though this is not foolproof. 
28541 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
28542 application with its appropriate command line option(s) to 
28543 show the URL selected from the Alpine message in an already open window of 
28544 that application, or perhaps in a new window of that application.  
28546 <LI> In the 
28547 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
28548 application without those command line options, but this time using the 
28549 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
28550 is defined.
28551 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
28552 windows environment (for instance, using VT-100 terminal emulation), you 
28553 may wish to specify a non-X windows URL-viewer application such as Lynx
28554 as the last entry.
28555 </OL><BR>
28556 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
28557 the command shell, the URL-viewer application(s), and possibly the specific 
28558 version of the latter, you are using.  
28560 Relevant command 
28561 line options for the Netscape browser for showing URLs (selected from Alpine) 
28562 when Netscape is already running are discussed in the document
28563 &quot;Remote Control of UNIX Netscape&quot; 
28564 found at the URL (as of 12 Aug. 1998):
28567 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
28569 <P>(If the URL-viewer application is 
28570 <B>not</B> running on the same host as Alpine, but being launched from an 
28571 applications server, you may not be able to use the command line options for 
28572 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
28574 <!--chtml if this-method="shown-to-work"-->
28575 An example using the Korn shell and the Netscape browser (first entry wrapped 
28576 because of its length, but should all appear on one line):
28578 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
28580 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
28581               &quot;/usr/local/bin/lynx '_URL_'&quot;
28583 <!--chtml endif-->
28585 <UL>   
28586 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28587 </UL><P>
28588 &lt;End of help on this topic&gt;
28589 </BODY>
28590 </HTML>
28591 ====== h_config_enable_full_hdr =====
28592 <HTML>
28593 <HEAD>
28594 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
28595 </HEAD>
28596 <BODY>
28597 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
28599 This feature enables the &quot;H Full Headers&quot; command which toggles between
28600 the display of all headers in the message and the normal edited view of
28601 headers.  The Full Header command also controls which headers are included
28602 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
28603 Full Header mode will respect the
28604 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
28605 feature setting.)
28607 If Full Header mode is turned on and you Forward a message, you will
28608 be asked if you'd like to forward the message as an attachment, as opposed
28609 to including the text of the message in the body of your new message.
28611 If you have also turned on the
28612 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
28613 option then the Full Headers command actually rotates through three states
28614 instead of just two.
28615 The first is the normal view with long quotes suppressed.
28616 The second is the normal view but with the long quotes included.
28617 The last enables the display of all headers in the message.
28618 When using Export, Pipe, Print, Forward, or Reply the quotes are
28619 never suppressed, so the first two states are identical.
28621 Normally, the Header Mode will reset
28622 to the default behavior when moving to a new message.
28623 The mode can be made to persist from message to message by setting the feature
28624 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
28626 <UL>   
28627 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28628 </UL><P>
28629 &lt;End of help on this topic&gt;
28630 </BODY>
28631 </HTML>
28632 ====== h_config_enable_full_hdr_and_text =====
28633 <HTML>
28634 <HEAD>
28635 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
28636 </HEAD>
28637 <BODY>
28638 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
28640 This feature affects how the &quot;H Full Headers&quot; command displays
28641 message text.  If set, the raw message text will be displayed.  This
28642 especially affects MIME formatted email, where the entire MIME format
28643 will be displayed.  This feature similarly affects how messages are
28644 included for the Export, Pipe, Print, Forward, and Reply functions.
28646 When viewing a raw message that has attachments with this feature set,
28647 you will not be able to view attachments without first leaving full 
28648 headers mode.  This is because MIME parsing is not done on the raw message.
28650 <UL>   
28651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28652 </UL><P>
28653 &lt;End of help on this topic&gt;
28654 </BODY>
28655 </HTML>
28656 ====== h_config_enable_pipe =====
28657 <HTML>
28658 <HEAD>
28659 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
28660 </HEAD>
28661 <BODY>
28662 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
28664 This feature enables the "| Pipe" command that sends the current message
28665 to the specified command for external processing.
28668 A short description of how the pipe command works is given
28669 <A HREF="h_pipe_command">here</A>.
28672 <UL>   
28673 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28674 </UL><P>
28675 &lt;End of help on this topic&gt;
28676 </BODY>
28677 </HTML>
28678 ====== h_config_quell_full_hdr_reset =====
28679 <HTML>
28680 <HEAD>
28681 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
28682 </HEAD>
28683 <BODY>
28684 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
28686 The <A HREF="h_common_hdrmode">HdrMode Command</A>
28687 normally resets to the default state when switching to a new message.
28688 For example, if you've used the &quot;H&quot; command to turn on Full
28689 Headers for a message you are viewing, and then you type the Next command
28690 to look at the next message, the full headers will no longer be shown.
28691 Setting this feature disables that reset.
28692 Instead, the Header Mode remains the same from message to message.
28695 The presence or absence of the HdrMode command is determined by the
28696 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
28697 Feature-List option.
28699 <UL>   
28700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28701 </UL><P>
28702 &lt;End of help on this topic&gt;
28703 </BODY>
28704 </HTML>
28705 ====== h_config_enable_tab_complete =====
28706 <HTML>
28707 <HEAD>
28708 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
28709 </HEAD>
28710 <BODY>
28711 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
28713 This feature enables the TAB key when at a prompt for a filename. In this
28714 case, TAB will cause the partial name already entered to be automatically
28715 completed, provided the partial name is unambiguous.
28716 This feature is on by default.
28718 Similarly, this feature also enables TAB completion of address book
28719 nicknames when at a prompt for a nickname,
28720 or when typing in an address field in the composer.
28722 &lt;End of help on this topic&gt;
28723 </BODY>
28724 </HTML>
28725 ====== h_config_quit_wo_confirm =====
28726 <HTML>
28727 <HEAD>
28728 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
28729 </HEAD>
28730 <BODY>
28731 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
28733 This feature controls whether or not Alpine will ask for confirmation when a
28734 Quit command is received.
28736 &lt;End of help on this topic&gt;
28737 </BODY>
28738 </HTML>
28739 ====== h_config_quote_replace_noflow =====
28740 <HTML>
28741 <HEAD>
28742 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
28743 </HEAD>
28744 <BODY>
28745 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
28747 This feature, which is only active when
28748 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
28749 also set,
28750 enables quote-replacement on non-flowed messages.  It is off
28751 by default because a non-flowed message is more dependent on its format,
28752 and thus quote-replacement may cause less-than-pleasing results.
28753 Setting this feature will cause quote-replacement similar to that of flowed
28754 messages, but with the added possibility of long lines being wrapped
28755 into new lines if the Quote-Replacement-String is longer than the string
28756 it is replacing, which is &quot;&gt;&nbsp;&quot;.
28758 &lt;End of help on this topic&gt;
28759 </BODY>
28760 </HTML>
28761 ====== h_config_enable_jump =====
28762 <HTML>
28763 <HEAD>
28764 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
28765 </HEAD>
28766 <BODY>
28767 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
28769 When this feature is set you may enter a number (followed by RETURN)
28770 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
28771 screens.  In other words, it obviates the need for typing the "J" for the
28772 Jump command.
28774 &lt;End of help on this topic&gt;
28775 </BODY>
28776 </HTML>
28777 ====== h_config_enable_alt_ed =====
28778 <HTML>
28779 <HEAD>
28780 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
28781 </HEAD>
28782 <BODY>
28783 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
28785 If this feature is set (the default), and the 
28786 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28787 <B>is not</B> set, entering
28788 the ^_ (Ctrl-underscore) key while composing a message will prompt you
28789 for the name of the editor you would like to use.
28791 If the environment variable $EDITOR is set, its value will be offered as
28792 a default.
28794 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28795 <B>is</B> set, the ^_ key will activate the specified
28796 editor without prompting, in which case it is not necessary to
28797 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
28799 <UL>   
28800 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28801 </UL><P>
28802 &lt;End of help on this topic&gt;
28803 </BODY>
28804 </HTML>
28805 ====== h_config_alt_ed_now =====
28806 <HTML>
28807 <HEAD>
28808 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
28809 </HEAD>
28810 <BODY>
28811 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
28813 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
28814 variable are both set, Alpine will
28815 automatically activate the specified editor when the cursor is moved from
28816 the header of the message being composed into the message text.  For
28817 replies, the alternate editor will be activated immediately.  If this
28818 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
28819 automatically ask for the name of an alternate editor when the cursor
28820 is moved out of the header being composed, or if a reply is being done.
28822 <P><UL>
28823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28824 </UL>
28826 &lt;End of help on this topic&gt;
28827 </BODY>
28828 </HTML>
28829 ====== h_config_enable_bounce =====
28830 <HTML>
28831 <HEAD>
28832 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
28833 </HEAD>
28834 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
28835 <BODY>
28837 Setting this feature enables the "B Bounce" command, which will prompt
28838 for an address and *remail* the message to the new recipient.  This command
28839 is used to re-direct messages that you have received in error, or need to
28840 be redirected for some other reason (e.g. list moderation).  The final
28841 recipient will see a header indicating that you have Resent the msg, but
28842 the message's From: header will show the original author of the message,
28843 and replies to it will go back to that author, and not to you.
28845 &lt;End of help on this topic&gt;
28846 </BODY>
28847 </HTML>
28848 ====== h_config_enable_agg_ops =====
28849 <HTML>
28850 <HEAD>
28851 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
28852 </HEAD>
28853 <BODY>
28854 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
28856 When this feature is set you may use the commands and subcommands that relate to
28857 performing operations on more than one message at a time.  We call these
28858 &quot;aggregate operations&quot;.  In particular, the 
28859 <!--chtml if pinemode="function_key"-->&quot;F5
28860 <!--chtml else-->&quot;;
28861 <!--chtml endif--> Select&quot;, 
28863 <!--chtml if pinemode="function_key"-->
28864 &quot;F6
28865 <!--chtml else-->
28866 &quot;A 
28867 <!--chtml endif-->
28868 Apply&quot;, and 
28869 <!--chtml if pinemode="function_key"-->
28870 &quot;F4
28871 <!--chtml else-->
28872 &quot;Z 
28873 <!--chtml endif-->
28874 Zoom&quot; commands are enabled by this feature.  Select is used to
28875 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
28876 then be used to apply any message command to all of the selected/tagged
28877 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
28878 view between just those Selected and all messages in the folder.
28880 This feature also enables the 
28881 <!--chtml if pinemode="function_key"-->
28882 &quot;F7&quot; 
28883 <!--chtml else-->
28884 &quot;^X&quot; 
28885 <!--chtml endif-->
28887 subcommand in the MESSAGE INDEX 
28888 WhereIs command that causes all messages matching the WhereIs argument to 
28889 become selected; and the Select, Select Current, and ZoomMode commands in the
28890 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
28892 Some related help topics are
28893 <UL>
28894 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28895 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28896 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
28897 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28898 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28899 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28900 </UL>
28902 <UL>   
28903 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28904 </UL><P>
28905 &lt;End of help on this topic&gt;
28906 </BODY>
28907 </HTML>
28909 ====== h_config_enable_flag =====
28910 <HTML>
28911 <HEAD>
28912 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
28913 </HEAD>
28914 <BODY>
28915 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
28917 Setting this feature enables the
28918 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
28919 command that allows you to
28920 manipulate the status flags associated with a message.  By default, Flag
28921 will set the "Important" flag, which results in an asterisk being
28922 displayed in column one of the MESSAGE INDEX for such messages.
28924 &lt;End of help on this topic&gt;
28925 </BODY>
28926 </HTML>
28927 ====== h_config_flag_screen_default =====
28928 <HTML>
28929 <HEAD>
28930 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
28931 </HEAD>
28932 <BODY>
28933 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
28935 The feature modifies the behavior of the
28936 <a href="h_common_flag">Flag</a>
28937 command (provided it too is
28938 <A HREF="h_config_enable_flag">enabled</A>).
28939 By default, when the "* Flag" command is selected,
28940 Alpine offers a prompt to set one of several flags and also offers the
28941 option of entering the detailed flag manipulation screen via the "^T"
28942 key. Enabling this feature causes Alpine to immediately enter the detailed
28943 flag screen rather than first offer the simple prompt.
28945 <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.
28947 &lt;End of help on this topic&gt;
28948 </BODY>
28949 </HTML>
28950 ====== h_config_flag_screen_kw_shortcut =====
28951 <HTML>
28952 <HEAD>
28953 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
28954 </HEAD>
28955 <BODY>
28956 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
28958 This feature modifies the behavior of the
28959 <a href="h_common_flag">Flag</a> command
28960 and the <A HREF="h_index_cmd_select">Select</A> command.
28961 This feature is set by default.
28962 When this feature is not set, when the "* Flag" command is selected,
28963 Alpine offers a prompt to set one of several flags and also offers the
28964 option of entering the detailed flag manipulation screen via the "^T"
28965 key.
28966 If you have
28967 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
28968 defined, then enabling this feature adds a shortcut way to set or unset
28969 keywords.
28970 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
28971 a keyword if you've given it a nickname) and that will set the keyword.
28973 An example is easier to understand than the explanation.
28974 The flag command can always be used to set the system flags.
28975 For example, to set the Answered flag you would type
28977 <CENTER><SAMP>* A</SAMP></CENTER>
28979 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
28980 option in the Config screen.
28981 By default, to set a keyword like &quot;Work&quot; you would usually
28982 have to go to the Flag Details screen using
28983 the &quot;^T To Flag Details&quot; command.
28984 Instead, if you have enabled this feature, you may type
28986 <CENTER><SAMP>* W</SAMP></CENTER>
28988 to set the Work flag, or
28990 <CENTER><SAMP>* ! W</SAMP></CENTER>
28992 to unset it.
28993 Just like for the other flag setting commands, the case of the letter does
28994 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28995 keyword.
28997 Notice that you can only use this trick for one keyword that begins
28998 with &quot;W&quot;.
28999 If you happen to have a &quot;Work&quot; keyword and another keyword that is
29000 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
29001 your list of keywords.
29002 Also, there are five letters that are reserved for system
29003 flags and the NOT command.
29004 If you type &quot;* A&quot; it will always set the Answered flag, not
29005 your &quot;Aardvark&quot; keyword.
29006 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
29007 the Flag Details screen.
29009 Because enabling the
29010 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
29011 option causes Alpine to skip directly to the Flag Details screen when the
29012 Flag command is used, 
29013 setting it will cause this feature to have no effect at all.
29015 Similarly, when Selecting by Keyword, setting this option will allow you
29016 to use Keyword initials instead of full keywords.
29018 &lt;End of help on this topic&gt;
29019 </BODY>
29020 </HTML>
29021 ====== h_config_can_suspend =====
29022 <HTML>
29023 <HEAD>
29024 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
29025 </HEAD>
29026 <BODY>
29027 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
29029 Setting this feature will allow you to type ^Z (Control Z) to 
29030 <!--chtml if pinemode="os_windows"-->
29031 minimize Alpine into its icon, bringing into focus whatever
29032 application is running behind the PC-Alpine window.
29033 <!--chtml else-->
29034 temporarily suspend Alpine.
29037 This does not exit Alpine, but puts it in the background to watch
29038 for new mail and such.  Normally, you type a command, such
29039 as &quot;fg&quot; at your system prompt to return to your Alpine session.
29042 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
29043 adjusts whether Alpine is placed into the background of the shell its 
29044 running in or starts a news shell.
29045 <!--chtml endif-->
29048 <UL>   
29049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29050 </UL><P>
29051 &lt;End of help on this topic&gt;
29052 </BODY>
29053 </HTML>
29054 ====== h_config_take_lastfirst ======
29055 <HTML>
29056 <HEAD>
29057 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
29058 </HEAD>
29059 <BODY>
29060 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
29062 Normally, when TakeAddr is used to copy an address from a message into
29063 an address book entry, Alpine will attempt to rewrite the full name of the
29064 address in the form
29067 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
29069 instead of<P>
29071 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
29074 It does this because many people find it useful to sort by Last name
29075 instead of First name.  If this feature is set, then the TakeAddr command
29076 will not attempt to reverse the name in this manner.
29078 &lt;End of help on this topic&gt;
29079 </BODY></HTML>
29080 ====== h_config_disable_regex ======
29081 <HTML>
29082 <HEAD>
29083 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
29084 </HEAD>
29085 <BODY>
29086 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
29088 Normally, the
29089 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29090 option is interpreted as a regular expression.
29091 One type of address that might cause trouble is an address that
29092 contains a plus sign.
29093 If you want to have an address with a plus as one of your
29094 <!--#echo var="VAR_alt-addresses"-->
29095 and you don't want to use regular expressions, then setting this
29096 feature will cause Alpine to treat the addresses you list literally instead.
29098 &lt;End of help on this topic&gt;
29099 </BODY></HTML>
29100 ====== h_config_take_fullname ======
29101 <HTML>
29102 <HEAD>
29103 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
29104 </HEAD>
29105 <BODY>
29106 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
29108 Normally, when TakeAddr is used to copy an address or addresses
29109 from a message into an address book entry, Alpine will try to preserve
29110 the full name associated with each address in the list of addresses.
29111 The reason for this is so that if the entry is a list or later becomes a
29112 list, then information about the individual addresses in the list
29113 is preserved.
29114 If you would rather just have the simple addresses in the list of addresses,
29115 set this feature. For example, with the default setting you might
29116 see something like this in the ADDRESS BOOK editor after you type TakeAddr
29118 <PRE>
29119  Nickname  : nick
29120  Fullname  : Bedrock Elders
29121  Fcc       :
29122  Comment   :
29123  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
29124              Barney Rubble &lt;rubble@bedrock.org&gt;
29125 </PRE>
29127 but with this feature set it would look like
29129 <PRE>
29130  Nickname  : nick
29131  Fullname  : Bedrock Elders
29132  Fcc       :
29133  Comment   :
29134  Addresses : flint@bedrock.org,
29135              rubble@bedrock.org
29136 </PRE>
29138 instead. Note the difference in the Addresses field.
29140 &lt;End of help on this topic&gt;
29141 </BODY></HTML>
29142 ====== h_config_print_from ======
29143 <HTML>
29144 <HEAD>
29145 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
29146 </HEAD>
29147 <BODY>
29148 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
29150 If this feature is set, then the Berkeley-mail style From line is included
29151 at the start of each message that is printed.  This line looks something
29152 like the following, with the address replaced by the address from the
29153 From line of the message being printed:
29155 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
29156 14:11:06 1998
29158 &lt;End of help on this topic&gt;
29159 </BODY>
29160 </HTML>
29161 ====== h_config_expanded_distlists ======
29162 <HTML>
29163 <HEAD>
29164 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
29165 </HEAD>
29166 <BODY>
29167 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
29168 If this feature is set, then distribution lists in the address book
29169 screen will always be expanded automatically.
29171 &lt;End of help on this topic&gt;
29172 </BODY>
29173 </HTML>
29174 ====== h_config_compose_news_wo_conf ======
29175 <HTML>
29176 <HEAD>
29177 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
29178 </HEAD>
29179 <BODY>
29180 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
29181 This feature controls one aspect of Alpine's Composer.  If you enter the
29182 composer while reading a newsgroup, you will normally be prompted to
29183 determine whether you intend the new message to be posted to the current
29184 newsgroup or not.  If this feature is set, Alpine will not prompt you
29185 in this situation, and will assume that you do indeed wish to post
29186 to the newsgroup you are reading.
29188 &lt;End of help on this topic&gt;
29189 </BODY>
29190 </HTML>
29191 ====== h_config_compose_rejects_unqual ======
29192 <HTML>
29193 <HEAD>
29194 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
29195 </HEAD>
29196 <BODY>
29197 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
29199 This feature controls one aspect of the message composer; in particular,
29200 what happens when an unqualified name is entered into an address header.
29201 If set, unqualified names entered as addresses will be treated as errors
29202 unless they match an addressbook nickname.  Alpine will not attempt to turn
29203 them into complete addresses by adding your local domain.<P>
29205 A complete (fully qualified) address is one containing a username followed
29206 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
29207 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
29208 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
29210 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
29214 When you enter a fully qualified address, Alpine does not interpret or
29215 modify it, but simply passes it on to the mail-transport-agent (MTA) for
29216 your system.  Alpine conforms to the Internet standards governing message
29217 headers and will not send an unqualifed name to the MTA.  Therefore, when
29218 you enter an unqualified name, Alpine will normally attempt to turn it into
29219 a fully qualified address, first by checking to see if you have entered a
29220 matching nickname in your addressbook, or failing that, by simply adding
29221 your own domain to the name entered.  So if your address is
29222 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
29223 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
29224 that into &quot;fred@example.com&quot;.<P>
29226 There are situations where it is not desirable for Alpine to interpret such
29227 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
29228 turned out to be a typo (intended to be an addressbook nickname), but
29229 there actually was a &quot;fred&quot; in your local domain, the message might 
29230 be mis-delivered without your realizing it.  In order to reduce the likelihood
29231 of such accidents, setting this feature will cause Alpine to treat such
29232 addresses as errors, and require that you explicitly enter the full local
29233 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
29234 matches an address book nickname.<P>
29236 Consider this a safety feature against mis-directed mail.
29238 <UL>   
29239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29240 </UL><P>
29241 &lt;End of help on this topic&gt;
29242 </BODY>
29243 </HTML>
29244 ====== h_config_quell_local_lookup ======
29245 <HTML>
29246 <HEAD>
29247 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
29248 </HEAD>
29249 <BODY>
29250 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
29252 This feature controls an aspect of Alpine's Composer, and if needed, will
29253 usually be set by your system manager in Alpine's system-wide configuration
29254 file. Specifically, if this feature is set, Alpine will not attempt to look
29255 in the system password file to find a Full Name for the entered address.
29257 Normally, names you enter into address fields (e.g. To: or Cc:) are
29258 checked against your address book(s) to see if they match an address book
29259 nickname.  Failing that, (in Unix Alpine) the name is then checked against
29260 the Unix password file.  If the entered name matches a username in the
29261 system password file, Alpine extracts the corresponding Full Name information
29262 for that individual, and adds that to the address being entered.
29264 However, password file matching can have surprising (incorrect) results if
29265 other users of the system do not receive mail at the domain you are using.
29266 That is, if either the 
29267 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
29268 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
29269 option
29270 is set such that the administrative domain of other users on the system
29271 isn't accurately reflected, Alpine should be told that a passwd file match
29272 is coincidental, and Full Name info will be incorrect.  For example, a
29273 personal name from the password file could get falsely paired with the
29274 entered name as it is turned into an address in the configured domain.
29276 If you are seeing this behavior, enabling this feature will prevent Unix
29277 Alpine from looking up names in the password file to find the Full Name
29278 for incomplete addresses you enter.<P>
29279 <UL>
29280 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29281 </UL>
29283 &lt;End of help on this topic&gt;
29284 </BODY>
29285 </HTML>
29286 ====== h_config_tab_checks_recent ======
29287 <HTML>
29288 <HEAD>
29289 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
29290 </HEAD>
29291 <BODY>
29292 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
29294 In a FOLDER LIST screen, the TAB key usually just changes which
29295 folder is highlighted.
29296 If this feature is set, then the TAB key will cause the number of
29297 recent messages and the total number of messages in the highlighted folder
29298 to be displayed instead.
29301 &lt;End of help on this topic&gt;
29302 </BODY>
29303 </HTML>
29304 ====== h_config_maildrops_preserve_state ======
29305 <HTML>
29306 <HEAD>
29307 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
29308 </HEAD>
29309 <BODY>
29310 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
29312 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
29313 Normally, when mail is moved from a Mail Drop folder to a destination
29314 folder, it is delivered as new mail.
29315 Any Seen/New, Answered, Important/Flagged state that has changed will be
29316 ignored.
29317 All of the mail will be considered unSeen, unAnswered, and unImportant after
29318 it is moved.
29320 If this feature is set, then the state changes that have been made
29321 to the messages in the Mail Drop folder will be preserved.
29323 In any case, messages that are already marked Deleted when the
29324 mail is to be moved from the Mail Drop will be ignored.
29326 &lt;End of help on this topic&gt;
29327 </BODY>
29328 </HTML>
29329 ====== h_config_preopen_stayopens ======
29330 <HTML>
29331 <HEAD>
29332 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
29333 </HEAD>
29334 <BODY>
29335 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
29337 This feature is related to the option
29338 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
29339 Normally, Stay Open folders are only opened on demand, when the user
29340 asks to open them.
29341 From then on they are kept open for the duration of the session.
29342 However, if this feature is set, then the Stay Open folders will all be
29343 opened at startup, at the same time that the INBOX is opened.
29346 &lt;End of help on this topic&gt;
29347 </BODY>
29348 </HTML>
29349 ====== h_config_expunge_inbox ======
29350 <HTML>
29351 <HEAD>
29352 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
29353 </HEAD>
29354 <BODY>
29355 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
29357 The INBOX is normally treated differently from regular folders in several
29358 ways.
29359 One of the differences is that the normal &quot;close&quot; sequence of
29360 events is deferred until Alpine is exited, instead of happening when you
29361 leave the INBOX to view another folder.
29362 The &quot;close&quot; sequence normally includes the Expunging
29363 of deleted messages
29364 (either automatically or after a prompt, controlled by the features
29365 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
29366 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
29367 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
29368 handling of the
29369 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
29372 If this feature is set the &quot;close&quot; sequence handling will take
29373 place every time you leave the INBOX.
29374 The INBOX will still be kept open, but the offer to Expunge and the archiving
29375 to the <!--#echo var="VAR_read-message-folder"-->
29376 will take place each time you leave the INBOX instead of only once at the
29377 end of the session.
29380 &lt;End of help on this topic&gt;
29381 </BODY>
29382 </HTML>
29383 ====== h_config_expunge_stayopens ======
29384 <HTML>
29385 <HEAD>
29386 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
29387 </HEAD>
29388 <BODY>
29389 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
29391 This feature is related to the option
29392 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
29393 Stay Open folders are treated differently from regular folders in several
29394 ways.
29395 One of the differences is that the normal &quot;close&quot; sequence of
29396 events is deferred until Alpine is exited, instead of happening when you
29397 leave the folder to view another folder.
29398 The &quot;close&quot; sequence normally includes the Expunging
29399 of deleted messages
29400 (either automatically or after a prompt, controlled by the features
29401 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
29402 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
29403 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
29404 handling of
29405 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
29408 If this feature is set the &quot;close&quot; sequence handling will take
29409 place when you leave the Stay Open folder.
29410 The folder will still be kept open, but the offer to Expunge and the archiving
29411 will take place each time you leave the folder instead of only once at the
29412 end of the session.
29413 This feature does not affect the INBOX, which will still only be processed
29414 when you exit Alpine.
29415 However, there is a similar feature that affects only the INBOX called
29416 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
29419 &lt;End of help on this topic&gt;
29420 </BODY>
29421 </HTML>
29422 ====== h_config_preserve_start_stop ======
29423 <HTML>
29424 <HEAD>
29425 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
29426 </HEAD>
29427 <BODY>
29428 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
29430 This feature controls how special control key characters, typically
29431 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
29432 are known as the "stop" and "start" characters and are sometimes used in
29433 communications paths to control data flow between devices that operate at
29434 different speeds.
29438 By default, Alpine turns the system's handling of these special characters
29439 off except during printing.  However, if you see Alpine reporting input errors
29440 such as:
29442 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
29444 and, at the same time, see your display become garbled, then it is likely
29445 that setting this option will solve the problem.  Be aware, though, that
29446 enabling this feature will also cause Alpine to ostensibly "hang" 
29447 whenever the Ctrl-S key combination is entered as the system is now
29448 interpreting such input as a "stop output" command.  To "start
29449 output"  again, simply type Ctrl-Q. 
29451 &lt;End of help on this topic&gt;
29452 </BODY>
29453 </HTML>
29454 ====== h_config_enable_incoming ======
29455 <HTML>
29456 <HEAD>
29457 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
29458 </HEAD>
29459 <BODY>
29460 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
29462 Alpine's Incoming Message Folders collection
29463 provides a convenient way to access multiple incoming folders.
29464 It is also useful if you have accounts on multiple computers.
29467 If set, this feature defines a pseudo-folder collection called
29468 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
29469 in this collection will be your INBOX, which will no longer show up in
29470 your Default folder collection.
29473 You may add more folders to the Incoming Message Folders collection by
29474 using the
29475 <!--chtml if pinemode="function_key"-->
29476 &quot;F10
29477 <!--chtml else-->
29478 &quot;A
29479 <!--chtml endif-->
29480 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
29481 the host the folder is stored on (which defaults to the same host used
29482 for your INBOX), a nickname, and the actual folder name.  Once a set
29483 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
29484 or MESSAGE TEXT screens) may be used to scan the folders for those
29485 with Recent messages.  If you add more folders to
29486 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
29487 no effect.
29489 NOTE: Normally the software that actually delivers mail (the stuff that happens
29490 before Alpine is involved) is in a better position to do delivery filtering
29491 than is Alpine itself.
29492 If possible, you may want to look at programs such as
29493 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
29494 filtering programs.
29495 If you'd prefer to have Alpine do the filtering for you, you may set that
29497 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
29499 <UL>   
29500 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29501 </UL><P>
29502 &lt;End of help on this topic&gt;
29503 </BODY>
29504 </HTML>
29505 ====== h_config_enable_incoming_checking ======
29506 <HTML>
29507 <HEAD>
29508 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
29509 </HEAD>
29510 <BODY>
29511 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
29513 This feature is only operational if you have enabled the optional
29514 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
29515 If you do have Incoming Message Folders and you also set this feature,
29516 then the number of Unseen messages in each folder will be displayed
29517 in the FOLDER LIST screen for the Incoming Message Folders.
29518 The number of Unseen messages in a folder will be displayed in parentheses
29519 to the right of the name of each folder.
29520 If there are no Unseen messages in a folder then only the name
29521 is displayed, not a set of parentheses with zero inside them.
29522 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
29523 the Incoming Message Folders to cause an immediate update.
29525 If a check for Unseen messages fails for a particular folder then Alpine
29526 will no longer attempt to check that folder for the duration of the
29527 session and this will be indicated by a question mark inside the
29528 parentheses.
29530 The features
29531 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
29532 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
29533 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
29534 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
29535 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
29536 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
29537 all affect how this feature behaves.
29539 <UL>   
29540 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29541 </UL><P>
29542 &lt;End of help on this topic&gt;
29543 </BODY>
29544 </HTML>
29545 ====== h_config_incoming_checking_total ======
29546 <HTML>
29547 <HEAD>
29548 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
29549 </HEAD>
29550 <BODY>
29551 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
29553 This option has no effect unless the feature
29554 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
29555 is set, which in turn has no effect unless
29556 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
29557 is set.
29559 When incoming folder checking is turned on the default is to display
29560 the number of unseen messages in each folder.
29561 More precisely, it is the number of undeleted unseen messages.
29562 Using this option you may also display the total number of messages
29563 in each folder.
29564 Instead of a single number representing the number of unseen messages
29565 you will get two numbers separated by a slash character.
29566 The first is the number of unseen messages and the second is the
29567 total number of messages.
29569 You may also use the recent message count instead of the unseen message
29570 count by turning on the feature
29571 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
29573 <UL>   
29574 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29575 </UL><P>
29576 &lt;End of help on this topic&gt;
29577 </BODY>
29578 </HTML>
29579 ====== h_config_incoming_checking_recent ======
29580 <HTML>
29581 <HEAD>
29582 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
29583 </HEAD>
29584 <BODY>
29585 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
29587 This option has no effect unless the feature
29588 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
29589 is set, which in turn has no effect unless
29590 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
29591 is set.
29593 When incoming folder checking is turned on the default is to display
29594 the number of unseen messages in each folder.
29595 More precisely, it is the number of undeleted unseen messages.
29596 Using this option you may display the number of recent messages instead
29597 of the number of unseen messages.
29598 A message is only counted as recent if this is the first session to
29599 see it, so the recent count might be less than the unseen count.
29600 The difference between the two would be accounted for by the unseen messages
29601 in the folder which were there previously but have not been looked at yet.
29603 If you simultaneously run more than one email client at a time
29604 (for example, you run more than one Alpine in parallel) then turning
29605 this feature on can cause some confusion.
29606 The confusion stems from the fact that each message is only considered to be
29607 recent in one session.
29608 That means that the counts of new messages may be different in the two
29609 Alpines running side by side, because each incoming message will only be
29610 counted as recent in one of the two sessions.
29612 You may also display the total number of messages
29613 in each folder by using the
29614 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
29615 option.
29617 <UL>   
29618 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29619 </UL><P>
29620 &lt;End of help on this topic&gt;
29621 </BODY>
29622 </HTML>
29623 ====== h_config_attach_in_reply ======
29624 <HTML>
29625 <HEAD>
29626 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
29627 </HEAD>
29628 <BODY>
29629 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
29631 This feature controls an aspect of Alpine's Reply command. If set, any MIME
29632 attachments that were part of the original message will automatically be
29633 included in the Reply.
29635 &lt;End of help on this topic&gt;
29636 </BODY>
29637 </HTML>
29638 ====== h_config_include_header =====
29639 <HTML>
29640 <HEAD>
29641 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
29642 </HEAD>
29643 <BODY>
29644 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
29646 This feature controls an aspect of Alpine's Reply command. If set, and the
29647 original message is being included in the reply, then headers from that
29648 message will also be part of the reply.
29650 &lt;End of help on this topic&gt;
29651 </HEAD>
29652 </HTML>
29653 ====== h_config_sig_at_bottom =====
29654 <HTML>
29655 <HEAD>        
29656 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
29657 </HEAD>
29658 <BODY>
29659 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
29661 This feature controls an aspect of Alpine's Reply command.  If this feature
29662 is set, and the original message is being included in the reply, then the
29663 contents of your signature file (if any) will be inserted after the included
29664 message.
29666 This feature does not affect the results of a Forward command.
29668 &lt;End of help on this topic&gt;
29669 </BODY>
29670 </HTML>
29671 ====== h_config_sigdashes =====
29672 <HTML>
29673 <HEAD>
29674 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
29675 </HEAD>
29676 <BODY>
29677 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
29679 This feature enables support for the common USENET news convention 
29680 of preceding a message signature with the special line consisting of 
29681 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
29684 When enabled and a
29685 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
29686 Alpine will insert the special line before including the file's text (unless
29687 the special line already exists somewhere in the file's text).
29690 In addition, when you Reply or Followup to a message containing one of
29691 these special lines and choose to include its text, Alpine will observe
29692 the convention of not including text beyond the special line in your
29693 reply.
29694 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29695 mode is enabled and turned on, then Alpine <EM>will</EM>
29696 include the text beyond the special line regardless of the setting of
29697 this feature.
29700 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
29701 for a related feature.
29704 <UL>   
29705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29706 </UL><P>
29707 &lt;End of help on this topic&gt;
29708 </BODY>
29709 </HTML>
29710 ====== h_config_new_thread_blank_subject =====
29711 <HTML>
29712 <HEAD>
29713 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
29714 </HEAD>
29715 <BODY>
29716 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
29718 When this feature is enabled (the default) Alpine will create a new thread
29719 every time that the subject line becomes empty at any time during composition.
29722 This behavior is particularly useful in case you are replying to a message.
29723 Replying to a message causes the message to be in the same thread than the
29724 original message that is being replied to. However, many authors want to create
29725 a new message (in a different thread) while replying to a message, and they do
29726 this by changing the full subject, by first deleting the original subject and
29727 typing the new subject of the current message.
29730 Enabling this feature causes that any time that the subject is deleted, the 
29731 message being composed will be considered the first message of a new thread.
29734 <UL>   
29735 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29736 </UL><P>
29737 &lt;End of help on this topic&gt;
29738 </BODY>
29739 </HTML>
29740 ====== h_config_strip_sigdashes =====
29741 <HTML>
29742 <HEAD>
29743 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
29744 </HEAD>
29745 <BODY>
29746 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
29748 This feature doesn't do anything if the feature
29749 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
29750 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
29751 then turning on this feature enables support for the convention
29752 of not including text beyond the sigdashes line when Replying or Following
29753 up to a message and including the text of that message.
29754 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29755 mode is enabled and turned on, then Alpine <EM>will</EM>
29756 include the text beyond the special line regardless of the setting of
29757 this feature.
29759 In other words, this is a way to turn on the signature stripping behavior
29760 without also turning on the dashes-adding behavior.
29762 <UL>   
29763 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29764 </UL><P>
29765 &lt;End of help on this topic&gt;
29766 </BODY>
29767 </HTML>
29768 ====== h_config_forward_as_attachment =====
29769 <HTML>
29770 <HEAD>
29771 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
29772 </HEAD>
29773 <BODY>
29774 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
29776 This feature affects the way forwarded message text is handled.  When set, rather than 
29777 include the text of the forwarded message below any additional text you provide in the
29778 composer, the forwarded message is attached in its entirety to the message you send.
29780 This is useful in that it keeps the text you provide in the composer distinct from the
29781 text of the forwarded message.  Similarly, it allows the recipient to 
29782 conveniently operate on the forwarded message.  For example, they might reply directly to
29783 the sender of the forwarded message, or process it as part of a spam report.
29784 <UL>   
29785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29786 </UL><P>
29787 &lt;End of help on this topic&gt;
29788 </BODY>
29789 </HTML>
29790 ====== h_config_preserve_field =====
29791 <HTML>
29792 <HEAD>
29793 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
29794 </HEAD>
29795 <BODY>
29796 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
29798 This feature affects Alpine's behavior when one replies to a message. 
29799 When you receive a message, some or all of the recipients of the message 
29800 have been added to the To: and Cc: fields. If you reply to such message, 
29801 and this feature is disabled, then the original sender of the message is 
29802 added to the To: field, and all other recipients are added to the Cc: 
29803 field, while your address is added to the From: field.
29806 However, if this feature is enabled, then Alpine will preserve the 
29807 original fields as sent in the original message, so the Cc: and To: 
29808 fields will be preserved. The sender's address will be added to the To: 
29809 field, while your address is added to the From: field.
29812 The behavior of this feature is that replies to all messages will behave 
29813 in the way described above. If you only intend this to happen on a per 
29814 message basis, then keep this feature disabled, and when replying to a 
29815 message you will see a new option in the menu for the &quot;Reply to all 
29816 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
29817 make Alpine toggle its question so you can preserve the To: and Cc: 
29818 fields for that message only.
29820 <UL>   
29821 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29822 </UL><P>
29823 &lt;End of help on this topic&gt;
29824 </BODY>
29825 </HTML>
29826 ====== h_config_sub_lists =====
29827 <HTML>
29828 <HEAD>
29829 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
29830 </HEAD>
29831 <BODY>
29832 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
29834 This feature affects the subcommands available when Saving, 
29835 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
29836 available. This command allows you to type in a substring of the folder
29837 you are looking for and when you type ^X it will display all folders
29838 that contain that substring in their names.
29839 This feature is set by default.
29842 &lt;End of help on this topic&gt;
29843 </BODY>
29844 </HTML>
29845 ====== h_config_scramble_message_id =====
29846 <HTML>
29847 <HEAD>
29848 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
29849 </HEAD>
29850 <BODY>
29851 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
29853 Normally the Message-ID header that Alpine generates when sending a message
29854 contains the name of the computer from which the message is being sent.
29855 Some believe that this hostname could be used by spammers or could
29856 be used by others for nefarious purposes.
29857 If this feature is set, that name will be transformed with a simple
29858 Rot13 transformation.
29859 The result will still have the correct syntax for a Message-ID but the
29860 part of the MessageID that is often a domain name will not be an actual
29861 domain name because the letters will be scrambled.
29863 In addition, other information such as the name program, version, and
29864 a code for operating system used to build Alpine, will be encoded using
29865 the Rot13 transformation, except for the version number which will be
29866 encoded using a Rot5 transformation.
29868 It is possible (but unlikely?) that some spam detection
29869 software will use that as a reason to reject the mail as spam.
29870 It has also been reported that some spam detection software uses the
29871 fact that there are no dots after the &quot;@&quot; as a reason to reject
29872 messages.
29873 If your PC-Alpine Message-ID is using a name without a dot that is because
29874 that is what Windows thinks is your &quot;Full computer name&quot;.
29875 The method used to set this varies from one type of Windows to another but
29876 check under Settings -> Control Panel -> System and
29877 look for Network Identification or Computer Name or something similar.
29878 How to set it is beyond the scope of Alpine.
29881 &lt;End of help on this topic&gt;
29882 </BODY>
29883 </HTML>
29884 ====== h_downgrade_multipart_to_text =====
29885 <HTML>
29886 <HEAD>
29887 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
29888 </HEAD>
29889 <BODY>
29890 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
29893 This feature affects Alpine's behavior when sending mail.  Internet
29894 standards require Alpine to translate all non-ASCII characters in
29895 messages that it sends using MIME encoding.  This encoding can be
29896 ostensibly broken for recipients if any agent between Alpine and the
29897 recipient, such as an email list expander, appends text to the
29898 message, such as list information or advertising.  When sending such
29899 messages Alpine attempts to protect such encoding by placing extra
29900 MIME boundaries around the message text.
29902 These extra boundaries are invisible to recipients that 
29903 use MIME-aware email programs (the vast majority).  However, if
29904 you correspond with users of email programs that are not MIME-aware,
29905 or do not handle the extra boundaries gracefully, you can
29906 use this feature to prevent Alpine from including the extra
29907 MIME information.  Of course, it will increase the likelihood
29908 that non-ASCII text you send may appear corrupt to the recipient.
29910 &lt;End of help on this topic&gt;
29911 </BODY>
29912 </HTML>
29913 ====== h_config_show_sort =====
29914 <HTML>
29915 <HEAD>
29916 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
29917 </HEAD>
29918 <BODY>
29919 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
29921 If this feature is set and there is sufficient space on the screen,
29922 a short indication of the current sort order will be
29923 added in the titlebar (the top line on the screen), before the name
29924 of the folder.
29925 For example, with the default Arrival sort in effect,
29926 the display would have the characters
29928 <P><CENTER>[A]</CENTER><P>
29930 added between the title of the screen and the folder name.
29931 The letters are the same as the letters you may type to manually
29932 sort a folder with the SortIndex command ($).
29933 The letters in the table below are the ones that may show
29934 up in the titlebar line.
29936 <TABLE>   
29937 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
29938 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
29939 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
29940 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
29941 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
29942 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
29943 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
29944 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
29945 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
29946 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
29947 </TABLE>
29949 If the sort order is Reversed, the letter above will be preceded by the letter
29950 &quot;R&quot;, for example
29952 <P><CENTER>[RS]</CENTER><P>
29954 means that a Reverse Subject sort is in effect.
29955 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
29956 left out, and just an &quot;R&quot; is shown.
29958 <P><CENTER>[R]</CENTER>
29961 &lt;End of help on this topic&gt;
29962 </BODY>
29963 </HTML>
29964 ====== h_config_disable_reset_disp =====
29965 <HTML>
29966 <HEAD>
29967 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
29968 </HEAD>
29969 <BODY>
29970 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
29972 UNIX Alpine only.
29974 This feature affects Alpine's behavior when using
29975 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
29976 Normally, before the display filter is run, the terminal mode is reset
29977 to what it was before you started Alpine.
29978 This may be necessary if the filter requires the use of the terminal.
29979 For example, it may need to interact with you.
29980 If you set this feature, then the terminal mode will not be reset.
29981 One thing that turning on this feature should fix is the coloring of
29982 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
29983 breaks because the terminal reset resets the color state of the terminal.
29986 &lt;End of help on this topic&gt;
29987 </BODY>
29988 </HTML>
29989 ====== h_config_disable_sender =====
29990 <HTML>
29991 <HEAD>
29992 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
29993 </HEAD>
29994 <BODY>
29995 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29997 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29998 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29999 header fields.
30000 By default, Alpine will generate such a header in situations where the
30001 username or domain are not the same as
30002 the &quot;From:&quot; header on the message.
30003 With this feature set,
30004 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
30005 This may be desirable on a system that is virtually hosting many domains,
30006 and the sysadmin has other methods available for tracking a message to
30007 its originator.
30009 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
30012 &lt;End of help on this topic&gt;
30013 </BODY>
30014 </HTML>
30015 ====== h_config_use_sender_not_x =====
30016 <HTML>
30017 <HEAD>
30018 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
30019 </HEAD>
30020 <BODY>
30021 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
30023 Normally Alpine adds a header line
30024 labeled &quot;X-X-Sender&quot;, if the sender is
30025 different from the From: line.
30026 The standard specifies that this header
30027 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
30028 Setting this feature causes
30029 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
30031 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
30034 &lt;End of help on this topic&gt;
30035 </BODY>
30036 </HTML>
30037 ====== h_config_use_fk =====
30038 <HTML>
30039 <HEAD>
30040 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
30041 </HEAD>
30042 <BODY>
30043 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
30045 This feature specifies that Alpine will respond to function keys instead of
30046 the normal single-letter commands. In this mode, the key menus at the
30047 bottom of each screen will show function key designations instead of the
30048 normal mnemonic key.
30051 &lt;End of help on this topic&gt;
30052 </BODY>
30053 </HTML>
30054 ====== h_config_cancel_confirm =====
30055 <HTML>
30056 <HEAD>
30057 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
30058 </HEAD>
30059 <BODY>
30060 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
30062 This feature affects what happens when you type ^C to cancel a composition.
30063 By default, if you attempt to cancel a composition by typing ^C, you will be
30064 asked to confirm the cancellation by typing a &quot;C&quot;
30065 for <EM>C</EM>onfirm.
30066 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
30067 risky because the &quot;^C Y&quot; needed to cancel a message
30068 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
30070 If this feature is set the confirmation asked for
30071 will be a &quot;<EM>Y</EM>es&quot;
30072 instead of a &quot;<EM>C</EM>onfirm&quot; response.
30075 &lt;End of help on this topic&gt;
30076 </BODY>
30077 </HTML>
30078 ====== h_config_compose_maps_del =====
30079 <HTML>
30080 <HEAD>
30081 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
30082 </HEAD>
30083 <BODY>
30084 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
30086 This feature affects the behavior of the DELETE key.
30087 If set, Delete will be equivalent to ^D, and delete
30088 the current character.  Normally Alpine defines the Delete key
30089 to be equivalent to ^H, which deletes the <EM>previous</EM>
30090 character.
30093 &lt;End of help on this topic&gt;
30094 </BODY>
30095 </HTML>
30096 ====== h_config_compose_bg_post =====
30097 <HTML>
30098 <HEAD>
30099 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
30100 </HEAD>
30101 <BODY>
30102 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
30104 This feature affects the behavior of Alpine's mail sending.  If set, this
30105 feature enables a subcommand in the composer's "Send?" confirmation
30106 prompt.  The subcommand allows you to tell Alpine to handle the actual
30107 posting in the background.  While this feature usually allows posting
30108 to appear to happen very fast, it has no affect on the actual delivery
30109 time it takes a message to arrive at its destination.
30112 Please Note:
30113 <OL>
30114  <LI>This feature will have no effect if the feature
30115        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
30116        is set.
30117  <LI>This feature isn't supported on all systems.  All DOS and Windows,
30118        as well as several Unix ports, do not recognize this feature.
30119  <LI>Error handling is significantly different when this feature is
30120         enabled.  Any message posting failure results in the message
30121         being appended to your &quot;Interrupted&quot; mail folder.  When you
30122         type the <A HREF="h_common_compose">C</A>ompose command,
30123         Alpine will notice this folder and
30124         offer to extract any messages contained.  Upon continuing a 
30125         failed message, Alpine will display the nature of the failure 
30126         in the status message line.
30127  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
30128         for message data to
30129         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
30130         if you typically run close to any sort of disk-space limits or quotas.
30131 </OL>
30133 &lt;End of help on this topic&gt;
30134 </BODY>
30135 </HTML>
30136 ====== h_config_compose_dsn =====
30137 <HTML>
30138 <HEAD>
30139 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
30140 </HEAD>
30141 <BODY>
30142 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
30144 This feature affects the behavior of Alpine's mail sending.  If set, this
30145 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
30146 prompt.  The subcommand allows you to tell Alpine to request the type of
30147 Delivery Status Notification (DSN) that you would like.  Most users will
30148 be happy with the default, and need not enable this feature.
30150 If the feature
30151 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
30152 then this feature has no effect and the type of DSN is not selectable.
30155 Turning on this feature and then turning on the DSNOpts from the send
30156 prompt reveals four on-off toggles at the bottom of the screen.
30157 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
30158 that no notification be returned to you, even if there is a delivery
30159 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
30160 server that you are willing (or not) to receive delay notifications, which
30161 happen when there is an unusual delay at some mail server (in that mail
30162 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
30163 Success requests that you be sent a DSN message when the message is
30164 successfully delivered to the recipients mailbox.  Setting NoErrRets will
30165 automatically turn off Delay and Success notification, and will flip the
30166 toggles to show that.  Similarly, turning on Delay and/or Success will
30167 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
30168 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
30169 the full message be returned in any failed DSN.  RetHdrs requests that
30170 only the headers be returned in any failed DSN.  Notice that this command
30171 applies only to failed delivery status reports.  For delay or success
30172 reports, the full message is never returned, only the headers are returned.
30175 If you don't enable the DSN feature or if you don't turn it on for a
30176 particular message, the default is that you will be notified about failures,
30177 you might be notified about delays, and you won't be notified about
30178 successes.  You will usually receive the full message back when there is
30179 a failure.
30182 If you turn on the DSNOpts the default is to return as much information as
30183 possible to you.  That is, by default, the Success and Delay options are
30184 turned on and the full message will be returned on failure.
30187 The sending prompt will display the current DSN request (if any) in a
30188 shorthand form.  It will be:
30190 <P><CENTER>[Never]</CENTER>
30193 if you have requested NoErrRets.  Otherwise, it will look something like:
30195 <P><CENTER>[FDS-Hdrs]</CENTER>
30198 The &quot;F&quot; will always be there, indicating that you will be notified
30199 of failures.  (Alpine doesn't provide a way to request no failure notification
30200 and at the same time request either success or delay notification.  The only
30201 way to request no failure notifications is to request no notifications at
30202 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
30203 requested Delay and/or Success notification.  If one of those is missing,
30204 that means you are requesting no notification of the corresponding type.
30205 After the dash it will say either Hdrs or Full.  Hdrs means to return only
30206 the headers and Full means to return the full message (applies to
30207 failure notifications only).
30210 NOTE: This feature relies on your system's mail transport agent or
30211 configured
30212 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
30213 having the negotiation mechanism introduced in
30214 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
30215 &quot;Delivery Status Notification&quot; (DSN).  If the mail transport agent you
30216 are using doesn't support DSN, a short warning will be shown to you on
30217 the message line at the bottom of the screen after you send your message,
30218 but your message will have been sent anyway.
30221 Note that DSNs don't provide a mechanism to request read receipts.  That
30222 is, if you request notification on success you are notified when the
30223 message is delivered to the mailbox, not when the message is read.
30226 ESMTP allows for graceful migration to upgraded mail transfer agents, but
30227 it is possible that this feature might cause problems for some servers. 
30230 &lt;End of help on this topic&gt;
30231 </BODY>
30232 </HTML>
30233 ====== h_config_auto_zoom =====
30234 <HTML>
30235 <HEAD>
30236 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
30237 </HEAD>
30238 <BODY>
30239 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
30241 This feature affects the behavior of the Select command.
30242 If set, the select command will automatically perform a zoom
30243 after the select is complete.
30244 This feature is set by default.
30246 Some related help topics are
30247 <UL>
30248 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30249 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30250 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30251 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30252 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30253 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
30254 </UL>
30257 &lt;End of help on this topic&gt;
30258 </BODY>
30259 </HTML>
30260 ====== h_config_auto_unzoom =====
30261 <HTML>
30262 <HEAD>
30263 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
30264 </HEAD>
30265 <BODY>
30266 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
30268 This feature affects the behavior of the Apply command.  If set, and if
30269 you are currently looking at a Zoomed Index view of selected messages,
30270 the Apply command will do the operation you specify, but then will
30271 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
30272 the normal Index view after the Apply. 
30273 This feature is set by default.
30276 Some related help topics are
30277 <UL>
30278 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30279 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30280 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30281 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30282 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
30283 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
30284 </UL>
30286 &lt;End of help on this topic&gt;
30287 </BODY>
30288 </HTML>
30289 ====== h_config_auto_unselect =====
30290 <HTML>
30291 <HEAD>
30292 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
30293 </HEAD>
30294 <BODY>
30295 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
30297 This feature affects the behavior of the Apply command.  If set,
30298 the Apply command will do the operation you specify, but then will
30299 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
30300 the normal Index view after the Apply. 
30303 Some related help topics are
30304 <UL>
30305 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30306 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30307 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30308 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
30309 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30310 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
30311 </UL>
30313 &lt;End of help on this topic&gt;
30314 </BODY>
30315 </HTML>
30316 ====== h_config_fast_recent =====
30317 <HTML>
30318 <HEAD>
30319 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
30320 </HEAD>
30321 <BODY>
30322 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
30324 This feature controls the behavior of the TAB key when traversing folders
30325 in the optional 
30326 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
30327 collection or in optional <!--#echo var="VAR_news-collections"-->.
30330 When the TAB
30331 (<A HREF="h_common_nextnew">NextNew</A>)
30332 key is pressed, the default behavior is to
30333 explicitly examine the status of the folder for the number of recent
30334 messages (messages delivered since the last time it was viewed).
30335 Depending on the size and number of messages in the folder, this test
30336 can be time consuming.
30339 Enabling this feature will cause Alpine to only test for the existence of
30340 any recent messages rather than to obtain the count.  This is much faster
30341 in many cases.  The downside is that you're not given the number of recent
30342 messages when prompted to view the next folder.
30343 If the feature
30344 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
30345 is turned on, then the present feature will have no effect.
30348 <UL>   
30349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30350 </UL><P>
30351 &lt;End of help on this topic&gt;
30352 </BODY>
30353 </HTML>
30354 ====== h_config_arrow_nav =====
30355 <HTML>
30356 <HEAD>
30357 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
30358 </HEAD>
30359 <BODY>
30360 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
30362 This feature controls the behavior of the left and right arrow keys.
30363 If set, the left and right arrow keys will operate like the usual
30364 navigation keys &lt; and &gt;.
30365 This feature is set by default.
30368 If you set this feature, and do not like the changed behavior of the up/down 
30369 arrow 
30370 keys when navigating through the FOLDER LIST screen -- 
30371 <B>first</B> from column to column, if more than one folder is 
30372 displayed per row, 
30373 and <B>then</B> from row to row -- you may either also wish to set the feature 
30374 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
30375 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
30376 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
30377 folders in each column.
30379 <UL>   
30380 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30381 </UL><P>
30382 &lt;End of help on this topic&gt;
30383 </BODY>
30384 </HTML>
30385 ====== h_config_relaxed_arrow_nav =====
30386 <HTML>
30387 <HEAD>
30388 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
30389 </HEAD>
30390 <BODY>
30391 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
30393 This feature controls the behavior of the left, right, up and down
30394 arrow keys in the FOLDER LIST screen when the &quot;<A
30395 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
30396 set.
30397 This feature is set by default.
30401 When this feature is set, the left and right
30402 arrow keys in the FOLDER LIST screen
30403 move the highlight bar to the left or right, and the up and
30404 down arrows move it up or down.
30407 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
30408 feature is not set;
30409 the left and right arrow keys in the Folder List screen strictly
30410 track the commands bound to the '&lt;' and '&gt;' keys, and the up
30411 and down arrow keys move the highlight bar to the previous and next
30412 folder or directory name.
30415 <UL>   
30416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30417 </UL><P>
30418 &lt;End of help on this topic&gt;
30419 </BODY>
30420 </HTML>
30421 ====== h_config_alt_compose_menu =====
30422 <HTML>
30423 <HEAD>
30424 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
30425 </HEAD>
30426 <BODY>
30427 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
30429 This feature controls the menu that is displayed when Compose is selected.
30430 If set, a list of options will be presented, with each option representing
30431 the type of composition that could be used. This feature is most useful for
30432 users who want to avoid being prompted with each option separately, or who
30433 want to avoid the checking of remote postponed or form letter folders.
30434 The possible types of composition are:
30437 New, for starting a new composition. Note that if New is selected and roles
30438 are set, roles are checked for matches and applied according to the setting
30439 of the matching role.
30442 Interrupted, for continuing an interrupted composition. This option is only
30443 offered if an interrupted message folder is detected.
30446 Postponed, for continuing postponed compositions. This option is offered
30447 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
30448 the postponed folder actually exists. This option is especially handy
30449 for avoiding having to check for the existence of a remote postponed folder.
30452 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
30453 is set in the config, and is not checked for existence for reasons similar
30454 to those explained by the postponed option.
30457 setRole, for selecting a role to apply to a composition.
30460 &lt;End of help on this topic&gt;
30461 </BODY>
30462 </HTML>
30463 ====== h_config_alt_role_menu =====
30464 <HTML>
30465 <HEAD>
30466 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
30467 </HEAD>
30468 <BODY>
30469 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
30471 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
30472 a role and compose a new message using that role.
30473 When this feature is set, the role command will first ask whether you want to
30474 Compose a new message, Forward the current message, Reply to the
30475 current message, or Bounce the current message.
30476 If you are not in the MESSAGE INDEX and are not viewing a message,
30477 then there is no current message and the question will be skipped.
30478 After you have chosen to Compose, Forward, Reply, or Bounce you will
30479 then choose the role to be used.
30481 When Bouncing the &quot;Set From&quot; address is used for the
30482 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
30483 provided that the option
30484 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
30485 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
30486 set.
30487 Other actions of the role are ignored when Bouncing.
30490 &lt;End of help on this topic&gt;
30491 </BODY>
30492 </HTML>
30493 ====== h_config_always_spell_check =====
30494 <HTML>
30495 <HEAD>
30496 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
30497 </HEAD>
30498 <BODY>
30499 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
30501 When this feature is set, every composed message will be spell-checked before
30502 being sent.
30504 &lt;End of help on this topic&gt;
30505 </BODY>
30506 </HTML>
30507 ====== h_config_quell_asterisks =====
30508 <HTML>
30509 <HEAD>
30510 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
30511 </HEAD>
30512 <BODY>
30513 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
30515 When you are running Alpine you will sometimes be asked for a password
30516 in a prompt on the third line from the bottom of the screen.
30517 Normally each password character you type will cause an asterisk to echo
30518 on the screen. That gives you some feedback to know that your typing is
30519 being recognized.
30520 There is a very slight security risk in doing it this way because someone
30521 watching over your shoulder might be able to see how many characters there
30522 are in your password.
30523 If you'd like to suppress the echoing of the asterisks set this feature.
30525 &lt;End of help on this topic&gt;
30526 </BODY>
30527 </HTML>
30528 ====== h_config_quell_flowed_text =====
30529 <HTML>
30530 <HEAD>
30531 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
30532 </HEAD>
30533 <BODY>
30534 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
30536 Alpine generates flowed text where possible.
30537 The method for generating flowed text is defined by
30538 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
30539 the benefit of doing so is
30540 to send message text that can properly be viewed both on normal width displays
30541 and on displays with smaller or larger than normal screen widths.
30542 With flowed text, a space at the end of a line tells the receiving mail
30543 client that the following line belongs to the same paragraph.
30544 Quoted text will also be affected, with only the innermost
30545 level of &quot;&gt;&quot; quoting being followed by a space.
30546 However, if you have changed the
30547 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30548 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30549 quoted text will not be flowed.
30550 For this reason, we recommend that you leave your
30551 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
30553 This feature turns off the generation of flowed text, as it might be
30554 desired to more tightly control how a message is displayed on the receiving end.
30556 If this feature is <EM>not</EM> set, you can control on a message by message
30557 basis whether or not flowed text is generated.
30558 You do this by typing ^V at the Send confirmation prompt that you get
30559 after typing ^X to send a message.
30560 ^V is a toggle that turns flowing off and back on if typed again.
30561 If for some reason flowing cannot be done on a particular message, then the
30562 ^V command will not be available.
30563 This would be the case, for example, if this feature was set, or if your
30564 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
30565 If the feature
30566 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
30567 then the opportunity to control on a message by message basis
30568 whether or not flowed text is generated is lost.
30570 When this feature is not set and you have typed ^V to turn off flowing,
30571 the Send confirmation prompt will change to look like
30573 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
30575 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
30576 also turn off the sending of flowed text messages, but it differs in that
30577 it also trims all trailing white space from a message before sending it.
30579 If alternate editors are used extensively, be aware that a message will still
30580 be sent flowed if this feature is unset.  In most cases this will be fine,
30581 but if the editor has a &quot;flowed text&quot; mode, it would be best to
30582 use that.
30584 &lt;End of help on this topic&gt;
30585 </BODY>
30586 </HTML>
30587 ====== h_config_strip_ws_before_send =====
30588 <HTML>
30589 <HEAD>
30590 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
30591 </HEAD>
30592 <BODY>
30593 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
30595 By default, trailing whitespace is not stripped from
30596 a message before sending.  Trailing whitespace should have no effect on an
30597 email message, and in flowed text can aid in delimiting paragraphs.
30598 However, the old behavior of stripping trailing whitespace was in place
30599 to better deal with older clients that couldn't handle certain types of
30600 text encodings.  This feature restores the old behavior
30602 Trailing whitespace is of aid to flowed-text-formatted messages, which are
30603 generated by default but can be turned off via the
30604 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
30605 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
30606 of flowed text.
30608 &lt;End of help on this topic&gt;
30609 </BODY>
30610 </HTML>
30611 ====== h_config_alt_reply_menu =====
30612 <HTML>
30613 <HEAD>
30614 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
30615 </HEAD>
30616 <BODY>
30617 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
30619 Note that if this option is enabled, then the option
30620 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
30621 is ignored. See below to understand why.
30623 When you reply to a message, a series of questions are asked that 
30624 determines how your reply will be handled by Alpine. This feature only 
30625 affects the result of the first question you are asked, and its purpose is 
30626 to set values that could override defaults set in Alpine's main 
30627 configuration screen. As a result, this menu allows you to configure even 
30628 more features than you would be able to do without this option. For 
30629 example, this menu always allows you to override or select a <A 
30630 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
30631 override your indent string, regardless of if you have enabled 
30632 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
30633 The full list of options can be found below.
30635 Here is an example of how this option works. After you press Reply,
30636 if you see &quot;A Inc Attach&quot; in the menu, it means that 
30637 if you press &quot;A&quot;, then Alpine will include the attachments
30638 of the original message, and the default is not to include them. 
30639 Conversely, if you see &quot;A No Attach&quot; 
30640 then by pressing &quot;A&quot; Alpine will not include
30641 attachments in your reply, and the default is that Alpine will 
30642 include them in your reply. The value that you see when you 
30643 start your reply is controlled by the option
30644 <A HREF="h_config_attach_in_reply">
30645 <!--#echo var="FEAT_include-attachments-in-reply"-->
30646 </A>. If the feature is enabled, then Alpine will display 
30647 &quot;A No Attach&quot; to override the default behavior. You can
30648 toggle between the two values of this option by pressing &quot;A&quot;.
30649 Remember that the value that you see in the menu is the action that will 
30650 be done when you press the associated command.
30652 Below are your options:
30653 <OL>
30654 <LI><B>A</B>: This determines if Alpine will include or not the 
30655 attachments sent to you in the message that you are replying to. The default 
30656 is to use the value of the configuration option 
30657 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overridden by using this command.
30659 <LI><B>H</B>: This command determines if the headers of a message are
30660 included in the body of the message that is being replied to. By default 
30661 Alpine will use the value of the configuration option 
30662 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
30663 Observe that by toggling this option to include headers, text will be toggled
30664 to be included by default.
30666 <LI><B>R</B>: Can be used to set a role different from the default.
30668 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
30669 message. The default is to strip the signature when the message is not
30670 viewed in headers mode, and you either have enabled
30671 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
30673 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
30675 <LI><B>Ctrl-R</B>: Can be used to edit the 
30676 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
30677 </OL>
30679 In order to include the text of the original message in the reply
30680 you either need to press 'y' to include the original text, or 'n' to 
30681 exclude it from the reply. Pressing return will execute the default 
30682 action, which is to include text only if the option
30683 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
30684 is enabled. However, notice that the default is to include text if you edit the 
30685 reply indent string or if you explicitly set through this menu that you
30686 want headers included in the reply message.
30689 &lt;End of help on this topic&gt;
30690 </BODY>
30691 </HTML>
30692 ====== h_config_del_from_dot =====
30693 <HTML>
30694 <HEAD>
30695 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
30696 </HEAD>
30697 <BODY>
30698 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
30700 This feature controls the behavior of the Ctrl-K command in the composer.
30701 If set, ^K will cut from the current cursor position to the end of the line,
30702 rather than cutting the entire line.
30705 &lt;End of help on this topic&gt;
30706 </BODY>
30707 </HTML>
30708 ====== h_config_print_index =====
30709 <HTML>
30710 <HEAD>
30711 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
30712 </HEAD>
30713 <BODY>
30714 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
30716 This feature controls the behavior of the Print command when in the
30717 MESSAGE INDEX screen.  If set, the print command will give you a prompt
30718 asking if you wish to print the message index, or the currently highlighted
30719 message. If not set, the message will be printed.
30722 &lt;End of help on this topic&gt;
30723 </BODY>
30724 </HTML>
30725 ====== h_config_allow_talk =====
30726 <HTML>
30727 <HEAD>
30728 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
30729 </HEAD>
30730 <BODY>
30731 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
30733 UNIX Alpine only.
30735 By default, permission for others to &quot;talk&quot; to your terminal is turned
30736 off when you are running Alpine.  When this feature is set, permission is
30737 instead turned on.  If enabled, you may see unexpected messages in the
30738 middle of your Alpine screen from someone attempting to contact you via the
30739 &quot;talk&quot; program.
30742 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
30743 talk daemon on your system will attempt to print a message on your screen 
30744 when someone else is trying to contact you.  If you wish to see these
30745 messages while you are running Alpine, you should enable this feature.
30748 If you do enable this feature and see a &quot;talk&quot; message, you must 
30749 suspend or quit Alpine before you can respond.
30752 &lt;End of help on this topic&gt;
30753 </BODY>
30754 </HTML>
30755 ====== h_config_send_filter_dflt =====
30756 <HTML>
30757 <HEAD>
30758 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
30759 </HEAD>
30760 <BODY>
30761 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
30762 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
30763 configured, setting this feature will cause
30764 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
30765 instead of unfiltered, the usual default.
30767 <UL>   
30768 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30769 </UL><P>
30770 &lt;End of help on this topic&gt;
30771 </BODY>
30772 </HTML>
30773 ====== h_config_custom_print =====
30774 <HTML>
30775 <HEAD>
30776 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
30777 </HEAD>
30778 <BODY>
30779 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
30781 When this feature is set, the print command will have an additional
30782 subcommand called "C CustomPrint".  If selected, you will have
30783 the opportunity to enter any system print command --instead of being 
30784 restricted to using those that have been previously configured in the 
30785 printer setup menu.
30788 &lt;End of help on this topic&gt;
30789 </BODY>
30790 </HTML>
30791 ====== h_config_enable_dot_files =====
30792 <HTML>
30793 <HEAD>
30794 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
30795 </HEAD>
30796 <BODY>
30797 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
30799 When this feature is set, files beginning with dot (".") will be
30800 visible in the file browser.  For example, you'll be able to select them
30801 when using the browser to add an attachment to a message.
30803 &lt;End of help on this topic&gt;
30804 </BODY>
30805 </HTML>
30806 ====== h_config_enable_dot_folders =====
30807 <HTML>
30808 <HEAD>        
30809 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
30810 </HEAD>
30811 <BODY>
30812 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
30814 When this feature is set, folders beginning with dot (".") may be added
30815 and viewed.
30817 &lt;End of help on this topic&gt;
30818 </BODY>
30819 </HTML>
30820 ====== h_config_ff_between_msgs =====
30821 <HTML>
30822 <HEAD>
30823 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
30824 </HEAD>
30825 <BODY>
30826 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
30828 Setting this feature causes a formfeed to be printed between messages when
30829 printing multiple messages (with Apply Print command).
30831 &lt;End of help on this topic&gt;
30832 </BODY>
30833 </HTML>
30834 ====== h_config_blank_keymenu =====
30835 <HTML>
30836 <HEAD>
30837 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
30838 </HEAD>
30839 <BODY>
30840 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
30842 If this feature is set the command key menu that normally appears on the
30843 bottom two lines of the screen will not usually be there.  Asking for
30844 help with ^G or ? will cause the key menu to appear instead of causing
30845 the help message to come up.  If you want to actually see the help text,
30846 another ^G or ? will show it to you.  After the key menu has popped
30847 up with the help key it will remain there for an O for Other command but
30848 disappear if any other command is typed.
30850 &lt;End of help on this topic&gt;
30851 </BODY>
30852 </HTML>
30853 ====== h_config_enable_mouse =====
30854 <HTML>
30855 <HEAD>
30856 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
30857 </HEAD>
30858 <BODY>
30859 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
30861 This feature controls whether or not an X terminal mouse can be used with
30862 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
30863 being used, the left mouse button on the mouse can be used to select text
30864 or commands.
30865 Clicking on a command at the bottom of the screen will behave as if you had
30866 typed that command.
30867 Clicking on an index line will move the current message highlight to
30868 that line.
30869 Double-clicking on an index line will view the message.
30870 Double-clicking on a link will view the link.
30872 This type of mouse support will also work in some terminal emulators which are
30873 not actually X terminals, but which have extra code to support the xterm
30874 style mouse.
30875 For those emulators you not only need to turn this feature on but you also
30876 have to set the $DISPLAY environment variable even though it isn't needed
30877 for your terminal.
30878 That will cause Alpine to think that it is an xterm and to properly interpret the
30879 escape sequences sent by the mouse.
30881 Note: if this feature is set, the behavior of X terminal cut-and-paste is
30882 also modified.  It is sometimes possible to hold the shift key down while clicking
30883 left or middle mouse buttons for the normal xterm cut/paste operations. 
30884 There is also an Alpine command to toggle this mode on or off.
30885 The command is Ctrl-&#92; (Control-backslash).
30887 &lt;End of help on this topic&gt;
30888 </BODY>
30889 </HTML>
30890 ====== h_config_enable_xterm_newmail =====
30891 <HTML>
30892 <HEAD>        
30893 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
30894 </HEAD>
30895 <BODY>
30896 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
30898 This feature controls whether or not Alpine will attempt to announce new
30899 mail arrival when it is running in an X terminal window and that window
30900 is iconified.  If set, and the $DISPLAY variable indicates that an X
30901 terminal is being used, Alpine will send appropriate escape sequences to
30902 the X terminal to modify the label on Alpine's icon to indicate that new
30903 mail has arrived. Alpine will also modify the Alpine window's title to
30904 indicate new mail.
30905 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
30907 &lt;End of help on this topic&gt;
30908 </BODY></HTML>
30909 ====== h_config_enable_newmail_short_text =====
30910 <HTML>
30911 <HEAD>        
30912 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
30913 </HEAD>
30914 <BODY>
30915 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
30917 This feature controls the text to be displayed in an icon in the event
30918 of a new message arrival.  Normally, the message will
30919 be the one that is displayed on the screen.  This feature shortens the
30920 message to a count of the number of new messages in brackets.  This may be
30921 more useful for those who use the window's title bar in the task bar as a
30922 new mail indicator.  This feature is only useful if the
30923 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
30924 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
30925 feature, this feature is only relevant when run in an xterm environment.
30927 &lt;End of help on this topic&gt;
30928 </BODY></HTML>
30929 ====== h_config_copy_to_to_from =====
30930 <HTML>
30931 <HEAD>
30932 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
30933 </HEAD>
30934 <BODY>
30935 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
30937 This feature affects the From address used when Replying to a message.
30938 It is probably only useful if you have some
30939 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
30940 defined.
30941 When enabled, it checks to see if any of the addresses in the To or Cc
30942 fields of the message you are replying to is one of your addresses.
30943 If it is, and there is only one of them, then that address is used as
30944 the From address in the message you are composing.
30945 In other words, you will be using a From address that is the same
30946 as the To address that was used to get the mail to you in the first place.
30949 If a role is being used and it has a From address defined, that From address will
30950 be used rather than the one derived from this feature.
30953 <UL>   
30954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30955 </UL><P>
30956 &lt;End of help on this topic&gt;
30957 </BODY>
30958 </HTML>
30959 ====== h_config_prefix_editing =====
30960 <HTML>
30961 <HEAD>
30962 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
30963 </HEAD>
30964 <BODY>
30965 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
30967 This feature affects the Reply command's &quot;Include original message
30968 in Reply?&quot; prompt.  When enabled, it causes the
30969 &quot;Edit Indent String&quot; sub-command to appear which allows 
30970 you to edit the string Alpine would otherwise use to denote included 
30971 text from the message being replied to.<P>
30973 Thus, you can change Alpine's default message quote character (usually
30974 an angle bracket) on a per message basis. So you could change your quoted message to
30975 look, for example, like this:<p>
30977 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
30979 John: I just wanted to say hello and to congratulate you
30980 John: on a job well done!</pre><p>
30982 The configuration option
30983 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30984 may be used to change what appears as the default string to be edited.
30986 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
30987 currently being replied to.
30989 If you change your <!--#echo var="VAR_reply-indent-string"-->
30990 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30991 quoted text will not be flowed
30992 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
30993 when you reply.
30994 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30995 set to the default value.
30997 <UL>   
30998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30999 </UL><P>
31000 &lt;End of help on this topic&gt;
31001 </BODY>
31002 </HTML>
31003 ====== h_config_enable_search_and_repl =====
31004 <HTML>
31005 <HEAD>
31006 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
31007 </HEAD>
31008 <BODY>
31009 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
31011 This feature modifies the behavior of Alpine's composer.  Setting this
31012 feature causes Alpine to offer the "^R Replace" subcommand, which
31013 allows you to search and replace text strings in a message you are composing, 
31014 inside the "^W Where is" command.  
31018 To search and replace text, first enter the text to be replaced at the 
31019 "Search: " prompt.  Then, rather than pressing Enter to just search for that
31020 text, press ^R, which turns the prompt into 
31024 Search (to replace): 
31028 and then press Enter.  The cursor will highlight the first occurrence 
31029 of the text string you entered, and the prompt will show: 
31033 Replace "<your text string>" with : 
31037 where <your text string> is what you entered at the previous prompt;
31038 here, enter the replacement text.  To only replace the highlighted 
31039 occurrence, simply press Enter now; to replace all occurrences in the 
31040 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
31041 each replacement.
31045 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
31046 ^X toggles between "Replace All" and "Replace One."
31050 If you previously searched for text in a message, it will be offered for 
31051 re-use as part of the prompt, shown in [ ] brackets.
31054 &lt;End of help on this topic&gt;
31055 </BODY>
31056 </HTML>
31057 ====== h_config_enable_view_attach =====
31058 <HTML>
31059 <HEAD>
31060 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
31061 </HEAD>
31062 <BODY>
31063 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
31065 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
31066 Setting this feature causes Alpine to present attachments in boldface.
31067 The first available attachment is displayed in inverse.  This is the
31068 "selected" attachment.  Pressing RETURN will cause Alpine to display
31069 the selected attachment.  Use the arrow keys to change which of the
31070 attachments displayed in boldface is the current selection.
31074 Speaking of arrow keys, the Up and Down Arrows will select the next
31075 and previous attachments if one is available on the screen for selection.
31076 Otherwise, they will simply adjust the viewed text one line up or down.
31080 Similarly, when selectable items are present in a message, the Ctrl-F key
31081 can be used to select the next item in the message independent of which
31082 portion of the viewed message is currently displayed. The Ctrl-B key can
31083 be used to select the previous item in the same way. 
31084 <P> 
31085 &lt;End of help on this topic&gt;
31086 </BODY>
31087 </HTML>
31088 ====== h_config_enable_y_print =====
31089 <HTML>
31090 <HEAD>
31091 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
31092 </HEAD>
31093 <BODY>
31094 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
31096 This feature modifies the behavior of Alpine's Print command.
31098 By default, Alpine's print command is available by pressing the "%" key.  
31099 (This command is a substantial change from Pine versions before 4.00 -- 
31100 where the print command was "Y" -- based on numerous complaints about 
31101 printing being invoked inadvertently, since Y also means "Yes.")  
31105 This feature is supplied to mitigate any disruption or anxiety users 
31106 might feel as a result of this change.  
31110 Enabling this feature will cause Alpine to recognize both the old
31111 command, "Y" for Prynt, as well the new "%" method for invoking
31112 printing.  Note, key menu labels are not changed as a result of
31113 enabling this feature.
31117 &lt;End of help on this topic&gt;
31118 </BODY>
31119 </HTML>
31120 ====== h_config_enable_lessthan_exit =====
31121 <HTML>
31122 <HEAD>
31123 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
31124 </HEAD>
31125 <BODY>
31126 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
31128 If this feature is set, then on screens where there is an Exit command
31129 but no < command, the < key will perform the same function as the Exit
31130 command.
31131 This feature is set by default.
31133 &lt;End of help on this topic&gt;
31134 </BODY>
31135 </HTML>
31136 ====== h_config_enable_view_url =====
31137 <HTML>
31138 <HEAD>
31139 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
31140 </HEAD>
31141 <BODY>
31142 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
31143 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
31144 When this feature is set (the default) Alpine will select possible URLs from the
31145 displayed text and display them in boldface for selection.
31147 The first available URL is displayed in inverse.  This is the
31148 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
31149 the selected URL via either built-in means as with mailto:, imap:,
31150 news:, and nntp:, or via an external application as defined
31151 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
31152 variable.
31154 Use the arrow keys to change which of the URLs displayed in boldface
31155 is the current selection.
31157 Speaking of arrow keys, the Up and Down Arrows will select the next
31158 and previous URL if one is available on the screen for selection (unless 
31159 you have set the feature 
31160 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
31161 Otherwise, they will simply adjust the viewed text one line up or down.
31163 Similarly, when selectable items are present in a message, the Ctrl-F
31164 key can be used to select the next item in the message independent
31165 of which portion of the viewed message is currently displayed. The
31166 Ctrl-B key can be used to select the previous item in the same way.
31168 <UL>   
31169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31170 </UL><P>
31171 &lt;End of help on this topic&gt;
31172 </BODY>
31173 </HTML>
31174 ====== h_config_enable_view_web_host =====
31175 <HTML>
31176 <HEAD>
31177 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
31178 </HEAD>
31179 <BODY>
31180 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
31182 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
31183 When this feature is set (the default) Alpine will select possible web hostnames
31184 from the displayed text and display them in boldface for selection.  
31185 This can be useful when you receive messages referencing World Wide Web 
31186 sites without the use of complete URLs; for example, specifying only 
31187 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
31188 selectable 
31189 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
31190 rather than explicitly
31191 &quot;http://www.some.site.com&quot;.  
31193 The first available hostname is displayed in inverse.  This is the
31194 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
31195 the selected hostname via an external application as defined
31196 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
31197 variable.
31199 Use the arrow keys (unless you have set the feature 
31200 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
31201 to change which of the hostnames displayed in
31202 boldface is the current selection.
31204 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
31205 key can be used to select the next web hostname in the message independent
31206 of which portion of the viewed message is currently displayed. The
31207 Ctrl-B key can be used to select the previous web hostnames in the same way.
31209 <UL>   
31210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31211 </UL><P>
31212 &lt;End of help on this topic&gt;
31213 </BODY>
31214 </HTML>
31215 ====== h_config_enable_view_addresses =====
31216 <HTML>
31217 <HEAD>
31218 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
31219 </HEAD>
31220 <BODY>
31221 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
31223 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
31224 Setting this feature causes Alpine to select possible email addresses
31225 from the displayed text and display them in boldface for selection.  
31228 The first available email address is displayed in inverse.  This is the
31229 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
31230 the message composition screen with the To: field filled in with the
31231 selected address.
31233 Use the arrow keys (unless you have set the feature 
31234 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
31235 to change which of the hostnames displayed in
31236 boldface is the current selection.
31238 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
31239 key can be used to select the next web hostname in the message independent
31240 of which portion of the viewed message is currently displayed. The
31241 Ctrl-B key can be used to select the previous web hostnames in the same way.
31243 <UL>   
31244 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31245 </UL><P>
31246 &lt;End of help on this topic&gt;
31247 </BODY>
31248 </HTML>
31249 ====== h_external_loads_inline_images_only =====
31250 <HTML>
31251 <HEAD>
31252 <TITLE>FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></TITLE>
31253 </HEAD>
31254 <BODY>
31255 <H1>FEATURE: <!--#echo var="FEAT_external-command-loads-inline-images-only"--></H1>
31257 Alpine allows you to pass a HTML message to the browser that you have configured in your
31258 <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A> variable. This allows
31259 you to read a message outside of Alpine. This is desirable when Alpine does not display
31260 html correctly, or when you wish to read the message and see the inline images in the message.
31263 An inline image is one that comes with the message and is necessary for the correct display of
31264 the message. However, there are instances in which the source of an image will come from
31265 external servers. If this feature is enabled (the default) then Alpine will only pass inline
31266 images to the browser and will remove the link to external images, so only inline images will
31267 be used to display the message, and no external image will be loaded. Alpine does this to protect
31268 your privacy and security.
31271 Please note that messages are usually formatted by the sender so that they display correctly once
31272 all images have been loaded. Enabling this feature might cause the message not to be correctly
31273 displayed by your browser.
31276 Also consider security and privacy implications of opening an HTML message in a browser. You are
31277 always protected when you do not use this feature, but you might not have the same level of
31278 protection if you try to open a spam or scam using the html view. Also commercial email is
31279 normally embedded with links to external images that let them, their partners, and your internet
31280 service provider (which could be your employer or school)  know that you opened their message or
31281 connected to a web site, violating your privacy.
31284 If you are worried about your privacy and security, do not use an external viewer to open
31285 html files, and keep using the internal mechanisms that Alpine provides to read messages.
31288 &lt;End of help on this topic&gt;
31289 </BODY>
31290 <HTML>
31291 ====== h_config_enable_view_arrows =====
31292 <HTML>
31293 <HEAD>
31294 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
31295 </HEAD>
31296 <BODY>
31297 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
31299 This feature modifies Up and Down arrow key behavior in Alpine's
31300 MESSAGE TEXT screen when selectable Attachments, URL's, or
31301 web-hostnames are presented. Alpine's usual behavior is to move to
31302 the next or previous selectable item if currently displayed or
31303 simply to adjust the screen view by one line.
31307 Setting this feature causes the UP and Down arrow key to behave as
31308 if no selectable items were present in the message.
31312 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
31313 item) functionality is unchanged.
31316 &lt;End of help on this topic&gt;
31317 </BODY>
31318 <HTML>
31319 ====== h_config_quell_charset_warning =====
31320 <HTML>
31321 <HEAD>
31322 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
31323 </HEAD>
31324 <BODY>
31325 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
31327 By default, if the message you are viewing contains characters that are
31328 not representable in your
31329 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
31330 then Alpine will
31331 add a warning to the start of the displayed text.
31332 If this option is set, then that editorial message will be suppressed.
31334 Setting this feature also suppresses the comment about the character set
31335 in header lines.
31336 For example, when viewing a message you might see
31338 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
31340 in the From header if your Character-Set is something other than ISO-8859-2.
31341 If you set this feature, the comment about the character set will
31342 no longer be there.
31344 &lt;End of help on this topic&gt;
31345 </BODY>
31346 </HTML>
31347 ====== h_config_quell_host_after_url =====
31348 <HTML>
31349 <HEAD>
31350 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
31351 </HEAD>
31352 <BODY>
31353 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
31355 By default, links in HTML text are displayed with the host the link
31356 references appended, within square brackets, to the link text.  Alpine
31357 does this to help indicate where a link will take you, particularly when
31358 the link text might suggest a different destination.
31361 Setting this feature will prevent the server name from being appended
31362 to the displayed text.
31365 &lt;End of help on this topic&gt;
31366 </BODY>
31367 </HTML>
31368 ====== h_config_prefer_plain_text =====
31369 <HTML>
31370 <HEAD>
31371 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
31372 </HEAD>
31373 <BODY>
31374 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
31376 A message being viewed may contain alternate versions of the same content.
31377 Those alternate versions are supposed to be ordered by the sending software such that the
31378 first alternative is the least preferred and the last alternative is the
31379 most preferred. Alpine will normally display the most-preferred version that
31380 it knows how to display. This is most often encountered where the two
31381 alternate versions are a plain text version and an HTML version, with the
31382 HTML version listed last as the most preferred.
31384 If this option is set, then any plain text version will be preferred to
31385 all other versions.
31387 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
31388 which will temporarily change the sense of this option.
31389 If this option is set you will first see the plain text version of a
31390 message.
31391 If you then type the &quot;A&quot; command, you will see the most preferred version,
31392 most likely HTML, instead.
31393 Typing the &quot;A&quot; command a second time will switch it back.
31394 Alternatively, if the present option is not set you will originally see
31395 the most preferred version of the message and typing &quot;A&quot; will switch to
31396 the plain text version.
31398 &lt;End of help on this topic&gt;
31399 </BODY>
31400 </HTML>
31401 ====== h_config_pass_control =====
31402 <HTML>
31403 <HEAD>
31404 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
31405 </HEAD>
31406 <BODY>
31407 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
31409 It is probably not useful to set this option.
31410 This is a legacy option left behind &quot;just in case&quot;.
31411 Multi-byte characters that have an octet that has the same
31412 value as a control character are permitted through whether or not
31413 this option is turned on.
31415 This feature controls how certain characters contained in messages are
31416 displayed.
31417 If set, all characters in a message will be sent to the
31418 screen. Normally, control characters are displayed as shown below to
31419 avoid a garbled screen and to 
31420 avoid inadvertently changing terminal setup parameters.
31421 Control characters are usually displayed as two character sequences like
31422 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
31423 for Control-C,
31424 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
31425 for ESCAPE,
31426 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
31427 for DELETE, and
31428 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
31429 for the character with value 133 (0x85).
31430 (The DEL character is displayed as ^?, regular control characters are displayed
31431 as the character ^ followed by the character obtained by adding the
31432 five low-order bits of the character to 0x40, and the C1
31433 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
31434 character obtained by adding the
31435 five low-order bits of the character to 0x40.)
31436 Sometimes, in cases where changing a single control character into a
31437 two-character sequence would confuse Alpine's display routines,
31438 a question mark is substituted for the control character.
31440 If you wish to filter out regular control characters but pass the
31441 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
31442 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.
31444 &lt;End of help on this topic&gt;
31445 </BODY>
31446 </HTML>
31447 ====== h_config_pass_c1_control =====
31448 <HTML>
31449 <HEAD>
31450 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
31451 </HEAD>
31452 <BODY>
31453 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
31455 It is probably not useful to set this option.
31456 This is a legacy option left behind &quot;just in case&quot;.
31457 Multi-byte characters that have an octet that has the same
31458 value as a control character are permitted through whether or not
31459 this option is turned on.
31461 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
31462 is set, then this feature has no effect.
31463 However, if you wish to filter out regular control characters but pass the
31464 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
31465 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
31466 unset and set this feature.
31468 &lt;End of help on this topic&gt;
31469 </BODY>
31470 </HTML>
31471 ====== h_config_fcc_on_bounce =====
31472 <HTML>
31473 <HEAD>
31474 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
31475 </HEAD>
31476 <BODY>
31477 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
31479 This feature controls an aspect of Alpine's behavior when bouncing a
31480 message. If set, normal FCC ("File Carbon Copy") processing will be
31481 done, just as if you had composed a message to the address you are
31482 bouncing to.  If not set, no FCC of the message will be saved. 
31484 &lt;End of help on this topic&gt;
31485 </BODY>
31486 </HTML>
31487 ====== h_config_show_cursor =====
31488 <HTML>
31489 <HEAD>
31490 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
31491 </HEAD>
31492 <BODY>
31493 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
31495 This feature controls an aspect of Alpine's displays.  If set, the system
31496 cursor will move to convenient locations in the displays.  For example,
31497 to the beginning of the status field of the highlighted index line, or
31498 to the highlighted word after a successful WhereIs command.  It is intended
31499 to draw your attention to an "interesting" spot on the screen.
31501 &lt;End of help on this topic&gt;
31502 </BODY>
31503 </HTML>
31504 ====== h_config_sort_fcc_alpha =====
31505 <HTML>
31506 <HEAD>
31507 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
31508 </HEAD>
31509 <BODY>
31510 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
31512 This feature controls an aspect of Alpine's FOLDER LIST screen.
31513 If set, the default Fcc folder will be sorted alphabetically with the other
31514 folders instead of appearing right after the INBOX.
31516 &lt;End of help on this topic&gt;
31517 </BODY>
31518 </HTML>
31519 ====== h_config_sort_save_alpha =====
31520 <HTML>
31521 <HEAD>
31522 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
31523 </HEAD>
31524 <BODY>
31525 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
31527 This feature controls an aspect of Alpine's FOLDER LIST screen.
31528 If set, the default save folder will be sorted alphabetically with the other
31529 folders instead of appearing right after the INBOX (and default FCC folder).
31531 &lt;End of help on this topic&gt;
31532 </BODY>
31533 </HTML>
31534 ====== h_config_single_list =====
31535 <HTML>
31536 <HEAD>
31537 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
31538 </HEAD>
31539 <BODY>
31540 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
31542 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
31543 the folders will be listed one per line instead of several per line
31544 in the FOLDER LIST display.
31546 &lt;End of help on this topic&gt;
31547 </BODY>
31548 </HTML>
31549 ====== h_config_vertical_list =====
31550 <HTML>
31551 <HEAD>
31552 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
31553 </HEAD>
31554 <BODY>
31555 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
31557 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
31558 the folders will be listed alphabetically down the columns rather
31559 than across the columns as is the default.
31561 &lt;End of help on this topic&gt;
31562 </BODY>
31563 </HTML>
31564 ====== h_config_verbose_post =====
31565 <HTML>
31566 <HEAD>
31567 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
31568 </HEAD>
31569 <BODY>
31570 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
31571 This feature controls an aspect of Alpine's message sending.  When enabled,
31572 Alpine will send a VERB (i.e., VERBose) command early in the posting process
31573 intended to cause the SMTP server to provide a more detailed account of
31574 the transaction.  This feature is typically only useful to system
31575 administrators and other support personnel as an aid in troubleshooting
31576 problems.
31578 Note, this feature relies on a specific capability of the system's mail
31579 transport agent or configured 
31580 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
31581 It is possible that this
31582 feature will cause problems for some transport agents, and may result in
31583 sending failure.  In addition, as the verbose output comes from the mail
31584 transport agent, it is likely to vary from one system to another. 
31585 <P><UL>
31586 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31587 </UL><P>
31588 &lt;End of help on this topic&gt;
31589 </BODY>
31590 </HTML>
31591 ====== h_config_auto_reply_to =====
31592 <HTML>
31593 <HEAD>
31594 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
31595 </HEAD>
31596 <BODY>
31597 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
31599 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
31600 will not prompt when a message being replied to contains a "Reply-To:"
31601 header value, but will simply use its value (as opposed to using the
31602 "From:" field's value).
31606 Note: Using the "Reply-To:" address is usually the preferred behavior,
31607 however, some mailing list managers choose to place the list's address in
31608 the "Reply-To:" field of any message sent out to the list.  In such
31609 cases, this feature makes it all too easy for personal replies to be
31610 inadvertently sent to the entire mail list, so be careful! 
31612 &lt;End of help on this topic&gt;
31613 </BODY>
31614 </HTML>
31615 ====== h_config_del_skips_del =====
31616 <HTML>
31617 <HEAD>
31618 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
31619 </HEAD>
31620 <BODY>
31621 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
31623 This feature controls an aspect of Alpine's Delete command.  If set, this
31624 feature will cause the Delete command to advance past following messages that
31625 are marked deleted.  In other words, pressing "D" will both mark the
31626 current message deleted and advance to the next message that is not marked
31627 deleted.
31628 This feature is set by default.
31630 &lt;End of help on this topic&gt;
31631 </BODY></HTML>
31632 ====== h_config_expunge_manually =====
31633 <HTML>
31634 <HEAD>
31635 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
31636 </HEAD>
31637 <BODY>
31638 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
31640 Normally, when you close a folder that contains deleted messages you are
31641 asked if you want to expunge those messages from the folder permanently.
31642 If this feature is set, you won't be asked and the deleted messages will
31643 remain in the folder.
31644 If you choose to set this feature you will have to expunge the
31645 messages manually using the eXpunge command, which you can use while
31646 in the MESSAGE INDEX screen.
31647 If you do not expunge deleted messages the size of your
31648 folder will continue to increase until you are out of disk space.
31650 <UL>   
31651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31652 </UL><P>
31653 &lt;End of help on this topic&gt;
31654 </BODY>
31655 </HTML>
31656 ====== h_config_auto_expunge =====
31657 <HTML>
31658 <HEAD>
31659 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
31660 </HEAD>
31661 <BODY>
31662 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
31664 This features controls an aspect of Alpine's eXpunge command.  If set, you
31665 will <B>not</B> be prompted to confirm your intent before the expunge takes 
31666 place.
31667 Actually, this is only true for the INBOX folder and for folders in the
31668 Incoming Folders collection. See the feature
31669 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
31671 <UL>   
31672 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31673 </UL><P>
31674 &lt;End of help on this topic&gt;
31675 </BODY>
31676 </HTML>
31677 ====== h_config_full_auto_expunge =====
31678 <HTML>
31679 <HEAD>
31680 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
31681 </HEAD>
31682 <BODY>
31683 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
31685 This features controls an aspect of Alpine's eXpunge command.  If set, you
31686 will <B>not</B> be prompted to confirm your intent before the expunge 
31687 takes place.  This feature sets this behavior for all folders, unlike the
31688 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
31689 feature that works only for incoming folders.
31691 <UL>   
31692 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31693 </UL><P>
31694 &lt;End of help on this topic&gt;
31695 </BODY>
31696 </HTML>
31697 ====== h_config_auto_read_msgs =====
31698 <HTML>
31699 <HEAD>
31700 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
31701 </HEAD>
31702 <BODY>
31703 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
31704 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
31705 and the 
31706 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
31707 option is also set, then Alpine will
31708 automatically transfer all read messages to the designated folder and mark
31709 them as deleted in the INBOX.  Messages in the INBOX marked with an 
31710 &quot;N&quot; (meaning New, or unseen) are not affected.
31712 <UL>   
31713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31714 </UL><P>
31715 &lt;End of help on this topic&gt;
31716 </BODY>
31717 </HTML>
31718 ====== h_config_auto_fcc_only =====
31719 <HTML>
31720 <HEAD>
31721 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
31722 </HEAD>
31723 <BODY>
31724 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
31725 This features controls an aspect of Alpine's composer.
31726 The only time this feature will be used is if you attempt to send mail
31727 that has no recipients but does have an Fcc.
31728 Normally, Alpine will ask if you really mean to copy the message only to
31729 the Fcc.
31730 That is, it asks if you really meant to have no recipients.
31731 If this feature is set, you
31732 will <B>not</B> be prompted to confirm your intent to make only a copy
31733 of a message with no recipients.
31735 This feature is closely related to
31736 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
31737 The difference between this feature and that feature is that this feature
31738 considers a Bcc to be a recipient while that feature will ask for confirmation
31739 even if there is a Bcc when there is no To, Cc, or Newsgroup.
31740 The default values also differ. This feature defaults to asking the question
31741 and you have to turn it off.
31742 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
31743 unless you turn it on.
31746 <UL>   
31747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31748 </UL><P>
31749 &lt;End of help on this topic&gt;
31750 </BODY>
31751 </HTML>
31752 ====== h_config_mark_fcc_seen =====
31753 <HTML>
31754 <HEAD>
31755 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
31756 </HEAD>
31757 <BODY>
31758 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
31760 This features controls the way Fccs (File carbon copies) are
31761 made of the messages you send.
31764 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
31765 copy will be marked as Unseen.
31766 When you look at the folder it was saved in the message will appear to
31767 be a New message until you read it.
31768 When this feature is enabled, the message will be marked as having
31769 been Seen.
31772 <UL>   
31773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31774 </UL><P>
31775 &lt;End of help on this topic&gt;
31776 </BODY>
31777 </HTML>
31778 ====== h_config_no_fcc_attach =====
31779 <HTML>
31780 <HEAD>
31781 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
31782 </HEAD>
31783 <BODY>
31784 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
31786 This features controls the way Fcc's (File carbon copies) are
31787 made of the messages you send.
31790 Normally, Alpine saves an exact copy of your message as it was sent.
31791 When this feature is enabled, the &quot;body&quot; of the message
31792 you send (the text you type in the composer) is preserved in the 
31793 copy as before, however all attachments are replaced with text
31794 explaining what had been sent rather than the attachments themselves.
31797 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
31798 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
31799 allows you to interactively set whether or not attachments are saved
31800 to the Fcc'd copy.
31803 <UL>   
31804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31805 </UL><P>
31806 &lt;End of help on this topic&gt;
31807 </BODY>
31808 </HTML>
31809 ====== h_config_read_in_newsrc_order =====
31810 <HTML>
31811 <HEAD>
31812 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
31813 </HEAD>
31814 <BODY>
31815 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
31817 This feature controls the order in which newsgroups will be presented.  If
31818 set, they will be presented in the same order as they occur in your 
31819 <!--chtml if pinemode="os_windows"-->
31820 &quot;NEWSRC&quot;
31821 <!--chtml else-->
31822 &quot;.newsrc&quot;
31823 <!--chtml endif-->
31824 file (the default location of which can be changed with the 
31825 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
31827 If not set, the newsgroups will be presented in alphabetical order.
31829 <UL>   
31830 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31831 </UL><P>
31832 &lt;End of help on this topic&gt;
31833 </BODY>
31834 </HTML>
31835 ====== h_config_quell_tz_comment =====
31836 <HTML>
31837 <HEAD>
31838 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
31839 </HEAD>
31840 <BODY>
31841 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
31843 Normally, when Alpine generates a Date header for outgoing mail,
31844 it will try to include the symbolic timezone at the end of the
31845 header inside parentheses.
31846 The symbolic timezone is often three characters long, but on
31847 some operating systems, it may be longer.
31848 Apparently there are some SMTP servers in the world that will reject an
31849 incoming message if it has a Date header longer than about 80 characters.
31850 If this feature is set, the symbolic timezone normally generated by
31851 Alpine will not be included.
31852 You probably don't need to worry about this feature unless you run into
31853 the problem described above.
31856 &lt;End of help on this topic&gt;
31857 </BODY>
31858 </HTML>
31859 ====== h_config_post_wo_validation =====
31860 <HTML>
31861 <HEAD>
31862 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
31863 </HEAD>
31864 <BODY>
31865 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
31867 This feature controls whether the NNTP server is queried as newsgroups
31868 are entered for posting.  Validation over slow links (e.g. dialup using
31869 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
31871 &lt;End of help on this topic&gt;
31872 </BODY>
31873 </HTML>
31874 ====== h_config_send_wo_confirm =====
31875 <HTML>
31876 <HEAD>
31877 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
31878 </HEAD>
31879 <BODY>
31880 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
31882 By default, when you send or post a message you will be asked to confirm
31883 with a question that looks something like:
31886 <CENTER><SAMP>Send message?</SAMP></CENTER>
31889 If this feature is set, you
31890 will <B>not</B> be prompted to confirm your intent to send
31891 and your message will be sent.
31893 If this feature is set it disables some possibilities and renders some
31894 other features meaningless.
31895 You will not be able to use
31896 <A HREF="h_config_sending_filter">Sending Filters</A>,
31897 Verbose sending mode,
31898 <A HREF="h_config_compose_bg_post">Background Sending</A>,
31899 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
31900 or ^V to turn off the generation of flowed text for this message.
31901 These options are normally available as suboptions in the Send prompt, but
31902 with no Send prompt the options are gone.
31905 A somewhat related feature is
31906 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
31907 which may be used to eliminate the extra confirmation
31908 question when posting to a newsgroup.
31910 <UL>   
31911 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31912 </UL><P>
31913 &lt;End of help on this topic&gt;
31914 </BODY>
31915 </HTML>
31916 ====== h_config_quell_filtering_done_message =====
31917 <HTML>
31918 <HEAD>
31919 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
31920 </HEAD>
31921 <BODY>
31922 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
31924 If you use Filter Rules that move messages or set status of messages
31925 you sometimes see a message from Alpine that looks like
31928 <CENTER><SAMP>filtering done</SAMP></CENTER>
31931 If this feature is set, this message will be suppressed.
31932 If the feature
31933 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
31934 is set then this message will be suppressed regardless.
31937 <UL>   
31938 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31939 </UL><P>
31940 &lt;End of help on this topic&gt;
31941 </BODY>
31942 </HTML>
31943 ====== h_config_quell_filtering_messages =====
31944 <HTML>
31945 <HEAD>
31946 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
31947 </HEAD>
31948 <BODY>
31949 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
31951 If you use Filter Rules that move messages or set status of messages
31952 you sometimes see messages from Alpine that look like
31955 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
31961 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
31967 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
31970 If this feature is set, these messages will be suppressed.
31971 The feature
31972 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
31973 is related.
31976 <UL>   
31977 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31978 </UL><P>
31979 &lt;End of help on this topic&gt;
31980 </BODY>
31981 </HTML>
31982 ====== h_config_quell_post_prompt =====
31983 <HTML>
31984 <HEAD>
31985 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
31986 </HEAD>
31987 <BODY>
31988 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
31990 By default, when you post a message to a newsgroup you are asked to confirm
31991 that you want to post with the question
31994 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
31997 If this feature is set, you
31998 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
31999 and your message will be posted.
32002 <UL>   
32003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32004 </UL><P>
32005 &lt;End of help on this topic&gt;
32006 </BODY>
32007 </HTML>
32008 ====== h_config_check_mail_onquit =====
32009 <HTML>
32010 <HEAD>
32011 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
32012 </HEAD>
32013 <BODY>
32014 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
32016 If this feature is set, Alpine will check for new mail after you give the
32017 Quit command.
32018 If new mail has arrived since the previous check, you will be notified
32019 and given the choice of quitting or not quitting.
32021 <UL>   
32022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32023 </UL><P>
32024 &lt;End of help on this topic&gt;
32025 </BODY>
32026 </HTML>
32027 ====== h_config_inbox_no_confirm =====
32028 <HTML>
32029 <HEAD>
32030 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
32031 </HEAD>
32032 <BODY>
32033 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
32035 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
32036 command and there are no more folders or newsgroups to visit, you are asked
32037 if you want to return to the INBOX.
32038 If this feature is set you will not be asked.
32039 It will be assumed that you do want to return to the INBOX.
32041 <UL>   
32042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32043 </UL><P>
32044 &lt;End of help on this topic&gt;
32045 </BODY>
32046 </HTML>
32047 ====== h_config_dates_to_local =====
32048 <HTML>
32049 <HEAD>
32050 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
32051 </HEAD>
32052 <BODY>
32053 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
32055 Normally, the message dates that you see in the
32056 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
32057 For example, if a message was sent to you from a few timezones to the east
32058 it might appear that it was sent from the future;
32059 or if it was sent from somewhere to the west it might appear
32060 as if it is from yesterday even though it was sent only a few minutes ago.
32061 If this feature is set an attempt will be made to convert the dates
32062 to your local timezone to be displayed.
32064 Note that this does not affect the results of Select by Date or of
32065 anything else other than these displayed dates.
32066 When viewing the message you may look at the original unconverted value of the Date
32067 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
32069 <UL>   
32070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32071 </UL><P>
32072 &lt;End of help on this topic&gt;
32073 </BODY>
32074 </HTML>
32075 ====== h_config_tab_no_prompt =====
32076 <HTML>
32077 <HEAD>
32078 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
32079 </HEAD>
32080 <BODY>
32081 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
32083 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
32084 command and there is a problem checking a folder, you are asked
32085 whether you want to continue with the search in the following folder or not.
32086 This question gives you a chance to stop the NextNew processing.
32087 (The checking problem might be caused by the fact that the folder does not
32088 exist, or by an authentication problem, or by a server problem
32089 of some sort.)
32092 If this feature is set you will not be asked.
32093 It will be assumed that you do want to continue.
32095 <UL>   
32096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32097 </UL><P>
32098 &lt;End of help on this topic&gt;
32099 </BODY>
32100 </HTML>
32101 ====== h_config_input_history =====
32102 <HTML>
32103 <HEAD>
32104 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
32105 </HEAD>
32106 <BODY>
32107 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
32109 Many of the prompts that ask for input in the status line near the
32110 bottom of the screen will respond to Up Arrow and Down Arrow
32111 with the history of previous entries.
32112 For example, in the MESSAGE INDEX screen when you use the WhereIs
32113 command the text you entered will be remembered and can be recalled
32114 by using the Up Arrow key.
32115 Another example, when saving a message the folders saved to will
32116 be remembered and can be recalled using the arrow keys.
32118 In the Save prompt, some users prefer that the Up and Down arrow keys
32119 be used for the Previous Collection and Next Collection commands
32120 instead of for a history of previous saves.
32121 If this option is set the Up and Down arrow keys will become synonyms for the
32122 Previous Collection and Next Collection (^P and ^N) commands in the
32123 prompt for the name of a folder to Save to or in the prompt for the
32124 name of a folder to GoTo.
32125 When this feature is not set (the default), ^P and ^N will change the
32126 collection and the arrow keys will show the history.
32128 <UL>   
32129 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32130 </UL><P>
32131 &lt;End of help on this topic&gt;
32132 </BODY>
32133 </HTML>
32134 ====== h_config_confirm_role =====
32135 <HTML>
32136 <HEAD>
32137 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
32138 </HEAD>
32139 <BODY>
32140 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
32142 If you have roles, when you Reply to or Forward a message, or Compose
32143 a new message, Alpine
32144 will search through your roles for one that matches.
32145 Normally, if no matches are found you will be placed into the composer
32146 with no opportunity to select a role.
32147 If this feature is set, then you will be asked to confirm that you don't
32148 want a role.
32149 This will give you the opportunity to select a role (with the ^T command).
32150 If you confirm no role with a Return, you will be placed in
32151 the composer with no role.
32152 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
32153 These behave the same as if you pressed the Return.
32154 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
32155 match what you might type if there was a role match.)
32157 If you are using the alternate form of the Compose command called
32158 &quot;Role&quot;, then all of your roles will be available to you,
32159 independent of the value of this feature and of the values set for all of
32160 Reply Use, Forward Use, and Compose Use.
32162 <UL>   
32163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32164 </UL><P>
32165 &lt;End of help on this topic&gt;
32166 </BODY>
32167 </HTML>
32168 ====== h_config_news_cross_deletes =====
32169 <HTML>
32170 <HEAD>
32171 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
32172 </HEAD>
32173 <BODY>
32174 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
32176 This feature controls what Alpine does when you delete a message in a
32177 newsgroup that appears in more than one newsgroup.  Such a message
32178 is sometimes termed a &quot;crossposting&quot; in that it was posted
32179 across several newsgroups.
32182 Alpine's default behavior when you delete such a message is to remove
32183 only the copy in the current newsgroup from view when you use the
32184 &quot;Exclude&quot; command or the next time you visit the newsgroup.
32187 Enabling this feature causes Alpine to remove every occurrence of the
32188 message from all newsgroups it appears in and to which you are
32189 subscribed.
32192 NOTE: As currently implemented, enabling this feature may increase the
32193 time it takes the Expunge command and newsgroup closing to complete.
32196 <UL>   
32197 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32198 </UL><P>
32199 &lt;End of help on this topic&gt;
32200 </BODY>
32201 </HTML>
32202 ====== h_config_news_catchup =====
32203 <HTML>
32204 <HEAD>
32205 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
32206 </HEAD>
32207 <BODY>
32208 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
32210 This feature controls what Alpine does as it closes a newsgroup.
32211 When set, Alpine will offer to delete all messages from the newsgroup
32212 as you are quitting Alpine or opening a new folder.
32215 This feature is useful if you typically read all the interesting messages
32216 in a newsgroup each time you open it.  This feature saves you from
32217 having to delete each message in a newsgroup as you read it or from
32218 selecting all the messages and doing an
32219 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
32220 move on to the next folder or newsgroup.
32223 <UL>   
32224 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32225 </UL><P>
32226 &lt;End of help on this topic&gt;
32227 </BODY>
32228 </HTML>
32229 ====== h_config_next_thrd_wo_confirm =====
32230 <HTML>
32231 <HEAD>
32232 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
32233 </HEAD>
32234 <BODY>
32235 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
32237 This feature controls an aspect of Alpine's Next and Prev commands in
32238 the case where you are using one of the
32239 &quot;separate-index-screen&quot; styles for the configuration option
32240 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
32241 and currently have the folder sorted by a Threaded or OrderedSubject sort.
32242 When you are Viewing a particular thread you have a
32243 MESSAGE INDEX of only the messages in that thread.
32244 If you press the Next command with the last message in the thread highlighted
32245 you will normally be asked if you want to &quot;View next thread?&quot;,
32246 assuming there is a next thread to view.
32247 If this feature is set it will be assumed that you always want to view the
32248 next thread and you won't be asked to confirm that.
32249 Similarly, if the first message of the thread is highlighted and you
32250 press the Prev command, this feature will prevent the question
32251 &quot;View previous thread&quot;.
32253 This feature only has an effect in the MESSAGE INDEX screen.
32254 If you then view a particular message from that screen and press the
32255 Next command, you will be sent to the next thread without being asked,
32256 independent of the setting of this feature.
32258 The feature
32259 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
32261 &lt;End of help on this topic&gt;
32262 </BODY>
32263 </HTML>
32264 ====== h_config_kw_braces =====
32265 <HTML>
32266 <HEAD>
32267 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
32268 </HEAD>
32269 <BODY>
32270 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
32272 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
32273 TEXT screens.
32274 If you have modified the
32275 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32276 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
32277 are used to display keywords or their initials along with the Subject; then
32278 this option may be used to modify the resulting display slightly.
32279 By default, the keywords or initials displayed for these tokens will be
32280 surrounded with curly braces ({ and }) and a trailing space.
32281 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
32282 a message, the &quot;SUBJKEY&quot; token will normally look like
32284 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
32286 and the SUBJKEYINIT token would look like
32288 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
32290 The default character before the keywords is the left brace ({) and the
32291 default after the keywords is the right brace followed by a space (} ).
32293 This option allows you to change that.
32294 You should set it to two values separated by a space.
32295 The values may be quoted if they include space characters.
32296 So, for example, the default value could be specified explicitly by setting this
32297 option to
32299 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
32301 The first part wouldn't need to be quoted (but it doesn't hurt).
32302 The second part does need the quotes because it includes a space character.
32303 If you wanted to change the braces to brackets you could use
32305 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
32307 Inside the quotes you can use backslash quote to mean quote, so
32309 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
32311 would produce
32313 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
32315 It is also possible to color keywords in the index using the
32316 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
32318 It is not possible to change the fact that a space character is used to
32319 separate the keywords if more than one keyword is set for a message.
32320 It is also not possible to change the fact that there are no separators
32321 between the keyword initials if more than one keyword is set.
32323 &lt;End of help on this topic&gt;
32324 </BODY>
32325 </HTML>
32326 ====== h_config_opening_sep =====
32327 <HTML>
32328 <HEAD>
32329 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
32330 </HEAD>
32331 <BODY>
32332 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
32334 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
32335 With some setups the text of the subject is followed
32336 by the opening text of the message if there is any room available in the index line.
32337 If you have configured your
32338 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32339 to include one of the Subject tokens that causes this behavior
32340 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
32341 to modify what is displayed slightly.
32342 By default, the Subject is separated from the opening text of the message by
32343 the three characters space dash space;
32345 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
32347 Use this option to set it to something different.
32348 The value must be quoted if it includes any space characters.
32349 For example, the default value could be specified explicitly by setting this
32350 option to
32352 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
32354 &lt;End of help on this topic&gt;
32355 </BODY>
32356 </HTML>
32357 ====== h_config_select_wo_confirm =====
32358 <HTML>
32359 <HEAD>
32360 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
32361 </HEAD>
32362 <BODY>
32363 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
32365 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
32366 These commands all take text input to specify the name of the folder or
32367 file to be used, but allow you to press ^T for a list of possible names.
32368 If set, the selected name will be used immediately, without further
32369 opportunity to confirm or edit the name.
32371 Some related help topics are
32372 <UL>
32373 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
32374 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
32375 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
32376 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
32377 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
32378 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
32379 </UL>
32381 &lt;End of help on this topic&gt;
32382 </BODY>
32383 </HTML>
32384 ====== h_config_save_part_wo_confirm =====
32385 <HTML>
32386 <HEAD>
32387 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
32388 </HEAD>
32389 <BODY>
32390 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
32392 This feature controls an aspect of Alpine's Save command.
32393 By default, when you Save a message that has some deleted parts, you will
32394 be asked to confirm that you want to Save with a prompt that looks like:
32396 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
32398 If this feature is set, you will not be asked.
32400 &lt;End of help on this topic&gt;
32401 </BODY>
32402 </HTML>
32403 ====== h_config_use_resentto =====
32404 <HTML>
32405 <HEAD>
32406 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
32407 </HEAD>
32408 <BODY>
32409 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
32411 This feature is turned off by default because turning it on causes problems
32412 with some deficient IMAP servers.
32413 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
32414 <A HREF="h_rule_patterns">Pattern</A>
32415 contains a To header pattern and this feature is turned on,
32416 then a check is made in the message to see
32417 if a Resent-To header is present, and that is used instead of the To header.
32418 If this feature is not turned on, then the regular To header will always
32419 be used.
32422 &lt;End of help on this topic&gt;
32423 </BODY>
32424 </HTML>
32425 ====== h_config_use_reg_start_for_stayopen =====
32426 <HTML>
32427 <HEAD>
32428 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
32429 </HEAD>
32430 <BODY>
32431 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
32433 This feature affects which message is selected as the current message
32434 when you enter a
32435 <A HREF="h_config_permlocked">Stay Open</A> folder.
32437 Normally, the starting position for an incoming folder (which most Stay Open
32438 folders will likely be) is controlled by the
32439 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
32440 However, if a folder is a Stay Open folder, when you re-enter the folder
32441 after the first time the current message will be the same as it was when
32442 you left the folder.
32443 An exception is made if you use the TAB command to get to the folder.
32444 In that case, the message number will be incremented by one from what it
32445 was when you left the folder.
32447 The above special behavior is thought to be useful.
32448 However, it is special and different from what you might at first expect.
32449 If this feature is set, then Stay Open folders will not be treated specially
32450 as far as the startup rule is concerned.
32453 &lt;End of help on this topic&gt;
32454 </BODY>
32455 </HTML>
32456 ====== h_config_use_current_dir =====
32457 <HTML>
32458 <HEAD>
32459 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
32460 </HEAD>
32461 <BODY>
32462 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
32464 This feature controls an aspect of several commands. 
32465 If set, your &quot;current working directory&quot; 
32466 <!--chtml if pinemode="running"-->
32467 (which, at least for your current Alpine &quot;session,&quot; 
32468 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
32469 <!--chtml endif-->
32470 will be used instead of your home directory 
32471 <!--chtml if pinemode="running"-->
32472 (which, in the present configuration of your system, is
32473  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
32474 <!--chtml endif-->
32475 for all of the following operations:<UL>
32476     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
32477     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
32478     <LI> <!--chtml if pinemode="function_key"-->F4
32479          <!--chtml else-->Ctrl-R
32480          <!--chtml endif--> file inclusion in the COMPOSER
32481     <LI> <!--chtml if pinemode="function_key"-->F5
32482          <!--chtml else-->Ctrl-J
32483          <!--chtml endif--> file attachment in the COMPOSER
32484 </UL>
32485 <!--chtml if pinemode="os_windows"-->
32487 If you are starting PC-Alpine from a desktop icon or the Start menu, 
32488 you can set the &quot;current drive&quot; 
32489 by specifying it in the &quot;Start in:&quot; 
32490 box found in the Shortcut tab of the Properties.  
32491 <!--chtml endif-->
32493 <UL>   
32494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32495 </UL>
32498 &lt;End of help on this topic&gt;
32499 </BODY>
32500 </HTML>
32501 ====== h_config_save_wont_delete =====
32502 <HTML>
32503 <HEAD>
32504 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
32505 </HEAD>
32506 <BODY>
32507 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
32509 This feature controls one aspect of the Save command.  If set, Save will
32510 not mark the message &quot;deleted&quot; (its default behavior) after
32511 it has been copied to the designated folder.
32514 &lt;End of help on this topic&gt;
32515 </BODY>
32516 </HTML>
32517 ====== h_config_use_boring_spinner =====
32518 <HTML>
32519 <HEAD>
32520 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
32521 </HEAD>
32522 <BODY>
32523 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
32525 When Alpine is delayed for some reason it usually shows that
32526 something is happening with a small animated display in the status
32527 message line near the bottom of the screen.
32528 Setting this feature will cause that animation to be the same
32529 each time instead of having Alpine choose a random animation.
32530 You may turn the animation off altogether by setting the
32531 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
32532 option to zero.
32535 &lt;End of help on this topic&gt;
32536 </BODY>
32537 </HTML>
32538 ====== h_config_unsel_wont_advance =====
32539 <HTML>
32540 <HEAD>
32541 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
32542 </HEAD>
32543 <BODY>
32544 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
32546 This feature controls one aspect of the Unselect Current message command.
32547 Normally, when the Unselect current message command (:) is typed when the
32548 current message is selected, the message will be unselected and the next
32549 message will become the current message.
32550 If this feature is set, the cursor will not advance to the next message.
32551 Instead, the current message will remain the current message after
32552 unselecting.
32555 &lt;End of help on this topic&gt;
32556 </BODY>
32557 </HTML>
32558 ====== h_config_prune_uses_iso =====
32559 <HTML>
32560 <HEAD>
32561 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
32562 </HEAD>
32563 <BODY>
32564 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
32566 By default, Alpine asks monthly whether or not you would like to rename
32567 some folders to a new name containing the date.
32568 It also asks whether or not you would like to delete some old folders.
32569 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
32570 explanation.
32573 By default, the name used when renaming a folder looks like
32575 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
32577 For example, the first time you run Alpine in May of 2004,
32578 the folder &quot;sent-mail&quot; might be renamed to
32580 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
32582 If this feature is set, the name used will be of the form
32584 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
32586 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
32587 month (01, 02, ..., 12).
32588 For the April, 2004 example above, it would instead be
32590 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
32592 because April is the 4th month of the year.
32593 A reason you might want to set this feature is so that the folders
32594 will sort in chronological order.
32597 &lt;End of help on this topic&gt;
32598 </BODY>
32599 </HTML>
32600 ====== h_config_save_advances =====
32601 <HTML>
32602 <HEAD>
32603 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
32604 </HEAD>
32605 <BODY>
32606 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
32608 This feature controls one aspect of the Save command.  If set, Save will
32609 (in addition to copying the current message to the designated folder) also
32610 advance to the next message.
32613 &lt;End of help on this topic&gt;
32614 </BODY>
32615 </HTML>
32616 ====== h_config_force_arrow =====
32617 <HTML>
32618 <HEAD>
32619 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
32620 </HEAD>
32621 <BODY>
32622 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
32624 This feature affects Alpine's MESSAGE INDEX display routine.
32625 If set, the normal inverse-video cursor will be
32626 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
32627 second column of the index display.
32629 This is the same index cursor you get if you turn on
32630 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
32631 line coloring will still be present if this feature is turned on and
32632 <!--#echo var="FEAT_assume-slow-link"--> is off.
32634 An alternative version of the Arrow cursor is available by including the
32635 <A HREF="h_config_index_arrow_color">ARROW</A>
32636 token in the
32637 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32639 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
32640 but that is not implemented.
32643 &lt;End of help on this topic&gt;
32644 </BODY>
32645 </HTML>
32646 ====== h_config_ignore_size =====
32647 <HTML>
32648 <HEAD>
32649 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
32650 </HEAD>
32651 <BODY>
32652 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
32654 When you have an account residing in an IMAP server, Alpine records the 
32655 size of each message as reported by the server. However, when Alpine saves 
32656 a message in such IMAP server, Alpine will compute the size of the message 
32657 independently, from the data it received. If these two numbers do not 
32658 match for a message, Alpine asks you if you still want to take the risk of 
32659 saving such message, since data corruption or loss of data could result 
32660 from this save.
32663 Sometimes the root of this problem is that the IMAP server does not 
32664 compute sizes correctly, and there will not be loss of information when 
32665 saving such message. Enabling this feature will make Alpine ignore such 
32666 error and continue saving the message without producing any warnings or 
32667 ever stopping the process, as if there had not been any error. This option 
32668 applies to all IMAP servers that you use, so if you enable this feature, 
32669 size discrepancy warnings will not be given for any IMAP server you 
32670 connect to.
32673 Example of a server where you could reproduce this problem is the Gmail 
32674 IMAP server. Another example can be found in some versions of the Exchange 
32675 server.
32678 It is recommended that this feature be disabled most of the time and only 
32679 enabled when you find a server which you can determine that has the above 
32680 mentioned defect, but be disabled again after making the save operation 
32681 succeed.
32684 &lt;End of help on this topic&gt;
32685 </BODY>
32686 </HTML>
32687 ====== h_config_force_low_speed =====
32688 <HTML>
32689 <HEAD>
32690 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
32691 </HEAD>
32692 <BODY>
32693 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
32695 UNIX Alpine only.
32697 This feature affects Alpine's display routines.  If set, the normal
32698 inverse-video cursor (used to highlight the current item in a list) will be
32699 replaced by an &quot;arrow&quot; cursor and other
32700 screen update optimizations for
32701 low-speed links (e.g. 2400 bps dialup connections) will be activated.
32702 One of the optimizations is that colored index lines (set up with Indexcolor
32703 Rules) will not be colored.
32704 If you are just turning this feature on because you like using
32705 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
32706 coloring by turning this feature off and the
32707 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
32710 &lt;End of help on this topic&gt;
32711 </BODY>
32712 </HTML>
32713 ====== h_config_show_delay_cue =====
32714 <HTML>
32715 <HEAD>
32716 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
32717 </HEAD>
32718 <BODY>
32719 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
32721 If set, this feature will cause an asterisk to appear in the upper
32722 left-hand corner of the screen whenever Alpine checks for new mail.
32723 Two asterisks whenever Alpine saves (checkpoints) the state of the current
32724 mailbox to disk.
32726 <!--chtml if pinemode="os_windows"-->
32728 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
32729 it is trying to open a network connection (e.g, to open your INBOX
32730 on an IMAP
32731 server) or read from the network connection.  A greater-than symbol,
32732 will be displayed when PC-Alpine is trying to write to the network
32733 connection (e.g, sending a command to your IMAP server).
32734 <!--chtml endif-->
32737 &lt;End of help on this topic&gt;
32738 </BODY>
32739 </HTML>
32740 ====== h_config_color_style =====
32741 <HTML>
32742 <HEAD>
32743 <TITLE>OPTION: Color Style</TITLE>
32744 </HEAD>
32745 <BODY>
32746 <H1>OPTION: Color Style</H1>
32748 UNIX Alpine only.
32750 If the terminal or terminal emulator you are using is capable of displaying
32751 colors, this option controls whether or not color will be used in Alpine.
32752 If you turn color on and things are set up correctly,
32753 you should see color appear on the screen immediately.
32754 Modern terminal emulators are usually capable of displaying colors.
32756 The available options include:
32759 <DL>
32760 <DT>no-color</DT>
32761 <DD>Don't use color.
32762 </DD>
32764 <DT>use-termdef</DT>
32765 <DD>In order to decide if your terminal is capable of color, Alpine looks in
32766 the terminal capabilities database, TERMINFO or TERMCAP, depending on
32767 how Alpine was compiled.
32768 This is a good option to choose if you switch between a color and a non-color
32769 terminal with the same Alpine configuration.
32770 Alpine will know to use color on the color terminal because it is described
32771 in the termcap entry, and Alpine will know to use black and white on the
32772 non-color terminal.
32773 The Alpine Technical Notes, distributed with the source code of Alpine
32774 have more information on configuring a TERMCAP or TERMINFO
32775 entry for color Alpine.
32776 This is usually something a system administrator does.
32777 </DD>
32779 <DT>force-ansi-8color</DT>
32780 <DD>This is probably the setting that most people should use.
32781 Because setting up a termcap entry is confusing and because the
32782 terminal capabilities database is often not correctly configured for color,
32783 this choice and the next may be easier for you to use.
32784 If your terminal emulator responds to ANSI color escape sequences, which
32785 many do, this option will cause Alpine to believe your terminal will respond
32786 to the escape sequences that produce eight different foreground and background
32787 colors.
32788 The escape sequences used to set the foreground colors are
32790   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32792 where the color_number is an ASCII digit between 0 and 7.
32793 The numbers 0 through 7 should correspond to the colors black, red, green,
32794 yellow, blue, magenta, cyan, and white.
32795 Some terminal emulators use a pre-ANSI scheme that swaps
32796 the colors blue and red and the colors yellow and cyan.
32797 This will cause the default colors to be different, but other than that
32798 things should work fine.
32799 There is also a 9th color available, the last one shown, which is the default
32800 color from the terminal emulator.
32801 When used as a background color some people refer to this color as
32802 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
32803 shown in the color swatch of the SETUP COLOR screen.
32804 The foreground transparent color is shown as
32805 the color of the &quot;TRAN&quot; text.
32806 (The transparent color will not work correctly in a PC-Alpine configuration.)
32807 The escape sequences used to set the background colors are the same
32808 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
32809 The escape sequences for foreground and background default colors (transparent)
32810 are 39m and 49m.
32812 Note: With the Tera Term terminal emulator this setting works well.
32813 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
32814 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
32815 menu, in the &quot;Window&quot; submenu.
32816 </DD>
32818 <DT>force-ansi-16color</DT>
32819 <DD>Many terminal emulators know about the same eight colors above
32820 plus eight more.
32821 This option attempts to use all 16 colors.
32822 The same escape sequences as for the eight-color terminal are used
32823 for the first eight colors.
32824 The escape sequences used to set foreground colors 8-15 are the same as
32825 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
32826 The background color sequences for colors 8-15 are the same as for 0-7
32827 except the &quot;4&quot; is replaced with &quot;10&quot;.
32828 You can tell if the 16 colors are working by turning on this option
32829 and then going into one of the color configuration screens, for example,
32830 the configuration screen for Normal Color.
32831 If you see 16 different colors to select from (plus a 17th for
32832 the transparent color), it's working.
32833 </DD>
32835 <DT>force-xterm-256color</DT>
32836 <DD>Some versions of xterm (and some other terminal emulators)
32837 have support for 256 colors.
32838 The escape sequences used to set the foreground colors are
32840   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32842 where the color_number is an ASCII digit between 0 and 255.
32843 Background colors are the same with the 38 replaced with a 48.
32844 The numbers 0 through 15 are probably similar to the 16 color version
32845 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
32846 The terminal default (transparent) color is the 257th color at the bottom.
32847 Some terminal emulators will misinterpret these escape sequences causing
32848 the terminal to blink or overstrike characters or to do something else
32849 undesirable.
32851 The PuTTY terminal emulator has an option called &quot;Allow terminal to
32852 use xterm 256-colour mode&quot; which allows PuTTY to work well with
32853 this 256-color setting.
32855 </DD>
32856 </DL>
32859 The normal default is &quot;no-color&quot;.
32862 Once you've turned on color you may set the
32863 colors of many objects on the screen individually.
32864 For example, you may add colors to the status letters on the MESSAGE
32865 INDEX page.
32866 Most categories of color that Alpine supports are configurable here.
32867 For example, &quot;Normal Color&quot;
32868 is the color used to display most of the text in Alpine, and
32869 &quot;Reverse Color&quot; is used to display highlighted text, such as the
32870 current message in the MESSAGE INDEX.
32872 Lines in the MESSAGE INDEX may also be colored.
32873 Use Setup Rules to get to the Indexcolor configuration screen.
32876 <UL>   
32877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32878 </UL><P>
32879 &lt;End of help on this topic&gt;
32880 </BODY>
32881 </HTML>
32882 ====== h_config_disable_index_locale_dates =====
32883 <HTML>
32884 <HEAD>
32885 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
32886 </HEAD>
32887 <BODY>
32888 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
32890 This feature affects the display of dates in the MESSAGE INDEX.
32891 Normally an attempt is made to localize the dates
32892 used in the MESSAGE INDEX display to your locale.
32893 This is controlled with the
32894 LC_TIME locale setting on a UNIX system.
32895 On Windows the Regional Options control panel may be used to set the date format.
32896 At the programming level, Alpine is using the strftime routine
32897 to print the parts of a date.
32899 If this feature is set, dates are displayed in English and
32900 with the conventions of the United States.
32903 <UL>   
32904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32905 </UL><P>
32906 &lt;End of help on this topic&gt;
32907 </BODY>
32908 </HTML>
32909 ====== h_config_auto_open_unread =====
32910 <HTML>
32911 <HEAD>
32912 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
32913 </HEAD>
32914 <BODY>
32915 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
32917 This feature controls the behavior of the TAB key when traversing folders
32918 in the optional 
32919 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
32920 collection or in optional <!--#echo var="VAR_news-collections"-->.
32922 When the TAB
32923 (<A HREF="h_common_nextnew">NextNew</A>)
32924 key is pressed, and there
32925 are no more unseen messages in the current (incoming message or news)
32926 folder, Alpine will search the list of folders in the current collection for
32927 one containing New or Recent (new since the last time the folder was
32928 opened) messages.
32929 This behavior may be modified slightly with the
32930 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
32931 feature that causes Alpine to look for Unseen messages instead of Recent
32932 messages.
32933 Normally, when such a folder is found, Alpine will ask
32934 whether you wish to open the folder.  If this feature is set, Alpine will
32935 automatically open the folder without prompting.
32937 This feature also affects some other similar situations.
32938 If you have a
32939 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
32940 that is equal to one of the &quot;separate-&quot; values, and you are
32941 viewing a thread; then when you type the NextNew command and are at the
32942 end of the current thread you will automatically go to the next thread
32943 if this feature is set.
32944 By default, you would be asked if you want to view the next thread.
32945 You will also be asked at times whether or not you want to view the next
32946 thread after you delete the last message in the thread.
32947 Setting this feature will also cause that question to be skipped.
32950 <UL>   
32951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32952 </UL><P>
32953 &lt;End of help on this topic&gt;
32954 </BODY>
32955 </HTML>
32956 ====== h_config_auto_include_reply =====
32957 <HTML>
32958 <HEAD>
32959 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
32960 </HEAD>
32961 <BODY>
32962 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
32964 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
32965 will ask whether you wish to include the original message in your reply.
32966 If this feature is set and the feature
32967 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
32968 is <EM>not</EM> set, then the original message will be included in the reply
32969 automatically, without prompting.
32971 &lt;End of help on this topic&gt;
32972 </BODY>
32973 </HTML>
32974 ====== h_config_select_in_bold =====
32975 <HTML>
32976 <HEAD>
32977 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
32978 </HEAD>
32979 <BODY>
32980 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
32982 This feature controls an aspect of Alpine's 
32983 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
32984 commands; in
32985 particular, the Select and WhereIs commands. Select and WhereIs (with the
32986 ^X subcommand) will search the current folder for messages meeting a
32987 specified criteria, and &quot;tag&quot; the resulting messages with an 
32988 &quot;X&quot; in the
32989 first column of the applicable lines in the MESSAGE INDEX.  If this feature
32990 is set, instead of using the &quot;X&quot; to denote a selected message, 
32991 Alpine will
32992 attempt to display those index lines in boldface. Whether this is
32993 preferable to the &quot;X&quot; will depend on personal taste and the type of
32994 terminal being used.
32996 <UL>   
32997 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32998 </UL><P>
32999 &lt;End of help on this topic&gt;
33000 </BODY>
33001 </HTML>
33002 ====== h_config_alt_auth =====
33003 <HTML>
33004 <HEAD>
33005 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
33006 </HEAD>
33007 <BODY>
33008 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
33010 This feature affects how Alpine connects to IMAP servers.
33011 Its utility has largely been overtaken by events,
33012 but it may still be useful in some circumstances.
33013 If you only connect to modern IMAP servers that support
33014 &quot;STARTTLS&quot; you can ignore this feature.
33017 Details:
33020 By default, Alpine will attempt to connect to an IMAP server on the
33021 normal IMAP service port (143), and if the server offers &quot;Transport Layer
33022 Security&quot; (STARTTLS) and Alpine has been compiled with encryption capability,
33023 then a secure (encrypted) session will be negotiated.
33026 With this feature enabled, before connecting on the normal IMAP port, Alpine
33027 will first attempt to connect to an alternate IMAP service port (993) used
33028 specifically for encrypted IMAP sessions via the Secure Sockets Layer
33029 (SSL) or Transport Layer Security (TLS) method.
33030 If the SSL attempt fails, Alpine will then try the default
33031 behavior described in the previous paragraph.
33034 STARTTLS negotiation on the normal port is preferred, and supersedes the use of
33035 SSL on port 993, but older servers may not provide STARTTLS support.
33036 This feature may be convenient when accessing IMAP servers that do not support
33037 STARTTLS, but do support SSL or TLS connections on port 993.
33038 However, it is important to understand that with this feature enabled,
33039 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
33040 but it will proceed to make an insecure connection if that is the only
33041 option offered by the server, or if the Alpine in question has been built
33042 without encryption capability.
33045 Note that this feature specifies a per-user (or system-wide) default
33046 behavior, but host/folder specification flags may be used to control the
33047 behavior of any specific connection.
33048 This feature interacts with some of
33049 the possible host/folder path specification flags as follows:
33052 The <SAMP>/starttls</SAMP> host flag, for example,
33055 <CENTER><SAMP>{foo.example.com/starttls}INBOX</SAMP></CENTER>
33057 will over-ride this feature for the specified host by bypassing the
33058 SSL or TLS connection attempt.
33059 Moreover, with <SAMP>/starttls</SAMP> specified,
33060 the connection attempt will fail if the
33061 service on port 143 does not offer TLS support.
33064 The <SAMP>/ssl</SAMP> host flag, for example,
33067 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
33069 will insist on an SSL or TLS connection for the specified host,
33070 and will fail if the SSL or TLS service on port 993 is not available.
33071 Alpine will not subsequently retry a connection
33072 on port 143 if <SAMP>/ssl</SAMP> is specified.
33075 <UL>   
33076 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33077 </UL><P>
33078 &lt;End of help on this topic&gt;
33079 </BODY>
33080 </HTML>
33081 ====== h_config_file_dir ======
33082 <HTML>
33083 <HEAD>
33084 <TITLE>OPTION: File Directory</TITLE>
33085 </HEAD>
33086 <BODY>
33087 <H1>OPTION: File Directory</H1>
33089 PC-Alpine only.
33091 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
33092 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
33093 Message Index's &quot;E&nbsp;Export&quot; command.
33096 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
33097 component, Alpine assumes the file exists in the user's home directory.
33098 Under Windows operating systems, this definition isn't always clear.  This 
33099 feature allows you to explicitly set where Alpine should look for files
33100 without a leading path.
33103 NOTE: this feature's value is ignored if either 
33104 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
33105 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
33108 <UL>   
33109 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33110 </UL><P>
33111 &lt;End of help on this topic&gt;
33112 </BODY>
33113 </HTML>
33114 ====== h_config_quote_all_froms =====
33115 <HTML>
33116 <HEAD>
33117 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
33118 </HEAD>
33119 <BODY>
33120 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
33122 This feature controls an aspect of the Save command (and also the way
33123 outgoing messages are saved to an FCC folder).  If set, Alpine will add
33124 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
33125 when they are saved to another folder, including lines syntactically
33126 distinguishable from the type of message separator line commonly used on
33127 Unix systems.
33130 The default behavior is that a &quot;>&quot; will be prepended only to lines
33131 beginning with &quot;From &quot; that might otherwise be confused with a message
33132 separator line on Unix systems.  If pine is the only mail program you use,
33133 this default is reasonable.  If another program you use has trouble
33134 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
33135 enable this feature.  This feature only applies to the common Unix mailbox
33136 format that uses message separator lines beginning with &quot;From &quot;.  If
33137 Alpine has been configured to use a different mailbox format (possibly
33138 incompatible with other mail programs), then this issue does not arise,
33139 and the feature is irrelevant.
33142 &lt;End of help on this topic&gt;
33143 </BODY>
33144 </HTML>
33145 ====== h_config_normal_color =====
33146 <HTML>
33147 <HEAD>
33148 <TITLE>OPTION: Normal Color</TITLE>
33149 </HEAD>
33150 <BODY>
33151 <H1>OPTION: Normal Color</H1>
33153 Sets the color Alpine normally uses.
33154 The foreground color is the color of the actual character and the
33155 background color is the color of the area behind the character.
33156 By default this color is black characters on a white background.
33158 <A HREF="h_color_setup">Descriptions of the available commands</A>
33160 Look <A HREF="h_edit_nav_cmds">here</A>
33161 to see the available Editing and Navigation commands.
33163 &lt;End of help on this topic&gt;
33164 </BODY>
33165 </HTML>
33166 ====== h_config_reverse_color =====
33167 <HTML>
33168 <HEAD>
33169 <TITLE>OPTION: Reverse Color</TITLE>
33170 </HEAD>
33171 <BODY>
33172 <H1>OPTION: Reverse Color</H1>
33174 Sets the color Alpine uses for reverse video characters.
33175 The foreground color is the color of the actual character and the
33176 background color is the color of the area behind the character.
33178 <A HREF="h_color_setup">Descriptions of the available commands</A>
33180 Look <A HREF="h_edit_nav_cmds">here</A>
33181 to see the available Editing and Navigation commands.
33183 &lt;End of help on this topic&gt;
33184 </BODY>
33185 </HTML>
33186 ====== h_config_title_color =====
33187 <HTML>
33188 <HEAD>
33189 <TITLE>OPTION: Title Color</TITLE>
33190 </HEAD>
33191 <BODY>
33192 <H1>OPTION: Title Color</H1>
33194 Sets the color Alpine uses for the titlebar (the top line on the screen).
33195 The foreground color is the color of the actual character and the
33196 background color is the color of the area behind the character.
33197 By default, the Title Color is black characters on a yellow background.
33199 The actual titlebar color may be different from the Title Color if
33200 the option
33201 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
33202 is set to some value other than the default.
33203 It may also be different if the current folder is closed and the
33204 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
33205 color is set to something different from the Title Color.
33207 <A HREF="h_color_setup">Descriptions of the available commands</A>
33209 Look <A HREF="h_edit_nav_cmds">here</A>
33210 to see the available Editing and Navigation commands.
33212 &lt;End of help on this topic&gt;
33213 </BODY>
33214 </HTML>
33215 ====== h_config_titleclosed_color =====
33216 <HTML>
33217 <HEAD>
33218 <TITLE>OPTION: Title Closed Color</TITLE>
33219 </HEAD>
33220 <BODY>
33221 <H1>OPTION: Title Closed Color</H1>
33223 Sets the color Alpine uses for the titlebar (the top line on the screen)
33224 when the current folder is closed.
33225 The foreground color is the color of the actual character and the
33226 background color is the color of the area behind the character.
33227 By default, the Title Color Closed Color is white characters on a red background.
33229 By setting this color to something noticeable you will be alerted to the
33230 fact that the current folder is closed, perhaps unexpectedly.
33232 &lt;End of help on this topic&gt;
33233 </BODY>
33234 </HTML>
33235 ====== h_config_status_color =====
33236 <HTML>
33237 <HEAD>
33238 <TITLE>OPTION: Status Color</TITLE>
33239 </HEAD>
33240 <BODY>
33241 <H1>OPTION: Status Color</H1>
33243 Sets the color Alpine uses for status messages written to the message
33244 line near the bottom of the screen.
33245 The foreground color is the color of the actual character and the
33246 background color is the color of the area behind the character.
33247 By default, the Status Color is the same as the Reverse Color.
33249 <A HREF="h_color_setup">Descriptions of the available commands</A>
33251 Look <A HREF="h_edit_nav_cmds">here</A>
33252 to see the available Editing and Navigation commands.
33254 &lt;End of help on this topic&gt;
33255 </BODY>
33256 </HTML>
33257 ====== h_config_index_opening_color =====
33258 <HTML>
33259 <HEAD>
33260 <TITLE>OPTION: Index Opening Color</TITLE>
33261 </HEAD>
33262 <BODY>
33263 <H1>OPTION: Index Opening Color</H1>
33265 With some setups the text of the subject is followed
33266 by the opening text of the message if there is any room available in the index line.
33267 If you have configured your
33268 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
33269 to include one of the Subject tokens that causes this behavior
33270 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
33271 this opening text with this option.
33272 This coloring takes place for all but the current index line, and the Opening
33273 Color appears to be in front of any color from an Index Color Rule.
33275 By default the Index Opening Color is gray characters on a white background.
33278 <A HREF="h_color_setup">Descriptions of the available commands</A>
33280 Look <A HREF="h_edit_nav_cmds">here</A>
33281 to see the available Editing and Navigation commands.
33283 &lt;End of help on this topic&gt;
33284 </BODY>
33285 </HTML>
33286 ====== h_config_index_pri_color =====
33287 <HTML>
33288 <HEAD>
33289 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
33290 </HEAD>
33291 <BODY>
33292 <H1>OPTION: Index Priority Symbol Colors</H1>
33294 The X-Priority header is a non-standard header that is used in a
33295 somewhat standard way by many mail programs.
33296 Alpine expects the value of this header to be a digit with a value
33297 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
33298 Alpine can be made to display an indication of this priority in
33299 messages by use of one of the tokens
33300 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
33301 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
33302 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
33305 You may set the color used to draw these tokens by use of the colors
33306 Index High Priority Symbol Color and Index Low Priority Symbol Color.
33307 This coloring takes place for all but the current index line, and the Priority
33308 Color appears to be in front of any color from an Index Color Rule.
33309 If the priority has a value of 1 or 2 the High Priority color will be
33310 used,
33311 and if the value is 4 or 5 the Low Priority color will be used.
33313 If you don't set these colors the index line will be colored in the same color as
33314 the bulk of the index line.
33317 <A HREF="h_color_setup">Descriptions of the available commands</A>
33319 Look <A HREF="h_edit_nav_cmds">here</A>
33320 to see the available Editing and Navigation commands.
33322 &lt;End of help on this topic&gt;
33323 </BODY>
33324 </HTML>
33325 ====== h_config_index_subject_color =====
33326 <HTML>
33327 <HEAD>
33328 <TITLE>OPTION: Index Subject Color</TITLE>
33329 </HEAD>
33330 <BODY>
33331 <H1>OPTION: Index Subject Color</H1>
33333 You may set the color used to draw the Subject part of the index line.
33334 This coloring takes place for all but the current index line, and the Subject
33335 Color appears to be in front of any color from an Index Color Rule.
33337 If you don't set this color it will be colored in the same color as
33338 the bulk of the index line.
33341 <A HREF="h_color_setup">Descriptions of the available commands</A>
33343 Look <A HREF="h_edit_nav_cmds">here</A>
33344 to see the available Editing and Navigation commands.
33346 &lt;End of help on this topic&gt;
33347 </BODY>
33348 </HTML>
33349 ====== h_config_index_from_color =====
33350 <HTML>
33351 <HEAD>
33352 <TITLE>OPTION: Index From Color</TITLE>
33353 </HEAD>
33354 <BODY>
33355 <H1>OPTION: Index From Color</H1>
33357 You may set the color used to draw the From part of the index line.
33358 This coloring takes place for all but the current index line, and the From
33359 Color appears to be in front of any color from an Index Color Rule.
33361 If you don't set this color it will be colored in the same color as
33362 the bulk of the index line.
33365 <A HREF="h_color_setup">Descriptions of the available commands</A>
33367 Look <A HREF="h_edit_nav_cmds">here</A>
33368 to see the available Editing and Navigation commands.
33370 &lt;End of help on this topic&gt;
33371 </BODY>
33372 </HTML>
33373 ====== h_config_index_arrow_color =====
33374 <HTML>
33375 <HEAD>
33376 <TITLE>OPTION: Index Arrow Color</TITLE>
33377 </HEAD>
33378 <BODY>
33379 <H1>OPTION: Index Arrow Color</H1>
33381 If you have configured your
33382 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
33383 to include the &quot;ARROW&quot; token, you may set the color of
33384 the arrow displayed with this option.
33385 If you don't set the color it will be colored in the same color as
33386 the bulk of the index line.
33389 <A HREF="h_color_setup">Descriptions of the available commands</A>
33391 Look <A HREF="h_edit_nav_cmds">here</A>
33392 to see the available Editing and Navigation commands.
33394 &lt;End of help on this topic&gt;
33395 </BODY>
33396 </HTML>
33397 ====== h_config_index_color =====
33398 <HTML>
33399 <HEAD>
33400 <TITLE>OPTION: Index Colors</TITLE>
33401 </HEAD>
33402 <BODY>
33403 <H1>OPTION: Index Colors</H1>
33405 You may add color to the single character symbols that give the status
33406 of each message in the MESSAGE INDEX.
33407 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
33408 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
33409 screen depending on whether the message is addressed to you, and whether
33410 the message is marked Important, is Deleted, is Answered, or is New.
33411 The color for each of those characters may be specified by setting the
33412 &quot;Index-to-me&quot; Symbol Color,
33413 the &quot;Index-important&quot; Symbol Color,
33414 the &quot;Index-deleted&quot; Symbol Color,
33415 the &quot;Index-answered&quot; Symbol Color,
33416 and the &quot;Index-new&quot; Symbol Color.
33417 There are also two other symbol colors called &quot;Index-recent&quot;
33418 and &quot;Index-unseen&quot;.
33419 These two colors will only be used if you have configured your
33420 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
33421 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
33423 The default colors for these symbols are:
33424 <TABLE>
33425 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
33426 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
33427 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33428 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
33429 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
33430 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33431 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
33432 </TABLE>
33434 Besides coloring the message status symbols, you may also color the
33435 entire index line.
33436 This is done by using the
33437 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
33438 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
33439 When the entire line is colored that color will be &quot;behind&quot; the
33440 status symbol colors talked about in the paragraph above.
33442 You may also color
33443 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33444 in the index using the
33445 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
33446 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
33447 the Subject using
33448 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
33449 the From field using
33450 <A HREF="h_config_index_from_color">Index From Color</A>;
33451 and the
33452 <A HREF="h_config_index_opening_color">Index Opening</A> text.
33454 <A HREF="h_color_setup">Descriptions of the available commands</A>
33456 Look <A HREF="h_edit_nav_cmds">here</A>
33457 to see the available Editing and Navigation commands.
33459 &lt;End of help on this topic&gt;
33460 </BODY>
33461 </HTML>
33462 ====== h_config_metamsg_color =====
33463 <HTML>
33464 <HEAD>
33465 <TITLE>OPTION: Meta-Message Color</TITLE>
33466 </HEAD>
33467 <BODY>
33468 <H1>OPTION: Meta-Message Color</H1>
33470 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
33471 that aren't part of the message itself.
33472 For example, an attachment that isn't shown might produce a meta
33473 message something like:
33475 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
33477 If you set the
33478 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
33479 option you might see
33481 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
33483 Warnings about suspicious looking URLs in HTML will also be colored
33484 with this color.
33486 The foreground color is the color of the actual character and the
33487 background color is the color of the area behind the character.
33488 By default, the Meta-Message Color is black characters on a yellow background.
33490 <A HREF="h_color_setup">Descriptions of the available commands</A>
33492 Look <A HREF="h_edit_nav_cmds">here</A>
33493 to see the available Editing and Navigation commands.
33495 &lt;End of help on this topic&gt;
33496 </BODY>
33497 </HTML>
33498 ====== h_config_keylabel_color =====
33499 <HTML>
33500 <HEAD>
33501 <TITLE>OPTION: KeyLabel Color</TITLE>
33502 </HEAD>
33503 <BODY>
33504 <H1>OPTION: KeyLabel Color</H1>
33506 Sets the color Alpine uses for the labels of the keys in the two-line
33507 menu at the bottom of the screen.
33508 For example, some of the screens have a &quot;P PrevMsg&quot; command.
33509 This option sets the color used when displaying &quot;PrevMsg&quot;.
33510 The foreground color is the color of the actual character and the
33511 background color is the color of the area behind the character.
33512 By default, the KeyLabel Color is the same as the Normal Color.
33514 WARNING: Some terminal emulators have the property that the screen will scroll
33515 down one line whenever a character is written to the character cell in the
33516 lower right corner of the screen.
33517 Alpine can usually avoid writing a character in that corner of the screen.
33518 However, if you have defined a KeyLabel Color then Alpine does have to write
33519 a character in that cell in order to color the cell correctly.
33520 If you find that your display sometimes scrolls up a line this could be
33521 the problem.
33522 The most obvious symptom is probably that the titlebar at the top of the
33523 screen scrolls off the screen.
33524 Try setting KeyLabel Color to Default to see if that fixes the problem.
33526 <A HREF="h_color_setup">Descriptions of the available commands</A>
33528 Look <A HREF="h_edit_nav_cmds">here</A>
33529 to see the available Editing and Navigation commands.
33531 &lt;End of help on this topic&gt;
33532 </BODY>
33533 </HTML>
33534 ====== h_config_keyname_color =====
33535 <HTML>
33536 <HEAD>
33537 <TITLE>OPTION: KeyName Color</TITLE>
33538 </HEAD>
33539 <BODY>
33540 <H1>OPTION: KeyName Color</H1>
33542 Sets the color Alpine uses for the names of the keys in the two-line
33543 menu at the bottom of the screen.
33544 For example, some of the screens have a &quot;P PrevMsg&quot; command.
33545 This option sets the color used when displaying the &quot;P&quot;.
33546 The foreground color is the color of the actual character and the
33547 background color is the color of the area behind the character.
33548 By default, the KeyName Color is the same as the Reverse Color.
33550 <A HREF="h_color_setup">Descriptions of the available commands</A>
33552 Look <A HREF="h_edit_nav_cmds">here</A>
33553 to see the available Editing and Navigation commands.
33555 &lt;End of help on this topic&gt;
33556 </BODY>
33557 </HTML>
33558 ====== h_config_slctbl_color =====
33559 <HTML>
33560 <HEAD>
33561 <TITLE>OPTION: Selectable Item Color</TITLE>
33562 </HEAD>
33563 <BODY>
33564 <H1>OPTION: Selectable Item Color</H1>
33566 Sets the color Alpine uses for selectable items, such as URLs.
33567 The foreground color is the color of the actual character and the
33568 background color is the color of the area behind the character.
33569 By default, the Selectable Item Color is the same as the Normal Color,
33570 except that it is bold.
33572 <A HREF="h_color_setup">Descriptions of the available commands</A>
33574 Look <A HREF="h_edit_nav_cmds">here</A>
33575 to see the available Editing and Navigation commands.
33577 &lt;End of help on this topic&gt;
33578 </BODY>
33579 </HTML>
33580 ====== h_config_quote_color =====
33581 <HTML>
33582 <HEAD>
33583 <TITLE>OPTION: Quote Colors</TITLE>
33584 </HEAD>
33585 <BODY>
33586 <H1>OPTION: Quote Colors</H1>
33588 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
33589 screen.
33590 If a line begins with a &gt; character (or space followed by &gt;)
33591 it is considered a quote.
33592 That line will be given the Quote1 Color (first level quote).
33593 If there is a second level of quoting then the Quote2 Color will be used.
33594 Alpine considers there to be a second level of quoting if that first &gt; is
33595 followed by another &gt; (or space followed by &gt;).
33596 If there are characters other than whitespace and &gt; signs, then it isn't
33597 considered another level of quoting.
33598 Similarly, if there is a third level of quoting the Quote3 Color will be
33599 used.
33600 If there are more levels after that the Quote Colors are re-used.
33601 If you define all three colors then it would repeat like Color1, Color2, Color3,
33602 Color1, Color2, Color3, ...
33603 If you only define the first two it would be
33604 Color1, Color2, Color1, Color2, ...
33605 If you define only the Quote1 Color, then the entire quote would be that
33606 color regardless of the quoting levels.
33607 By default, the Quote1 Color is black characters on a greenish-blue background;
33608 the Quote2 Color is black characters on a dull yellow background; and
33609 the Quote3 Color is black characters on a green background.
33611 <A HREF="h_color_setup">Descriptions of the available commands</A>
33613 Look <A HREF="h_edit_nav_cmds">here</A>
33614 to see the available Editing and Navigation commands.
33616 &lt;End of help on this topic&gt;
33617 </BODY>
33618 </HTML>
33619 ====== h_config_folder_color =====
33620 <HTML>
33621 <HEAD>
33622 <TITLE>OPTION: Folder Color</TITLE>
33623 </HEAD>
33624 <BODY>
33625 <H1>OPTION: Folder Color</H1>
33627 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
33628 screen. By default, the Folder Color is the normal text color.
33631 If you set a color for this feature, other than the normal color
33632 (the default), or a color for
33633 <A HREF="h_config_directory_color">Directory Color</A>, then directories
33634 will be colored according to the color specified in the
33635 <A HREF="h_config_directory_color">Directory Color</A> option. In this
33636 case, the color will be the only indication that the colored name
33637 refers to a directory. The normal behavior is that Alpine
33638 indicates that a name refers to a directory by appending a
33639 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
33640 the folder.
33643 If a folder is a directory, then the folder name will be painted
33644 according to the color defined by this variable, and a separator
33645 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
33646 to the name. That
33647 indicator will be painted according to the color defined in the
33648 <A HREF="h_config_directory_color">Directory Color</A> option.
33651 &lt;End of help on this topic&gt;
33652 </BODY>
33653 </HTML>
33654 ====== h_config_directory_color =====
33655 <HTML>
33656 <HEAD>
33657 <TITLE>OPTION: Directory Color</TITLE>
33658 </HEAD>
33659 <BODY>
33660 <H1>OPTION: Directory Color</H1>
33662 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
33663 screen. By default, the Folder Color is the normal text color.
33665 If you set a color for this feature, other than the normal color
33666 (the default), or a color for
33667 <A HREF="h_config_folder_color">Folder Color</A>, then folders
33668 will be colored according to the color specified in the
33669 <A HREF="h_config_folder_color">Folder Color</A> option. In this
33670 case, the color will be the only indication that the colored name
33671 refers to a directory. The normal behavior is that Alpine
33672 indicates that a name refers to a directory by appending a
33673 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
33674 the folder.
33676 If a folder is a directory, then the folder name will be painted
33677 according to the color defined by the option
33678 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
33679 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
33680 after the name. That
33681 indicator will be painted according to the color defined in this
33682 option.
33684 &lt;End of help on this topic&gt;
33685 </BODY>
33686 </HTML>
33687 ====== h_config_folder_list_color =====
33688 <HTML>
33689 <HEAD>
33690 <TITLE>OPTION: Folder-List Color</TITLE>
33691 </HEAD>
33692 <BODY>
33693 <H1>OPTION: Folder-List Color</H1>
33695 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
33696 screen. By default, the Folder-List Color is the normal text color.
33698 This text refers to the informative text that Alpine displays so you
33699 can recognize each collection. The color of the content of each collection
33700 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
33701 and <A HREF="h_config_directory_color">Directory Color</A>.
33703 Unlike the options
33704 <A HREF="h_config_folder_color">Folder Color</A>
33705 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
33706 this option does not affect the way that Alpine reports folders,
33707 directories and folders that are directories.
33709 &lt;End of help on this topic&gt;
33710 </BODY>
33711 </HTML>
33712 ====== h_config_incunseen_color =====
33713 <HTML>
33714 <HEAD>
33715 <TITLE>OPTION: Incoming Unseen Color</TITLE>
33716 </HEAD>
33717 <BODY>
33718 <H1>OPTION: Incoming Unseen Color</H1>
33720 If the option
33721 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
33722 is turned on it is possible to highlight the folders that contain
33723 unseen messages by coloring them with this color.
33724 By default, this is the same as the Normal Color and no highlighting is done.
33726 Usually the &quot;current&quot; folder (the folder the cursor is on)
33727 is highlighted using reverse video.
33728 If the current folder is colored because it contains unseen messages then
33729 the color used to show that it is also the current folder is controlled
33730 by the
33731 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
33732 feature at the top of the SETUP COLOR screen.
33734 <A HREF="h_color_setup">Descriptions of the available commands</A>
33736 Look <A HREF="h_edit_nav_cmds">here</A>
33737 to see the available Editing and Navigation commands.
33739 &lt;End of help on this topic&gt;
33740 </BODY>
33741 </HTML>
33742 ====== h_config_signature_color =====
33743 <HTML>
33744 <HEAD>
33745 <TITLE>OPTION: Signature Color</TITLE>
33746 </HEAD>
33747 <BODY>
33748 <H1>OPTION: Signature Color</H1>
33750 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
33751 screen. According to USENET conventions, the signature is defined as the
33752 paragraph following the &quot;sigdashes&quot;, that is, the special line
33753 consisting of the three characters
33754 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
33755 empty line right after the sigdashes to be considered as part of the
33756 signature.
33757 By default, the Signature Color is blue characters on a white background.
33759 <A HREF="h_color_setup">Descriptions of the available commands</A>
33761 Look <A HREF="h_edit_nav_cmds">here</A>
33762 to see the available Editing and Navigation commands.
33764 &lt;End of help on this topic&gt;
33765 </BODY>
33766 </HTML>
33767 ====== h_config_prompt_color =====
33768 <HTML>
33769 <HEAD>
33770 <TITLE>OPTION: Prompt Color</TITLE>
33771 </HEAD>
33772 <BODY>
33773 <H1>OPTION: Prompt Color</H1>
33775 Sets the color Alpine uses for confirmation prompts and questions that
33776 appear in the status line near the bottom of the screen.
33777 The foreground color is the color of the actual character and the
33778 background color is the color of the area behind the character.
33779 By default, the Prompt Color is the same as the Reverse Color.
33781 <A HREF="h_color_setup">Descriptions of the available commands</A>
33783 Look <A HREF="h_edit_nav_cmds">here</A>
33784 to see the available Editing and Navigation commands.
33786 &lt;End of help on this topic&gt;
33787 </BODY>
33788 </HTML>
33789 ====== h_config_header_general_color =====
33790 <HTML>
33791 <HEAD>
33792 <TITLE>OPTION: Header General Color</TITLE>
33793 </HEAD>
33794 <BODY>
33795 <H1>OPTION: Header General Color</H1>
33797 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
33798 screen.
33799 The foreground color is the color of the actual character and the
33800 background color is the color of the area behind the character.
33801 By default, this is the same as the Normal Color.
33803 It is also possible to set the colors for specific header fields, for
33804 example the Subject, using
33805 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
33806 If both a Header General Color and a specific Viewer Header Color are set
33807 the specific color will override the general color, as you would expect.
33809 <A HREF="h_color_setup">Descriptions of the available commands</A>
33811 Look <A HREF="h_edit_nav_cmds">here</A>
33812 to see the available Editing and Navigation commands.
33814 &lt;End of help on this topic&gt;
33815 </BODY>
33816 </HTML>
33817 ====== h_config_incol =====
33818 <HTML>
33819 <HEAD>
33820 <TITLE>Index Line Color</TITLE>
33821 </HEAD>
33822 <BODY>
33823 <H1>Index Line Color</H1>
33825 This option is used to set the color of a line in the index when the
33826 message for that line matches the Pattern.
33827 This colors the whole index line, except possibly the status letters,
33828 which may be colored separately using the
33829 <A HREF="h_color_setup">Setup Kolor</A> screen.
33830 The foreground color is the color of the actual characters and the
33831 background color is the color of the area behind the characters.
33833 <A HREF="h_color_setup">Descriptions of the available commands</A>
33835 Look <A HREF="h_edit_nav_cmds">here</A>
33836 to see the available Editing and Navigation commands.
33838 &lt;End of help on this topic&gt;
33839 </BODY>
33840 </HTML>
33841 ====== h_config_usetransparent_color =====
33842 <HTML>
33843 <HEAD>
33844 <TITLE>OPTION: Use Transparent Color</TITLE>
33845 </HEAD>
33846 <BODY>
33847 <H1>OPTION: Use Transparent Color</H1>
33849 This is a special color supported by some terminal emulators.
33850 It is intended to result in the default foreground or background color
33851 from the terminal emulator.
33852 This is the color the terminal was displaying characters in before you started Alpine.
33853 The reason it is called Transparent is because you could set the foreground color
33854 to some specific color, like Red, and then set the background color to the
33855 Transparent Color. If it works as expected, the background color from the terminal
33856 window in which Alpine is running will show through but with the Red characters
33857 in the foreground.
33859 <A HREF="h_color_setup">Descriptions of the available commands</A>
33861 Look <A HREF="h_edit_nav_cmds">here</A>
33862 to see the available Editing and Navigation commands.
33864 &lt;End of help on this topic&gt;
33865 </BODY>
33866 </HTML>
33867 ====== h_config_usenormal_color =====
33868 <HTML>
33869 <HEAD>
33870 <TITLE>OPTION: Use Normal Color</TITLE>
33871 </HEAD>
33872 <BODY>
33873 <H1>OPTION: Use Normal Color</H1>
33875 When you use this color value, the actual color used will be the same
33876 as the corresponding Normal Color.
33877 For example if your Normal Color is black on white and you set both
33878 the foreground and background colors here to use the Normal Color, you'll
33879 get black on white. If you later change the Normal Color to red on blue
33880 this color will also change to red on blue.
33882 <A HREF="h_color_setup">Descriptions of the available commands</A>
33884 Look <A HREF="h_edit_nav_cmds">here</A>
33885 to see the available Editing and Navigation commands.
33887 &lt;End of help on this topic&gt;
33888 </BODY>
33889 </HTML>
33890 ====== h_config_usenone_color =====
33891 <HTML>
33892 <HEAD>
33893 <TITLE>OPTION: Use None Color</TITLE>
33894 </HEAD>
33895 <BODY>
33896 <H1>OPTION: Use None Color</H1>
33898 This is a special color that simply means to leave the color alone.
33899 It is useful for Index symbols and for Keyword Colors used in the Subject
33900 field of an index line.
33901 The most likely use is to set an explicit foreground color and then set
33902 the background color to the None Color.
33903 That will cause the symbol or keyword to be drawn in the foreground color
33904 with a background equal to whatever color the rest of the index line is already
33905 drawn in.
33906 You will see no visible effect unless you have assigned Indexcolor Rules to
33907 color index lines or you have set an actual color for the Reverse Color.
33909 <A HREF="h_color_setup">Descriptions of the available commands</A>
33911 Look <A HREF="h_edit_nav_cmds">here</A>
33912 to see the available Editing and Navigation commands.
33914 &lt;End of help on this topic&gt;
33915 </BODY>
33916 </HTML>
33917 ====== h_config_dflt_color =====
33918 <HTML>
33919 <HEAD>
33920 <TITLE>OPTION: Default Color</TITLE>
33921 </HEAD>
33922 <BODY>
33923 <H1>OPTION: Default Color</H1>
33925 Setting default will cause the color to be the default color.
33926 Unsetting default is normally done by choosing a color, but in some cases
33927 you may want to declare the current default color to be your non-default
33928 choice.
33929 For example, the default Keyname Color is the same as the Reverse Color.
33930 Whenever the Reverse Color changes the Keyname Color will also change, unless
33931 you've changed it or unset the default box.
33933 <A HREF="h_color_setup">Descriptions of the available commands</A>
33935 Look <A HREF="h_edit_nav_cmds">here</A>
33936 to see the available Editing and Navigation commands.
33938 &lt;End of help on this topic&gt;
33939 </BODY>
33940 </HTML>
33941 ====== h_config_bold_slctbl =====
33942 <HTML>
33943 <HEAD>
33944 <TITLE>OPTION: Bold</TITLE>
33945 </HEAD>
33946 <BODY>
33947 <H1>OPTION: Bold</H1>
33949 The color for this particular section may have the Bold attribute turned
33950 on or off.
33951 Setting bold will cause the characters to be bold.
33953 <A HREF="h_color_setup">Descriptions of the available commands</A>
33955 Look <A HREF="h_edit_nav_cmds">here</A>
33956 to see the available Editing and Navigation commands.
33958 &lt;End of help on this topic&gt;
33959 </BODY>
33960 </HTML>
33961 ====== h_config_kw_color =====
33962 <HTML>
33963 <HEAD>
33964 <TITLE>OPTION: Keyword Colors</TITLE>
33965 </HEAD>
33966 <BODY>
33967 <H1>OPTION: Keyword Colors</H1>
33969 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
33970 Keywords are displayed as part of the Subject by default.
33971 They are also displayed as part of the Subject if the tokens
33972 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
33973 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
33974 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
33975 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
33977 For example, you might have set up a Keyword
33978 &quot;Work&quot; using the
33979 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
33980 You could cause that Keyword to show up as a special color
33981 by setting up the Keyword Color using this option, and then including it
33982 in the MESSAGE INDEX screen using one of the tokens listed above in the
33983 <!--#echo var="VAR_index-format"-->.
33985 <A HREF="h_color_setup">Descriptions of the available commands</A>
33987 Look <A HREF="h_edit_nav_cmds">here</A>
33988 to see the available Editing and Navigation commands.
33990 &lt;End of help on this topic&gt;
33991 </BODY>
33992 </HTML>
33993 ====== h_config_customhdr_color =====
33994 <HTML>
33995 <HEAD>
33996 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
33997 </HEAD>
33998 <BODY>
33999 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
34001 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
34002 For example, you may set the color of the Subject header or the From header.
34003 The foreground color is the color of the actual character and the
34004 background color is the color of the area behind the character.
34006 In addition to setting the colors for particular headers (like the Subject)
34007 you may also set a color to be used for all headers unless overridden by a
34008 more specific Viewer Header Color.
34009 To do this use the
34010 <A HREF="h_config_header_general_color">Header General Color</A>.
34012 For Header Colors,
34013 there is an additional line on the
34014 screen labeled &quot;Pattern to match&quot;.
34015 If you leave that blank, then the whole field for that header will
34016 be colored.
34017 However, if you give a pattern to match, the coloring will only take place
34018 if there is a match for that pattern in the value of the field.
34019 For example, if you are working on a color for the Subject header and
34020 you fill in a pattern of &quot;important&quot;, then only Subjects that
34021 contain the word &quot;important&quot; will be colored.
34023 If the pattern you enter is a comma-separated list of patterns, then coloring
34024 happens if any of those patterns matches.
34026 <A HREF="h_color_setup">Descriptions of the available commands</A>
34028 Look <A HREF="h_edit_nav_cmds">here</A>
34029 to see the available Editing and Navigation commands.
34031 &lt;End of help on this topic&gt;
34032 </BODY>
34033 </HTML>
34034 ====== h_config_indextoken_color =====
34035 <HTML>
34036 <HEAD>
34037 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
34038 </HEAD>
34039 <BODY>
34040 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
34042 This option allows you to set up the color in which any token, not specified by the
34043 previous options, will be colored in the MESSAGE INDEX screen. 
34045 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
34046 a token that can be used in the index format. 
34047 The list of available tokens is <A HREF="h_index_tokens">here</A>.
34049 If you fail to enter a valid token your entry will be ignored, and you will be asked to
34050 enter a new one. Once you have entered a valid token, a line will be added to the
34051 configuration screen that you can use to set up the colors in which that token will
34052 be painted. This is done in the same way that you configure colors for other
34053 variables.
34055 <A HREF="h_color_setup">Descriptions of the available commands</A>
34057 Look <A HREF="h_edit_nav_cmds">here</A>
34058 to see the available Editing and Navigation commands.
34060 &lt;End of help on this topic&gt;
34061 </BODY>
34062 </HTML>
34063 ====== h_config_customhdr_pattern =====
34064 <HTML>
34065 <HEAD>
34066 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
34067 </HEAD>
34068 <BODY>
34069 <H1>OPTION: Viewer Header Color Pattern</H1>
34071 If you leave this blank, then the whole field for the header will
34072 be colored.
34073 If you give a pattern to match, the coloring will only take place
34074 if there is a match for that pattern in the value of the field.
34075 For example, if you are working on a color for the Subject header and
34076 you fill in a pattern of &quot;important&quot;, then only Subjects that
34077 contain the word &quot;important&quot; will be colored.
34079 For address headers (like From and To) and for the Newsgroups header,
34080 a pattern match will cause only the matched addresses or newsgroups to be
34081 colored.
34082 If there is no pattern to match, then all of the addresses or newsgroups
34083 in the relevant header will be colored.
34085 The matching pattern may be a comma-separated list of patterns to match
34086 instead of a single pattern.
34087 For example, you could use the pattern &quot;important,urgent&quot; which would
34088 cause a match if either the word &quot;important&quot; or the word
34089 &quot;urgent&quot; appeared in the value of the header.
34090 You could list several comma-separated email addresses in the Header
34091 From Color pattern so that those addresses will be colored when any of
34092 them appear in the From header.
34094 To add a new matching pattern or change the existing pattern use the 
34095 <!--chtml if pinemode="function_key"-->
34096 &quot;F4&quot;
34097 <!--chtml else-->
34098 &quot;C&quot;
34099 <!--chtml endif-->
34100 &quot;Change&quot; command that is available when the &quot;Pattern to
34101 match&quot; line is highlighted.
34103 <!--chtml if pinemode="function_key"-->
34104 &quot;F10&quot;
34105 <!--chtml else-->
34106 &quot;D&quot;
34107 <!--chtml endif-->
34108 &quot;Delete&quot; command may be used to quickly remove all patterns
34109 for a particular header.
34111 &lt;End of help on this topic&gt;
34112 </BODY>
34113 </HTML>
34114 ====== h_color_setup =====
34115 <HTML>
34116 <HEAD>
34117 <TITLE>SETUP COLOR COMMANDS</TITLE>
34118 </HEAD>
34119 <BODY>
34120 <H1>SETUP COLOR COMMANDS</H1>
34121 <!--chtml if pinemode="function_key"-->
34122 <PRE>
34123 Available Commands -- Group 1
34124 -------------------------------
34125 F1  Display this help text
34126 F2  Show other available commands
34127 F3  Exit to MAIN MENU
34128 F4  Select the highlighted foreground or background color
34129 F5  Move to previous line
34130 F6  Move to next line
34131 F7  Previous page
34132 F8  Next page
34133 F9  Add a config section for a header field
34134 F10 Restore all default colors (for all sections)
34135 F11 Print color configuration screen
34136 F12 Whereis (search for word)
34138 Available Commands -- Group 2
34139 -------------------------------
34140 F1  Display this help text
34141 F2  Show other available commands
34142 F5  Delete config section for highlighted header field
34143 F6  Shuffle the order of Header Color sections
34144 </PRE>
34145 <!--chtml else-->
34146 <PRE>
34147 General commands
34148 -------------------------------------------------
34149  ?  Display this help text     E  Exit back to MAIN MENU
34150  P  Previous Line              N  Next Line
34151  -  Previous page             Spc (space bar) Next page
34152  W  WhereIs (search for word)  %  Print color configuration screen
34154 Color Setup Commands
34155 ------------------------------------------------
34156  *  Select the highlighted foreground or background color
34157  A  Add a config section for a header field
34158  D  Delete config section for highlighted header field
34159  R  Restore all default colors (for all sections)
34160  $  Shuffle the order of Header Color sections
34161 </PRE>
34162 <!--chtml endif-->
34164 <H2>Description of the Setup Color Screen</H2>
34166 From this screen you may turn on color and set the colors of
34167 various parts of the Alpine display.
34168 For help on turning on color move your cursor into the Color Style section
34169 at the top of the Setup Color screen and ask for help.
34172 There are several sections in the Setup Color Screen.
34173 At the top are some settings that handle the style of color used
34174 with your terminal emulator (UNIX only), and some settings that
34175 control how the current indexline and the titlebar are colored.
34176 After that comes a long section called GENERAL COLORS that allows
34177 you to set the color of many elements in the Alpine screens.
34178 For example, the color of the titlebar, status messages,
34179 selectable links, quotes and signatures in messages, and so on.
34180 After that is a section called INDEX COLORS that allows you to
34181 set the colors of various pieces of the displayed index lines in
34182 the MESSAGE INDEX screen.
34183 The next section is HEADER COLORS. This is for coloring headers of
34184 messages in the MESSAGE TEXT screen in just about any way you would like.
34185 Finally, the KEYWORD COLORS section allows you to highlight
34186 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
34187 in the MESSAGE INDEX screen.
34190 To change a color, highlight the color you want to change (for example,
34191 the Status Color) by moving
34192 the cursor into it.
34193 You may want to read the help text for the color to see a brief description
34194 of what you are coloring.
34195 Then press &quot;C&quot; for Change to set the color to something new.
34196 That will put you into a screen with two columns of colors, one for
34197 the foreground color and one for the background color.
34198 The foreground color is just the color you want the actual characters
34199 to be and the background color is the color of the rest of the rectangle
34200 behind the characters.
34201 Select the foreground and background colors desired by using the Next and
34202 Prev keys to highlight the color, and the * command to select it.
34204 To set a color to its default value, set the X in the Default line at
34205 the bottom of the list of colors.
34208 The HEADER COLORS section is a little bit different from the others.
34209 Besides coloring the specific fields that Alpine knows about, you may also
34210 color specific header fields when viewing a message in the MESSAGE TEXT
34211 screen.
34212 For example, you may color the Subject header a particular color.
34213 There are a few commands for use with headers.
34214 The &quot;AddHeader&quot; command adds a section to the color
34215 configuration screen that allows you to set the color for that header.
34216 You'll be asked for the name of the header field you want to color.
34217 If you wanted to color the Subject, you would answer
34218 with the word &quot;subject&quot;.
34219 Once you've added a header field, the color setting works just like the
34220 other color fields, except that there is an additional line on the
34221 configuration screen labeled &quot;Pattern to match&quot;.
34222 If you leave that blank, then the whole field for that header will always
34223 be colored.
34224 However, if you give a pattern to match, the coloring will only take place
34225 if there is a match for that pattern in the value of the field.
34226 For example, if you are working on a color for the Subject header and
34227 you fill in a pattern of &quot;important&quot;, then only Subjects that
34228 contain the word &quot;important&quot; will be colored.
34230 The &quot;DeleteHdr&quot; command removes a header section from the
34231 configuration altogether.
34232 The &quot;Shuffle&quot; command changes the order of header sections.
34233 This is only necessary if you use header sections with pattern fields.
34234 For example, if you have two Subject sections, one with one pattern and
34235 another with another pattern, and the subject for a particular message
34236 happens to match both, then the color from the first match is used.
34239 The command &quot;RestoreDefs&quot; will restore all of the default colors.
34240 Each section will change to the default value used for that section when
34241 color is first enabled.
34242 When you restore all default colors the color settings for the Header Colors
34243 will be unset (since that's the default), but the header fields you've
34244 added will remain so that you may easily reset them.
34245 In order to get rid of them completely you'd have to use
34246 the &quot;DeleteHdr&quot; command.
34249 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
34250 may be set with matching rules and that is configured separately from
34251 the rest of the color settings described here.
34252 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
34253 instead of in the Setup/Kolor section.
34255 <P><UL>
34256 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34257 </UL><P>
34258 &lt;End of help on this topic&gt;
34259 </BODY>
34260 </HTML>
34261 ====== h_config_news_uses_recent ======
34262 <HTML>
34263 <HEAD>
34264 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
34265 </HEAD>
34266 <BODY>
34267 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
34269 This feature causes certain messages to be marked as "New" in the
34270 MESSAGE INDEX of newsgroups.
34271 This feature is set by default.
34275 When opening a newsgroup, Alpine will consult your "newsrc" file and
34276 determine the last message you have previously disposed of via the "D"
34277 key.  If this feature is set, any subsequent messages will be shown in the
34278 Index with an "N", and the first of these messages will be highlighted.
34279 Although this is only an approximation of true "New" or "Unseen"
34280 status, it provides a useful cue to distinguish more-or-less recent
34281 messages from those you have seen previously, but are not yet ready to
34282 mark deleted.
34286 Background: your "newsrc" file (used to store message status information
34287 for newsgroups) is only capable of storing a single flag, and Alpine uses
34288 this to record whether or not you are "done with" a message, as
34289 indicated by marking the message as "Deleted".  Unfortunately, this
34290 means that Alpine has no way to record exactly which messages you have
34291 previously seen, so it normally does not show the "N" status flag for
34292 any messages in a newsgroup. This feature enables a starting
34293 *approximation* of seen/unseen status that may be useful.
34295 &lt;End of help on this topic&gt;
34296 </BODY>
34297 </HTML>
34298 ====== h_config_expose_hidden_config =====
34299 <HTML>
34300 <HEAD>
34301 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
34302 </HEAD>
34303 <BODY>
34304 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
34306 If set, this causes configuration options and features that are normally
34307 hidden from view to be editable in the Setup/Config screen.
34310 The purpose of this feature is to allow you to change configuration
34311 features and variables that are normally hidden.
34312 This is particularly useful if you are using a remote configuration,
34313 where it is difficult to edit the contents manually, but it may also be used
34314 on a local pinerc configuration file.
34316 If set, several configuration variables and features that are normally
34317 hidden from view will show up in the Setup/Configuration screen.
34318 They will be at the bottom of the configuration screen.
34319 You can find them by searching for the words &quot;hidden configuration&quot;.
34322 Note that this is an advanced feature that should be used with care.
34323 The reason that this part of the configuration is normally hidden is because
34324 there is a significant potential for causing problems if you change these
34325 variables.
34326 If something breaks after a change try changing it back to see if that is
34327 what is causing the problem.
34328 There are also some variables that are normally hidden because they are
34329 manipulated through Alpine in other ways.
34330 For example, colors are normally set using the Setup/Kolors screen and
34331 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
34332 the Setup/AddressBooks screen, so there is little reason to edit these directly.
34333 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
34334 the Add, Delete, and Rename commands in the FOLDER LIST screen,
34335 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
34336 internally by Alpine and not set directly by the user.
34338 <UL>   
34339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34340 </UL><P>
34341 &lt;End of help on this topic&gt;
34342 </BODY>
34343 </HTML>
34344 ====== h_config_disable_signature_edit =====
34345 <HTML>
34346 <HEAD>
34347 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
34348 </HEAD>
34349 <BODY>
34350 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
34352 If set, this disables the editing of signature files from within
34353 the Setup/Config screen.
34355 <UL>   
34356 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34357 </UL><P>
34358 &lt;End of help on this topic&gt;
34359 </BODY>
34360 </HTML>
34361 ====== h_config_disable_roles_templateedit =====
34362 <HTML>
34363 <HEAD>
34364 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
34365 </HEAD>
34366 <BODY>
34367 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
34369 If set, this disables the editing of template files within the
34370 Role setup screen.
34372 <UL>   
34373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34374 </UL><P>
34375 &lt;End of help on this topic&gt;
34376 </BODY>
34377 </HTML>
34378 ====== h_config_disable_roles_sigedit =====
34379 <HTML>
34380 <HEAD>
34381 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
34382 </HEAD>
34383 <BODY>
34384 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
34386 If set, this disables the editing of signature files within the
34387 Role setup screen.
34389 <UL>   
34390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34391 </UL><P>
34392 &lt;End of help on this topic&gt;
34393 </BODY>
34394 </HTML>
34395 ====== h_config_disable_roles_setup =====
34396 <HTML>
34397 <HEAD>
34398 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
34399 </HEAD>
34400 <BODY>
34401 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
34403 If set, this disables the Setup/Rules/Roles command.
34405 <UL>   
34406 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34407 </UL><P>
34408 &lt;End of help on this topic&gt;
34409 </BODY>
34410 </HTML>
34411 ====== h_config_disable_pipes_in_templates =====
34412 <HTML>
34413 <HEAD>
34414 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
34415 </HEAD>
34416 <BODY>
34417 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
34419 By default, if a template file name is followed by a vertical bar (|) then
34420 that causes the file to be executed to produce the text for the template.
34421 If this feature is set, then this is not allowed.
34423 <UL>   
34424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34425 </UL><P>
34426 &lt;End of help on this topic&gt;
34427 </BODY>
34428 </HTML>
34429 ====== h_config_disable_pipes_in_sigs =====
34430 <HTML>
34431 <HEAD>
34432 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
34433 </HEAD>
34434 <BODY>
34435 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
34437 By default, if a signature file name is followed by a vertical bar (|) then
34438 that causes the file to be executed to produce the text for the signature.
34439 If this feature is set, then this is not allowed.
34441 <UL>   
34442 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34443 </UL><P>
34444 &lt;End of help on this topic&gt;
34445 </BODY>
34446 </HTML>
34447 ====== h_config_disable_password_cmd =====
34448 <HTML>
34449 <HEAD>
34450 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
34451 </HEAD>
34452 <BODY>
34453 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
34455 If set, then the Setup/Newpassword command is disabled.
34457 <UL>   
34458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34459 </UL><P>
34460 &lt;End of help on this topic&gt;
34461 </BODY>
34462 </HTML>
34463 ====== h_config_disable_password_caching =====
34464 <HTML>
34465 <HEAD>
34466 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
34467 </HEAD>
34468 <BODY>
34469 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
34471 Normally, loginname/password combinations are cached in Alpine so that
34472 you do not have to enter the same password more than once in a session.
34473 A disadvantage to this approach is that the password must be stored in
34474 the memory image of the running Alpine in order that it can be re-used.
34475 In the event that Alpine crashes and produces a core dump, and that core
34476 dump is readable by others, the loginname and password could be read
34477 from the core dump.
34479 If this feature is set, then the passwords will not be cached and you
34480 will have to retype the password whenever Alpine needs it.
34481 Even with this feature set there is still some chance that the core
34482 file will contain a password, so care should be taken to make the
34483 core files unreadable.
34485 NOTE: If PASSFILE caching is enabled, this does not disable it.
34486 That is a separate and independent feature.
34487 <UL>   
34488 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34489 </UL><P>
34490 &lt;End of help on this topic&gt;
34491 </BODY>
34492 </HTML>
34493 ====== h_config_disable_password_file_saving =====
34494 <HTML>
34495 <HEAD>
34496 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
34497 </HEAD>
34498 <BODY>
34499 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
34501 <P> This feature disables caching of passwords, even if your version of Alpine allows
34502 saving passwords. For MAC OS users saving passwords is done using the Apple Key Chain, for
34503 Windows users caching passwords is done using the internal Windows Credentials, and for
34504 other users this is done by using the password file. In this feature, the phrase
34505 &quot;password file&quot; is a misnomer and represents the way in which your system
34506 stores passwords.
34509 Specifically, this feature changes the behavior of Alpine when a login name and password combination
34510 for a specific server is not found in the password file. The default behavior is that
34511 Alpine will ask the user if they wish to save this information in the password file for future
34512 use. It is assumed that if a user created a password file it is because they intend
34513 to use it, but in some instances a user might want to save some passwords and not others.
34514 In this case, enabling this feature will make Alpine not add any more passwords to the
34515 password file and will only use the passwords that it already saved. If you wish to allow
34516 Alpine to save more passwords in the password file, disable this feature.
34518 <P> Regardless of which method Alpine uses to store passwords, this is done in a secure
34519 way when compiled with OpenSSL or LibreSSL. This is very likely to be your version, and
34520 you can check this by reading the encryption features
34521 <A HREF="X-Alpine-Config:">supported</A> by Alpine.
34524 <UL>   
34525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34526 </UL><P>
34527 &lt;End of help on this topic&gt;
34528 </BODY>
34529 </HTML>
34530 ====== h_config_disable_kb_lock =====
34531 <HTML>
34532 <HEAD>
34533 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
34534 </HEAD>
34535 <BODY>
34536 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
34538 If set, then the Keyboard Lock command is removed from the MAIN MENU.
34540 <UL>   
34541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34542 </UL><P>
34543 &lt;End of help on this topic&gt;
34544 </BODY>
34545 </HTML>
34546 ====== h_config_disable_config_cmd =====
34547 <HTML>
34548 <HEAD>
34549 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
34550 </HEAD>
34551 <BODY>
34552 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
34554 If set, then the Setup/Config screen is disabled.
34556 <UL>   
34557 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34558 </UL><P>
34559 &lt;End of help on this topic&gt;
34560 </BODY>
34561 </HTML>
34562 ====== h_config_allow_chg_from =====
34563 <HTML>
34564 <HEAD>
34565 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
34566 </HEAD>
34567 <BODY>
34568 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
34570 This feature affects Alpine's handling of the &quot;From:&quot; header field
34571 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
34572 option.
34574 If this feature is set then the From line can be changed just like
34575 all the other header fields that can be changed.
34576 This feature defaults to <EM>ON</EM>.
34578 Even with this feature turned ON (the default) you will not be able 
34579 to change the From header unless you add it to your list of
34580 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
34581 You may also want to change the
34582 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
34583 if you want the From header to always show up in the composer without
34584 having to type the Rich Headers command first.
34586 Note that many sites restrict the use of this feature in order to
34587 reduce the chance of falsified addresses and misdirected mail.
34588 If you want to change the value of what gets included in the From header
34589 in messages you send
34590 look <A HREF="h_config_change_your_from">here</A> for a description.
34592 <UL>   
34593 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34594 </UL><P>
34595 &lt;End of help on this topic&gt;
34596 </BODY>
34597 </HTML>
34598 ====== h_config_disable_collate =====
34599 <HTML>
34600 <HEAD>
34601 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
34602 </HEAD>
34603 <BODY>
34604 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
34606 This is a hard to understand feature that should only be used in rare cases.
34607 Normally, the C function call
34609 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
34611 is used by Alpine.
34612 If you want to try turning it off,
34613 setting this feature will turn it off.
34614 This part of the locale has to do with the sort order
34615 of characters in your locale.
34617 <UL>   
34618 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34619 </UL><P>
34620 &lt;End of help on this topic&gt;
34621 </BODY>
34622 </HTML>
34623 ====== h_config_quell_attach_extra_prompt =====
34624 <HTML>
34625 <HEAD>
34626 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
34627 </HEAD>
34628 <BODY>
34629 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
34631 By default, when you attempt to view an attachment externally
34632 from the &quot;Attachment View&quot; screen, you are asked if you
34633 really want to view the selected attachment.
34636 If this feature is set, you will <B>not</B> be prompted to confirm
34637 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
34638 prompt. This feature was added for those wanting to preserve that
34639 behavior (along with 
34640 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
34643 <UL>   
34644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34645 </UL><P>
34646 &lt;End of help on this topic&gt;
34647 </BODY>
34648 </HTML>
34649 ====== h_config_quell_attach_ext_warn =====
34650 <HTML>
34651 <HEAD>
34652 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
34653 </HEAD>
34654 <BODY>
34655 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
34658 This feature suppresses the extra warning you can get when trying
34659 to view an attachment for which there is no mime-type match.  Turning
34660 on this feature will just run the program according to extension
34661 instead of first warning the user that it will run according to the
34662 file's extension.
34664 This feature can be used along side 
34665 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
34666 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
34668 <UL>   
34669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34670 </UL><P>
34671 &lt;End of help on this topic&gt;
34672 </BODY>
34673 </HTML>
34674 ====== h_config_mailcap_params =====
34675 <HTML>
34676 <HEAD>
34677 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
34678 </HEAD>
34679 <BODY>
34680 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
34682 If set, this will allow mailcap named parameter substitution to occur
34683 in mailcap entries.
34684 By default, this is turned off to prevent security problems that may occur
34685 with some incorrect mailcap configurations.
34686 For more information, see RFC1524 and look for "named parameters" in the
34687 text of the RFC.
34689 <UL>   
34690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34691 </UL><P>
34692 &lt;End of help on this topic&gt;
34693 </BODY>
34694 </HTML>
34695 ====== h_config_disable_shared =====
34696 <HTML>
34697 <HEAD>
34698 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
34699 </HEAD>
34700 <BODY>
34701 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
34703 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
34704 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
34705 will be disabled.
34706 The reason this feature exists is because there are some implementations
34707 of system password lookup routines that are very slow when presented with
34708 a long loginname that does not exist.
34709 This feature could be set to prevent the delay at startup time when the
34710 names above are searched for in the password file.
34712 <UL>   
34713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34714 </UL><P>
34715 &lt;End of help on this topic&gt;
34716 </BODY>
34717 </HTML>
34718 ====== h_config_hide_nntp_path =====
34719 <HTML>
34720 <HEAD>
34721 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
34722 </HEAD>
34723 <BODY>
34724 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
34726 Normally the Path header that Alpine generates when posting to a newsgroup
34727 contains the name of the computer from which the message is being sent and
34728 the user name.
34729 Some believe that this information is used by spammers.
34730 If this feature is set, that information will be replaced with the text
34732 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
34734 instead.
34736 It should be noted that many servers being connected to will still reveal
34737 the information that this feature attempts to protect.
34739 <UL>   
34740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34741 </UL><P>
34742 &lt;End of help on this topic&gt;
34743 </BODY>
34744 </HTML>
34745 ====== h_config_no_bezerk_zone =====
34746 <HTML>
34747 <HEAD>
34748 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
34749 </HEAD>
34750 <BODY>
34751 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
34753 POSIX mandates a timezone in UNIX mailbox format folder delimiters
34754 (the line that begins with From <SPACE>).
34755 Some versions of Berkeley mail have trouble with this, and don't recognize
34756 the line as a message delimiter.
34757 If this feature is set, the timezone will be left off the delimiter line.
34759 <UL>   
34760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34761 </UL><P>
34762 &lt;End of help on this topic&gt;
34763 </BODY>
34764 </HTML>
34765 ====== h_config_quell_domain_warn =====
34766 <HTML>
34767 <HEAD>
34768 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
34769 </HEAD>
34770 <BODY>
34771 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
34773 When your configuration is set up so that your domain name contains no dots,
34774 it is usually a configuration error.
34775 By default, Alpine will warn you about this when you start it up.
34776 You will see a warning message that looks like
34779 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
34782 If this feature is set, the warning is turned off.
34784 <UL>   
34785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34786 </UL><P>
34787 &lt;End of help on this topic&gt;
34788 </BODY>
34789 </HTML>
34790 ====== h_config_quell_imap_env =====
34791 <HTML>
34792 <HEAD>
34793 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
34794 </HEAD>
34795 <BODY>
34796 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
34798 In the MESSAGE INDEX screen, if the open folder is being accessed
34799 using IMAP, Alpine normally tries to paint the index lines on the screen
34800 as soon as the information arrives from the IMAP server.
34801 This means that the index information makes it onto the screen more quickly
34802 than it otherwise would.
34803 This sometimes results in behavior that bothers some users.
34804 For example, when paging to a new page of the index, it may be possible for
34805 the lines to be painted on the screen in a random order, rather than from
34806 top to bottom.
34809 Setting this feature causes Alpine to wait for all of the information
34810 to be gathered before it paints the index screen.
34811 Once it collects all of the information, the screen will be painted quickly
34812 from top to bottom.
34814 <UL>   
34815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34816 </UL><P>
34817 &lt;End of help on this topic&gt;
34818 </BODY>
34819 </HTML>
34820 ====== h_config_quell_news_env =====
34821 <HTML>
34822 <HEAD>
34823 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
34824 </HEAD>
34825 <BODY>
34826 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
34828 In the MESSAGE INDEX screen, if the open folder is being accessed
34829 using NNTP (News), Alpine normally tries to paint the index lines on the screen
34830 as soon as the information arrives from the NNTP server.
34831 This means that the index information makes it onto the screen more quickly
34832 than it otherwise would.
34833 This sometimes results in behavior that bothers some users.
34834 For example, when paging to a new page of the index, it may be possible for
34835 the lines to be painted on the screen in a random order, rather than from
34836 top to bottom.
34839 Setting this feature causes Alpine to wait for all of the information
34840 to be gathered before it paints the index screen.
34841 Once it collects all of the information, the screen will be painted quickly
34842 from top to bottom.
34844 <UL>   
34845 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34846 </UL><P>
34847 &lt;End of help on this topic&gt;
34848 </BODY>
34849 </HTML>
34850 ====== h_config_quell_content_id =====
34851 <HTML>
34852 <HEAD>
34853 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
34854 </HEAD>
34855 <BODY>
34856 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
34858 This feature changes the behavior of Alpine when sending messages.
34859 It is intended to work around a bug in Microsoft's Outlook XP mail user
34860 agent.
34861 As of this writing, Microsoft has acknowledged the bug but
34862 has not added it to the Knowledge Base.
34863 We have been told that there will be a post-SP1 hotfix for Outlook XP.
34864 This particular bug has bug fix number OfficeQFE:4781.
34865 The nature of the bug is that messages with attachments that
34866 contain a Content-ID header (which standard Alpine attachments do)
34867 do not show the attachment indicator (a paperclip) when viewed with
34868 Outlook XP.
34869 So the user has no indication that the message contains an attachment.
34872 If this feature is set then Alpine will remove most Content-ID headers
34873 before sending a message.
34874 If an attachment is of type MESSAGE, then the existing Content-ID headers
34875 inside the message will be left intact.
34876 This would only happen with Alpine if a message was forwarded as an attachment
34877 or if a message with a message attached was forwarded.
34878 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
34879 the Content-ID headers of the alternative parts will not be removed.
34882 Because the Content-ID header is a standard part of MIME it is possible
34883 that setting this feature will break something.
34884 For example, if an attachment has a Content-ID header that is necessary
34885 for the correct functioning of that attachment, it is possible that Alpine
34886 may remove that header when the attachment is forwarded.
34887 However, it seems fairly safe at this time.
34890 <UL>   
34891 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34892 </UL><P>
34893 &lt;End of help on this topic&gt;
34894 </BODY>
34895 </HTML>
34896 ====== h_config_winpos_in_config =====
34897 <HTML>
34898 <HEAD>
34899 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
34900 </HEAD>
34901 <BODY>
34902 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
34904 PC-Alpine only.
34907 Normally, PC-Alpine will store its window size and position in the
34908 Windows Registry.
34909 This is convenient if you want to use the same remote
34910 configuration from more than one PC.
34911 If you use multiple configuration files to start PC-Alpine, you may want
34912 to store the window size and position in the configuration file instead
34913 of in the Registry.
34914 Setting this feature causes the value to be stored in 
34915 <A HREF="h_config_window_position">Window-Position</A>.
34918 <UL>   
34919 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34920 </UL><P>
34921 &lt;End of help on this topic&gt;
34922 </BODY>
34923 </HTML>
34924 ====== h_config_quell_ssl_largeblocks =====
34925 <HTML>
34926 <HEAD>
34927 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
34928 </HEAD>
34929 <BODY>
34930 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
34932 PC-Alpine only.
34934 This feature changes the behavior of fetching messages
34935 and attachments so that the message data is fetched in chunks no larger
34936 than 12K bytes.
34937 This works around a bug in Microsoft's SSL/TLS support.
34938 Some versions of Microsoft SSL are not able to read full-sized (16K)
34939 SSL/TLS packets.
34940 Some servers will send such packets and this will
34941 cause PC-Alpine to crash with the error
34944 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
34947 Microsoft is aware of the problem and has developed a hotfix for it, it is
34948 discussed in article 300562 in the Microsoft Knowledge Base.
34950 <UL>   
34951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34952 </UL><P>
34953 &lt;End of help on this topic&gt;
34954 </BODY>
34955 </HTML>
34956 ====== h_config_quell_partial =====
34957 <HTML>
34958 <HEAD>
34959 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
34960 </HEAD>
34961 <BODY>
34962 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
34964 Partial fetching is a feature of the IMAP protocol.
34965 By default, Alpine
34966 will use partial fetching when copying the contents of a message or attachment
34967 from the IMAP server to Alpine.
34968 This means that the fetch will be done in many
34969 small chunks instead of one big chunk. The main benefit of this approach is
34970 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
34971 to stop the fetch early. In some cases partial fetching may cause a performance
34972 problem so that the fetching of data takes significantly longer when partial
34973 fetching is used. Turning on this feature will turn off partial fetching.
34975 <UL>   
34976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34977 </UL><P>
34978 &lt;End of help on this topic&gt;
34979 </BODY>
34980 </HTML>
34981 ====== h_config_quell_personal_name_prompt =====
34982 <HTML>
34983 <HEAD>
34984 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
34985 </HEAD>
34986 <BODY>
34987 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
34989 PC-Alpine only.  This feature quells the prompting for a 
34990 <A HREF="h_config_pers_name">personal name</A>.  This
34991 prompt normally happens before composing a message, and only happens when
34992 there is no personal name already set.
34994 <UL>   
34995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34996 </UL><P>
34997 &lt;End of help on this topic&gt;
34998 </BODY>
34999 </HTML>
35000 ====== h_config_quell_user_id_prompt =====
35001 <HTML>
35002 <HEAD>
35003 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
35004 </HEAD>
35005 <BODY>
35006 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
35008 PC-Alpine only.  This feature quells the prompting for a 
35009 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
35010 if the information can be obtained from the login name used
35011 to open the INBOX.  Normally, this prompt happens before composing
35012 a message, and only happens when there is no user-id already set
35013 in the configuration.
35015 With this feature set, composing a message is only possible after
35016 establishing a connection to the INBOX.
35018 <UL>   
35019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35020 </UL><P>
35021 &lt;End of help on this topic&gt;
35022 </BODY>
35023 </HTML>
35024 ====== h_config_save_aggregates =====
35025 <HTML>
35026 <HEAD>
35027 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
35028 </HEAD>
35029 <BODY>
35030 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
35032 This feature will optimize an aggregate copy operation, if
35033 possible, by issuing a single IMAP <EM>COPY</EM> command with a
35034 list of the messages to be copied.
35035 This feature is set by default.
35036 This may reduce network traffic and elapsed time for the Save.
35037 <EM>However, many IMAP servers (including the UW IMAP server) do
35038 not preserve the order of messages when this optimization is applied.</EM>
35039 If this feature is not set, 
35040 Alpine will copy each message individually and the order of the messages
35041 will be preserved.
35043 <UL>   
35044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35045 </UL><P>
35046 &lt;End of help on this topic&gt;
35047 </BODY>
35048 </HTML>
35049 ====== h_config_use_system_translation =====
35050 <HTML>
35051 <HEAD>
35052 <TITLE>FEATURE: Use System Translation</TITLE>
35053 </HEAD>
35054 <BODY>
35055 <H1>FEATURE: Use System Translation</H1>
35057 UNIX Alpine only.
35059 Alpine normally uses its own internal software to convert between the multi-byte
35060 representation of characters and the Unicode representation of those
35061 same characters.
35062 It converts from the multi-byte characters your keyboard produces to Unicode,
35063 and from Unicode to the multi-byte characters your display expects.
35064 Alpine also uses its own internal software to decide how much space on
35065 the screen a particular Unicode character will occupy.
35068 Setting this feature tells Alpine to use the system-supplied routines to
35069 perform these tasks instead.
35070 In particular there are three tasks and three system routines that will
35071 be used for these tasks.
35074 To convert from multi-byte to Unicode the routine
35077 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
35080 is used.
35081 To convert from Unicode to multi-byte the routine
35084 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
35087 is used.
35088 And to find the screen width a particular Unicode character will
35089 occupy the routine used is
35092 <CENTER><SAMP>wcwidth</SAMP></CENTER>
35095 This feature has been only lightly tested.
35096 The internal routines should normally be used unless you run into
35097 a problem that you think may be solved by using the system routines.
35098 Note that your environment needs to be set up for these
35099 routines to work correctly.
35100 In particular, the LANG or LC_CTYPE variable in your environment will
35101 need to be set.
35104 <UL>   
35105 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35106 </UL><P>
35107 &lt;End of help on this topic&gt;
35108 </BODY>
35109 </HTML>
35110 ====== h_config_suspend_spawns =====
35111 <HTML>
35112 <HEAD>
35113 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
35114 </HEAD>
35115 <BODY>
35116 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
35118 This feature affects Alpine's behavior when process suspension is enabled
35119 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
35120 temporarily interact with the operating system command &quot;shell&quot; 
35121 without
35122 quitting Alpine, and then subsequently resume the still-active Alpine session.
35125 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
35126 is set and subsequently the Ctrl-Z key
35127 is pressed, Alpine will normally suspend itself and return temporary control
35128 to Alpine's parent shell process.  However, if this feature is set, Alpine
35129 will instead create an inferior subshell process.  This is useful when the
35130 parent process is not intended to be used interactively.  Examples include
35131 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
35132 or via a menu system.<P>
35134 Note that one typically resumes a suspended Alpine by entering the Unix
35135 &quot;fg&quot; command, but if this feature is set, it will be necessary to
35136 enter the &quot;exit&quot; command instead.
35138 <UL>   
35139 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35140 </UL><P>
35141 &lt;End of help on this topic&gt;
35142 </BODY>
35143 </HTML>
35144 ====== h_config_8bit_smtp =====
35145 <HTML>
35146 <HEAD>
35147 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
35148 </HEAD>
35149 <BODY>
35150 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
35152 This feature affects Alpine's behavior when sending mail.
35153 By default, this feature is set.
35154 Internet standards
35155 require that all electronic mail messages traversing the global Internet
35156 consist of 7bit ASCII characters unless a pair of cooperating mail 
35157 transfer agents explicitly agree to allow 8bit messages.  In general, 
35158 then, exchanging messages in non-ASCII characters requires MIME encoding.
35160 However, there are now Internet standards that allow for unencoded 8bit
35161 exchange of messages between cooperating systems.  When this feature is set
35162 Alpine will try to negotiate unencoded 8bit transmission during the
35163 sending process.  Should the negotiation fail, Alpine will fall back to its
35164 ordinary encoding rules. 
35166 Note, this feature relies on your system's mail transport agent or
35167 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
35168 having the negotiation mechanism introduced in
35169 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
35170 &quot;8BITMIME&quot;. 
35172 ESMTP allows for graceful migration to upgraded mail transfer agents, but
35173 it is possible that this feature might cause problems for some servers. 
35174 <P><UL>
35175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35176 </UL>
35177 <P>&lt;End of help on this topic&gt;
35178 </BODY>
35179 </HTML>
35180 ====== h_config_8bit_nntp =====
35181 <HTML>
35182 <HEAD>
35183 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
35184 </HEAD>
35185 <BODY>
35186 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
35188 This feature affects Alpine's behavior when posting news.  
35192 The Internet standard for exchanging USENET news messages (RFC-1036)
35193 specifies that USENET messages should conform to Internet mail standards
35194 and contain only 7bit characters, but much of the news transport software
35195 in use today is capable of successfully sending messages containing 8bit
35196 characters.  Hence, many people believe that it is appropriate to send 8bit
35197 news messages without any MIME encoding.
35201 Moreover, there is no Internet standard for explicitly negotiating 8bit
35202 transfer, as there is for Internet email.  Therefore, Alpine provides the
35203 option of posting unencoded 8bit news messages, though not as the default.
35204 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
35205 postings that contain 8bit characters. 
35209 Note, articles may cross a path or pass through news transport software
35210 that is unsafe or even hostile to 8bit characters.  At best this will only
35211 cause the posting to become garbled.  The safest way to transmit 8bit
35212 characters is to leave Alpine's MIME encoding turned on, but recipients
35213 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
35214 messages.
35216 &lt;End of help on this topic&gt;
35217 </BODY>
35218 </HTML>
35219 ====== h_config_mark_for_cc =====
35220 <HTML>
35221 <HEAD>
35222 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
35223 </HEAD>
35224 <BODY>
35225 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
35227 This feature affects Alpine's MESSAGE INDEX display.
35228 By default, a '+' is displayed in the first column if the
35229 message is addressed directly to you.
35230 When this feature is set and the message is not addressed to you, then a
35231 '-' character is displayed if the message is instead Cc'd directly
35232 to you.
35235 <UL>   
35236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35237 </UL><P>
35238 &lt;End of help on this topic&gt;
35239 </BODY>
35240 </HTML>
35241 ====== h_config_tab_uses_unseen =====
35242 <HTML>
35243 <HEAD>
35244 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
35245 </HEAD>
35246 <BODY>
35247 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
35249 This feature affects Alpine's behavior when using the TAB
35250 <A HREF="h_common_nextnew">NextNew Command</A>
35251 to move from one folder to the next.
35252 Alpine's usual behavior is to search for folders
35253 with <EM>Recent</EM> messages in them.
35254 Recent messages are messages that have arrived since the last time the
35255 folder was opened.
35258 Setting this feature causes Alpine to search for <EM>Unseen</EM>
35259 messages instead of Recent messages.
35260 Unseen messages remain Unseen until you view them (or flag then as Seen with
35261 the <A HREF="h_common_flag">Flag Command</A>).
35262 Setting this feature allows you to locate messages you have not read
35263 instead of only recently received messages.
35264 When this feature is set, the feature
35265 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
35266 will have no effect, so the checking may be slower.
35269 Another reason why you might want to use this feature is that Alpine sometimes
35270 opens folders implicitly behind the scenes, and this clears the
35271 Recent status of all messages in the folder.
35272 One example where this happens is when Saving or filtering a
35273 message to another folder.
35274 If that message has some <A HREF="h_config_keywords">keywords</A>
35275 set, then because of some shortcomings
35276 in the IMAP specification, the best way to ensure that those keywords are
35277 still set in the saved copy of the message is to open the folder and
35278 set the keywords explicitly.
35279 Because this clears the Recent status of all messages in that folder the
35280 folder will not be found by the NextNew command unless this feature is set.
35283 &lt;End of help on this topic&gt;
35284 </BODY>
35285 </HTML>
35286 ====== h_config_tab_new_only =====
35287 <HTML>
35288 <HEAD>
35289 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
35290 </HEAD>
35291 <BODY>
35292 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
35294 This feature affects Alpine's behavior when using the TAB key to move from
35295 one message to the next.  Alpine's usual behavior is to select the next
35296 unread message or message flagged as "Important".
35300 Setting this feature causes Alpine to skip the messages flagged as important,
35301 and select unread messages exclusively.  Tab behavior when there are no
35302 new messages left to select remains unchanged.
35304 &lt;End of help on this topic&gt;
35305 </BODY>
35306 </HTML>
35307 ====== h_config_warn_if_subj_blank =====
35308 <HTML>
35309 <HEAD>
35310 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
35311 </HEAD>
35312 <BODY>
35313 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
35315 This feature affects Alpine's behavior when you send a message being
35316 composed.
35317 If this option is set, Alpine will check to see if the message about to be sent
35318 has a subject or not.
35319 If not, you will be asked if you want to send the message anyway.
35322 <UL>   
35323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35324 </UL><P>
35325 &lt;End of help on this topic&gt;
35326 </BODY>
35327 </HTML>
35328 ====== h_config_warn_if_fcc_blank =====
35329 <HTML>
35330 <HEAD>
35331 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
35332 </HEAD>
35333 <BODY>
35334 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
35336 This feature affects Alpine's behavior when you send a message being
35337 composed.
35338 If this option is set, Alpine will check to see if the message about to be sent
35339 has an Fcc or not.
35340 If not, you will be asked if you want to send the message anyway.
35343 <UL>   
35344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35345 </UL><P>
35346 &lt;End of help on this topic&gt;
35347 </BODY>
35348 </HTML>
35349 ====== h_config_warn_if_no_to_or_cc =====
35350 <HTML>
35351 <HEAD>
35352 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
35353 </HEAD>
35354 <BODY>
35355 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
35357 This feature affects Alpine's behavior when you send a message being
35358 composed.
35359 If this option is set, Alpine will check to see if the message about to be sent
35360 has either a To address, a Cc address, or a Newsgroup.
35361 If none of these is set,
35362 you will be asked if you want to send the message anyway.
35365 This feature is closely related to
35366 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
35367 Alpine will normally ask if you want to copy a message only to the Fcc.
35368 This feature also applies to cases where there is a Bcc but still no To, Cc,
35369 or Newsgroup.
35370 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
35371 message with only an Fcc, then you won't be asked about sending with
35372 a blank To and Cc and Newsgroups header even if this feature is set.
35373 Similarly, if you have already been asked if you want to send to the Fcc
35374 only and you have answered Yes, then you won't be asked again about sending with
35375 blank To, Cc, and Newsgroups headers even if this feature is set.
35378 <UL>   
35379 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35380 </UL><P>
35381 &lt;End of help on this topic&gt;
35382 </BODY>
35383 </HTML>
35384 ====== h_config_quell_dead_letter =====
35385 <HTML>
35386 <HEAD>
35387 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
35388 </HEAD>
35389 <BODY>
35390 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
35392 This feature affects Alpine's behavior when you cancel a message being
35393 composed.  Alpine's usual behavior is to write the canceled message to
35394 a file named 
35395 <!--chtml if pinemode="os_windows"-->
35396 &quot;DEADLETR&quot;,
35397 <!--chtml else-->
35398 &quot;dead.letter&quot; in your home directory,
35399 <!--chtml endif-->
35400 overwriting any previous message. Under
35401 some conditions (some routine), this can introduce a noticeable delay.
35402 Setting this feature will cause Alpine NOT to write canceled compositions
35403 into the file.
35405 NOTE: Enabling this feature means NO record of canceled messages is
35406 maintained.
35408 This feature affects the newer option
35409 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
35410 number of dead letter files to keep around.
35411 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
35413 <UL>   
35414 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35415 </UL><P>
35416 &lt;End of help on this topic&gt;
35417 </BODY>
35418 </HTML>
35419 ====== h_config_quell_beeps =====
35420 <HTML>
35421 <HEAD>
35422 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
35423 </HEAD>
35424 <BODY>
35425 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
35427 This feature affects Alpine's behavior when it displays status message
35428 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
35429 will not affect the display of such messages, but will cause those that
35430 emit a beep to become silent.
35433 <UL>   
35434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35435 </UL><P>
35436 &lt;End of help on this topic&gt;
35437 </BODY>
35438 </HTML>
35439 ====== h_config_suppress_user_agent =====
35440 <HTML>
35441 <HEAD>
35442 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
35443 </HEAD>
35444 <BODY>
35445 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
35447 If this feature is set then Alpine will not generate a
35448 <CODE>User-Agent</CODE> header in outgoing messages.
35450 <UL>   
35451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35452 </UL><P>
35453 &lt;End of help on this topic&gt;
35454 </BODY>
35455 </HTML>
35456 ====== h_config_quell_lock_failure_warnings =====
35457 <HTML>
35458 <HEAD>
35459 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
35460 </HEAD>
35461 <BODY>
35462 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
35464 This feature affects Alpine's behavior when it encounters a problem
35465 acquiring a mail folder lock.  Typically, a secondary file associated
35466 with the mail folder being opened is created as part of the locking
35467 process.  On some systems, such file creation has been administratively
35468 precluded by the system configuration.
35470 Alpine issues a warning when such failures occur, which can become bothersome
35471 if the system is configured to disallow such actions.  Setting this
35472 feature causes Alpine to remain silent when this part of lock creation fails.
35474 WARNING: systems that have been configured in a way that precludes locking
35475 introduce some risk of mail folder corruption when more than one program
35476 attempts to modify the mail folder.  This is most likely to occur to one's
35477 INBOX or other incoming message folder. 
35479 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
35481 <UL>   
35482 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35483 </UL><P>
35484 &lt;End of help on this topic&gt;
35485 </BODY>
35486 </HTML>
35487 ====== h_config_enable_role_take ======
35488 <HTML>
35489 <HEAD>
35490 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
35491 </HEAD>
35492 <BODY>
35493 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
35495 Normally, the Take command takes addresses from a message and helps you
35496 put them into your Address Book.
35497 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
35498 you may find it useful
35499 to be able to Take information from a message's headers and put it into
35500 a new Rule.
35501 When this feature is set, you will be given an extra prompt that gives
35502 you the choice to Take into the Address Book or Take into a rule.
35503 <P><UL>
35504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35505 </UL>
35507 &lt;End of help on this topic&gt;
35508 </BODY>
35509 </HTML>
35510 ====== h_config_enable_take_export ======
35511 <HTML>
35512 <HEAD>
35513 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
35514 </HEAD>
35515 <BODY>
35516 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
35518 Normally, the Take command takes addresses from a message and helps you
35519 put them into your Address Book.
35520 When this feature is set, you will be given an extra prompt that gives you
35521 the choice to Take addresses into a file instead of your Address
35522 Book.
35523 Only the user@domain_name part of the address is put in the file.
35524 <P><UL>
35525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35526 </UL>
35528 &lt;End of help on this topic&gt;
35529 </BODY>
35530 </HTML>
35531 ====== h_config_quell_folder_internal_msg ======
35532 <HTML>
35533 <HEAD>
35534 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
35535 </HEAD>
35536 <BODY>
35537 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
35539 This feature determines whether or not Alpine will create 
35540 &quot;pseudo messages&quot; in folders that are in standard Unix or 
35541 MMDF format. <P> 
35543 Alpine will normally create these pseudo messages when they are not already
35544 present in a standard Unix or MMDF folder.  Their purpose is to record
35545 certain mailbox state data needed for correct IMAP and POP server
35546 operation, and also for Alpine to be able to mark messages as Answered when
35547 the Reply has been postponed.<P>
35549 Sites that do not use IMAP/POP for remote mail access, and that need to
35550 support mail tools that are adversely affected by the presence of the
35551 pseudo-messages (e.g. some mail notification tools) may enable this
35552 feature to tell Alpine not to create them.  Note that Alpine's 
35553 &quot;Answered&quot; flag
35554 capability will be adversely affected if this is done.<P>
35556 Note too that, even if this feature is enabled, Alpine will not remove
35557 pseudo-messages when it encounters them (e.g. those created by UW's imapd
35558 or ipopd servers.) This feature has no effect on folders that are not in
35559 standard Unix or MMDF format, as pseudo-messages are not needed in the
35560 other formats to record mailbox state information.
35561 <P><UL>
35562 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35563 </UL>
35565 &lt;End of help on this topic&gt;
35566 </BODY>
35567 </HTML>
35568 ====== h_config_mulnews_as_typed ======
35569 <HTML>
35570 <HEAD>
35571 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
35572 </HEAD>
35573 <BODY>
35574 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
35576 This feature will be of little use to most users.
35577 It has no effect unless the feature
35578 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
35579 is set.
35581 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
35582 then the setting of this feature may have an effect on the names of the
35583 newsrc files used.
35584 Normally, the name of the news server will be canonicalized before it is
35585 used in the newsrc file name.
35586 For example, if you type the news server name
35589 <CENTER><SAMP>servername</SAMP></CENTER>
35592 it is likely that the canonical name will be something like
35595 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
35598 Or it may be the case that
35601 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
35604 is really an alias (a DNS CNAME) for
35607 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
35610 If this feature is not set, then the canonicalized names will be used.
35611 If this feature is set, then the name you typed in (or put in your
35612 configuration) will be used.
35614 <P><UL>
35615 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35616 </UL>
35618 &lt;End of help on this topic&gt;
35619 </BODY>
35620 </HTML>
35621 ====== h_config_quell_empty_dirs ======
35622 <HTML>
35623 <HEAD>
35624 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
35625 </HEAD>
35626 <BODY>
35627 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
35629 This feature causes Alpine to remove from the display any directories
35630 that do not contain at least one file or directory.  This can be useful
35631 to prevent overly cluttered folder lists when a collection is stored on
35632 a server that treats all names as both a folder and a directory.
35635 Note, enabling this feature can cause surprising behavior!  For example,
35636 you can still use Add to create a directory, but unless you immediately
35637 enter that directory and create a folder, that newly created directory
35638 may not be displayed next time you enter the folder list.
35641 The description above is not quite correct.
35642 Only directories which potentially may hold messages are hidden if empty.
35643 That is, a directory which is really just a directory and is not selectable
35644 as a folder will not be hidden.
35645 Such directories can occur on servers that treat most names as both a folder
35646 and a directory.
35647 These directories are typically created implicitly when a folder is created
35648 inside a directory that does not yet exist.
35651 <UL>   
35652 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35653 </UL><P>
35654 &lt;End of help on this topic&gt;
35655 </BODY>
35656 </HTML>
35657 ====== h_config_termcap_wins =====
35658 <HTML>
35659 <HEAD>
35660 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
35661 </HEAD>
35662 <BODY>
35663 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
35665 This feature may affect Alpine's low-level input routines.  Termcap (or
35666 terminfo, depending on how your copy of Alpine was compiled and linked)
35667 is the name of the database that describes terminal capabilities.  In
35668 particular, it describes the sequences of characters that various keys
35669 will emit.
35672 An example would be the Up Arrow key on the keyboard.  Up
35673 Arrow is not a distinct character on most Unix systems.  When you press
35674 the Up Arrow key a short sequence of characters are produced.  This
35675 sequence is supposed to be described in the termcap database by the
35676 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
35677 are using terminfo instead of termcap).
35680 By default, Alpine defines some terminal
35681 escape sequences that are commonly used.  For example, the sequence
35682 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
35683 &quot;ESC&nbsp;[&nbsp;A&quot;
35684 is also recognized as an Up Arrow key.  These are chosen because common
35685 terminals like VT100's or ANSI standard terminals produce these
35686 sequences when you press the Up Arrow key.
35689 If your system's termcap
35690 (terminfo) database assigns some other function to the sequence
35691 &quot;ESC&nbsp;O&nbsp;A&quot;
35692 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
35693 database assigns a sequence that doesn't begin with an escape
35694 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
35695 This usually works fine
35696 because most terminals emit the escape sequences that Alpine has defined
35697 by default.  We have also found that it is usually better to have these
35698 defaults take precedence over the definitions contained in the database
35699 because the defaults are more likely to be correct than the database.
35702 There are some terminals where this breaks down.  If you want Alpine to
35703 believe the definitions given in your termcap (terminfo) database in
35704 preference to the defaults the Alpine itself sets up, then you may turn
35705 this feature on.  Then, sequences of characters that are defined in
35706 both termcap (terminfo) and in Alpine's set of defaults will be
35707 interpreted the way that termcap (terminfo) says they should be
35708 interpreted.  Also, if your terminal capabilities database assigns a
35709 sequence that doesn't begin with escape, it will not be ignored.
35712 <UL>   
35713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35714 </UL><P>
35715 &lt;End of help on this topic&gt;
35716 </BODY>
35717 </HTML>
35718 ====== h_config_cruise_mode =====
35719 <HTML>
35720 <HEAD>
35721 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
35722 </HEAD>
35723 <BODY>
35724 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
35726 This feature affects Alpine's behavior when you hit the
35727 &quot;Space&nbsp;Bar&quot; at
35728 the end of a displayed message.  Typically, Alpine complains that the end
35729 of the text has already been reached.  Setting this feature causes such
35730 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
35731 taking you to the next &quot;interesting&quot; message,
35732 or scanning ahead to the 
35733 next incoming folder with &quot;interesting&quot; messages.
35736 <UL>   
35737 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35738 </UL><P>
35739 &lt;End of help on this topic&gt;
35740 </BODY>
35741 </HTML>
35742 ====== h_config_cruise_mode_delete =====
35743 <HTML>
35744 <HEAD>
35745 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
35746 </HEAD>
35747 <BODY>
35748 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
35750 This feature modifies the behavior of Alpine's 
35751 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
35752 Setting this feature causes Alpine to implicitly delete read
35753 messages when it moves on to display the next &quot;interesting&quot; message.
35755 NOTE: Beware when enabling this feature AND the 
35756 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
35757 feature.
35759 <UL>   
35760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35761 </UL><P>
35762 &lt;End of help on this topic&gt;
35763 </BODY>
35764 </HTML>
35765 ====== h_config_slash_coll_entire =====
35766 <HTML>
35767 <HEAD>
35768 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
35769 </HEAD>
35770 <BODY>
35771 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
35773 The slash (/) command is available from the MESSAGE INDEX screen when
35774 the folder is sorted by either Threads or OrderedSubject, and the
35775 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
35776 is set to something other than &quot;none&quot;.
35777 Normally, the slash command Collapses or Expands the subthread that
35778 starts at the currently highlighted message, if any.
35779 If this option is set, then the slash command Collapses or Expands the
35780 <EM>entire</EM> current thread instead of just the subthread.
35781 The current thread is simply the top-level thread that contains the
35782 current message.
35785 <UL>   
35786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35787 </UL><P>
35788 &lt;End of help on this topic&gt;
35789 </BODY>
35790 </HTML>
35791 ====== h_config_color_thrd_import =====
35792 <HTML>
35793 <HEAD>
35794 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
35795 </HEAD>
35796 <BODY>
35797 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
35799 This option affects only the THREAD INDEX screen.
35800 Whether or not you ever see a THREAD INDEX screen depends on the setting
35801 of the configuration option
35802 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
35803 and on the sort order of the index.
35806 If a message within a thread is flagged as Important
35807 and this option is set, then
35808 the entire line in the THREAD INDEX will be colored the color of the
35809 Index-important Symbol, which can be set using the
35810 <A HREF="h_color_setup">Setup Kolor</A> screen.
35813 <UL>   
35814 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35815 </UL><P>
35816 &lt;End of help on this topic&gt;
35817 </BODY>
35818 </HTML>
35819 ====== h_config_allow_goto =====
35820 <HTML>
35821 <HEAD>        
35822 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
35823 </HEAD>
35824 <BODY>
35825 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
35827 This feature modifies the behavior of Alpine's file browser.  Setting this
35828 feature causes Alpine to offer the "G Goto" command in the file browser.
35829 That is the default.
35833 The Goto command allows you to explicitly type in the desired directory.
35835 &lt;End of help on this topic&gt;
35836 </BODY></HTML>
35837 ====== h_config_add_ldap =====
35838 <HTML>
35839 <HEAD>
35840 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
35841 </HEAD>
35842 <BODY>
35843 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
35845 If both the Directory option
35846 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
35847 and this feature are set,
35848 then when an implicit directory lookup is done from the
35849 composer you will automatically be prompted to add the result of the
35850 directory lookup to your address book.
35852 <UL>   
35853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35854 </UL><P>
35855 &lt;End of help on this topic&gt;
35856 </BODY>
35857 </HTML>
35858 ===== h_patterns_compat_behavior =====
35859 <HTML>
35860 <HEAD>
35861 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
35862 </HEAD>
35863 <BODY>
35864 <H1>Rules Behavior Changes in Pine 4.50</H1>
35866 In Alpine, Rules that contain unrecognized elements
35867 are ignored.
35868 In most cases, the unrecognized elements will be something that was
35869 added as a new Rules feature in a later version of Alpine.
35870 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
35871 ignore rules that contained unrecognized elements.
35872 For example, a new element of Rules that was added in Pine 4.50 is
35873 Age interval.
35874 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
35875 all messages older than a week red.
35876 Now, if you run Pine 4.44 using that same configuration file, it will not
35877 recognize the Age interval and so will just ignore it.
35878 That means that all messages will match that rule so all messages will
35879 be colored red when using Pine version 4.44.
35882 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
35883 However, since the behavior still exists in versions prior to Pine 4.50 and
35884 since Filtering is a potentially destructive operation, another measure
35885 was taken to attempt to avoid unintentional Filtering of messages.
35886 The first time that you run Alpine or a Pine that is version 4.50 or greater,
35887 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
35888 will be copied to a new Filters configuration variable
35889 with a different name (&quot;Patterns-Filters2&quot;).
35890 From then on, Alpine will continue to use the new
35891 variable.
35892 Of course, Pine version 4.44 or lower will continue to use the old
35893 variable.
35894 That means that if you are using Alpine
35895 and also using a version of Pine that is older than 4.50, they will not
35896 share the configuration information about Filters.
35897 If you make a change in one version you won't see it in the other version.
35900 Since Scoring can be used to trigger Filtering, the same thing has been
35901 done for Score rules.
35902 The old configuration variable name is (&quot;Patterns-Scores&quot;)
35903 and the new name is (&quot;Patterns-Scores2&quot;).
35904 The same is not true of Role, Indexcolor, and Other rules that are
35905 thought to be less harmful when a mistake is made.
35908 &lt;End of help on this topic&gt;
35909 </BODY>
35910 </HTML>
35911 ======= h_config_filt_opts_sentdate =======
35912 <HTML>
35913 <HEAD>
35914 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
35915 </HEAD>
35916 <BODY>
35917 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
35919 By default, the Age interval of a Pattern uses a message's time of
35920 arrival to compute the age of the message.
35921 If this feature is set, the date in the message's Date header will
35922 be used instead.
35924 &lt;End of help on this topic&gt;
35925 </BODY>
35926 </HTML>
35927 ======= h_config_filt_opts_notdel =======
35928 <HTML>
35929 <HEAD>
35930 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
35931 </HEAD>
35932 <BODY>
35933 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
35935 If this option is set then a message will be moved into the
35936 specified folder only if it is not marked for deletion.
35937 This is useful if you have multiple Alpine sessions running
35938 simultaneously and you don't want messages to be filtered into a
35939 folder more than once.
35940 It is also useful if you want to filter
35941 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
35942 This method is not foolproof.
35943 There may be cases where a message
35944 gets marked deleted and so it is never filtered into the folder.
35945 For example, if you deleted it in another Alpine session or another mail
35946 program that didn't use the filtering rule.
35948 This option has no effect if the Filter Action is not set to Move.
35950 &lt;End of help on this topic&gt;
35951 </BODY>
35952 </HTML>
35953 ======= h_config_filt_opts_nonterm =======
35954 <HTML>
35955 <HEAD>
35956 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
35957 </HEAD>
35958 <BODY>
35959 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
35961 If this option is set then this is a non-terminating rule.
35962 Usually, for each message, Alpine searches through the Filter Rules until
35963 a match is found and then it performs the action associated with that rule.
35964 Rules following the match are not considered.
35965 If this option is set then the search for matches will continue at the next
35966 rule.
35968 If a non-terminating rule matches then the actions associated with
35969 that rule, except for any implied deletion of the message, are performed
35970 before the match for the next rule is checked.
35971 For example, if the non-terminating rule sets the Important status, then that
35972 status will be set when the next rule is considered.
35973 However, if the non-terminating rule Moves the message, the message will
35974 actually be copied instead of copied and deleted so that it is still there
35975 for the next rule.
35976 A moved message is deleted after all the relevant rules have been checked.
35977 The name of the &quot;Move&quot; action is confusing in this case because
35978 a single message can be moved to more than one folder.
35979 It turns the Move into a Copy instead, but it is still followed by a deletion
35980 at the end.
35982 This option may be useful if you want to have a single message filtered to
35983 two different folders because it matches two different Patterns.
35984 For example, suppose you normally filter messages to a particular mailing
35985 list into one folder, and messages addressed directly to you into a second
35986 folder.
35987 If a message is sent to both you and the list (and you can tell that by
35988 looking at the headers of the message) this option may give you a convenient
35989 way to capture a copy to each folder.
35990 (It may also cause you to capture two copies to each folder,
35991 depending on whether your mail system delivers one or two copies of the
35992 message to you and on how the list works.)
35994 &lt;End of help on this topic&gt;
35995 </BODY>
35996 </HTML>
35997 ====== h_command_external_browser =====
35998 <HTML>
35999 <HEAD>
36000 <TITLE>The External Browser Command</TITLE>
36001 </HEAD>
36002 <BODY>
36003 <H1>The External Browser Command</H1>
36006 A new command was added to Alpine that allows users to send HTML messages to be displayed
36007 by a web browser. This is helpful when a user wants to see images in the context of the
36008 message, or get a better display of the message than Alpine provides.
36011 The simplest way to use this command is to do as follows. While reading a message,
36012 press the &quot;V&quot; to go to the <A href="h_attachment_screen">ATTACHMENT SCREEN</A>.
36013 In that screen move the cursor until it is on top of a TEXT/HTML attachment and press the
36014 &quot;X&quot; key. This will make Alpine launch the browser you have configured for
36015 in the <a href="h_config_browser"><!--#echo var="VAR_url-viewers"--></a> variable, and
36016 you should be able to read the message in your browser, as well as in Alpine.
36018 <P> If the message you sent to your browser has inline images, then the images attached to
36019 the message that are necessary for the display of the message are also sent to the browser
36020 for its display.
36022 <P> The text that follows will explain more details about this command, and is only
36023 recommended for more advanced users.
36025 <h1><CENTER>Displaying Images</CENTER></h1>
36027 <P> First, we will talk about displaying images in an HTML file. Typically, HTML images
36028 are displayed as the result of some specific code of the form
36029 <center>
36030 <PRE>
36031 &lt;img src=&quot;...&quot;&gt;,
36032 </PRE>
36033 </center>
36034 where the text between the quotes tells Alpine how to find the image.
36035 If the source of the image is internal to the message, Alpine passes that image to the
36036 browser. Otherwise Alpine erases the link to the image. This is done so that
36037 you can be protected from a bad use of external images. Images can be used to track
36038 that you read the message, or your location, devices you own, etc.. Since Alpine does
36039 not open images in any messages, your
36040 privacy is always protected this way. Therefore, when you do not pass the links to
36041 external images to a browser, your privacy is being protected. However, doing this
36042 might make the message not be displayed correctly, since when the message was
36043 created the images were part of the formatted message, and not having images might make
36044 this formatting look awkward.
36046 <P> If you would like that Alpine display all images, regardless of their source, and
36047 regardless of the sender, then you need to disable the feature <a
36048 href="h_external_loads_inline_images_only"><!--#echo var="FEAT_external-command-loads-inline-images-only"--></a>.
36049 The message will display as intended, but you will leak information to the sender of the
36050 message, as well as to your internet service provider, which could be your employer, or
36051 school, etc.
36053 <P> Alpine provides an alternative mechanism to either send all links to the images to the
36054 external browser or to send only those that are attached to the message you are trying to
36055 display. In order to use this mechanism you must first enable
36056 <a href="h_config_enable_view_attach"><!--#echo var="FEAT_enable-msg-view-attachments"--></a>.
36057 This allows Alpine to add direct links to each attachments. If you want to send an HTML
36058 attachment to an external browser, you would place the cursor over the attachment and press
36059 the &quot;Return&quot; or &quot;Enter&quot; key to open the attachment. When you do that
36060 you will see a prompt and menu which says
36062 <pre>
36063 View selected Attachment  ?
36064 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X External
36065 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No
36066 </pre>
36068 <P>In order to send this message to an external browser, you would press the &quot;X&quot;
36069 key. This will change the prompt and menu to
36071 <pre>
36072 View selected Attachment using external viewer including inline images only ?
36073 &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
36074 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I All images
36075 </pre>
36077 <P>This is telling you that if you answer &quot;Yes&quot; to this question, and external
36078 browser will be used to send this messages, and only inline images, that is, those attached
36079 in the message will be sent to the browser. If you would like to send all images in
36080 this case, the menu tells you that you must press the &quot;I&quot; key. Pressing
36081 that key changes the prompt and menu to
36083 <pre>
36084 View selected Attachment using external viewer including all images ?
36085 &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
36086 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I Inline imgs
36087 </pre>
36089 <P>and as you can see the prompt says that if you press &quot;Yes&quot; then the message
36090 will be sent to the browser including the source of all images, including those in
36091 external servers. Notice that the &quot;X&quot; command now is a toggle. If you
36092 were to press it now, you would return to the original prompt,
36094 <pre>
36095 View selected Attachment  ?
36096 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y [Yes]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;X External
36097 ^C Cancel&nbsp;&nbsp;&nbsp;&nbsp;N No
36098 </pre>
36100 <P>which means that if you answer &quot;Yes&quot; at this time your message would not
36101 be sent to your external browser for display, unless you have configured a mailcap
36102 entry to display HTML files.
36104 <P> One of the lessons of this discussion is that if you never press the &quot;X&quot;
36105 command in the ATTACHMENT SCREEN, and you never press the &quot;X&quot; command when
36106 launching a viewer for an attachment in the MESSAGE TEXT screen, you will never use this
36107 mechanism, and Alpine will resort to your already configured mechanisms to open HTML
36108 text.This means you can live your life without worrying that Alpine will do anything
36109 different because of this new feature. You do not have to use it, but if you do, you should
36110 know the risks and advantages and decide when and how to use it.
36112 <h1><CENTER>Saving HTML Messages to Disk</CENTER></h1>
36115 No matter what your reason to send a message to an external web browser is, Alpine must
36116 write your message to a file (and also all related inline images), and point your browser
36117 to open that file. Alpine saves all your messages and auxiliary images in a subdirectory
36118 of the ~/.alpine-html directory in unix-like Alpine, or the alpine-html folder in your home
36119 directory in PC-Alpine. If Alpine cannot access these directories, or create folders
36120 in them, then the full mechanism described above will fail, and you will not be able
36121 to send messages to an external browser for display.
36124 Unfortunately browsers do not remove the file that Alpine created, nor the images
36125 that Alpine saved in order to display this message, so if you use this mechanism often
36126 you will create many directories and files which the browser will not remove. Alpine
36127 will remove these files when you exit Alpine. Any temporary directory that Alpine
36128 created that has existed for longer than 10 minutes will be automatically erased.
36129 Alpine also erases these directories upon exiting.
36132 When Alpine creates a directory to house the files associated to a message that will
36133 pass to an external browser, it tries to delete that directory later on, according to
36134 the discussion above. What this means is that you should consider the contents of the
36135 ~/.alpine-html directory in unix-like Alpine and the alpine-html folder in PC-Alpine
36136 as temporary, and not rely on their existence. If you attempt to save files in one of
36137 these directories, chances are your data will be deleted by Alpine. Since deleting is
36138 a destructive action,
36139 every session of Alpine that you have open will only attempt to remove the directories
36140 it created, with their content in them. If this operation fails, Alpine will not try
36141 to investigate, nor will report to you, why the operation failed. Therefore, users
36142 should periodically check their html directory to see if there is content there that
36143 they wish to delete.
36146 <UL>
36147 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36148 </UL><P>
36149 &lt;End of help on this topic&gt;
36150 </BODY>
36151 </HTML>
36152 ===== h_mainhelp_smime ======
36153 <HTML>
36154 <HEAD>
36155 <TITLE>S/MIME Overview</TITLE>
36156 </HEAD>
36157 <BODY>
36158 <H1>S/MIME Overview</H1>
36160 S/MIME is a standard for the public key encryption and signing of email.
36161 UNIX Alpine contains a basic implementation of S/MIME based on
36162 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
36163 same support can be provided using the 
36164 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
36165 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
36166 To check if this version of Alpine supports S/MIME look at
36167 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
36168 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
36170 Some limitations:
36171 <UL>
36172    <LI> There is no provision for checking for CRLs
36173         (Certificate Revocation Lists) in Alpine.
36174    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
36175    <LI> There is no mechanism available for feeding either an entire incoming
36176         or an entire outgoing message to an external
36177         filter and using that external filter to do S/MIME or PGP processing.
36178    <LI> Because the implementation currently uses OpenSSL, there is only a very
36179         limited integration with the Mac OS Keychain (the storing and access of
36180         public certificates).
36181 </UL>
36183 The S/MIME configuration screen is reached by going to the Main Menu and typing
36184 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
36187 <H2>S/MIME BASICS</H2>
36189 In order to digitally sign messages you send you must have a public/private key-pair.
36190 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
36191 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
36192 users or a company which provides certificates for its workers.
36193 These certificates are bound to an email address, so the identity being verified is the
36194 email address not a person's name.
36196 Mail is signed by using the sender's private key, which only the owner of the private key
36197 has access to.
36198 The signature is verified using the signer's public key, which anyone can
36199 have access to.
36200 With Alpine, the first time you receive a signed message the public key of the
36201 sender will be stored for future use.
36204 Mail is encrypted using the recipient's public key and decrypted by
36205 the recipient with their private key.
36208 You need a key of your own in order to sign outgoing messages and to have others
36209 encrypt messages sent to you.
36210 You do not need a key of your own to verify signed messages sent by others or to
36211 encrypt messages sent to others.
36213 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
36215 By default UNIX Alpine stores the certificates it uses in a directory in your
36216 home directory.
36217 The directory name is
36219 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
36221 For PC-Alpine, the equivalent directory is called 
36222 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
36223 and is also located under your home directory.
36225 Within that directory are three subdirectories.
36226 Each of the three subdirectories contains files with PEM-encoded contents,
36227 the default format for OpenSSL.
36228 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
36229 The files within that directory have names that are email addresses with the
36230 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
36231 An example filename is
36233 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
36235 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
36236 your private key.
36237 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
36238 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
36239 Authorities that you want to trust but that aren't contained in the set of system CAs.
36240 Those files may have arbitrary names as long as they end with the
36241 suffix &quot;<SAMP>.crt</SAMP>&quot;.
36243 <H2>HOW TO SIGN AND ENCRYPT</H2>
36245 If you have a certificate you may sign outgoing messages.
36246 After typing the Ctrl-X command to send a message you will see the prompt
36248 <CENTER><SAMP>Send message?</SAMP></CENTER>
36250 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
36251 Typing the &quot;G&quot; command will change the prompt to
36253 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
36255 Typing the &quot;E&quot; command will change the prompt to
36257 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
36259 You may even type both to get
36261 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
36264 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
36266 The reading of a signed message should not require any special action on
36267 your part.
36268 There should be an editorial addition at the start of the message which
36269 says either
36271 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
36275 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
36277 If an encrypted message is sent to you the encrypted text will not
36278 be shown.
36279 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
36280 you are viewing the message) and supply your passphrase when asked.
36282 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
36283 which gives you some information about the certificate used to sign or encrypt the message.
36285 <H2>MISCELLANEOUS</H2>
36287 If you have access to a private certificate in the PKCS12 format, which 
36288 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
36289 use the following commands to generate private keys, public and certificate
36290 authorities certificates. In the examples below, we assume that the 
36291 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
36292 that your email address is &quot;your@address.com&quot;.
36295 In order to create a private key use the command
36297 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
36299 In order to create a public certificate use the command
36301 <CENTER><SAMP>
36302 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
36303 </SAMP></CENTER>
36305 In order to create a certificate authority certificate use the command
36307 <CENTER><SAMP>
36308 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
36309 </SAMP></CENTER>
36311 <P> If the previous command produces an empty file, it means that the 
36312 certificate authority was not included in the .p12 file, so you will have 
36313 to get it from some other sources. You will need these certificates, so 
36314 that you can validate correctly signatures.
36317 After you have exported these certificates and keys, you can  use the import 
36318 command in Alpine, from the S/MIME configuration screen,
36319 to import these certificates into Alpine. They will be available for use
36320 as soon as you import them.
36322 &lt;End of help on this topic&gt;
36323 </BODY>
36324 </HTML>
36325 ====== h_config_smime_pubcertdir =====
36326 <HTML>
36327 <HEAD>
36328 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
36329 </HEAD>
36330 <BODY>
36331 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
36334 If the option
36335 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36336 is set then this option will have no effect.
36338 Normally, Public Certificates for use with S/MIME will be stored in the directory
36339 which is the value of this option.
36340 Those certificates will be stored in PEM format, one certificate per file.
36341 The name of the file for the certificate corresponding to
36343 <CENTER><SAMP>emailaddress</SAMP></CENTER>
36345 should be
36347 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
36349 For example, a file for user@example.com would be in the file
36351 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
36353 in this directory.
36355 Use the Setup/SMIME screen to modify this variable.
36357 Typically, the public certificates that you have will come from S/MIME signed
36358 messages that are sent to you.
36359 Alpine will extract the public certificate from the signed message and store
36360 it in the certificates directory.
36361 These PEM format public certificates look something like:
36362 <PRE>
36363 -----BEGIN CERTIFICATE-----
36364 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
36365 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
36366 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
36368 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
36369 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
36370 -----END CERTIFICATE-----
36371 </PRE>
36373 <UL>   
36374 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36375 </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_pubcertcon =====
36384 <HTML>
36385 <HEAD>
36386 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
36387 </HEAD>
36388 <BODY>
36389 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
36392 If this option is set it will be used instead of
36393 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
36395 This option gives you a way to store certificates remotely on an IMAP server
36396 instead of storing the certificates one per file locally.
36397 In order to do that you just give this option a remote folder name for a folder
36398 which does not yet exist.
36399 The name is similar to the name you might use for a remote configuration file.
36400 A remote folder name might look something like:
36402 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
36405 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36406 about the syntax of folder names.
36408 Use the Setup/SMIME screen to modify this variable.
36410 <UL>   
36411 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36412 </UL><P>
36414 <UL>   
36415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36416 </UL><P>
36417 &lt;End of help on this topic&gt;
36418 </BODY>
36419 </HTML>
36420 ====== h_config_smime_privkeydir =====
36421 <HTML>
36422 <HEAD>
36423 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
36424 </HEAD>
36425 <BODY>
36426 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
36429 In order to sign outgoing S/MIME messages you will need a
36430 personal digital ID certificate.
36431 You will usually get such a certificate from a certificate authority such as
36432 Thawte or CAcert.
36433 (In order to encrypt outgoing messages you don't need a personal digital ID, you
36434 need the public certificate of the recipient instead.)
36435 If the option
36436 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
36437 is set then this option will have no effect.
36439 Normally, Private Keys for use with S/MIME will be stored in the directory
36440 which is the value of this option.
36441 Those certificates will be stored in PEM format, one certificate per file.
36442 The name of the file for the certificate corresponding to your
36444 <CENTER><SAMP>emailaddress</SAMP></CENTER>
36446 should be
36448 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
36450 For example, if your address is user@example.com the name of the file would be
36452 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
36454 in this directory.
36456 Use the Setup/SMIME screen to modify this variable.
36458 Typically, the private key that you have will come from a Certificate
36459 Authority.
36460 The private key should be stored in a PEM format file that
36461 looks something like:
36462 <PRE>
36463 -----BEGIN RSA PRIVATE KEY-----
36464 Proc-Type: 4,ENCRYPTED
36465 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
36467 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
36468 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
36469 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
36471 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
36472 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
36473 -----END RSA PRIVATE KEY-----
36474 </PRE>
36476 <UL>   
36477 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36478 </UL><P>
36480 <UL>   
36481 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36482 </UL><P>
36483 &lt;End of help on this topic&gt;
36484 </BODY>
36485 </HTML>
36486 ====== h_config_smime_privkeycon =====
36487 <HTML>
36488 <HEAD>
36489 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
36490 </HEAD>
36491 <BODY>
36492 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
36495 If this option is set it will be used instead of
36496 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36498 This option gives you a way to store keys remotely on an IMAP server
36499 instead of storing the keys one per file locally.
36500 In order to do that you just give this option a remote folder name for a folder
36501 which does not yet exist.
36502 The name is similar to the name you might use for a remote configuration file.
36503 A remote folder name might look something like:
36505 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
36508 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36509 about the syntax of folder names.
36511 Use the Setup/SMIME screen to modify this variable.
36513 <UL>   
36514 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36515 </UL><P>
36517 <UL>   
36518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36519 </UL><P>
36520 &lt;End of help on this topic&gt;
36521 </BODY>
36522 </HTML>
36523 ====== h_config_smime_cacertdir =====
36524 <HTML>
36525 <HEAD>
36526 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
36527 </HEAD>
36528 <BODY>
36529 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
36532 If the option
36533 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
36534 is set then this option will have no effect.
36536 CACert is a shorthand name for certification authority certificate.
36537 Normally Alpine will use the CACerts that are located in the standard system
36538 location for CACerts.
36539 It may be the case that one of your correspondents has a Digital ID which has
36540 been signed by a certificate authority that is not in the regular set of system certificate
36541 authorities.
36542 You may supplement the system list by adding further certificates of your own.
36543 These should  be stored in the directory
36544 which is the value of this option.
36545 The certificates will be stored in PEM format, one certificate per file.
36546 The names of the files can be anything ending in &quot;.crt&quot;.
36548 Use the Setup/SMIME screen to modify this variable.
36550 These PEM format CA certificates look very similar to your public
36551 certificates for particular email addresses
36552 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
36554 <UL>   
36555 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36556 </UL><P>
36558 <UL>   
36559 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36560 </UL><P>
36561 &lt;End of help on this topic&gt;
36562 </BODY>
36563 </HTML>
36564 ====== h_config_smime_cacertcon =====
36565 <HTML>
36566 <HEAD>
36567 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
36568 </HEAD>
36569 <BODY>
36570 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
36573 If this option is set it will be used instead of
36574 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
36576 This option gives you a way to store certificates remotely on an IMAP server
36577 instead of storing the certificates one per file locally.
36578 In order to do that you just give this option a remote folder name for a folder
36579 which does not yet exist.
36580 The name is similar to the name you might use for a remote configuration file.
36581 A remote folder name might look something like:
36583 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
36586 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
36587 about the syntax of folder names.
36589 Use the Setup/SMIME screen to modify this variable.
36591 <UL>   
36592 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36593 </UL><P>
36595 <UL>   
36596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36597 </UL><P>
36598 &lt;End of help on this topic&gt;
36599 </BODY>
36600 </HTML>
36601 ========== h_config_smime_sign_by_default ==========
36602 <HTML>
36603 <HEAD>
36604 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
36605 </HEAD>
36606 <BODY>
36607 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
36610 This feature only has an effect if your version of Alpine includes
36611 support for S/MIME.
36612 It affects Alpine's behavior when you send a message.
36613 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
36615 Only the default value is affected.
36616 In any case, you may still toggle the Signing option on or off before sending
36617 with the &quot;G Sign&quot; command (provided you have a personal digital ID
36618 certificate).
36620 <UL>   
36621 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36622 </UL><P>
36625 <UL>   
36626 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36627 </UL><P>
36628 &lt;End of help on this topic&gt;
36629 </BODY>
36630 </HTML>
36631 ========== h_config_smime_use_cert_store ==========
36632 <HTML>
36633 <HEAD>
36634 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
36635 </HEAD>
36636 <BODY>
36637 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
36640 This feature only has an effect if your version of Alpine includes
36641 support for S/MIME.
36642 It affects Alpine's behavior when you validate a message, and should
36643 not be disabled, unless you are performing a test.
36645 There are two important aspects of validation: validation of the message
36646 (that is, the message was not modified after it was sent) 
36647 as well as validation of the identity of the sender. This option has to 
36648 do with the latter. 
36650 In order to validate that the message came from the sender in the message
36651 and not an impersonator, Alpine can 
36652 either use the certificates that come in the message, or the ones that 
36653 you have personally stored. If this feature is enabled (the default) then 
36654 Alpine will use certificates that you have already saved in your store 
36655 and not those that come in the message to validate the sender of the 
36656 message. In particular, the first time that you receive a signed message
36657 from a sender, and their certificate does not validate against your
36658 store, then you will be asked if you wish to save such certificate. If
36659 you do not wish to save the certificate, then Alpine will fail to validate
36660 the signature of the message. Otherwise, Alpine will proceed to validate
36661 the signature of the message. This behavior helps you prevent against impersonation, because 
36662 it is assumed that you trust the certificates that you have saved, and 
36663 might not trust those that came with the message that you are validating.
36665 <UL>   
36666 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36667 </UL><P>
36670 <UL>   
36671 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36672 </UL><P>
36673 &lt;End of help on this topic&gt;
36674 </BODY>
36675 </HTML>
36676 ========== h_config_smime_pubcerts_in_keychain ==========
36677 <HTML>
36678 <HEAD>
36679 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
36680 </HEAD>
36681 <BODY>
36682 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
36685 If this feature is set the Mac OS X default keychain will be used as the place
36686 to store public certificates instead of a
36687 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
36688 or a
36689 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
36691 <UL>   
36692 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36693 </UL><P>
36695 <UL>   
36696 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36697 </UL><P>
36698 &lt;End of help on this topic&gt;
36699 </BODY>
36700 </HTML>
36701 ========== h_config_smime_dont_do_smime ==========
36702 <HTML>
36703 <HEAD>
36704 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
36705 </HEAD>
36706 <BODY>
36707 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
36710 Setting this feature turns off all of Alpine's S/MIME support.
36711 You might want to set this if you are having trouble due to the S/MIME support.
36713 <UL>   
36714 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36715 </UL><P>
36718 <UL>   
36719 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36720 </UL><P>
36721 &lt;End of help on this topic&gt;
36722 </BODY>
36723 </HTML>
36724 ========== h_config_smime_encrypt_by_default ==========
36725 <HTML>
36726 <HEAD>
36727 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
36728 </HEAD>
36729 <BODY>
36730 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
36733 This feature only has an effect if your version of Alpine includes
36734 support for S/MIME.
36735 It affects Alpine's behavior when you send a message.
36736 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
36738 Only the default value is affected.
36739 In any case, you may still toggle the Encrypt option on or off before sending
36740 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
36741 for the recipient).
36743 <UL>   
36744 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36745 </UL><P>
36748 <UL>   
36749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36750 </UL><P>
36751 &lt;End of help on this topic&gt;
36752 </BODY>
36753 </HTML>
36754 ========== h_config_smime_remember_passphrase ==========
36755 <HTML>
36756 <HEAD>
36757 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
36758 </HEAD>
36759 <BODY>
36760 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
36763 This feature only has an effect if your version of Alpine includes
36764 support for S/MIME.
36765 If this option is set, you will only have to enter your passphrase for your private key
36766 once during an Alpine session.
36768 <UL>   
36769 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36770 </UL><P>
36773 <UL>   
36774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36775 </UL><P>
36776 &lt;End of help on this topic&gt;
36777 </BODY>
36778 </HTML>
36779 ====== h_config_smime_transfer_pub_to_con =====
36780 <HTML>
36781 <HEAD>
36782 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
36783 </HEAD>
36784 <BODY>
36785 <H1>S/MIME: Transfer Public Certs to Container</H1>
36788 The Transfer command will copy the public certificates in your configured
36789 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
36790 to the container in your configured
36791 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
36792 This might be useful if you decide to switch from using a cert directory to a cert
36793 container.
36795 Warning: Any previous contents in the container will be lost.
36797 <UL>   
36798 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36799 </UL><P>
36801 <UL>   
36802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36803 </UL><P>
36804 &lt;End of help on this topic&gt;
36805 </BODY>
36806 </HTML>
36807 ====== h_config_smime_transfer_pub_to_dir =====
36808 <HTML>
36809 <HEAD>
36810 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
36811 </HEAD>
36812 <BODY>
36813 <H1>S/MIME: Transfer Public Certs to Directory</H1>
36816 The Transfer command will copy the public certificates in your configured
36817 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36818 to the directory in your configured
36819 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
36820 This might be useful if you decide to switch from using a cert container to a cert
36821 directory.
36823 <UL>   
36824 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36825 </UL><P>
36827 <UL>   
36828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36829 </UL><P>
36830 &lt;End of help on this topic&gt;
36831 </BODY>
36832 </HTML>
36833 ====== h_config_smime_transfer_priv_to_con =====
36834 <HTML>
36835 <HEAD>
36836 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
36837 </HEAD>
36838 <BODY>
36839 <H1>S/MIME: Transfer Private Keys to Container</H1>
36842 The Transfer command will copy the private keys in your configured
36843 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36844 to the container in your configured
36845 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
36846 This might be useful if you decide to switch from using a key directory to a key
36847 container.
36849 Warning: Any previous contents in the container will be lost.
36851 <UL>   
36852 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36853 </UL><P>
36855 <UL>   
36856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36857 </UL><P>
36858 &lt;End of help on this topic&gt;
36859 </BODY>
36860 </HTML>
36861 ====== h_config_smime_transfer_priv_to_dir =====
36862 <HTML>
36863 <HEAD>
36864 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
36865 </HEAD>
36866 <BODY>
36867 <H1>S/MIME: Transfer Private Keys to Directory</H1>
36870 The Transfer command will copy the private keys in your configured
36871 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
36872 to the directory in your configured
36873 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
36874 This might be useful if you decide to switch from using a key container to a key
36875 directory.
36877 <UL>   
36878 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36879 </UL><P>
36881 <UL>   
36882 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36883 </UL><P>
36884 &lt;End of help on this topic&gt;
36885 </BODY>
36886 </HTML>
36887 ====== h_config_smime_transfer_cacert_to_con =====
36888 <HTML>
36889 <HEAD>
36890 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
36891 </HEAD>
36892 <BODY>
36893 <H1>S/MIME: Transfer CA Certs to Container</H1>
36896 The Transfer command will copy the CA certificates in your configured
36897 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
36898 to the container in your configured
36899 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36900 This might be useful if you decide to switch from using a CA cert directory to a CA cert
36901 container.
36903 Warning: Any previous contents in the container will be lost.
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_transfer_cacert_to_dir =====
36916 <HTML>
36917 <HEAD>
36918 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
36919 </HEAD>
36920 <BODY>
36921 <H1>S/MIME: Transfer CA Certs to Directory</H1>
36924 The Transfer command will copy the CA certificates in your configured
36925 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36926 to the directory in your configured
36927 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
36928 This might be useful if you decide to switch from using a CA cert container to a CA cert
36929 directory.
36931 <UL>   
36932 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36933 </UL><P>
36935 <UL>   
36936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36937 </UL><P>
36938 &lt;End of help on this topic&gt;
36939 </BODY>
36940 </HTML>
36941 ====== h_config_smime_transfer_pubcon_to_key =====
36942 <HTML>
36943 <HEAD>
36944 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36945 </HEAD>
36946 <BODY>
36947 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36949 Mac OS X Alpine only.
36951 The Transfer command will copy the public certificates in your configured
36952 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36953 to your default Mac OS X Keychain.
36954 This might be useful if you decide to switch from using a cert container to using
36955 the Keychain to store your public certs, which you may do by using the
36956 feature
36957 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
36959 <UL>   
36960 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36961 </UL><P>
36963 <UL>   
36964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36965 </UL><P>
36966 &lt;End of help on this topic&gt;
36967 </BODY>
36968 </HTML>
36969 ====== h_config_smime_transfer_pubkey_to_con =====
36970 <HTML>
36971 <HEAD>
36972 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36973 </HEAD>
36974 <BODY>
36975 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36978 The Transfer command will copy the public certificates in your configured
36979 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36980 to your default Mac OS X Keychain.
36981 This might be useful if you decide to switch from using a cert container to using
36982 the Keychain to store your public certs.
36984 <UL>   
36985 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36986 </UL><P>
36988 <UL>   
36989 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36990 </UL><P>
36991 &lt;End of help on this topic&gt;
36992 </BODY>
36993 </HTML>
36994 ====== h_config_smime_public_certificates =====
36995 <HTML>
36996 <HEAD>
36997 <TITLE>S/MIME: Manage Public Certificates</TITLE>
36998 </HEAD>
36999 <BODY>
37000 <H1>S/MIME: Manage Public Certificates</H1>
37003 This menu item allows you to manage your public certificates, this
37004 may include your own public certificate, but it normally includes
37005 certificates of people you correspond with. These certificates are
37006 saved by Alpine automatically when they are found in signed messages
37007 that you receive. This interface allows you to manage them, by
37008 giving you the option to delete them, or trust them (in the case
37009 of self-signed certificates).
37012 Please note that Alpine will not validate a message that was sent to you
37013 using a self-signed certificate, unless you decide to trust that certificate.
37014 Internally, a certificate is trusted by copying it to the
37015 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
37016 collection. If you decide that you want to stop trusting a self-signed
37017 certificate, you must delete such certificate from such collection.
37019 The <B>I</B> Import command available in this screen allows you to 
37020 import a command to this collection.
37022 <UL>   
37023 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37024 </UL><P>
37026 <UL>   
37027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37028 </UL><P>
37029 &lt;End of help on this topic&gt;
37030 </BODY>
37031 </HTML>
37032 ====== h_config_smime_private_keys =====
37033 <HTML>
37034 <HEAD>
37035 <TITLE>S/MIME: Manage Private Keys</TITLE>
37036 </HEAD>
37037 <BODY>
37038 <H1>S/MIME: Manage Private Keys</H1>
37041 This option allows you to manage your private key. Normally a person has only
37042 one key, in the same way that a person only has one valid passport, or ID card,
37043 at any given time. This option allows you to manage private keys. You can
37044 delete them or import them. Additionally, you can view information
37045 about your public certificate, such as the issuer and the dates of validity
37046 of such certificate, among others.
37049 If you have more than one e-mail address for which you want to use the 
37050 same private key, you must add all those addresses to the private key at 
37051 the moment that the key is generated. When you receive a signed message using 
37052 a key generated for several e-mail addresses, Alpine will save a 
37053 certificate for each e-mail address included in such certificate.
37055 The <B>I</B> Import command available in this screen allows you to 
37056 import a command to this collection.
37058 <UL>   
37059 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37060 </UL><P>
37062 <UL>   
37063 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37064 </UL><P>
37065 &lt;End of help on this topic&gt;
37066 </BODY>
37067 </HTML>
37068 ====== h_config_smime_certificate_authorities =====
37069 <HTML>
37070 <HEAD>
37071 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
37072 </HEAD>
37073 <BODY>
37074 <H1>S/MIME: Manage Certificate Authorities</H1>
37077 This collection contains certificates that are needed to validate the 
37078 certificate of another person, and therefore contains certificates that 
37079 you trust. Typically a certificate is signed by another entity, called a 
37080 certificate authority. This option allows you to manage which certificates 
37081 you trust, allowing you to import them and to delete them or view information
37082 about each certificate, such as the issuer and the dates of validity
37083 of such certificate.
37085 The <B>I</B> Import command available in this screen allows you to 
37086 import a command to this collection.
37088 <UL>   
37089 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37090 </UL><P>
37092 <UL>   
37093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37094 </UL><P>
37095 &lt;End of help on this topic&gt;
37096 </BODY>
37097 </HTML>
37098 ====== h_config_smime_password_file_certificates =====
37099 <HTML>
37100 <HEAD>
37101 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
37102 </HEAD>
37103 <BODY>
37104 <H1>S/MIME: Manage Password File Certificates</H1>
37107 This option allows you to manage the certificates that are used to
37108 encrypt and decrypt your password file. This is useful in case you
37109 want to change the certificates used to encrypt your password file.
37111 Depending on the version of Alpine that you used for the first time
37112 to set this up, you might have had to enter a password to enter this
37113 screen. In the case that you did not enter a password to enter this
37114 screen, you should know two things that are important:
37115 <UL>
37116 <LI> If anyone takes control of your computer (for example, if you 
37117 left it unattended) then that person can add a password to your
37118 password file and make it unreadable to you in the future.
37119 <LI> If anyone can access your computer (this includes remote access)
37120 then that person can steal your password file and decrypt it without
37121 your help. This gives access to that person to the same services you
37122 have access and such person can use your name to access that service.
37123 In particular, that person can try to hack into your service provider
37124 with your name on it, or that person could try to send spam with
37125 your name.
37126 </UL>
37127 <P> Needless to say, this is not advisable. You should keep your
37128 password file protected. In order to do so, all you need to do is use
37129 the &quot;Create Key&quot; command to create a key. Once you do this,
37130 Alpine will use that key, encrypted with the password used to create that
37131 key, to protect your password file.
37133 In this screen you can import a new key to encrypt your password file, 
37134 and read cryptographic information on your current key.
37136 To import a new key press &quot;RETURN&quot; and enter the location of
37137 the new key. You will be asked to enter the password of the new key. If
37138 this part of the process is successful, Alpine will search for the 
37139 certificate that matches that key. If your key is named 
37140 &quot;your_email@address.com.key&quot;, then Alpine will look for your
37141 certificate in the same directory in the file named
37142 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
37143 as part of your key (that is, it will look to see if your certificate
37144 is in the file &quot;your_email@address.com.key&quot;), if all of this
37145 fails, Alpine will ask you to enter the location of the certificate
37146 that matches the key you unlocked. If a certificate is found, it will be 
37147 used, and in this case, the password file will be read, decrypted with the 
37148 old key and encrypted with the new key. Once this is done, the new key and 
37149 certificates are saved, and the old keys are permanently deleted.
37151 Alpine does not create a backup of your password file, or your old keys
37152 that will be replaced. If you need to keep old copies, you will have to do
37153 this operation outside Alpine.
37155 Observe that you can use this screen to remove the password for the key.
37156 As explained earlier, this is not advisable, but you can always restore the
37157 password to encrypt your password file by creating a new key.
37159 Be safe and keep your password file encrypted with a password.
37160 <UL>   
37161 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37162 </UL><P>
37164 <UL>   
37165 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37166 </UL><P>
37167 &lt;End of help on this topic&gt;
37168 </BODY>
37169 </HTML>
37170 ====== h_certificate_information =====
37171 <HTML>
37172 <HEAD>
37173 <TITLE>S/MIME: Certificate Information Screen</TITLE>
37174 </HEAD>
37175 <BODY>
37176 <H1>S/MIME: Certificate Information Screen</H1>
37179 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
37180 such as its owner, e-mail address, issuer, and interval of validity, 
37181 among others.
37183 In the case of public certificates, this screen shows you if there was a
37184 failure when attempting to validate such message. If the certificate is
37185 self-signed, then the <B>T</B> Trust command will be available, which
37186 you can use to trust such certificate and make Alpine not fail validating 
37187 signatures signed with such certificate.
37189 You can also mark a certificate deleted, with the <B>D</B> command, or 
37190 remove the deleted mark with the <B>U</B> undelete command.
37192 In the case of your private key, Alpine shows you the information
37193 from your public key. Additionally, Alpine allows you to see public
37194 and private information about your key, with the <B>B</B> and
37195 <B>R</B> commands respectively.
37196 <UL>   
37197 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37198 </UL><P>
37200 <UL>   
37201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37202 </UL><P>
37203 &lt;End of help on this topic&gt;
37204 </BODY>
37205 </HTML>
37206 ====== h_config_smime_manage_public_menu =====
37207 <HTML>
37208 <HEAD>
37209 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
37210 </HEAD>
37211 <BODY>
37212 <H1>S/MIME: Commands that Manage Public Certificates</H1>
37215 This screen allows you to manage your public certificates. 
37217 The format of this screen is as follows. There are five fields: The 
37218 leftmost field is normally empty, but it could contain the letter 
37219 &quot;D&quot; to indicate that that certificate has been marked for 
37220 deletion. The next field is the e-mail address of the owner of the 
37221 certificate, shown in its entirety. The third and fourth field are the 
37222 first and last day validity for that certificate, respectively. The date
37223 is displayed in the user's locale unless the option 
37224 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
37225 is set. In this case, the month, day and year are represented by two
37226 digits, and the format used is mm/dd/yy. Finally, the fifth 
37227 field is what can be displayed of the MD5 hash of the certificate. You can 
37228 use any of the last three fields to distinguish between two certificates 
37229 for the same owner.
37231 Available commands in this screen and a short description of what they 
37232 do follows.
37233 <UL>
37234 <LI> <B>I</B> Imports a public certificate to this collection.
37235 <LI> <B>V</B> View information about a certificate such as the name of the person the
37236 certificate was issued to, its dates of validity, and validity status.
37237 <LI> <B>D</B> Marks a certificate deleted.
37238 <LI> <B>U</B> Removes the deletion mark on a certificate.
37239 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
37240 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
37241 trust a certificate by copying it to the collection of trusted certificates.
37242 </UL>
37244 All commands provide feedback to let you know about their success or failure.
37246 <UL>   
37247 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37248 </UL><P>
37250 <UL>   
37251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37252 </UL><P>
37253 &lt;End of help on this topic&gt;
37254 </BODY>
37255 </HTML>
37256 ====== h_config_smime_manage_private_menu =====
37257 <HTML>
37258 <HEAD>
37259 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
37260 </HEAD>
37261 <BODY>
37262 <H1>S/MIME: Commands that Manage Private Keys</H1>
37265 This screen allows you to manage your private key.
37267 The format of this screen is as follows. There are five fields: The 
37268 leftmost field is normally empty, but it could contain the letter 
37269 &quot;D&quot; to indicate that that certificate has been marked for 
37270 deletion. The next field is the e-mail address of the owner of the 
37271 certificate, shown in its entirety. The third field is the first day of 
37272 validity for that certificate; the fourth field in the last day that that 
37273 certificate is valid, and the fifth field is what can be displayed of the 
37274 MD5 hash of the public certificate corresponding to this private key. You 
37275 can use any of the last three fields to distinguish between two 
37276 certificates for the same owner.
37278 Available commands and a short description of what they do follows.
37279 <UL>
37280 <LI> <B>I</B> Imports a new public key to this collection.
37281 <LI> <B>V</B> View information about the public certificate corresponding to this
37282 key.
37283 <LI> <B>D</B> Marks a key to be deleted.
37284 <LI> <B>U</B> Removes the deletion mark on a key.
37285 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
37286 Note that expunging a private key does not remove the public key, which must
37287 be removed separately.
37288 </UL>
37290 All commands provide feedback to let you know about their success or failure.
37292 <UL>   
37293 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37294 </UL><P>
37296 <UL>   
37297 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37298 </UL><P>
37299 &lt;End of help on this topic&gt;
37300 </BODY>
37301 </HTML>
37302 ====== h_config_smime_manage_cacerts_menu =====
37303 <HTML>
37304 <HEAD>
37305 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
37306 </HEAD>
37307 <BODY>
37308 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
37311 This screen allows you to manage your collection of certificates that you
37312 trust. 
37314 The format of this screen is as follows. There are five fields: The 
37315 leftmost field is normally empty, but it could contain the letter 
37316 &quot;D&quot; to indicate that that certificate has been marked for 
37317 deletion. The next field is the e-mail address of the owner of the 
37318 certificate, shown in its entirety. The third field is the first day of 
37319 validity for that certificate; the fourth field in the last day that that 
37320 certificate is valid, and the fifth field is what can be displayed of the 
37321 MD5 hash of the certificate. You can use any of the last three fields to 
37322 distinguish between two certificates for the same owner.
37324 Available commands and a short description of what they do follows.
37325 <UL>
37326 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
37327 done by reading the certificate and validating it. Once a certificate
37328 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
37329 to the certificate, if necessary.
37330 <LI> <B>V</B> View information about this certificate, such as its issuer 
37331 and validity dates.
37332 <LI> <B>D</B> Marks a certificate to be deleted.
37333 <LI> <B>U</B> Removes the deletion mark on a certificate.
37334 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
37335 </UL>
37337 All commands provide feedback to let you know about their success or failure.
37339 <UL>
37340 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
37341 </UL><P>
37343 <UL>   
37344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37345 </UL><P>
37346 &lt;End of help on this topic&gt;
37347 </BODY>
37348 </HTML>
37349 ====== h_config_lame_list_mode =====
37350 <HTML>
37351 <HEAD>
37352 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
37353 </HEAD>
37354 <BODY>
37355 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
37357 This feature modifies the method Alpine uses to ask your IMAP
37358 server for folder names to display in the FOLDER LIST screen.
37359 It is intended to compensate for a small set of IMAP servers that
37360 are programmed to ignore a part of the request, and thus respond
37361 to Alpine's query with nonsensical results.
37364 If you find that Alpine is erroneously displaying blank folder lists,
37365 try enabling this feature.
37368 NOTE: Enabling this feature has consequences for the Goto and Save
37369 commands.  Many servers allow access to folders outside the area
37370 reserved for your personal folders via some reserved character,
37371 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
37372 allows, at the Goto and Save prompts, quick access to folders
37373 outside your personal folder collection without requiring a specific
37374 collection definition.  This behavior will generally not be available
37375 when this feature is enabled.
37378 <UL>   
37379 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37380 </UL><P>
37381 &lt;End of help on this topic&gt;
37382 </BODY>
37383 </HTML>
37384 ====== h_config_enable_mulnewsrcs =====
37385 <HTML>
37386 <HEAD>
37387 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
37388 </HEAD>
37389 <BODY>
37390 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
37392 This feature makes it so Alpine can use multiple newsrcs based on
37393 the news server being connected to, which allows for separate lists
37394 of subscribed-to newsgroups. When this feature is not set, there is only
37395 one list of newsgroups.
37397 Under this feature, the name of a newsrc is based on the news server.
37398 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
37399 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
37400 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
37401 Setting this feature for the first time will allow for the option of using
37402 your old newsrc the next time you read news.
37404 If this feature is set, then the feature
37405 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
37406 also may affect the name of the newsrc file that is used.
37408 <UL>   
37409 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37410 </UL><P>
37411 &lt;End of help on this topic&gt;
37412 </BODY>
37413 </HTML>
37414 ======= h_ab_export_vcard =======
37415 <HTML>
37416 <HEAD>
37417 <TITLE>Address Book Export Format</TITLE>
37418 </HEAD>
37419 <BODY>
37420 <H1>Address Book Export Format</H1>
37422 You are exporting address book data from Alpine to a file outside of Alpine.
37423 You are being asked to choose the format of the export.
37424 Here are the choices:
37426 <DL>
37427 <DT><EM>A</EM>ddress List</DT>
37428 <DD>
37429 The addresses from the address book entries you are saving
37430 from will be saved one address per line.
37431 Address book lists (those with more than one address) will have
37432 all of their addresses saved separately.
37433 </DD>
37435 <DT><EM>V</EM>Card</DT>
37436 <DD>
37437 The entries will be saved in
37438 <A HREF="h_whatis_vcard">vCard</A> format.
37439 </DD>
37441 <DT><EM>T</EM>ab Separated</DT>
37442 <DD>
37443 The entries will be saved in tab-separated columns.
37444 There will be just 4 columns of data that correspond to Alpine's
37445 Nickname field, Full Name field, Address field, and Comment field.
37446 It might prove useful to Select only the Simple, non-List address book
37447 entries before Saving.
37448 </DD>
37450 <DT><EM>^C</EM> Cancel</DT>
37451 <DD>
37452 Cancel out of the Save.
37453 </DD>
37455 </DL>
37459 &lt;End of help on this topic&gt;
37460 </BODY>
37461 </HTML>
37462 ====== h_config_predict_nntp_server =====
37463 <HTML>
37464 <HEAD>
37465 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
37466 </HEAD>
37467 <BODY>
37468 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
37470 This feature allows Alpine to assume that the open NNTP server at the
37471 time of composition is the NNTP server to which the message should be
37472 posted.  This is especially recommended when there are multiple News
37473 collections.  If this feature is not set, Alpine will try to post to the first server in
37474 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
37475 this feature also negates the need to add News collection servers to
37476 the <!--#echo var="VAR_nntp-server"--> variable.
37478 This feature can be especially handy when used in conjunction with
37479 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
37481 <UL>   
37482 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37483 </UL><P>
37484 &lt;End of help on this topic&gt;
37485 </BODY>
37486 </HTML>
37487 ====== h_config_nntp_search_uses_overview =====
37488 <HTML>
37489 <HEAD>
37490 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
37491 </HEAD>
37492 <BODY>
37493 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
37495 This feature should probably be turned on unless it causes trouble.
37496 The results of the NNTP overview command (XOVER) may be used to help
37497 with some searches in news groups.
37498 It should result in quicker response time.
37499 Turning this feature on apparently causes search results which are
37500 different from what you would get with the feature turned off on some
37501 servers.
37503 <UL>   
37504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37505 </UL><P>
37506 &lt;End of help on this topic&gt;
37507 </BODY>
37508 </HTML>
37509 ====== h_config_thread_sorts_by_arrival =====
37510 <HTML>
37511 <HEAD>
37512 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
37513 </HEAD>
37514 <BODY>
37515 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
37517 This feature affects how a threading sort arranges threads.  The default way
37518 to arrange threads is by the date of the earliest message in the thread.
37519 This feature arranges threads by the last message to arrive in a thread.
37521 This feature causes old threads that get recent messages to sort to the bottom,
37522 where previously a message arrival to a thread would not rearrange the order of
37523 that thread.
37525 <UL>   
37526 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37527 </UL><P>
37528 &lt;End of help on this topic&gt;
37529 </BODY>
37530 </HTML>
37531 ====== h_config_textplain_int =====
37532 <HTML>
37533 <HEAD>
37534 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
37535 </HEAD>
37536 <BODY>
37537 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
37539 This feature modifies the method Alpine uses to display Text/Plain
37540 MIME attachments from the Attachment Index screen.  Normally, the
37541 &quot;View&quot; command searches for any externally defined (usually
37542 via the
37543 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
37544 and displays the selected text within that viewer.
37547 Enabling this feature causes Alpine to ignore any external viewer
37548 settings and always display text with Alpine's internal viewer.
37551 <UL>   
37552 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37553 </UL><P>
37554 &lt;End of help on this topic&gt;
37555 </BODY>
37556 </HTML>
37557 ====== h_config_wp_columns =====
37558 <HTML>
37559 <HEAD>
37560 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
37561 </HEAD>
37562 <BODY>
37563 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
37565 Web Alpine only.
37567 This configuration setting specifies the number of horizontal characters
37568 used to format various WebAlpine pages.  Smaller values will tend to reduce
37569 the amount of horizontal scrolling required to view pages within narrow
37570 browsers, such as those found on PDAs, and larger values will tend to 
37571 spread more information across the page.
37574 The Message List page uses the width to determine how many characters
37575 to assign each field.  Note, a smaller value may result in a disproportionate
37576 amount of blank space between fields on each line.  Similarly, a large
37577 value may result in cramped fields or horizontal scrolling.
37580 The Message View page uses this value to determine when to wrap lines
37581 in displayed message text.  Note, a smaller value may result in jagged
37582 right margins or confusing quoting.  A larger value may cause lines of text to
37583 run beyond the browser's right edge, requiring horizontal scrolling.
37586 <UL>   
37587 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37588 </UL><P>
37589 &lt;End of help on this topic&gt;
37590 </BODY>
37591 </HTML>
37592 ====== h_config_wp_state =====
37593 <HTML>
37594 <HEAD>
37595 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
37596 </HEAD>
37597 <BODY>
37598 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
37600 Web Alpine only.
37602 Various aspects of cross-session state.
37605 <UL>   
37606 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37607 </UL><P>
37608 &lt;End of help on this topic&gt;
37609 </BODY>
37610 </HTML>
37611 ====== h_config_wp_aggstate =====
37612 <HTML>
37613 <HEAD>
37614 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
37615 </HEAD>
37616 <BODY>
37617 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
37619 Web Alpine only.
37621 Aggregate operations tab state.
37624 <UL>   
37625 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37626 </UL><P>
37627 &lt;End of help on this topic&gt;
37628 </BODY>
37629 </HTML>
37630 ====== h_config_wp_indexlines =====
37631 <HTML>
37632 <HEAD>
37633 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
37634 </HEAD>
37635 <BODY>
37636 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
37638 Web Alpine only.
37640 Number of index lines in table.
37643 <UL>   
37644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37645 </UL><P>
37646 &lt;End of help on this topic&gt;
37647 </BODY>
37648 </HTML>
37649 ====== h_config_wp_indexheight =====
37650 <HTML>
37651 <HEAD>
37652 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
37653 </HEAD>
37654 <BODY>
37655 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
37657 Web Alpine only.
37659 Index table row height.
37662 <UL>   
37663 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37664 </UL><P>
37665 &lt;End of help on this topic&gt;
37666 </BODY>
37667 </HTML>
37668 ====== h_config_rss_news =====
37669 <HTML>
37670 <HEAD>
37671 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
37672 </HEAD>
37673 <BODY>
37674 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
37676 Web Alpine only.
37678 RSS News feed.
37681 <UL>   
37682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37683 </UL><P>
37684 &lt;End of help on this topic&gt;
37685 </BODY>
37686 </HTML>
37687 ====== h_config_rss_weather =====
37688 <HTML>
37689 <HEAD>
37690 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
37691 </HEAD>
37692 <BODY>
37693 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
37695 Web Alpine only.
37697 RSS Weather feed.
37700 <UL>   
37701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37702 </UL><P>
37703 &lt;End of help on this topic&gt;
37704 </BODY>
37705 </HTML>
37706 ====== h_config_send_confirms_only_expanded =====
37707 <HTML>
37708 <HEAD>
37709 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
37710 </HEAD>
37711 <BODY>
37712 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
37714 This Web Alpine option specifies whether or not a Send confirmations
37715 happens when a composed message is readied for sending or not.  The
37716 default behavior is to not confirm that the nicknames were expanded to
37717 the intended addresses.
37720 <UL>   
37721 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37722 </UL><P>
37723 &lt;End of help on this topic&gt;
37724 </BODY>
37725 </HTML>
37726 ====== h_config_enable_jump_command =====
37727 <HTML>
37728 <HEAD>
37729 <TITLE>FEATURE: enable-jump-command</TITLE>
37730 </HEAD>
37731 <BODY>
37732 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
37734 This Web Alpine option specifies whether or not a Jump command is
37735 offered in the Message List and Message View pages.  The command is
37736 implemented as an input field in the left column of the List and View
37737 screens. 
37740 When enabled and a number is entered in the input field while the
37741 Message List is displayed, the Message List is reframed with the
37742 specified message.  While viewing a message, the message associated
37743 with the specified message number is displayed.
37746 <UL>   
37747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37748 </UL><P>
37749 &lt;End of help on this topic&gt;
37750 </BODY>
37751 </HTML>
37752 ====== h_config_enable_newmail_sound =====
37753 <HTML>
37754 <HEAD>
37755 <TITLE>FEATURE: enable-newmail-sound</TITLE>
37756 </HEAD>
37757 <BODY>
37758 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
37760 This Web Alpine option specifies whether or not a sound file is sent
37761 to the web browser along with the newmail notification message.
37765 <UL>   
37766 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37767 </UL><P>
37768 &lt;End of help on this topic&gt;
37769 </BODY>
37770 </HTML>
37771 ====== h_config_render_html_internally =====
37772 <HTML>
37773 <HEAD>
37774 <TITLE>FEATURE: render-html-internally</TITLE>
37775 </HEAD>
37776 <BODY>
37777 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
37779 By default, Web Alpine will pass cleansed HTML text you receive in messages 
37780 to the browser for display (rendering).  This feature causes Web Alpine to convert 
37781 the HTML text into plain text in the same way Unix and PC-Alpine do.
37785 <UL>   
37786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
37787 </UL><P>
37788 &lt;End of help on this topic&gt;
37789 </BODY>
37790 </HTML>
37791 ====== h_config_role_undo =====
37792 Yes, remember changes and exit back to list of roles; No, discard changes
37793 made in this screen; ^C, cancel exit and stay in this config screen.
37794 ====== h_exit_editor =====
37795 S, save changes and exit from the editor; D, do not save changes but
37796 do exit from the editor; or ^C, cancel exit and stay in the editor.
37797 ====== h_config_undo =====
37798 Yes, save changes and exit; No, exit without saving any changes made since
37799 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
37800 ====== h_os_index_whereis =====
37801 Enter ^V or ^Y to go immediately to the last or first message in the index.
37802 Or, enter the match string followed by RETURN.
37803 ====== h_os_index_whereis_agg =====
37804 Enter ^V or ^Y to go immediately to the last or first message in the index,
37805 Or, enter the match string followed by RETURN (or ^X to select all matches).
37806 =========== h_oe_add_full ==================
37807 Type the full name of the person being added and press the RETURN key.
37808 Press ^C to cancel addition.
37809 =========== h_oe_add_nick ==================
37810 Type a short nickname and press RETURN.  A nickname is a short easy-to-
37811 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
37812 ========== h_oe_add_addr ================
37813 Type the e-mail address and press RETURN.
37814 Press ^C to cancel addition.
37815 ========== h_oe_crlst_full ==============
37816 Type a long name or description for the list that you are creating and
37817 press RETURN.  Press ^C to cancel creation of list.
37818 =========== h_oe_crlst_nick =============
37819 Type a nickname (short, easy-to-remember name or single word) for the list
37820 you are creating and press RETURN.  Press ^C to cancel.
37821 ========== h_oe_crlst_addr ==============
37822 Type an e-mail address, or a nickname already in the address book that you
37823 want to be part of this list and press RETURN.
37824 ========== h_oe_adlst_addr =============
37825 Type an e-mail address or a nickname already in the address book that you
37826 want to add to this list and press RETURN.
37827 ========== h_oe_editab_nick ============
37828 Change the nickname using the arrow keys and delete key.  Press RETURN
37829 when done.  Press ^C to cancel editing and leave the nickname as it was.
37830 ========== h_oe_editab_full ============
37831 Change the full name using the arrow keys and delete key.  Press RETURN
37832 when done.  Press ^C to cancel editing and leave the full name as it was.
37833 ========== h_oe_editab_addr ============
37834 Change the address using the arrow keys and delete key.  Press RETURN
37835 when done.  Press ^C to cancel editing and leave the address as it was.
37836 ========== h_oe_editab_fcc ============
37837 Change the fcc using the arrow keys and delete key.  Press RETURN when
37838 done.  Press ^C to cancel editing and leave the fcc as it was.
37839 ========== h_oe_editab_comment ============
37840 Change the comment field using the arrow keys and delete key.  Press RETURN
37841 when done.  Press ^C to cancel editing and leave the comment as it was.
37842 ====== h_ab_forward =====
37843 Yes, expand nicknames and qualify local names with your current domain name;
37844 No, leave nicknames and local names as is;  ^C, cancel.
37845 ========== h_ab_export ==========
37846 Type the name of a file to write the addresses into and
37847 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
37848 ========== h_ab_edit_a_field ==========
37849 Edit any of the fields of the currently selected entry by typing one of the
37850 letters at the bottom of the screen.  Press ^C to cancel edit.
37851 ====== h_ab_del_data_revert =====
37852 Press B to completely delete addrbook and revert to default, C to delete config
37853 and revert while leaving data, or D to only delete data (make it empty).
37854 ====== h_ab_del_data_modify =====
37855 Press B to completely delete addrbook, C to delete configuration while leaving
37856 data, or D to delete data (make it empty) but leave config. ^C to cancel.
37857 ====== h_ab_del_config_modify =====
37858 Yes, remove this address book from my configuration.
37859 No, make no changes now.
37860 ====== h_ab_del_config_revert =====
37861 Yes, remove this address book from my config and revert to default.
37862 No, make no changes now.
37863 ====== h_ab_del_default =====
37864 Yes, remove this default address book from my configuration.
37865 No, make no changes now.
37866 ====== h_ab_really_delete =====
37867 Yes, delete the actual contents of the address book, not just the 
37868 configuration.  No, don't delete the data after all, cancel and start over.
37869 ====== h_ab_del_ignore =====
37870 Press I to ignore all the default address books for this category.  Press R to
37871 remove this one address book and add the others to your personal list.
37872 ====== h_ab_del_dir_ignore =====
37873 Press I to ignore all the default directory servers for this category.
37874 Press R to remove this one server and add the others to your personal list.
37875 ====== h_ab_copy_dups =====
37876 Yes, overwrite the existing entry.
37877 No, skip duplicates but save the rest. Press ^C to cancel.
37878 ====== h_confirm_cancel =====
37879 Type C to Confirm that you want to abandon the message you are composing.
37880 Type N or ^C to cancel out of the cancel and keep composing.
37881 ====== h_ab_text_or_vcard =====
37882 Text, start composer with displayed text already included.
37883 VCard, start composer with address book entry attached as a vCard. ^C cancels.
37884 ====== h_ab_backup_or_ldap =====
37885 Backup, copy email address from entry and allow editing of it.
37886 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
37887 ====== h_ldap_text_or_vcard =====
37888 Text: export displayed text for selected entry. Address: export only the
37889 email address. VCard: export entry in vCard format. ^C cancels.
37890 ====== h_ab_save_exp =====
37891 Save, save entry or entries to an address book.
37892 Export, save to file outside of pine. ^C cancels save.
37893 ====== h_ab_add =====
37894 A, add a brand new entry to this address book.
37895 E, edit the entry that is currently highlighted. ^C to cancel.
37896 ====== h_ab_shuf =====
37897 U, swap order of highlighted address book and the one above it.
37898 D, swap order of highlighted address book and the one below it. ^C to cancel.
37899 ====== h_ab_shuf_up =====
37900 U, swap order of highlighted address book and the one above it.
37901 Press ^C to cancel.
37902 ====== h_ab_shuf_down =====
37903 D, swap order of highlighted address book and the one below it.
37904 Press ^C to cancel.
37905 ====== h_folder_prop =====
37906 Count is # of messages in the folder, Unseen means messages that have not
37907 been read, New means messages that were Recently added to the folder.
37908 ====== h_role_shuf =====
37909 U, swap order of highlighted rule and the one above it.
37910 D, swap order of highlighted rule and the one below it. ^C to cancel.
37911 ====== h_role_shuf_up =====
37912 U, swap order of highlighted rule and the one above it.
37913 Press ^C to cancel.
37914 ====== h_role_shuf_down =====
37915 D, swap order of highlighted rule and the one below it.
37916 Press ^C to cancel.
37917 ====== h_incoming_shuf =====
37918 B, swap order of highlighted directory and the one before it.
37919 F, swap order of highlighted directory and the one after it. ^C to cancel.
37920 ====== h_incoming_shuf_up =====
37921 B, swap order of highlighted directory and the one before it.
37922 Press ^C to cancel.
37923 ====== h_incoming_shuf_down =====
37924 F, swap order of highlighted directory and the one after it.
37925 Press ^C to cancel.
37926 ====== h_dir_shuf =====
37927 U, swap order of highlighted directory and the one above it.
37928 D, swap order of highlighted directory and the one below it. ^C to cancel.
37929 ====== h_dir_shuf_up =====
37930 U, swap order of highlighted directory and the one above it.
37931 Press ^C to cancel.
37932 ====== h_dir_shuf_down =====
37933 D, swap order of highlighted directory and the one below it.
37934 Press ^C to cancel.
37935 ====== h_hdrcolor_shuf =====
37936 U, swap order of highlighted Header Color and the one above it.
37937 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
37938 ====== h_hdrcolor_shuf_up =====
37939 U, swap order of highlighted Header Color and the one above it.
37940 Press ^C to cancel.
37941 ====== h_hdrcolor_shuf_down =====
37942 D, swap order of highlighted Header Color and the one below it.
37943 Press ^C to cancel.
37944 ========== h_oe_editab_al ============
37945 Change the address using the arrow keys and delete key.  Press RETURN
37946 when done.  Press ^C to cancel editing and leave the address as it was.
37947 ========== h_dir_comp_search ===============
37948 Type a string to look for just like you would in the composer. Your configured
37949 rules for the servers with the implicit flag set will be used.
37950 ========== h_oe_searchab ===============
37951 Type the word or name you want to search for and press RETURN.  If you press
37952 RETURN without entering anything the word in [] will be searched for.
37953 ========== h_oe_chooseabook ==========
37954 Choose the address book you want to save the new entry in.
37955 Use ^N or ^P to change address books.  ^C to cancel.
37956 ========== h_oe_takeaddr ==========
37957 Edit the e-mail address using the arrow and delete keys.  Press RETURN
37958 when done.  Press ^C to cancel adding this entry to the address book.
37959 ========== h_oe_take_replace ==========
37960 Press R to replace the old entry with this new data.  You will still have
37961 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
37962 ========== h_oe_take_replace_or_add ==========
37963 Press R to replace the old entry.  Press A to add the selected addresses to
37964 the old existing list.  N to enter another nickname. ^C to cancel now.
37965 ========== h_oe_takename ==========
37966 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
37967 when done.  Press ^C to cancel adding this entry to the address book.
37968 ========== h_oe_takenick ==========
37969 Type a nickname (short easy-to-remember name, initials or single word) for this
37970 entry in the address book and press RETURN.  Press ^C to cancel addition.
37971 ========== h_oe_jump ==========
37972 Type the message number you want to jump to and press RETURN.  The word "end"
37973 represents the last message. Press ^C to cancel jumping to another message.
37974 ========== h_oe_jump_thd ==========
37975 Type the thread number you want to jump to and press RETURN.  The word "end"
37976 represents the last thread. Press ^C to cancel jumping to another thread.
37977 ========== h_oe_debuglevel ==========
37978 Higher number shows more debugging details.
37979 Press ^C if you want to cancel the change.
37980 ========== h_oe_broach ==========
37981 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
37982 to go to the previous/next collections in the list.  Press ^C to cancel goto.
37983 ========== h_oe_foldsearch ==========
37984 Type the text you want to search for in foldernames and press RETURN.  If you
37985 press RETURN without entering anything, any text in [] will be searched for.
37986 ========== h_oe_foldrename ==========
37987 Change the old name of the folder to the new name using the arrow and
37988 delete keys and press RETURN.  Press ^C to cancel rename.
37989 ========== h_oe_login ==========
37990 Enter your login name for the host you are opening the mailbox on.  Just press
37991 RETURN to use your login from this host as is, or edit it with delete key.
37992 ========== h_oe_passwd ==========
37993 Type your password for the host and login shown as part of the prompt.
37994 Press ^C to cancel opening folder.
37995 ========== h_oe_choosep ==========
37996 Enter the number associated with the printer you want to select.  Press ^C to
37997 cancel the printer selection.  The current selection is highlighted.
37998 ========== h_oe_customp ==========
37999 Type the name of the Unix print command and press RETURN.  Press ^C to
38000 cancel the printer selection.
38001 ========== h_oe_searchview ==========
38002 Type the word or name you want to search for and press RETURN.  If you press
38003 RETURN without entering anything the word in [] will be searched for.
38004 ========== h_oe_keylock ==========
38005 The keyboard is in use and locked by another user.  Only that user can
38006 unlock this keyboard by typing the password.
38007 ========== h_wt_expire ==========
38008 At the beginning of each month Alpine offers to rename your current sent-mail
38009 folder to one named for the month so you have a sent-mail folder for each month
38010 ========== h_wt_delete_old ==========
38011 It is the beginning of the month, and we need to conserve disk
38012 space.  Please delete any sent-mail that you do not need.
38013 ========== h_select_sort ==========
38014 Select the order for sorting the index by typing the capitalized letter.
38015 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
38016 ========== h_no_F_arg ============
38017 Enter name of file to be opened.
38019 ========== h_sticky_personal_name ==========
38020 Type in your name as you want it to appear on outgoing email.  This entry
38021 will be saved into your Alpine configuration file.
38022 ========== h_sticky_inbox ============
38023 INBOX syntax is usually {complete.machine.name}INBOX
38024 This entry will be saved in your Alpine configuration file.
38025 ========== h_sticky_smtp ============
38026 The name of the computer on your campus that relays your outgoing email
38027 to the Internet.  This entry will be saved in your Alpine configuration file.
38028 ========== h_sticky_user_id ==========
38029 The username or login-id part of your email address.  This entry will be
38030 saved in your Alpine configuration file.
38031 ========== h_sticky_domain ==========
38032 The domain part of your email address, NOT the name of your PC.  This
38033 entry will be saved in your Alpine configuration file.
38034 ========== h_bounce =========
38035 Enter the address or nickname of the intended recipient.  Alpine will resend
38036 the message, which will retain the original author's From: address.
38037 ========== h_incoming_add_folder_nickname =========
38038 Enter an (optional) nickname that will be used in lieu of the actual
38039 host and folder names in the FOLDER LIST display.
38040 ========== h_anon_forward ==========
38041 Enter the address of your intended recipient, or ^C to cancel.
38042 Example: jsmith@somewhere.edu
38043 ========== h_news_subscribe ==========
38044 Enter the name of the newsgroup to which you wish to subscribe,
38045 or ^C to cancel.  Example: comp.mail.pine
38046 ========== h_pipe_msg ==========
38047 Enter the name of the Unix command to which you wish to send this
38048 message, or ^C to cancel.
38049 ========== h_pipe_attach ==========
38050 Enter the name of the Unix command to which you wish to send this
38051 attachment, or ^C to cancel.
38052 ========== h_select_by_num ==========
38053 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
38054 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
38055 ========== h_select_by_gm_content ==========
38056 Enter your search key in the same way that you would enter a search
38057 key in the web interface for Gmail.
38058 ========== h_select_by_thrdnum ==========
38059 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
38060 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
38061 ========== h_select_txt_from ==========
38062 Messages with From: headers containing the entered string will be selected.
38063 ^C to cancel. ^G again to see original options.
38064 ========== h_select_txt_not_from ==========
38065 Messages without From: headers containing the entered string will be selected.
38066 ^C to cancel. ^G again to see original options.
38067 ========== h_select_txt_to ==========
38068 Messages with To: headers containing the entered string will be selected.
38069 ^C to cancel. ^G again to see original options.
38070 ========== h_select_txt_not_to ==========
38071 Messages without To: headers containing the entered string will be selected.
38072 ^C to cancel. ^G again to see original options.
38073 ========== h_select_txt_cc ==========
38074 Messages with Cc: headers containing the entered string will be selected.
38075 ^C to cancel. ^G again to see original options.
38076 ========== h_select_txt_not_cc ==========
38077 Messages without Cc: headers containing the entered string will be selected.
38078 ^C to cancel. ^G again to see original options.
38079 ========== h_select_txt_subj ==========
38080 Messages with Subject: headers containing the entered string will be selected.
38081 ^C to cancel.  ^X enters Subject: line of current message.
38082 ========== h_select_txt_not_subj ==========
38083 Messages without Subject headers containing the entered string will be selected.
38084 ^C to cancel.  ^X enters Subject: line of current message.
38085 ========== h_select_txt_all ==========
38086 All messages containing the entered string will be selected.  Headers and body,
38087 but not encoded attachments, will be compared.  Enter ^C to cancel.
38088 ========== h_select_txt_not_all ==========
38089 All messages that don't contain the entered string will be selected.  Headers
38090 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
38091 ========== h_select_txt_body ==========
38092 All messages containing the entered string will be selected. Body text, but
38093 not headers or encoded attachments, will be compared. ^C to cancel.
38094 ========== h_select_txt_not_body ==========
38095 All messages that don't contain the entered string will be selected. Body
38096 text, but not headers or encoded attachments, will be compared. ^C to cancel.
38097 ========== h_select_txt_recip ==========
38098 Messages with Cc: or To: headers containing the entered string will be selected.
38099 ^C to cancel. ^G again to see original options.
38100 ========== h_select_txt_not_recip ==========
38101 Messages without Cc: or To: headers containing the string will be selected.
38102 ^C to cancel. ^G again to see original options.
38103 ========== h_select_txt_partic ==========
38104 Messages with Cc, To, or From headers containing the string will be selected.
38105 ^C to cancel. ^G again to see original options.
38106 ========== h_select_txt_not_partic ==========
38107 Messages without Cc, To, or From headers containing the string will be selected.
38108 ^C to cancel. ^G again to see original options.
38109 ========== h_select_date ==========
38110 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
38111 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
38112 ========== h_attach_index_whereis ==========
38113 Enter some text that appears in the Attachment Index entry for the desired
38114 attachment.  The first attachment containing that text will be highlighted.
38115 ========== h_kb_lock ==========
38116 Keystrokes entered here (up to a RETURN) comprise a password that must
38117 be entered again later in order to unlock the keyboard.
38118 ========== h_compose_default ==========
38119 N, compose a new message. R, set a role.
38120 ^C to cancel.
38121 ========== h_untranslatable ==========
38122 Send using UTF-8 character set; Send but replace untranslatable characters
38123 with question marks; return to the composer; or cancel message altogether.
38124 ========== h_compose_intrptd ==========
38125 N, compose a new msg. I, continue interrupted msg. R, set a role.
38126 ^C to cancel.
38127 ========== h_compose_postponed ==========
38128 N, compose a new message. P, continue postponed msg. R, set a role.
38129 ^C to cancel.
38130 ========== h_compose_intrptd_postponed ==========
38131 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
38132 R, set a role. ^C to cancel.
38133 ========== h_compose_form ==========
38134 N, compose a new message. F, use form letter. R, set a role.
38135 ^C to cancel.
38136 ========== h_compose_intrptd_form ==========
38137 N, compose a new msg. I, continue interrupted msg. F, use form letter.
38138 R, set a role. ^C to cancel.
38139 ========== h_compose_postponed_form ==========
38140 N, compose a new message. P, continue postponed msg. F, use form letter.
38141 R, set a role. ^C to cancel.
38142 ========== h_compose_intrptd_postponed_form ==========
38143 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
38144 F, use form letter. R, set a role. ^C to cancel.
38145 ========== h_config_context_del_except ==========
38146 If you delete the last exceptional collection you can only add it back by
38147 manually editing the exceptions config file.
38148 ========== h_config_whereis ==========
38149 To move quickly to a particular line, enter a search string or
38150 ^C to cancel.
38151 ========== h_config_edit_scorei ==========
38152 Enter interval in the form (min,max). -INF and INF may be used to represent
38153 -infinity and infinity. ^C to cancel change. RETURN to accept change.
38154 ========== h_config_add ==========
38155 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
38156 pressing RETURN sets the Empty Value (this turns off any global default).
38157 ========== h_config_add_custom_color ==========
38158 Enter a header fieldname. For example, "subject" or "from".
38160 ========== h_config_add_pat_hdr ==========
38161 Enter a header fieldname. For example, "reply-to" or "organization" or
38162 any fieldname you want that isn't included already.
38163 ========== h_config_print_opt_choice ==========
38164 You may edit either the initialization string (characters printed before
38165 printing starts) or the trailer string.  Choose one or ^C to cancel.
38166 ========== h_config_print_init ==========
38167 Enter a C-style string for this.  You may use common backslash escapes like
38168 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
38169 ========== h_config_change ==========
38170 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
38171 delete current (highlighted) character, etc.  Enter ^C to cancel change.
38172 ========== h_config_replace_add ==========
38173 Replace ignores the current default, Add places the current default in your
38174 editing buffer as if you had typed it in.
38175 ========== h_config_insert_after ==========
38176 Enter a nickname for this print command.  (InsertBefore puts the new item
38177 before the current line, InsertAfter puts it after the current line.)
38178 ========== h_config_print_cmd ==========
38179 Enter command to be executed for the printer.  Use normal editing keys
38180 to modify, ^C to cancel, carriage return to accept current value.
38181 ========== h_config_role_del ==========
38182 Answering Yes will remove this rule completely from your rules list.
38183 ========== h_config_role_addfile ==========
38184 Type the name of a file to add to your configuration. You don't need to
38185 use a file, you may add rules directly (with Add) without using a file.
38186 ========== h_config_role_delfile ==========
38187 Answering Yes will remove this rule file completely from your rules list.
38188 The rules data file itself will not be removed.
38189 ========== h_config_print_del ==========
38190 Answering Yes will remove this printer completely from your printer list.
38191 ========== h_config_print_name_cmd ==========
38192 You may edit the Nickname of this printer, the Command to be executed when
38193 printing, or change the Options associated with this printer.
38194 ========== h_send_check_fcc ==========
38195 Yes, send message without an Fcc.
38196 No, return to composer.
38197 ========== h_send_check_subj ==========
38198 Yes, send message without a Subject.
38199 No, return to composer.
38200 ========== h_send_check_to_cc ==========
38201 Yes, send message without a To address, or a Cc address, or a Newsgroup.
38202 No, return to composer.
38203 ========== h_send_fcc_only ==========
38204 Yes, copy message to Fcc only and send to NO recipients.
38205 No, return to composer.
38206 ========== h_send_prompt ==========
38207 Yes, send the message.
38208 No or ^C, return to composer.
38209 ========== h_send_prompt_flowed ==========
38210 Yes, send the message.  No or ^C, return to composer.
38211 What's Flowed? See Do Not Send Flowed Text in config screen.
38212 ========== h_send_prompt_dsn ==========
38213 Yes, send the message.  No or ^C, return to composer.
38214 What's DSNOpts? See Enable Delivery Status Notification in config screen.
38215 ========== h_send_prompt_dsn_flowed ==========
38216 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
38217 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
38218 ========== h_role_confirm ==========
38219 Yes, use displayed role. No, compose without a role.
38220 ^C, cancel the message. ^T, select a role from your other eligible roles.
38221 ========== h_norole_confirm ==========
38222 Return, compose without a role.
38223 ^C, cancel the message. ^T, select a role from your eligible roles.
38224 ========== h_custom_print ==========
38225 Enter a Unix command that accepts its data on standard input.
38226 Alpine will display any information the command sends to standard output.
38227 ========== h_convert_abooks_and_sigs ==========
38228 You will be given the opportunity to convert address books and signature files
38229 to remote configurations.
38230 ========== h_convert_abooks ==========
38231 You will be given the opportunity to convert address books to remote
38232 configurations.
38233 ========== h_flag_keyword ==========
38234 Enter the name of the keyword you want to add for this folder.
38235 No spaces, parentheses, braces, percents or asterisks are allowed.
38236 ========== h_select_keyword ==========
38237 Enter the keyword you want to match, or use ^T to select a keyword from a list
38238 of possible keywords for this folder. Use ! to look for non-matches instead.
38239 ========== h_type_keyword ==========
38240 Enter the keyword you want to add. You may add a nickname in the next step.
38241 No spaces, parentheses, braces, percents or asterisks are allowed.
38242 ========== h_type_keyword_nickname ==========
38243 Enter an optional nickname for the keyword you want to add.
38244 Type Carriage return to use the keyword name instead of a nickname.
38245 ========== h_convert_sigs ==========
38246 You will be given the opportunity to convert signature files to remote
38247 configurations.
38248 ========== h_convert_abook ==========
38249 Yes is fairly safe. You will be ADDing a remote address book that is a copy
38250 of the current address book. The current abook won't be removed automatically.
38251 ========== h_convert_sig ==========
38252 Answering Yes copies the contents of the signature file into your Alpine
38253 configuration file. After that, the contents of the file will not be used.
38254 ========== h_save_addman ==========
38255 Enter the simple name of the folder you want to add. Carriage return to
38256 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
38257 ========== h_reopen_folder ==========
38258 Yes reopens the folder, as if you were starting over. This uncovers new mail.
38259 No leaves the folder index as it was without discovering new mail.
38260 ========== h_convert_pinerc_server ==========
38261 This is the name of the host (computer) where the remote Alpine configuration
38262 will be stored. This should be an IMAP server that you have permission to use.
38263 ========== h_convert_pinerc_folder ==========
38264 Enter the correct remote folder name. This folder is special and should
38265 contain only configuration data. It shouldn't contain other mail messages.
38266 ========== h_role_compose ==========
38267 Compose a New message, Reply to current message, Forward current message, or
38268 Bounce message. Then you will be asked to choose one of your Roles to be used.
38269 ========== h_role_aggregate ==========
38270 Compose a reply, or forward, or bounce the selected messages. Then you 
38271 will be asked to choose one of your Roles to be used for this operation.
38272 ========== h_save_size_changed ==========
38273 The reported size of a message is not the same as the actual size. Answer Yes
38274 to continue and hope for the best or No to Cancel the entire Save.
38275 ========== h_select_by_larger_size ==========
38276 Enter a number or ^C to cancel. All messages greater than this many characters
38277 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
38278 ========== h_select_by_smaller_size ==========
38279 Enter a number or ^C to cancel. All messages less than this many characters
38280 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
38281 ========== h_preserve_field ==========
38282 Use 'p' to toggle between preserving or not preserving the original To:
38283 and Cc: fields of the message. Enter ^C to cancel message.
38284 ========== h_privacy_policy ==========
38285 x-alpine-http:http://alpine.x10host.com/privacy.html
38286 ========== h_apache_license ==========
38287 x-alpine-http:http://alpine.x10host.com/legal/apache_license.html