X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=config%2Fconfig.c;h=5e250414946e3686b97a1a1253c1558109566c0a;hp=9add9e29e9c65f9c99a4effb33fb27d2aecb607d;hb=18591f8e001ecedbee48a51c1d1f08ebaa1c15c8;hpb=6c75e2f0f00732488aa03b967713d95037edd895 diff --git a/config/config.c b/config/config.c index 9add9e2..5e25041 100644 --- a/config/config.c +++ b/config/config.c @@ -14,7 +14,6 @@ ** nmh globals */ -char *mhlibdir = NMHLIBDIR; char *mhetcdir = NMHETCDIR; char *invo_name; /* command invocation name */ @@ -27,7 +26,7 @@ struct node *m_defs; /* profile/context structure */ /* -** nmh constants +** nmh constants: standard file names ** ** Important: Adjust uip/mmh.sh if you make changes here! */ @@ -51,10 +50,6 @@ char *context = "context"; */ char *mh_seq = ".mh_sequences"; -/* name of current message "sequence" */ -char *current = "cur"; - - /* standard component files */ char *components = "components"; /* comp */ char *replcomps = "replcomps"; /* repl */ @@ -66,147 +61,80 @@ char *digestcomps = "digestcomps"; /* forw -digest */ /* standard format (filter) files */ char *mhlformat = "mhl.format"; /* show */ -char *mhlreply = "mhl.reply"; /* repl -filter */ -char *mhlforward = "mhl.forward"; /* forw -filter */ +char *mhlreply = "mhl.reply"; /* repl */ +char *scanformat = "scan.default"; /* scan/inc */ -char *inbox = "Inbox"; -char *defaultfolder = "+inbox"; +/* +** standard names for: mail folders, sequences, and profile entries +*/ + +/* some default folder names */ +char *defaultfolder = "+inbox"; char *draftfolder = "+drafts"; +char *trashfolder = "+trash"; +char *inbox = "Inbox"; /* profile entry name to specify the default folder */ char *curfolder = "Current-Folder"; + +/* predefined sequences */ +char *seq_all = "a"; +char *seq_beyond = "b"; /* the previous `new' sequence */ +char *seq_cur = "c"; +char *seq_first = "f"; +char *seq_last = "l"; +char *seq_next = "n"; +char *seq_prev = "p"; +char *seq_unseen = "u"; +char *seq_neg = "!"; + char *usequence = "Unseen-Sequence"; char *psequence = "Previous-Sequence"; char *nsequence = "Sequence-Negation"; /* profile entries for storage locations */ char *nmhstorage = "nmh-storage"; -char *nmhcache = "nmh-cache"; -char *nmhprivcache = "nmh-private-cache"; - -/* profile entry for external ftp access command */ -char *nmhaccessftp = "nmh-access-ftp"; +/* Default header field names */ +char *attach_hdr = "Attach"; +char *sign_hdr = "Sign"; +char *enc_hdr = "Enc"; -/* -** nmh processes -*/ +/* the tool to query the mime type of a file */ +char *mimetypequery = "Mime-Type-Query"; +char *mimetypequeryproc = "file -b --mime"; -/* -** This is the program to process MIME composition files -*/ -char *buildmimeproc = NMHBINDIR"/mhbuild"; -/* -** This is the program to `cat' a file. -*/ -char *catproc = "/bin/cat"; /* -** mhl runs this program as a visual-end. +** nmh default programs */ -char *faceproc = NULL; /* -** This program is usually called directly by users, but it is -** also invoked by the spost program to process an "Fcc", or by -** comp/repl/forw/dist to refile a draft message. +** This is the default program invoked by a "list" or "display" response +** at the "What now?" prompt. It will be given the absolute pathname of +** the message to show. */ -char *fileproc = NMHBINDIR"/refile"; - -/* -** This program is called to incorporate messages into a folder. -*/ -char *incproc = NMHBINDIR"/inc"; - -/* -** When a user runs an nmh program for the first time, this program -** is called to create his nmh profile, and mail directory. -*/ -char *installproc = NMHLIBDIR"/install-mh"; - -/* -** This is the default program invoked by a "list" response -** at the "What now?" prompt. It is also used by the draft -** folder facility in comp/dist/forw/repl to display the -** draft message. -*/ -char *lproc = "more"; - -/* -** This is the path for the Bell equivalent mail program. -*/ -char *mailproc = NMHBINDIR"/mhmail"; +char *listproc = "show"; /* ** This is used by mhl as a front-end. It is also used -** by mhshow as the default method of displaying message bodies +** by show(1) as the default method of displaying message bodies ** or message parts of type text/plain. */ -char *moreproc = "more"; - -/* -** This is the program (mhl) used to filter messages. It is -** used by mhshow to filter and display the message headers of -** MIME messages. It is used by repl/forw (with -filter) -** to filter the message to which you are replying/forwarding. -** It is used by send/spost (with -filter) to filter the message -** for "Bcc:" recipients. -*/ -char *mhlproc = NMHLIBDIR"/mhl"; +char *defaultpager = "more"; /* -** This program is called to pack a folder. -*/ -char *packproc = NMHBINDIR"/packf"; - -/* -** This is the delivery program called by send to actually -** deliver mail to users. This is the interface to the MTS. -*/ -char *postproc = NMHLIBDIR"/spost"; - -/* -** This is program is called by slocal to handle -** the action `folder' or `+'. -*/ -char *rcvstoreproc = NMHLIBDIR"/rcvstore"; - -/* -** This program is called to remove a folder. -*/ -char *rmfproc = NMHBINDIR"/rmf"; - -/* -** This program is called to remove a message by rmm or refile -nolink. -** It's usually empty, which means to rename the file to a backup name. -*/ -char *rmmproc = NULL; - -/* -** This program is usually called by the user's whatnowproc, but it -** may also be called directly to send a message previously composed. - */ -char *sendproc = NMHBINDIR"/send"; - -/* -** This is the path to the program used by "show" -** to display non-text (MIME) messages. -*/ -char *showmimeproc = NMHBINDIR"/mhshow"; - -/* -** This is the default program called by "show" to filter -** and display standard text (non-MIME) messages. It can be -** changed to a pager (such as "more" or "less") if you prefer -** that such message not be filtered in any way. +** This is the editor invoked by the various message +** composition programs. It SHOULD be a full screen +** editor, such as vi or emacs, but any editor will work. */ -char *showproc = NMHLIBDIR"/mhl"; +char *defaulteditor = "vi"; /* ** This program is called after comp, et. al., have built a draft */ -char *whatnowproc = NMHBINDIR"/whatnow"; +char *whatnowproc = "whatnow"; /* ** This is the sendmail interface to use for sending mail. @@ -214,35 +142,25 @@ char *whatnowproc = NMHBINDIR"/whatnow"; char *sendmail = SENDMAILPATH; /* -** The prefix that is prepended to the name of message files when they -** are "removed" by rmm. This should typically be `,' or `#'. +** This is the path to the system mail spool directory (e.g. `/var/mail'). */ -char *backup_prefix = ","; +char *mailspool = MAILSPOOL; -/* -** This is the editor invoked by the various message -** composition programs. It SHOULD be a full screen -** editor, such as vi or emacs, but any editor will work. -*/ -char *defaulteditor = "vi"; /* -** Name of link to file to which you are replying or which you are -** redistributing. See `$mhaltmsg' in the mh-profile(5) man page. +** file stuff */ -char *altmsglink = "@"; /* ** Folders (directories) are created with this protection (mode) */ -char *foldprot = "700"; +char *foldprot = "0700"; /* ** Every NEW message will be created with this protection. When a -** message is filed it retains its protection, so this only applies -** to messages coming in through inc. +** message is filed it retains its protection. */ -char *msgprot = "600"; +char *msgprot = "0600";