2 * mh.h -- main header file for all of nmh
10 #define NOTOK (-1) /* syscall()s return this on error */
11 #define OK 0 /* ditto on success */
12 #define DONE 1 /* trinary logic */
14 #define Nbby 8 /* number of bits/byte */
16 #define MAXARGS 1000 /* max arguments to exec */
17 #define NFOLDERS 1000 /* max folder arguments on command line */
18 #define DMAXFOLDER 4 /* typical number of digits */
19 #define MAXFOLDER 1000 /* message increment */
22 * This macro is for use by scan, for example, so that platforms with
23 * a small BUFSIZ can easily allocate larger buffers.
25 #define NMH_BUFSIZ (BUFSIZ>=8192 ? BUFSIZ : 8192)
33 typedef unsigned char boolean
; /* not int so we can pack in a structure */
35 /* If we're using gcc then give it some information about
36 * functions that abort.
39 #define NORETURN __attribute__((__noreturn__))
40 #define NMH_UNUSED(i) (void) i
43 #define NMH_UNUSED(i) i
46 /* LEN gives the strlen() of string constant s, excluding the
48 #define LEN(s) (sizeof (s) - 1)
51 * char array that keeps track of size in both bytes and characters
53 * Don't store return value of charstring_buffer() and use later
54 * after intervening push_back's; use charstring_buffer_copy()
57 typedef struct charstring
*charstring_t
;
59 charstring_t
charstring_create (size_t);
60 charstring_t
charstring_copy (const charstring_t
);
61 void charstring_free (charstring_t
);
62 /* Append a single-byte character: */
63 void charstring_push_back (charstring_t
, const char);
64 /* Append possibly multi-byte character(s): */
65 void charstring_push_back_chars (charstring_t
, const char [], size_t, size_t);
66 void charstring_append (charstring_t
, const charstring_t
);
67 void charstring_append_cstring (charstring_t
, const char []);
68 void charstring_clear (charstring_t
);
69 /* Don't store return value of charstring_buffer() and use later after
70 intervening push_back's; use charstring_buffer_copy() instead. */
71 const char *charstring_buffer (const charstring_t
);
72 /* User is responsible for free'ing result of buffer copy. */
73 char *charstring_buffer_copy (const charstring_t
);
74 size_t charstring_bytes (const charstring_t
);
75 size_t charstring_chars (const charstring_t
);
76 /* Length of the last character in the charstring. */
77 int charstring_last_char_len (const charstring_t
);
80 * user context/profile structure
83 char *n_name
; /* key */
84 char *n_field
; /* value */
85 char n_context
; /* context, not profile */
86 struct node
*n_next
; /* next entry */
92 #define AMBIGSW (-2) /* from smatch() on ambiguous switch */
93 #define UNKWNSW (-1) /* from smatch() on unknown switch */
103 /* The minchars field is apparently used like this:
105 -# : Switch can be abbreviated to # characters; switch hidden in -help.
106 0 : Switch can't be abbreviated; switch shown in -help.
107 # : Switch can be abbreviated to # characters; switch shown in -help. */
111 * If we pick this switch, return this value from smatch
118 * Macros to use when declaring struct swit arrays.
120 * These macros use a technique known as X-Macros. In your source code you
121 * use them like this:
123 * #define FOO_SWITCHES \
124 * X("switch1", 0, SWITCHSW) \
125 * X("switch2", 0, SWITCH2SW) \
126 * X("thirdswitch", 2, SWITCH3SW) \
128 * The argument to each entry in FOO_SWITCHES are the switch name (sw),
129 * the minchars field (see above) and the return value for this switch.
130 * Note that the last entry in the above definition must either omit the
131 * continuation backslash, or be followed by a blank line. In the nmh
132 * code the style is to have every line include a backslash and follow
133 * the SWITCHES macro definition by a blank line.
135 * After you define FOO_SWITCHES, you instantiate it as follows:
137 * #define X(sw, minchars, id) id,
138 * DEFINE_SWITCH_ENUM(FOO);
141 * #define X(sw, minchars, id) { sw, minchars, id },
142 * DEFINE_SWITCH_ARRAY(FOO);
145 * DEFINE_SWITCH_ENUM defines an extra enum at the end of the list called
149 #define DEFINE_SWITCH_ENUM(name) \
155 #define DEFINE_SWITCH_ARRAY(name, array) \
156 static struct swit array[] = { \
161 extern struct swit anoyes
[]; /* standard yes/no switches */
164 * general folder attributes
166 #define READONLY (1<<0) /* No write access to folder */
167 #define SEQMOD (1<<1) /* folder's sequences modified */
168 #define ALLOW_NEW (1<<2) /* allow the "new" sequence */
169 #define OTHERS (1<<3) /* folder has other files */
170 #define MODIFIED (1<<4) /* msh in-core folder modified */
172 #define FBITS "\020\01READONLY\02SEQMOD\03ALLOW_NEW\04OTHERS\05MODIFIED"
175 * first free slot for user defined sequences
181 * internal messages attributes (sequences)
183 #define EXISTS (0) /* exists */
184 #define DELETED (1) /* deleted */
185 #define SELECTED (2) /* selected for use */
186 #define SELECT_EMPTY (3) /* "new" message */
187 #define SELECT_UNSEEN (4) /* inc/show "unseen" */
189 #define MBITS "\020\01EXISTS\02DELETED\03SELECTED\04NEW\05UNSEEN"
192 * type for holding the sequence set of a message
194 typedef struct bvector
*bvector_t
;
196 bvector_t
bvector_create (size_t /* initial size in bits, can be 0 */);
197 void bvector_copy (bvector_t
, bvector_t
);
198 void bvector_free (bvector_t
);
199 void bvector_clear (bvector_t
, size_t);
200 void bvector_clear_all (bvector_t
);
201 void bvector_set (bvector_t
, size_t);
202 unsigned int bvector_at (bvector_t
, size_t);
203 const unsigned long *bvector_bits (bvector_t
);
204 size_t bvector_maxsize (bvector_t
);
206 typedef struct svector
*svector_t
;
208 svector_t
svector_create (size_t);
209 void svector_free (svector_t
);
210 char *svector_push_back (svector_t
, char *);
211 char *svector_at (svector_t
, size_t);
212 char **svector_find(svector_t
, const char *);
213 char **svector_strs (svector_t
);
214 size_t svector_size (svector_t
);
216 typedef struct ivector
*ivector_t
;
218 ivector_t
ivector_create (size_t);
219 void ivector_free (ivector_t
);
220 int ivector_push_back (ivector_t
, int);
221 int ivector_at (ivector_t
, size_t);
222 int *ivector_atp (ivector_t
, size_t);
223 size_t ivector_size (ivector_t
);
226 * Primary structure of folder/message information
229 int lowmsg
; /* Lowest msg number */
230 int hghmsg
; /* Highest msg number */
231 int nummsg
; /* Actual Number of msgs */
233 int lowsel
; /* Lowest selected msg number */
234 int hghsel
; /* Highest selected msg number */
235 int numsel
; /* Number of msgs selected */
237 int curmsg
; /* Number of current msg if any */
239 int msgflags
; /* Folder attributes (READONLY, etc) */
240 char *foldpath
; /* Pathname of folder */
243 * Name of sequences in this folder.
248 * bit flags for whether sequence
249 * is public (0), or private (1)
254 * These represent the lowest and highest possible
255 * message numbers we can put in the message status
256 * area, without calling folder_realloc().
262 * This is an array of bvector_t which we allocate dynamically.
263 * Each bvector_t is a set of bits flags for a particular message.
264 * These bit flags represent general attributes such as
265 * EXISTS, SELECTED, etc. as well as track if message is
266 * in a particular sequence.
269 bvector_t
*msgstats
; /* msg status */
272 * A FILE handle containing an open filehandle for the sequence file
273 * for this folder. If non-NULL, use it when the sequence file is
279 * The name of the public sequence file; required by lkfclose()
285 * Amount of space to allocate for msgstats. Allocate
286 * the array to have space for messages numbered lo to hi.
287 * Use MSGSTATNUM to load mp->num_msgstats first.
289 #define MSGSTATNUM(lo, hi) ((size_t) ((hi) - (lo) + 1))
290 #define MSGSTATSIZE(mp) ((mp)->num_msgstats * sizeof *(mp)->msgstats)
293 * macros for message and sequence manipulation
295 #define msgstat(mp,n) (mp)->msgstats[(n) - mp->lowoff]
296 #define clear_msg_flags(mp,msgnum) bvector_clear_all (msgstat(mp, msgnum))
297 #define copy_msg_flags(mp,i,j) bvector_copy (msgstat(mp,i), msgstat(mp,j))
298 #define get_msg_flags(mp,ptr,msgnum) bvector_copy (ptr, msgstat(mp, msgnum))
299 #define set_msg_flags(mp,ptr,msgnum) bvector_copy (msgstat(mp, msgnum), ptr)
301 #define does_exist(mp,msgnum) bvector_at (msgstat(mp, msgnum), EXISTS)
302 #define unset_exists(mp,msgnum) bvector_clear (msgstat(mp, msgnum), EXISTS)
303 #define set_exists(mp,msgnum) bvector_set (msgstat(mp, msgnum), EXISTS)
305 #define is_selected(mp,msgnum) bvector_at (msgstat(mp, msgnum), SELECTED)
306 #define unset_selected(mp,msgnum) bvector_clear (msgstat(mp, msgnum), SELECTED)
307 #define set_selected(mp,msgnum) bvector_set (msgstat(mp, msgnum), SELECTED)
309 #define is_select_empty(mp,msgnum) \
310 bvector_at (msgstat(mp, msgnum), SELECT_EMPTY)
311 #define set_select_empty(mp,msgnum) \
312 bvector_set (msgstat(mp, msgnum), SELECT_EMPTY)
314 #define is_unseen(mp,msgnum) \
315 bvector_at (msgstat(mp, msgnum), SELECT_UNSEEN)
316 #define unset_unseen(mp,msgnum) \
317 bvector_clear (msgstat(mp, msgnum), SELECT_UNSEEN)
318 #define set_unseen(mp,msgnum) \
319 bvector_set (msgstat(mp, msgnum), SELECT_UNSEEN)
322 #define set_deleted(mp,msgnum) bvector_set (msgstat(mp, msgnum), DELETED)
324 #define in_sequence(mp,seqnum,msgnum) \
325 bvector_at (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
326 #define clear_sequence(mp,seqnum,msgnum) \
327 bvector_clear (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
328 #define add_sequence(mp,seqnum,msgnum) \
329 bvector_set (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
331 #define is_seq_private(mp,seqnum) \
332 bvector_at (mp->attrstats, FFATTRSLOT + seqnum)
333 #define make_seq_public(mp,seqnum) \
334 bvector_clear (mp->attrstats, FFATTRSLOT + seqnum)
335 #define make_seq_private(mp,seqnum) \
336 bvector_set (mp->attrstats, FFATTRSLOT + seqnum)
337 #define make_all_public(mp) \
338 mp->attrstats = bvector_create(0); bvector_clear_all (mp->attrstats)
341 * macros for folder attributes
343 #define clear_folder_flags(mp) ((mp)->msgflags = 0)
345 #define is_readonly(mp) ((mp)->msgflags & READONLY)
346 #define set_readonly(mp) ((mp)->msgflags |= READONLY)
348 #define other_files(mp) ((mp)->msgflags & OTHERS)
349 #define set_other_files(mp) ((mp)->msgflags |= OTHERS)
351 #define NULLMP ((struct msgs *) 0)
354 * m_getfld() message parsing
357 #define NAMESZ 999 /* Limit on component name size.
358 RFC 2822 limits line lengths to
359 998 characters, so a header name
360 can be at most that long.
361 m_getfld limits header names to 2
362 less than NAMESZ, which is fine,
363 because header names must be
364 followed by a colon. Add one for
367 #define LENERR (-2) /* Name too long error from getfld */
368 #define FMTERR (-3) /* Message Format error */
369 #define FLD 0 /* Field returned */
370 #define FLDPLUS 1 /* Field returned with more to come */
371 #define BODY 3 /* Body returned with more to come */
372 #define FILEEOF 5 /* Reached end of input file */
374 struct m_getfld_state
;
375 typedef struct m_getfld_state
*m_getfld_state_t
;
380 #define MS_DEFAULT 0 /* default (one msg per file) */
381 #define MS_UNKNOWN 1 /* type not known yet */
382 #define MS_MBOX 2 /* Unix-style "from" lines */
383 #define MS_MMDF 3 /* string mmdlm2 */
385 #define NOUSE 0 /* draft being re-used */
387 #define TFOLDER 0 /* path() given a +folder */
388 #define TFILE 1 /* path() given a file */
389 #define TSUBCWF 2 /* path() given a @folder */
391 #define OUTPUTLINELEN 72 /* default line length for headers */
393 #define LINK "@" /* Name of link to file to which you are */
397 * credentials management
400 typedef struct nmh_creds
*nmh_creds_t
;
403 * miscellaneous macros
405 #define pidXwait(pid,cp) pidstatus (pidwait (pid, NOTOK), stdout, cp)
408 # define max(a,b) ((a) > (b) ? (a) : (b))
412 # define min(a,b) ((a) < (b) ? (a) : (b))
416 # define abs(a) ((a) > 0 ? (a) : -(a))
422 #define CTXMOD 0x01 /* context information modified */
423 #define DBITS "\020\01CTXMOD"
424 extern char ctxflags
;
426 extern char *invo_name
; /* command invocation name */
427 extern char *mypath
; /* user's $HOME */
428 extern char *defpath
; /* pathname of user's profile */
429 extern char *ctxpath
; /* pathname of user's context */
430 extern struct node
*m_defs
; /* list of profile/context entries */
432 /* What style to use for generated Message-ID and Content-ID header
433 fields. The localname style is pid.time@localname, where time is
434 in seconds. The random style replaces the localname with some
435 (pseudo)random bytes and uses microsecond-resolution time. */
436 int save_message_id_style (const char *);
437 char *message_id (time_t, int);
440 * These standard strings are defined in config.c. They are the
441 * only system-dependent parameters in nmh, and thus by redefining
442 * their values and reloading the various modules, nmh will run
445 extern char *buildmimeproc
;
446 extern char *catproc
;
447 extern char *components
;
448 extern char *context
;
449 extern char *current
;
450 extern char *credentials_file
;
451 extern int credentials_no_perm_check
;
452 extern char *defaultfolder
;
453 extern char *digestcomps
;
454 extern char *distcomps
;
456 extern char *fileproc
;
457 extern char *foldprot
;
458 extern char *formatproc
;
459 extern char *forwcomps
;
461 extern char *incproc
;
463 extern char *mailproc
;
464 extern char *mh_defaults
;
465 extern char *mh_profile
;
467 extern char *mhlformat
;
468 extern char *mhlforward
;
469 extern char *mhlproc
;
470 extern char *mhlreply
;
471 extern char *moreproc
;
472 extern char *msgprot
;
473 extern char *nmhaccessftp
;
474 extern char *nmhaccessurl
;
475 extern char *nmhstorage
;
476 extern char *nmhcache
;
477 extern char *nmhprivcache
;
478 extern char *nsequence
;
479 extern char *packproc
;
480 extern char *postproc
;
481 extern char *pfolder
;
482 extern char *psequence
;
483 extern char *rcvdistcomps
;
484 extern char *rcvstoreproc
;
485 extern char *replcomps
;
486 extern char *replgroupcomps
;
487 extern char *rmmproc
;
488 extern char *sendproc
;
489 extern char *showmimeproc
;
490 extern char *showproc
;
491 extern char *usequence
;
492 extern char *user_agent
;
493 extern char *version_num
;
494 extern char *version_str
;
495 extern char *whatnowproc
;
496 extern char *whomproc
;
498 extern void (*done
) (int) NORETURN
;
500 #include <h/prototypes.h>