X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=config%2Fconfig.c;h=f03cd196dba8edaaeaa5f9df431672e733075d1e;hp=9d961bdb59954c71eecabf51e13d8f8eea2f173e;hb=f480c03187724e54e5391ee61b810827da319a6c;hpb=6f1a8c3b8d6f19bbe33e7d3fa746ae1d2e9ac455 diff --git a/config/config.c b/config/config.c index 9d961bd..f03cd19 100644 --- a/config/config.c +++ b/config/config.c @@ -222,7 +222,7 @@ char *installproc = nmhlibdir (/install-mh); * draft message. */ -char *lproc = DEFAULT_PAGER; +char *lproc = "more"; /* * This is the path for the Bell equivalent mail program. @@ -232,15 +232,15 @@ char *mailproc = nmhbindir (/mhmail); /* * This is used by mhl as a front-end. It is also used - * by mhn as the default method of displaying message bodies + * by mhshow as the default method of displaying message bodies * or message parts of type text/plain. */ -char *moreproc = DEFAULT_PAGER; +char *moreproc = "more"; /* * This is the program (mhl) used to filter messages. It is - * used by mhn to filter and display the message headers of + * 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 @@ -250,13 +250,6 @@ char *moreproc = DEFAULT_PAGER; char *mhlproc = nmhlibdir (/mhl); /* - * This is the super handy BBoard reading program, which is - * really just the nmh shell program. - */ - -char *mshproc = nmhbindir (/msh); - -/* * This program is called to pack a folder. */ @@ -313,13 +306,6 @@ char *showmimeproc = nmhbindir (/mhshow); char *showproc = nmhlibdir (/mhl); /* - * This program is called by vmh as the back-end to the window management - * protocol - */ - -char *vmhproc = nmhbindir (/msh); - -/* * This program is called after comp, et. al., have built a draft */ @@ -338,12 +324,25 @@ char *whomproc = nmhbindir (/whom); 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 `#'. + */ + +char *backup_prefix = ","; + +/* * 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 = DEFAULT_EDITOR; +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. + */ +char *altmsglink = "@"; /* * This is the global nmh alias file. It is somewhat obsolete, since @@ -360,7 +359,7 @@ char *AliasFile = nmhetcdir (/MailAliases); * Folders (directories) are created with this protection (mode) */ -char *foldprot = DEFAULT_FOLDER_MODE; +char *foldprot = "700"; /* * Every NEW message will be created with this protection. When a @@ -368,5 +367,5 @@ char *foldprot = DEFAULT_FOLDER_MODE; * to messages coming in through inc. */ -char *msgprot = DEFAULT_MESSAGE_MODE; +char *msgprot = "600";