remove useless setting (will be scriptable at some point).
[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) || defined(HAVE_DB4)
53 WHERE char *HeaderCachePageSize;
54 #endif /* HAVE_GDBM || HAVE_DB4 */
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 #if defined(USE_SSL) || defined(USE_GNUTLS)
116 WHERE char *SslCertFile INITVAL (NULL);
117 #endif
118 #if defined(USE_SSL)
119 WHERE char *SslEntropyFile INITVAL (NULL);
120 #endif
121 #ifdef USE_SSL
122 WHERE char *SslClientCert INITVAL (NULL);
123 WHERE string_list_t *SslSessionCerts INITVAL (NULL);
124 #endif
125 #ifdef USE_GNUTLS
126 WHERE short SslDHPrimeBits;
127 WHERE char *SslCACertFile INITVAL (NULL);
128 #endif
129 WHERE char *StChars;
130 WHERE char *Status;
131 WHERE char *Tochars;
132 WHERE char *TrashPath;
133 WHERE char *XtermTitle;
134 WHERE char *XtermLeave;
135 WHERE char *XtermIcon;
136
137 WHERE char *CurrentFolder;
138 WHERE char *LastFolder;
139
140 WHERE string_list_t *AttachAllow INITVAL(0);
141 WHERE string_list_t *AttachExclude INITVAL(0);
142 WHERE string_list_t *InlineAllow INITVAL(0);
143 WHERE string_list_t *InlineExclude INITVAL(0);
144
145 /* bit vector for boolean variables */
146 WHERE unsigned char Options[(OPTMAX + 7) / 8];
147
148 /* bit vector for the yes/no/ask variable type */
149 WHERE unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8];
150
151 #ifdef USE_NNTP
152 WHERE short NewsPollTimeout;
153 WHERE short NntpContext;
154 #endif
155
156 WHERE short ConnectTimeout;
157 WHERE short HistSize;
158 WHERE short MenuContext;
159 WHERE short PagerContext;
160 WHERE short PagerIndexLines;
161 WHERE short ReadInc;
162 WHERE short SleepTime INITVAL (1);
163 WHERE short Timeout;
164 WHERE short Umask INITVAL (0077);
165 WHERE short WrapMargin;
166 WHERE short WriteInc;
167 WHERE short MaxDispRecips;
168 WHERE short MaxLineLength;
169
170 WHERE short ScoreThresholdDelete;
171 WHERE short ScoreThresholdRead;
172 WHERE short ScoreThresholdFlag;
173
174 WHERE short DrawFullLine INITVAL (0);
175 WHERE short SidebarWidth;
176
177 WHERE short ImapKeepalive;
178 WHERE short ImapBuffyTimeout;
179
180 /* flags for received signals */
181 WHERE SIG_ATOMIC_VOLATILE_T SigAlrm INITVAL (0);
182 WHERE SIG_ATOMIC_VOLATILE_T SigInt INITVAL (0);
183 WHERE SIG_ATOMIC_VOLATILE_T SigWinch INITVAL (0);
184
185 WHERE int CurrentMenu;
186
187 WHERE string_list_t *UserHeader INITVAL (0);
188
189 /*-- formerly in pgp.h --*/
190 WHERE char *PgpSignAs;
191 WHERE char *PgpEntryFormat;
192
193 /*-- formerly in smime.h --*/
194 WHERE char *SmimeDefaultKey;
195 WHERE char *SmimeCryptAlg;
196
197 #ifdef MAIN_C
198 const char *Weekdays[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
199 const char *Months[] =
200   { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct",
201 "Nov", "Dec", "ERR" };
202 #else
203 extern const char *Weekdays[];
204 extern const char *Months[];
205 #endif
206
207 #endif /* !_GLOBALS_H */