X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=config%2Fconfig.c;h=9b64e29b8c1f295c79095b4ec47afeda5103a2f1;hp=060334006f30018695c42057067fab401727523d;hb=e87123959d15f3b190494dffdd8bce335c137874;hpb=f6aa95b724fd8c791164abe7ee5468bf5c34f226 diff --git a/config/config.c b/config/config.c index 0603340..9b64e29 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. @@ -236,7 +236,7 @@ char *mailproc = nmhbindir (/mhmail); * 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 @@ -331,13 +331,32 @@ char *whatnowproc = nmhbindir (/whatnow); char *whomproc = nmhbindir (/whom); +/* + * This is the sendmail interface to use for sending mail. + */ + +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 @@ -354,7 +373,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 @@ -362,5 +381,5 @@ char *foldprot = DEFAULT_FOLDER_MODE; * to messages coming in through inc. */ -char *msgprot = DEFAULT_MESSAGE_MODE; +char *msgprot = "600";