1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/****** BEGIN USER CONFIGURATION SECTION *****/
/*
* IMPORTANT: You should no longer need to edit this file to handle
* your operating system. That should be handled and set correctly by
* configure now.
*
* These are slowly being phased out, but currently
* not everyone is auto-configured. Then decide if you
* wish to change the features that are compiled into nmh.
*/
/*
* If you have defined DOT_LOCKING, then the default is to
* place the lock files in the same directory as the file that
* is to be locked. Alternately, if you define LOCKDIR, you
* can specify that all lock files go in a specific directory.
* Don't define this unless you know you need it.
*/
/* #define LOCKDIR "/usr/spool/locks" */
/*
* Define this if your passwords are stored in some type of
* distributed name service, such as NIS, or NIS+.
*/
#define DBMPWD 1
/*
* Directs nmh not to try and rewrite addresses
* to their official form. You probably don't
* want to change this without good reason.
*/
#define DUMB 1
/*
* Define this if you do not want nmh to attach the local hostname
* to local addresses. You must also define DUMB. You probably
* don't need this unless you are behind a firewall.
*/
/* #define REALLYDUMB 1 */
/*
* Starting on January 1, 2000, some MUAs like ELM and Ultrix's DXmail started
* generated bad dates ("00" or "100" for the year). If this #define is active,
* we use windowing to correct those dates to what we presume to be the intended
* values. About the only time this could get us into trouble would be if a MUA
* was generating a year of "00" in 2001 or later, due to an unrelated bug. In
* this case we would "correct" the year to 2000, which could result in
* inaccurate bug reports against the offending MUA. A much more esoteric case
* in which you might not want to #define this would be if you were OCR'ing in
* old written correspondence and saving it in email format, and you had dates
* of 1899 or earlier.
*/
#define FIX_NON_Y2K_COMPLIANT_MUA_DATES 1
/*
* Directs inc/slocal to extract the envelope sender from "From "
* line. If inc/slocal is saving message to folder, then this
* sender information is then used to create a Return-Path
* header which is then added to the message.
*/
#define RPATHS 1
/*
* If defined, slocal will use `mbox' format when saving to
* your standard mail spool. If not defined, it will use
* mmdf format.
*/
#define SLOCAL_MBOX 1
/*
* If this is defined, nmh will recognize the ~ construct.
*/
#define MHRC 1
/*
* Compile simple ftp client into mhn. This will be used by mhn
* for ftp access unless you have specified another access method
* in your .mh_profile or mhn.defaults. Use the "mhn-access-ftp"
* profile entry to override this. Check mhn(1) man page for
* details.
*/
#define BUILTIN_FTP 1
/*
* If you enable POP support, this is the the port name that nmh will use. Make
* sure this is defined in your /etc/services file (or its NIS/NIS+ equivalent).
* If you are using KPOP, you will need to change this to "kpop" unless you want
* to be able to use both POP3 _and_ Kerberized POP and plan to use inc and
* msgchk's -kpop switch every time in the latter case.
*/
#define POPSERVICE "pop3"
/*
* Define the default creation modes for folders and messages.
*/
#define DEFAULT_FOLDER_MODE "700"
#define DEFAULT_MESSAGE_MODE "600"
/*
* Name of link to file to which you are replying.
*/
#define LINK "@"
/*
* Define to 1 if your vi has ATT bug, such that it returns
* non-zero exit codes on `pseudo-errors'.
*/
#undef ATTVIBUG
/***** END USER CONFIGURATION SECTION *****/
@TOP@
|