1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/* globals.h -- global variable declarations
*
* This code is Copyright (c) 2021, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
/* See the definitions for commentary; tags should take you there. */
extern struct swit anoyes[];
extern char *mh_defaults;
extern char *mh_profile;
extern char *credentials_file;
extern int credentials_no_perm_check;
extern char *current;
extern char *components;
extern char *replcomps;
extern char *replgroupcomps;
extern char *forwcomps;
extern char *distcomps;
extern char *rcvdistcomps;
extern char *digestcomps;
extern char *mhlformat;
extern char *mhlreply;
extern char *mhlforward;
extern char *draft;
extern char *inbox;
extern char *defaultfolder;
extern char *pfolder;
extern char *usequence;
extern char *psequence;
extern char *nsequence;
extern char *nmhstorage;
extern char *nmhcache;
extern char *nmhprivcache;
extern char *nmhaccessftp;
extern char *nmhaccessurl;
extern char *mhbindir;
extern char *mhlibexecdir;
extern char *mhetcdir;
extern char *mhdocdir;
extern char *context;
extern char *mh_seq;
extern bool context_dirty;
extern char *invo_name;
extern char *mypath;
extern char *defpath;
extern char *ctxpath;
extern struct node *m_defs;
extern char *buildmimeproc;
extern char *catproc;
extern char *fileproc;
extern char *formatproc;
extern char *incproc;
extern char *lproc;
extern char *mailproc;
extern char *moreproc;
extern char *mhlproc;
extern char *packproc;
extern char *postproc;
extern char *rcvstoreproc;
extern char *rmmproc;
extern char *sendproc;
extern char *showmimeproc;
extern char *showproc;
extern char *whatnowproc;
extern char *whomproc;
extern char *AliasFile;
extern char *foldprot;
extern char *msgprot;
|