fb216021ab4e2d44665a0c461d4f31ba97efc39f
[mmh] / config / config.c
1 /*
2 ** config.c -- master nmh configuration file
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10
11
12
13 /*
14 ** nmh globals
15 */
16
17 char *mhlibdir = NMHLIBDIR;
18 char *mhetcdir = NMHETCDIR;
19
20 char *invo_name;        /* command invocation name    */
21 char *mypath;           /* user's $HOME               */
22 char *mmhpath;          /* pathname of user's mmh dir */
23 char *defpath;          /* pathname of user's profile */
24 char *ctxpath;          /* pathname of user's context */
25 char ctxflags;          /* status of user's context   */
26 struct node *m_defs;    /* profile/context structure  */
27
28
29 /*
30 ** nmh constants: standard file names
31 **
32 ** Important: Adjust uip/mmh.sh if you make changes here!
33 */
34
35 /* default name of the mail storage */
36 char *mailstore = "Mail";
37
38 /* default name of user profile */
39 char *mmhdir = ".mmh";
40
41 /* default name of user profile */
42 char *profile = "profile";
43
44 /* default name for the nmh context file */
45 char *context = "context";
46
47 /*
48 ** Default name of file for public sequences. Gets overridden
49 ** by a `Mh-Sequences' entry in the user's profile. Set to NULL
50 ** or the empty string to use private sequences by default.
51 */
52 char *mh_seq = ".mh_sequences";
53
54 /* standard component files */
55 char *components     = "components";       /* comp         */
56 char *replcomps      = "replcomps";        /* repl         */
57 char *replgroupcomps = "replgroupcomps";   /* repl -group  */
58 char *forwcomps      = "forwcomps";        /* forw         */
59 char *distcomps      = "distcomps";        /* dist         */
60 char *rcvdistcomps   = "rcvdistcomps";     /* rcvdist      */
61 char *digestcomps    = "digestcomps";      /* forw -digest */
62
63 /* standard format (filter) files */
64 char *mhlformat      = "mhl.format";       /* show         */
65 char *mhlreply       = "mhl.reply";        /* repl -filter */
66 char *mhlforward     = "mhl.forward";      /* forw -filter */
67
68
69 /*
70 ** standard names for: mail folders, sequences, and profile entries
71 */
72
73 /* some default folder names */
74 char *defaultfolder = "+inbox";
75 char *draftfolder = "+drafts";
76
77 /* name of current message "sequence" */
78 char *current = "cur";
79
80 char *inbox = "Inbox";  /* profile entry name to specify the default folder */
81 char *curfolder = "Current-Folder";
82 char *usequence = "Unseen-Sequence";
83 char *psequence = "Previous-Sequence";
84 char *nsequence = "Sequence-Negation";
85
86 /* profile entries for storage locations */
87 char *nmhstorage   = "nmh-storage";
88 char *nmhcache     = "nmh-cache";
89 char *nmhprivcache = "nmh-private-cache";
90
91 /* profile entry for external ftp access command */
92 char *nmhaccessftp = "nmh-access-ftp";
93
94
95
96 /*
97 ** nmh default programs
98 */
99
100 /*
101 ** This is the program to process MIME composition files
102 */
103 char *buildmimeproc = NMHBINDIR"/mhbuild";
104
105 /*
106 ** This is the program to `cat' a file.
107 */
108 char *catproc = "/bin/cat";
109
110 /*
111 ** This program is usually called directly by users, but it is
112 ** also invoked by the spost program to process an "Fcc", or by
113 ** comp/repl/forw/dist to refile a draft message.
114 */
115 char *fileproc = NMHBINDIR"/refile";
116
117 /*
118 ** This program is called to incorporate messages into a folder.
119 */
120 char *incproc = NMHBINDIR"/inc";
121
122 /*
123 ** This is the default program invoked by a "list" response
124 ** at the "What now?" prompt.  It is also used by the draft
125 ** folder facility in comp/dist/forw/repl to display the
126 ** draft message.
127 */
128 char *lproc = "more";
129
130 /*
131 ** This is the path for the Bell equivalent mail program.
132 */
133 char *mailproc = NMHBINDIR"/mhmail";
134
135 /*
136 ** This is used by mhl as a front-end.  It is also used
137 ** by mhshow as the default method of displaying message bodies
138 ** or message parts of type text/plain.
139 */
140 char *moreproc = "more";
141
142 /*
143 ** This is the editor invoked by the various message
144 ** composition programs.  It SHOULD be a full screen
145 ** editor, such as vi or emacs, but any editor will work.
146 */
147 char *defaulteditor = "vi";
148
149 /*
150 ** This is the delivery program called by send to actually
151 ** deliver mail to users.  This is the interface to the MTS.
152 */
153 char *postproc = NMHLIBDIR"/spost";
154
155 /*
156 ** This is program is called by slocal to handle
157 ** the action `folder' or `+'.
158 */
159 char *rcvstoreproc = NMHLIBDIR"/rcvstore";
160
161 /*
162 ** This program is called to remove a message by rmm or refile -nolink.
163 ** It's usually empty, which means to rename the file to a backup name.
164 */
165 char *rmmproc = NULL;
166
167 /*
168 ** This program is usually called by the user's whatnowproc, but it
169 ** may also be called directly to send a message previously composed.
170  */
171 char *sendproc = NMHBINDIR"/send";
172
173 /*
174 ** This is the path to the program used by "show"
175 ** to display non-text (MIME) messages.
176 */
177 char *showmimeproc = NMHBINDIR"/mhshow";
178
179 /*
180 ** This is the default program called by "show" to filter
181 ** and display standard text (non-MIME) messages.  It can be
182 ** changed to a pager (such as "more" or "less") if you prefer
183 ** that such message not be filtered in any way.
184 */
185 char *showproc = NMHLIBDIR"/mhl";
186
187 /*
188 ** This is the program (mhl) used to filter messages.  It is
189 ** used by mhshow to filter and display the message headers of
190 ** MIME messages.  It is used by repl/forw (with -filter)
191 ** to filter the message to which you are replying/forwarding.
192 ** It is used by send/spost (with -filter) to filter the message
193 ** for "Bcc:" recipients.
194 */
195 char *mhlproc = NMHLIBDIR"/mhl";
196
197 /*
198 ** This program is called after comp, et. al., have built a draft
199 */
200 char *whatnowproc = NMHBINDIR"/whatnow";
201
202 /*
203 ** This is the sendmail interface to use for sending mail.
204 */
205 char *sendmail = SENDMAILPATH;
206
207
208 /*
209 ** file stuff
210 */
211
212 /*
213 ** The prefix that is prepended to the name of message files when they
214 ** are "removed" by rmm. This should typically be `,' or `#'.
215 */
216 char *backup_prefix = ",";
217
218 /*
219 ** Name of link to file to which you are replying or which you are
220 ** redistributing. See `$mhaltmsg' in the mh-profile(5) man page.
221 */
222 char *altmsglink = "@";
223
224 /*
225 ** Folders (directories) are created with this protection (mode)
226 */
227 char *foldprot = "700";
228
229 /*
230 ** Every NEW message will be created with this protection.  When a
231 ** message is filed it retains its protection, so this only applies
232 ** to messages coming in through inc.
233 */
234 char *msgprot = "600";
235
236
237
238 /*
239 ** Standard yes/no switches structure
240 */
241 struct swit anoyes[] = {
242         { "no", 0 },
243         { "yes", 0 },
244         { NULL, 0 }
245 };
246