NeoMutt  2025-01-09-117-gace867
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
34#include "config.h"
35#include <stdbool.h>
36#include <stddef.h>
37#include <stdint.h>
38#include <string.h>
39#include "mutt/lib.h"
40#include "config/lib.h"
41#include "email/lib.h"
42#include "expando/lib.h"
43#include "smtp.h"
44#ifdef USE_SASL_CYRUS
45#include "conn/lib.h"
46#endif
47
48extern const struct ExpandoDefinition IndexFormatDef[];
49
51static const struct ExpandoDefinition *const IndexFormatDefNoPadding = &(IndexFormatDef[3]);
52
53extern const struct ExpandoDefinition NntpFormatDef[];
54
58static int wrapheaders_validator(const struct ConfigDef *cdef, intptr_t value,
59 struct Buffer *err)
60{
61 const int min_length = 78; // Recommendations from RFC5233
62 const int max_length = 998;
63
64 if ((value >= min_length) && (value <= max_length))
65 return CSR_SUCCESS;
66
67 // L10N: This applies to the "$wrap_headers" config variable.
68 buf_printf(err, _("Option %s must be between %d and %d inclusive"),
69 cdef->name, min_length, max_length);
70 return CSR_ERR_INVALID;
71}
72
76static int smtp_auth_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
77{
78 const struct Slist *smtp_auth_methods = (const struct Slist *) value;
79 if (!smtp_auth_methods || (smtp_auth_methods->count == 0))
80 return CSR_SUCCESS;
81
82 struct ListNode *np = NULL;
83 STAILQ_FOREACH(np, &smtp_auth_methods->head, entries)
84 {
85 if (smtp_auth_is_valid(np->data))
86 continue;
87#ifdef USE_SASL_CYRUS
89 continue;
90#endif
91 buf_printf(err, _("Option %s: %s is not a valid authenticator"), cdef->name, np->data);
92 return CSR_ERR_INVALID;
93 }
94
95 return CSR_SUCCESS;
96}
97
101static int simple_command_validator(const struct ConfigDef *cdef,
102 intptr_t value, struct Buffer *err)
103{
104 // Check for shell metacharacters that won't do what the user expects
105 const char *valstr = (const char *) value;
106 if (!valstr)
107 return CSR_SUCCESS;
108
109 const char c = valstr[strcspn(valstr, "|&;()<>[]{}$`'~\"\\*?")];
110 if (c == '\0')
111 return CSR_SUCCESS;
112
113 // L10N: This applies to the "$sendmail" and "$inews" config variables.
114 buf_printf(err, _("Option %s must not contain shell metacharacters: %c"), cdef->name, c);
115 return CSR_ERR_INVALID;
116}
117
124static const struct ExpandoDefinition GreetingFormatDef[] = {
125 // clang-format off
126 { "n", "real-name", ED_ENVELOPE, ED_ENV_REAL_NAME, NULL },
127 { "u", "user-name", ED_ENVELOPE, ED_ENV_USER_NAME, NULL },
128 { "v", "first-name", ED_ENVELOPE, ED_ENV_FIRST_NAME, NULL },
129 { NULL, NULL, 0, -1, NULL }
130 // clang-format on
131};
132
136static struct ConfigDef SendVars[] = {
137 // clang-format off
138 { "abort_noattach", DT_QUAD, MUTT_NO, 0, NULL,
139 "Abort sending the email if attachments are missing"
140 },
141 { "abort_noattach_regex", DT_REGEX, IP "\\<(attach|attached|attachments?)\\>", 0, NULL,
142 "Regex to match text indicating attachments are expected"
143 },
144 { "abort_nosubject", DT_QUAD, MUTT_ASKYES, 0, NULL,
145 "Abort creating the email if subject is missing"
146 },
147 { "abort_unmodified", DT_QUAD, MUTT_YES, 0, NULL,
148 "Abort the sending if the message hasn't been edited"
149 },
150 { "allow_8bit", DT_BOOL, true, 0, NULL,
151 "Allow 8-bit messages, don't use quoted-printable or base64"
152 },
153 { "ask_bcc", DT_BOOL, false, 0, NULL,
154 "Ask the user for the blind-carbon-copy recipients"
155 },
156 { "ask_cc", DT_BOOL, false, 0, NULL,
157 "Ask the user for the carbon-copy recipients"
158 },
159 { "ask_followup_to", DT_BOOL, false, 0, NULL,
160 "(nntp) Ask the user for follow-up groups before editing"
161 },
162 { "ask_x_comment_to", DT_BOOL, false, 0, NULL,
163 "(nntp) Ask the user for the 'X-Comment-To' field before editing"
164 },
166 "When attaching files, use one of these character sets"
167 },
168 // L10N: $attribution_intro default format
169 { "attribution_intro", DT_EXPANDO|D_L10N_STRING, IP N_("On %d, %n wrote:"), IP IndexFormatDefNoPadding, NULL,
170 "Message to start a reply, 'On DATE, PERSON wrote:'"
171 },
172 { "attribution_locale", DT_STRING, 0, 0, NULL,
173 "Locale for dates in the attribution message"
174 },
175 { "attribution_trailer", DT_EXPANDO, 0, IP IndexFormatDefNoPadding, NULL,
176 "Suffix message to add after reply text"
177 },
178 { "bounce_delivered", DT_BOOL, true, 0, NULL,
179 "Add 'Delivered-To' to bounced messages"
180 },
181 { "content_type", DT_STRING, IP "text/plain", 0, NULL,
182 "Default 'Content-Type' for newly composed messages"
183 },
184 { "crypt_auto_encrypt", DT_BOOL, false, 0, NULL,
185 "Automatically PGP encrypt all outgoing mail"
186 },
187 { "crypt_auto_pgp", DT_BOOL, true, 0, NULL,
188 "Allow automatic PGP functions"
189 },
190 { "crypt_auto_sign", DT_BOOL, false, 0, NULL,
191 "Automatically PGP sign all outgoing mail"
192 },
193 { "crypt_auto_smime", DT_BOOL, true, 0, NULL,
194 "Allow automatic SMIME functions"
195 },
196 { "crypt_reply_encrypt", DT_BOOL, true, 0, NULL,
197 "Encrypt replies to encrypted messages"
198 },
199 { "crypt_reply_sign", DT_BOOL, false, 0, NULL,
200 "Sign replies to signed messages"
201 },
202 { "crypt_reply_sign_encrypted", DT_BOOL, false, 0, NULL,
203 "Sign replies to encrypted messages"
204 },
205 { "dsn_notify", DT_STRING, 0, 0, NULL,
206 "Request notification for message delivery or delay"
207 },
208 { "dsn_return", DT_STRING, 0, 0, NULL,
209 "What to send as a notification of message delivery or delay"
210 },
211 { "empty_subject", DT_STRING, IP "Re: your mail", 0, NULL,
212 "Subject to use when replying to an email with none"
213 },
214 { "encode_from", DT_BOOL, false, 0, NULL,
215 "Encode 'From ' as 'quote-printable' at the beginning of lines"
216 },
217 { "fast_reply", DT_BOOL, false, 0, NULL,
218 "Don't prompt for the recipients and subject when replying/forwarding"
219 },
220 { "fcc_attach", DT_QUAD, MUTT_YES, 0, NULL,
221 "Save sent message with all their attachments"
222 },
223 { "fcc_before_send", DT_BOOL, false, 0, NULL,
224 "Save FCCs before sending the message"
225 },
226 { "fcc_clear", DT_BOOL, false, 0, NULL,
227 "Save sent messages unencrypted and unsigned"
228 },
229 { "followup_to", DT_BOOL, true, 0, NULL,
230 "Add the 'Mail-Followup-To' header is generated when sending mail"
231 },
232 { "forward_attachments", DT_QUAD, MUTT_ASKYES, 0, NULL,
233 "Forward attachments when forwarding a message"
234 },
235 // L10N: $forward_attribution_intro default format
236 { "forward_attribution_intro", DT_EXPANDO|D_L10N_STRING, IP N_("----- Forwarded message from %f -----"), IP IndexFormatDefNoPadding, NULL,
237 "Prefix message for forwarded messages"
238 },
239 // L10N: $forward_attribution_trailer default format
240 { "forward_attribution_trailer", DT_EXPANDO|D_L10N_STRING, IP N_("----- End forwarded message -----"), IP IndexFormatDefNoPadding, NULL,
241 "Suffix message for forwarded messages"
242 },
243 { "forward_decrypt", DT_BOOL, true, 0, NULL,
244 "Decrypt the message when forwarding it"
245 },
246 { "forward_edit", DT_QUAD, MUTT_YES, 0, NULL,
247 "Automatically start the editor when forwarding a message"
248 },
249 { "forward_format", DT_EXPANDO|D_NOT_EMPTY, IP "[%a: %s]", IP IndexFormatDefNoPadding, NULL,
250 "printf-like format string to control the subject when forwarding a message"
251 },
252 { "forward_references", DT_BOOL, false, 0, NULL,
253 "Set the 'In-Reply-To' and 'References' headers when forwarding a message"
254 },
255 { "greeting", DT_EXPANDO, 0, IP &GreetingFormatDef, NULL,
256 "Greeting string added to the top of all messages"
257 },
258 { "hdrs", DT_BOOL, true, 0, NULL,
259 "Add custom headers to outgoing mail"
260 },
261 { "hidden_host", DT_BOOL, false, 0, NULL,
262 "Don't use the hostname, just the domain, when generating the message id"
263 },
264 { "honor_followup_to", DT_QUAD, MUTT_YES, 0, NULL,
265 "Honour the 'Mail-Followup-To' header when group replying"
266 },
267 { "ignore_list_reply_to", DT_BOOL, false, 0, NULL,
268 "Ignore the 'Reply-To' header when using `<reply>` on a mailing list"
269 },
270 { "include", DT_QUAD, MUTT_ASKYES, 0, NULL,
271 "Include a copy of the email that's being replied to"
272 },
273 { "inews", DT_EXPANDO|D_STRING_COMMAND, 0, 0, NULL,
274 "(nntp) External command to post news articles"
275 },
276 { "me_too", DT_BOOL, false, 0, NULL,
277 "Remove the user's address from the list of recipients"
278 },
279 { "mime_forward_decode", DT_BOOL, false, 0, NULL,
280 "Decode the forwarded message before attaching it"
281 },
282 { "mime_type_query_command", DT_STRING|D_STRING_COMMAND, 0, 0, NULL,
283 "External command to determine the MIME type of an attachment"
284 },
285 { "mime_type_query_first", DT_BOOL, false, 0, NULL,
286 "Run the `$mime_type_query_command` before the mime.types lookup"
287 },
288 { "nm_record", DT_BOOL, false, 0, NULL,
289 "(notmuch) If the 'record' mailbox (sent mail) should be indexed"
290 },
291 { "pgp_reply_inline", DT_BOOL, false, 0, NULL,
292 "Reply using old-style inline PGP messages (not recommended)"
293 },
294 { "postpone_encrypt", DT_BOOL, false, 0, NULL,
295 "Self-encrypt postponed messages"
296 },
297 { "postpone_encrypt_as", DT_STRING, 0, 0, NULL,
298 "Fallback encryption key for postponed messages"
299 },
300 { "recall", DT_QUAD, MUTT_ASKYES, 0, NULL,
301 "Recall postponed mesaages when asked to compose a message"
302 },
303 { "reply_self", DT_BOOL, false, 0, NULL,
304 "Really reply to yourself, when replying to your own email"
305 },
306 { "reply_to", DT_QUAD, MUTT_ASKYES, 0, NULL,
307 "Address to use as a 'Reply-To' header"
308 },
309 { "reply_with_xorig", DT_BOOL, false, 0, NULL,
310 "Create 'From' header from 'X-Original-To' header"
311 },
312 { "resume_draft_files", DT_BOOL, false, 0, NULL,
313 "Process draft files like postponed messages"
314 },
315 { "reverse_name", DT_BOOL, false, 0, NULL,
316 "Set the 'From' from the address the email was sent to"
317 },
318 { "reverse_real_name", DT_BOOL, true, 0, NULL,
319 "Set the 'From' from the full 'To' address the email was sent to"
320 },
321 { "sendmail", DT_STRING|D_STRING_COMMAND, IP SENDMAIL " -oem -oi", 0, simple_command_validator,
322 "External command to send email"
323 },
324 { "sendmail_wait", DT_NUMBER, 0, 0, NULL,
325 "Time to wait for sendmail to finish"
326 },
327 { "sig_dashes", DT_BOOL, true, 0, NULL,
328 "Insert '-- ' before the signature"
329 },
330 { "sig_on_top", DT_BOOL, false, 0, NULL,
331 "Insert the signature before the quoted text"
332 },
333 { "signature", DT_PATH|D_PATH_FILE, IP "~/.signature", 0, NULL,
334 "File containing a signature to append to all mail"
335 },
336 { "smtp_authenticators", DT_SLIST|D_SLIST_SEP_COLON, 0, 0, smtp_auth_validator,
337 "(smtp) List of allowed authentication methods (colon-separated)"
338 },
339 { "smtp_oauth_refresh_command", DT_STRING|D_STRING_COMMAND|D_SENSITIVE, 0, 0, NULL,
340 "(smtp) External command to generate OAUTH refresh token"
341 },
342 { "smtp_pass", DT_STRING|D_SENSITIVE, 0, 0, NULL,
343 "(smtp) Password for the SMTP server"
344 },
345 { "smtp_url", DT_STRING|D_SENSITIVE, 0, 0, NULL,
346 "(smtp) Url of the SMTP server"
347 },
348 { "smtp_user", DT_STRING|D_SENSITIVE, 0, 0, NULL,
349 "(smtp) Username for the SMTP server"
350 },
351 { "use_8bit_mime", DT_BOOL, false, 0, NULL,
352 "Use 8-bit messages and ESMTP to send messages"
353 },
354 { "use_envelope_from", DT_BOOL, false, 0, NULL,
355 "Set the envelope sender of the message"
356 },
357 { "use_from", DT_BOOL, true, 0, NULL,
358 "Set the 'From' header for outgoing mail"
359 },
360 { "user_agent", DT_BOOL, false, 0, NULL,
361 "Add a 'User-Agent' header to outgoing mail"
362 },
364 "Width to wrap headers in outgoing messages"
365 },
366 { "write_bcc", DT_BOOL, false, 0, NULL,
367 "Write out the 'Bcc' field when preparing to send a mail"
368 },
369
370 { "abort_noattach_regexp", DT_SYNONYM, IP "abort_noattach_regex", IP "2021-03-21" },
371 { "askbcc", DT_SYNONYM, IP "ask_bcc", IP "2021-03-21" },
372 { "askcc", DT_SYNONYM, IP "ask_cc", IP "2021-03-21" },
373 { "ask_follow_up", DT_SYNONYM, IP "ask_followup_to", IP "2023-01-20" },
374 { "attach_keyword", DT_SYNONYM, IP "abort_noattach_regex", IP "2021-03-21" },
375 { "attribution", DT_SYNONYM, IP "attribution_intro", IP "2023-02-20" },
376 { "crypt_autoencrypt", DT_SYNONYM, IP "crypt_auto_encrypt", IP "2021-03-21" },
377 { "crypt_autopgp", DT_SYNONYM, IP "crypt_auto_pgp", IP "2021-03-21" },
378 { "crypt_autosign", DT_SYNONYM, IP "crypt_auto_sign", IP "2021-03-21" },
379 { "crypt_autosmime", DT_SYNONYM, IP "crypt_auto_smime", IP "2021-03-21" },
380 { "crypt_replyencrypt", DT_SYNONYM, IP "crypt_reply_encrypt", IP "2021-03-21" },
381 { "crypt_replysign", DT_SYNONYM, IP "crypt_reply_sign", IP "2021-03-21" },
382 { "crypt_replysignencrypted", DT_SYNONYM, IP "crypt_reply_sign_encrypted", IP "2021-03-21" },
383 { "envelope_from", DT_SYNONYM, IP "use_envelope_from", IP "2021-03-21" },
384 { "forw_decrypt", DT_SYNONYM, IP "forward_decrypt", IP "2021-03-21" },
385 { "forw_format", DT_SYNONYM, IP "forward_format", IP "2021-03-21" },
386 { "metoo", DT_SYNONYM, IP "me_too", IP "2021-03-21" },
387 { "pgp_autoencrypt", DT_SYNONYM, IP "crypt_auto_encrypt", IP "2021-03-21" },
388 { "pgp_autosign", DT_SYNONYM, IP "crypt_auto_sign", IP "2021-03-21" },
389 { "pgp_auto_traditional", DT_SYNONYM, IP "pgp_reply_inline", IP "2021-03-21" },
390 { "pgp_replyencrypt", DT_SYNONYM, IP "crypt_reply_encrypt", IP "2021-03-21" },
391 { "pgp_replyinline", DT_SYNONYM, IP "pgp_reply_inline", IP "2021-03-21" },
392 { "pgp_replysign", DT_SYNONYM, IP "crypt_reply_sign", IP "2021-03-21" },
393 { "pgp_replysignencrypted", DT_SYNONYM, IP "crypt_reply_sign_encrypted", IP "2021-03-21" },
394 { "post_indent_str", DT_SYNONYM, IP "post_indent_string", IP "2021-03-21" },
395 { "post_indent_string", DT_SYNONYM, IP "attribution_trailer", IP "2023-02-20" },
396 { "reverse_realname", DT_SYNONYM, IP "reverse_real_name", IP "2021-03-21" },
397 { "use_8bitmime", DT_SYNONYM, IP "use_8bit_mime", IP "2021-03-21" },
398
399 { "mime_subject", D_INTERNAL_DEPRECATED|DT_BOOL, 0, IP "2021-03-24" },
400 { NULL },
401 // clang-format on
402};
403
408{
410}
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:161
Convenience wrapper for the config headers.
bool cs_register_variables(const struct ConfigSet *cs, struct ConfigDef vars[])
Register a set of config items.
Definition: set.c:289
#define CSR_ERR_INVALID
Value hasn't been set.
Definition: set.h:36
#define CSR_SUCCESS
Action completed successfully.
Definition: set.h:33
#define IP
Definition: set.h:52
Connection Library.
@ ED_ENVELOPE
Envelope ED_ENV_ ExpandoDataEnvelope.
Definition: domain.h:42
Structs that make up an email.
@ ED_ENV_REAL_NAME
Envelope.to (first)
Definition: envelope.h:111
@ ED_ENV_USER_NAME
Envelope.to (first)
Definition: envelope.h:122
@ ED_ENV_FIRST_NAME
Envelope.from, Envelope.to, Envelope.cc.
Definition: envelope.h:101
Parse Expando string.
static int simple_command_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "sendmail" config variable - Implements ConfigDef::validator() -.
Definition: config.c:101
static int smtp_auth_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "smtp_authenticators" config variable - Implements ConfigDef::validator() -.
Definition: config.c:76
static int wrapheaders_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "wrap_headers" config variable - Implements ConfigDef::validator() -.
Definition: config.c:58
int charset_slist_validator(const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the multiple "charset" config variables - Implements ConfigDef::validator() -.
Definition: charset.c:84
bool config_init_send(struct ConfigSet *cs)
Register send config variables - Implements module_init_config_t -.
Definition: config.c:407
Convenience wrapper for the library headers.
#define N_(a)
Definition: message.h:32
#define _(a)
Definition: message.h:28
const struct ExpandoDefinition NntpFormatDef[]
Expando definitions.
Definition: config.c:44
const struct ExpandoDefinition IndexFormatDef[]
Expando definitions.
Definition: mutt_config.c:312
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
@ MUTT_ASKYES
Ask the user, defaulting to 'Yes'.
Definition: quad.h:41
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition: quad.h:39
#define STAILQ_FOREACH(var, head, field)
Definition: queue.h:390
bool sasl_auth_validator(const char *authenticator)
Validate an auth method against Cyrus SASL methods.
Definition: sasl.c:136
static struct ConfigDef SendVars[]
Config definitions for the send library.
Definition: config.c:136
static const struct ExpandoDefinition *const IndexFormatDefNoPadding
IndexFormatDefNoPadding - Index format definitions, without padding or arrow.
Definition: config.c:51
static const struct ExpandoDefinition GreetingFormatDef[]
Expando definitions.
Definition: config.c:124
bool smtp_auth_is_valid(const char *authenticator)
Check if string is a valid smtp authentication method.
Definition: smtp.c:926
Send email to an SMTP server.
String manipulation buffer.
Definition: buffer.h:36
Definition: set.h:62
const char * name
User-visible name.
Definition: set.h:63
Container for lots of config items.
Definition: set.h:248
Definition of a format string.
Definition: definition.h:44
A List node for strings.
Definition: list.h:37
char * data
String.
Definition: list.h:38
String list.
Definition: slist.h:37
struct ListHead head
List containing values.
Definition: slist.h:38
size_t count
Number of values in list.
Definition: slist.h:39
#define D_SLIST_SEP_COLON
Slist items are colon-separated.
Definition: types.h:111
#define D_INTERNAL_DEPRECATED
Config item shouldn't be used any more.
Definition: types.h:87
#define D_STRING_COMMAND
A command.
Definition: types.h:98
#define D_SLIST_ALLOW_EMPTY
Slist may be empty.
Definition: types.h:115
#define D_L10N_STRING
String can be localised.
Definition: types.h:81
#define D_PATH_FILE
Path is a file.
Definition: types.h:103
@ DT_NUMBER
a number
Definition: types.h:38
@ DT_SLIST
a list of strings
Definition: types.h:42
@ DT_BOOL
boolean option
Definition: types.h:32
@ DT_QUAD
quad-option (no/yes/ask-no/ask-yes)
Definition: types.h:40
@ DT_SYNONYM
synonym for another variable
Definition: types.h:45
@ DT_STRING
a string
Definition: types.h:44
@ DT_EXPANDO
an expando
Definition: types.h:34
@ DT_REGEX
regular expressions
Definition: types.h:41
@ DT_PATH
a path to a file/directory
Definition: types.h:39
#define D_SENSITIVE
Contains sensitive value, e.g. password.
Definition: types.h:80
#define D_NOT_EMPTY
Empty strings are not allowed.
Definition: types.h:79
#define D_INTEGER_NOT_NEGATIVE
Negative numbers are not allowed.
Definition: types.h:100