Reworked LINK, now named `altmsglink', similar to BACKUP_PREFIX.
[mmh] / config / config.c
index 8a613b6..9b64e29 100644 (file)
@@ -2,8 +2,6 @@
 /*
  * 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.
@@ -198,7 +196,7 @@ 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
+ * also invoked by the spost program to process an "Fcc", or by
  * comp/repl/forw/dist to refile a draft message.
  */
 
@@ -224,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.
@@ -238,14 +236,14 @@ 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
  * used by mhn 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/post (with -filter) to filter the message
+ * It is used by send/spost (with -filter) to filter the message
  * for "Bcc:" recipients.
  */
 
@@ -269,7 +267,7 @@ char *packproc = nmhbindir (/packf);
  * deliver mail to users.  This is the interface to the MTS.
  */
 
-char *postproc = nmhlibdir (/post);
+char *postproc = nmhlibdir (/spost);
 
 /*
  * This is program is called by slocal to handle
@@ -333,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
@@ -356,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
@@ -364,5 +381,5 @@ char *foldprot = DEFAULT_FOLDER_MODE;
  * to messages coming in through inc.
  */
 
-char *msgprot = DEFAULT_MESSAGE_MODE;
+char *msgprot = "600";