forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.h
301 lines (286 loc) · 7.85 KB
/
options.h
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/**
* @file
* Handling of global boolean variables
*
* @authors
* Copyright (C) 2017 Richard Russon <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MUTT_OPTIONS_H_
#define _MUTT_OPTIONS_H_
/**
* enum GlobalBool - boolean vars
*/
enum GlobalBool
{
OPT_ALLOW_8BIT,
OPT_ALLOW_ANSI,
OPT_ARROW_CURSOR,
OPT_ASCII_CHARS,
OPT_ASK_BCC,
OPT_ASK_CC,
OPT_ASK_FOLLOWUP,
OPT_ASK_XCOMMENTTO,
OPT_ATTACH_SPLIT,
OPT_AUTO_EDIT,
OPT_AUTO_TAG,
OPT_BEEP,
OPT_BEEP_NEW,
OPT_BOUNCE_DELIVERED,
OPT_BRAILLE_FRIENDLY,
OPT_CHECK_MBOX_SIZE,
OPT_CHECK_NEW,
OPT_COLLAPSE_ALL,
OPT_COLLAPSE_UNREAD,
OPT_COLLAPSE_FLAGGED,
OPT_CONFIRM_APPEND,
OPT_CONFIRM_CREATE,
OPT_DELETE_UNTAG,
OPT_DIGEST_COLLAPSE,
OPT_DUP_THREADS,
OPT_EDIT_HDRS,
OPT_ENCODE_FROM,
OPT_ENV_FROM,
OPT_FAST_REPLY,
OPT_FCC_CLEAR,
OPT_FLAG_SAFE,
OPT_FOLLOW_UP_TO,
OPT_FORCE_NAME,
OPT_FORW_DECODE,
OPT_FORW_QUOTE,
OPT_FORW_REF,
#ifdef USE_HCACHE
OPT_HCACHE_VERIFY,
#if defined(HAVE_QDBM) || defined(HAVE_TC) || defined(HAVE_KC)
OPT_HCACHE_COMPRESS,
#endif /* HAVE_QDBM */
#endif
OPT_HDRS,
OPT_HEADER,
OPT_HEADER_COLOR_PARTIAL,
OPT_HELP,
OPT_HIDDEN_HOST,
OPT_HIDE_LIMITED,
OPT_HIDE_MISSING,
OPT_HIDE_THREAD_SUBJECT,
OPT_HIDE_TOP_LIMITED,
OPT_HIDE_TOP_MISSING,
OPT_HIST_REMOVE_DUPS,
OPT_HONOR_DISP,
OPT_IGNORE_LWS,
OPT_IGNORE_LIST_REPLY_TO,
#ifdef USE_IMAP
OPT_IMAP_CHECK_SUBSCRIBED,
OPT_IMAP_IDLE,
OPT_IMAP_LSUB,
OPT_IMAP_PASSIVE,
OPT_IMAP_PEEK,
OPT_IMAP_SERVER_NOISE,
#endif
#ifdef USE_SSL
#ifndef USE_SSL_GNUTLS
OPT_SSL_SYSTEM_CERTS,
OPT_SSLV2,
#endif /* USE_SSL_GNUTLS */
OPT_SSLV3,
OPT_TLSV1,
OPT_TLSV1_1,
OPT_TLSV1_2,
OPT_SSL_FORCE_TLS,
OPT_SSL_VERIFY_DATES,
OPT_SSL_VERIFY_HOST,
#if defined(USE_SSL_OPENSSL) && defined(HAVE_SSL_PARTIAL_CHAIN)
OPT_SSL_VERIFY_PARTIAL,
#endif /* USE_SSL_OPENSSL */
#endif /* defined(USE_SSL) */
OPT_IMPLICIT_AUTOVIEW,
OPT_INCLUDE_ONLY_FIRST,
OPT_KEEP_FLAGGED,
OPT_KEYWORDS_LEGACY,
OPT_KEYWORDS_STANDARD,
OPT_MAILCAP_SANITIZE,
OPT_MAIL_CHECK_RECENT,
OPT_MAIL_CHECK_STATS,
OPT_MAILDIR_TRASH,
OPT_MAILDIR_CHECK_CUR,
OPT_MARKERS,
OPT_MARK_OLD,
OPT_MENU_SCROLL, /**< scroll menu instead of implicit next-page */
OPT_MENU_MOVE_OFF, /**< allow menu to scroll past last entry */
#if defined(USE_IMAP) || defined(USE_POP)
OPT_MESSAGE_CACHE_CLEAN,
#endif
OPT_METAKEY, /**< interpret ALT-x as ESC-x */
OPT_ME_TOO,
OPT_MH_PURGE,
OPT_MIME_FORW_DECODE,
OPT_MIME_TYPE_QUERY_FIRST,
#ifdef USE_NNTP
OPT_MIME_SUBJECT, /**< encode subject line with RFC2047 */
#endif
OPT_NARROW_TREE,
OPT_PAGER_STOP,
OPT_PIPE_DECODE,
OPT_PIPE_SPLIT,
#ifdef USE_POP
OPT_POP_AUTH_TRY_ALL,
OPT_POP_LAST,
#endif
OPT_POSTPONE_ENCRYPT,
OPT_PRINT_DECODE,
OPT_PRINT_SPLIT,
OPT_PROMPT_AFTER,
OPT_READONLY,
OPT_REFLOW_SPACE_QUOTES,
OPT_REFLOW_TEXT,
OPT_REPLY_SELF,
OPT_REPLY_WITH_XORIG,
OPT_RESOLVE,
OPT_RESUME_DRAFT_FILES,
OPT_RESUME_EDITED_DRAFT_FILES,
OPT_REV_ALIAS,
OPT_REV_NAME,
OPT_REV_REAL,
OPT_RFC2047_PARAMS,
OPT_SAVE_ADDRESS,
OPT_SAVE_EMPTY,
OPT_SAVE_NAME,
OPT_SCORE,
#ifdef USE_SIDEBAR
OPT_SIDEBAR,
OPT_SIDEBAR_FOLDER_INDENT,
OPT_SIDEBAR_NEWMAIL_ONLY,
OPT_SIDEBAR_NEXT_NEW_WRAP,
OPT_SIDEBAR_SHORT_PATH,
OPT_SIDEBAR_ON_RIGHT,
#endif
OPT_SIG_DASHES,
OPT_SIG_ON_TOP,
OPT_SORT_RE,
OPT_STATUS_ON_TOP,
OPT_STRICT_THREADS,
OPT_SUSPEND,
OPT_TEXT_FLOWED,
OPT_THOROUGH_SRC,
OPT_THREAD_RECEIVED,
OPT_TILDE,
OPT_TS_ENABLED,
OPT_UNCOLLAPSE_JUMP,
OPT_UNCOLLAPSE_NEW,
OPT_USE_8BIT_MIME,
OPT_USE_DOMAIN,
OPT_USE_FROM,
OPT_USE_GPG_AGENT,
#ifdef HAVE_LIBIDN
OPT_IDN_DECODE,
OPT_IDN_ENCODE,
#endif
#ifdef HAVE_GETADDRINFO
OPT_USE_IPV6,
#endif
OPT_WAIT_KEY,
OPT_WEED,
OPT_WRAP,
OPT_WRAP_SEARCH,
OPT_WRITE_BCC, /**< write out a bcc header? */
OPT_XMAILER,
OPT_CRYPT_USE_GPGME,
OPT_CRYPT_USE_PKA,
/* PGP options */
OPT_CRYPT_AUTO_SIGN,
OPT_CRYPT_AUTO_ENCRYPT,
OPT_CRYPT_AUTO_PGP,
OPT_CRYPT_AUTO_SMIME,
OPT_CRYPT_CONFIRM_HOOK,
OPT_CRYPT_OPPORTUNISTIC_ENCRYPT,
OPT_CRYPT_REPLY_ENCRYPT,
OPT_CRYPT_REPLY_SIGN,
OPT_CRYPT_REPLY_SIGN_ENCRYPTED,
OPT_CRYPT_TIMESTAMP,
OPT_SMIME_IS_DEFAULT,
OPT_SMIME_SELF_ENCRYPT,
OPT_ASK_CERT_LABEL,
OPT_SDEFAULT_DECRYPT_KEY,
OPT_PGP_IGNORE_SUB,
OPT_PGP_CHECK_EXIT,
OPT_PGP_LONG_IDS,
OPT_PGP_AUTO_DEC,
OPT_PGP_RETAINABLE_SIG,
OPT_PGP_SELF_ENCRYPT,
OPT_PGP_STRICT_ENC,
OPT_FORW_DECRYPT,
OPT_PGP_SHOW_UNUSABLE,
OPT_PGP_AUTO_INLINE,
OPT_PGP_REPLY_INLINE,
/* news options */
#ifdef USE_NNTP
OPT_SHOW_NEW_NEWS,
OPT_SHOW_ONLY_UNREAD,
OPT_SAVE_UNSUB,
OPT_LIST_GROUP,
OPT_LOAD_DESC,
OPT_XCOMMENT_TO,
#endif
/* pseudo options */
OPT_AUX_SORT, /**< (pseudo) using auxiliary sort function */
OPT_FORCE_REFRESH, /**< (pseudo) refresh even during macros */
OPT_LOCALES, /**< (pseudo) set if user has valid locale definition */
OPT_NO_CURSES, /**< (pseudo) when sending in batch mode */
OPT_SEARCH_REVERSE, /**< (pseudo) used by ci_search_command */
OPT_MSG_ERR, /**< (pseudo) used by mutt_error/mutt_message */
OPT_SEARCH_INVALID, /**< (pseudo) used to invalidate the search pat */
OPT_SIGNALS_BLOCKED, /**< (pseudo) using by mutt_block_signals () */
OPT_SYS_SIGNALS_BLOCKED, /**< (pseudo) using by mutt_block_signals_system () */
OPT_NEED_RESORT, /**< (pseudo) used to force a re-sort */
OPT_RESORT_INIT, /**< (pseudo) used to force the next resort to be from scratch */
OPT_VIEW_ATTACH, /**< (pseudo) signals that we are viewing attachments */
OPT_SORT_SUBTHREADS, /**< (pseudo) used when $sort_aux changes */
OPT_NEED_RESCORE, /**< (pseudo) set when the `score' command is used */
OPT_ATTACH_MSG, /**< (pseudo) used by attach-message */
OPT_HIDE_READ, /**< (pseudo) whether or not hide read messages */
OPT_KEEP_QUIET, /**< (pseudo) shut up the message and refresh
* functions while we are executing an
* external program. */
OPT_MENU_CALLER, /**< (pseudo) tell menu to give caller a take */
OPT_REDRAW_TREE, /**< (pseudo) redraw the thread tree */
OPT_PGP_CHECK_TRUST, /**< (pseudo) used by pgp_select_key () */
OPT_DONT_HANDLE_PGP_KEYS, /**< (pseudo) used to extract PGP keys */
OPT_IGNORE_MACRO_EVENTS, /**< (pseudo) don't process macro/push/exec events while set */
#ifdef USE_NNTP
OPT_NEWS, /**< (pseudo) used to change reader mode */
OPT_NEWS_SEND, /**< (pseudo) used to change behavior when posting */
#endif
#ifdef USE_NOTMUCH
OPT_VIRT_SPOOL_FILE,
OPT_NOTMUCH_RECORD,
#endif
OPT_GLOBAL_MAX
};
#define mutt_bit_set(v, n) v[n / 8] |= (1 << (n % 8))
#define mutt_bit_unset(v, n) v[n / 8] &= ~(1 << (n % 8))
#define mutt_bit_toggle(v, n) v[n / 8] ^= (1 << (n % 8))
#define mutt_bit_isset(v, n) (v[n / 8] & (1 << (n % 8)))
/* bit vector for boolean variables */
#ifdef MAIN_C
unsigned char Options[(OPT_GLOBAL_MAX + 7) / 8];
#else
extern unsigned char Options[];
#endif
#define set_option(x) mutt_bit_set(Options, x)
#define unset_option(x) mutt_bit_unset(Options, x)
#define toggle_option(x) mutt_bit_toggle(Options, x)
#define option(x) mutt_bit_isset(Options, x)
#endif /* _MUTT_OPTIONS_H_ */