X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..0a7838e0e8026cbfe8a8924ef256ad9e930fb03d:/config/config.c?ds=sidebyside diff --git a/config/config.c b/config/config.c index 2a01c1bb..3971d528 100644 --- a/config/config.c +++ b/config/config.c @@ -2,14 +2,13 @@ /* * config.c -- master nmh configuration file * - * $Id$ + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include - -#ifdef MHRC -# include -#endif +#include #define nmhbindir(file) NMHBINDIR#file #define nmhetcdir(file) NMHETCDIR#file @@ -32,21 +31,16 @@ etcpath (char *file) { static char epath[PATH_MAX]; char *cp; -#ifdef MHRC char *pp; struct passwd *pw; -#endif -#ifdef MHRC context_read(); -#endif switch (*file) { case '/': /* If already absolute pathname, return it */ return file; -#ifdef MHRC case '~': /* Expand ~username */ if ((cp = strchr(pp = file + 1, '/'))) @@ -70,12 +64,16 @@ etcpath (char *file) if (access (epath, R_OK) != NOTOK) return epath; /* else fall */ try_it: -#endif /* MHRC */ default: /* Check nmh Mail directory */ - if (access ((cp = m_mailpath (file)), R_OK) != NOTOK) + if (access ((cp = m_mailpath (file)), R_OK) != NOTOK) { + /* Will leak because caller doesn't know cp was + dynamically allocated. */ return cp; + } else { + free (cp); + } } /* Check nmh `etc' directory */ @@ -89,9 +87,9 @@ try_it: */ struct swit anoyes[] = { - { "no", 0 }, - { "yes", 0 }, - { NULL, 0 } + { "no", 0, 0 }, + { "yes", 0, 1 }, + { NULL, 0, 0 } }; /* @@ -104,6 +102,9 @@ char *mh_defaults = nmhetcdir (/mh.profile); /* default name of user profile */ char *mh_profile = ".mh_profile"; +/* name of credentials file, defaults to .netrc in either Path or $HOME. */ +char *credentials_file; + /* name of current message "sequence" */ char *current = "cur"; @@ -139,6 +140,9 @@ char *nmhprivcache = "nmh-private-cache"; /* profile entry for external ftp access command */ char *nmhaccessftp = "nmh-access-ftp"; +/* profile entry for external url access command */ +char *nmhaccessurl = "nmh-access-url"; + char *mhlibdir = NMHLIBDIR; char *mhetcdir = NMHETCDIR; @@ -152,15 +156,11 @@ char *mhetcdir = NMHETCDIR; char *context = "context"; /* - * Default name of file for public sequences. If NULL, - * then nmh will use private sequences by default, unless the - * user defines a value using the "mh-sequences" profile entry. + * Default name of file for public sequences. If "\0" (an empty + * "mh-sequences" profile entry), then nmh will use private sequences by + * default. */ -#ifdef NOPUBLICSEQ -char *mh_seq = NULL; -#else char *mh_seq = ".mh_sequences"; -#endif /* * nmh globals @@ -186,12 +186,6 @@ char *buildmimeproc = nmhbindir (/mhbuild); */ char *catproc = "/bin/cat"; -/* - * mhl runs this program as a visual-end. - */ - -char *faceproc = NULL; - /* * This program is usually called directly by users, but it is * also invoked by the post program to process an "Fcc", or by @@ -200,18 +194,18 @@ char *faceproc = NULL; char *fileproc = nmhbindir (/refile); -/* - * This program is called to incorporate messages into a folder. +/* + * This program is used to optionally format the bodies of messages by + * "mhl". */ -char *incproc = nmhbindir (/inc); +char *formatproc = NULL; -/* - * When a user runs an nmh program for the first time, this program - * is called to create his nmh profile, and mail directory. +/* + * This program is called to incorporate messages into a folder. */ -char *installproc = nmhlibdir (/install-mh); +char *incproc = nmhbindir (/inc); /* * This is the default program invoked by a "list" response @@ -220,7 +214,7 @@ char *installproc = nmhlibdir (/install-mh); * draft message. */ -char *lproc = DEFAULT_PAGER; +char *lproc = NULL; /* * This is the path for the Bell equivalent mail program. @@ -234,7 +228,7 @@ char *mailproc = nmhbindir (/mhmail); * or message parts of type text/plain. */ -char *moreproc = DEFAULT_PAGER; +char *moreproc = NULL; /* * This is the program (mhl) used to filter messages. It is @@ -274,12 +268,6 @@ char *postproc = nmhlibdir (/post); 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. @@ -329,14 +317,6 @@ char *whatnowproc = nmhbindir (/whatnow); char *whomproc = nmhbindir (/whom); -/* - * 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; - /* * This is the global nmh alias file. It is somewhat obsolete, since * global aliases should be handled by the Mail Transport Agent (MTA). @@ -352,7 +332,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 @@ -360,5 +340,5 @@ char *foldprot = DEFAULT_FOLDER_MODE; * to messages coming in through inc. */ -char *msgprot = DEFAULT_MESSAGE_MODE; +char *msgprot = "600";