rationalize mh_sequences code.
[apps/madmutt.git] / globals.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9 #ifndef _GLOBALS_H
10 #define _GLOBALS_H
11
12 #include <lib-lib/lib-lib.h>
13
14 WHERE void (*mutt_error) (const char *, ...) __attribute__((format(printf, 1, 2))) ;
15 WHERE void (*mutt_message) (const char *, ...) __attribute__((format(printf, 1, 2))) ;
16
17 WHERE CONTEXT *Context;
18
19 WHERE char Errorbuf[STRING];
20 WHERE char AttachmentMarker[STRING];
21
22 WHERE char Quotebuf[STRING];
23
24 WHERE char *AttachSep;
25 WHERE char *Attribution;
26 WHERE char *AttachFormat;
27 WHERE char *ComposeFormat;
28 WHERE char *ConfigCharset;
29 WHERE char *ContentType;
30 WHERE char *DefaultHook;
31 WHERE char *DateFmt;
32 WHERE char *DisplayFilter;
33 WHERE char *EditorHeaders;
34 WHERE char *FileCharset;
35 WHERE char *FolderFormat;
36 WHERE char *ForwFmt;
37 WHERE char *HdrFmt;
38
39 WHERE char *ImapAuthenticators INITVAL (NULL);
40 WHERE char *ImapDelimChars INITVAL (NULL);
41 WHERE char *ImapHeaders;
42 WHERE char *ImapHomeNamespace INITVAL (NULL);
43 WHERE char *ImapLogin INITVAL (NULL);
44 WHERE char *ImapPass INITVAL (NULL);
45 WHERE char *ImapUser INITVAL (NULL);
46 WHERE char *Inbox;
47 WHERE char *Locale;
48 WHERE char *Maildir;
49
50 #ifdef USE_HCACHE
51 WHERE char *HeaderCache;
52 #if defined(HAVE_GDBM)
53 WHERE char *HeaderCachePageSize;
54 #endif /* HAVE_GDBM */
55 #endif /* USE_HCACHE */
56 WHERE char *MhFlagged;
57 WHERE char *MhReplied;
58 WHERE char *MhUnseen;
59 WHERE char *MsgFmt;
60 WHERE char *MsgIdFormat;
61
62 WHERE rx_t AttachRemindRegexp;
63 WHERE rx_t Mask;
64 WHERE rx_t QuoteRegexp;
65 WHERE rx_t ReplyRegexp;
66 WHERE rx_t Smileys;
67 WHERE rx_t StripWasRegexp;
68
69 WHERE char *Preconnect INITVAL (NULL);
70 WHERE char *Tunnel INITVAL (NULL);
71 WHERE short NetInc;
72
73 WHERE char *Mixmaster;
74 WHERE char *MixEntryFormat;
75 WHERE char *Muttrc INITVAL (NULL);
76
77 #ifdef USE_NNTP
78 WHERE char *NewsCacheDir;
79 WHERE char *GroupFormat;
80 WHERE char *Inews;
81 WHERE char *NewsServer;
82 WHERE char *NntpUser;
83 WHERE char *NntpPass;
84 WHERE char *NewsRc;
85 #endif
86 WHERE char *PagerFmt;
87 WHERE char *PipeSep;
88
89 WHERE char *PopAuthenticators INITVAL (NULL);
90 WHERE short PopCheckTimeout;
91 WHERE char *PopHost;
92 WHERE char *PopPass INITVAL (NULL);
93 WHERE char *PopUser INITVAL (NULL);
94
95 WHERE char *Postponed;
96 WHERE char *Prefix;
97 WHERE char *PrintCmd;
98 WHERE char *QueryCmd;
99 WHERE char *Realname;
100 WHERE char *SidebarDelim;
101 WHERE char *SidebarNumberFormat;
102 WHERE char *SidebarBoundary;
103 WHERE char *SignOffString;
104 WHERE char *SimpleSearch;
105
106 #if defined(USE_LIBESMTP)
107 WHERE char *SmtpAuthUser;
108 WHERE char *SmtpAuthPass;
109 WHERE char *SmtpHost;
110 WHERE unsigned short SmtpPort;
111 WHERE char *SmtpUseTLS;
112 #endif
113 WHERE char *Spoolfile;
114
115 WHERE char *SslCertFile INITVAL (NULL);
116 WHERE short SslDHPrimeBits;
117 WHERE char *SslCACertFile INITVAL (NULL);
118 WHERE char *StChars;
119 WHERE char *Status;
120 WHERE char *Tochars;
121 WHERE char *TrashPath;
122 WHERE char *XtermTitle;
123 WHERE char *XtermLeave;
124 WHERE char *XtermIcon;
125
126 WHERE char *CurrentFolder;
127 WHERE char *LastFolder;
128
129 WHERE string_list_t *AttachAllow INITVAL(0);
130 WHERE string_list_t *AttachExclude INITVAL(0);
131 WHERE string_list_t *InlineAllow INITVAL(0);
132 WHERE string_list_t *InlineExclude INITVAL(0);
133
134 /* bit vector for boolean variables */
135 WHERE unsigned char Options[(OPTMAX + 7) / 8];
136
137 /* bit vector for the yes/no/ask variable type */
138 WHERE unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8];
139
140 #ifdef USE_NNTP
141 WHERE short NewsPollTimeout;
142 WHERE short NntpContext;
143 #endif
144
145 WHERE short ConnectTimeout;
146 WHERE short HistSize;
147 WHERE short MenuContext;
148 WHERE short PagerContext;
149 WHERE short PagerIndexLines;
150 WHERE short ReadInc;
151 WHERE short SleepTime INITVAL (1);
152 WHERE short Timeout;
153 WHERE short Umask INITVAL (0077);
154 WHERE short WrapMargin;
155 WHERE short WriteInc;
156 WHERE short MaxDispRecips;
157 WHERE short MaxLineLength;
158
159 WHERE short ScoreThresholdDelete;
160 WHERE short ScoreThresholdRead;
161 WHERE short ScoreThresholdFlag;
162
163 WHERE short DrawFullLine INITVAL (0);
164 WHERE short SidebarWidth;
165
166 WHERE short ImapKeepalive;
167 WHERE short ImapBuffyTimeout;
168
169 /* flags for received signals */
170 WHERE SIG_ATOMIC_VOLATILE_T SigAlrm INITVAL (0);
171 WHERE SIG_ATOMIC_VOLATILE_T SigInt INITVAL (0);
172 WHERE SIG_ATOMIC_VOLATILE_T SigWinch INITVAL (0);
173
174 WHERE int CurrentMenu;
175
176 WHERE string_list_t *UserHeader INITVAL (0);
177
178 /*-- formerly in pgp.h --*/
179 WHERE char *PgpSignAs;
180 WHERE char *PgpEntryFormat;
181
182 /*-- formerly in smime.h --*/
183 WHERE char *SmimeDefaultKey;
184 WHERE char *SmimeCryptAlg;
185
186 #ifdef MAIN_C
187 const char *Weekdays[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
188 const char *Months[] =
189   { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct",
190 "Nov", "Dec", "ERR" };
191 #else
192 extern const char *Weekdays[];
193 extern const char *Months[];
194 #endif
195
196 #endif /* !_GLOBALS_H */