NeoMutt  2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
send.c File Reference

Prepare and send an email. More...

#include "config.h"
#include <errno.h>
#include <locale.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "mutt/lib.h"
#include "address/lib.h"
#include "config/lib.h"
#include "email/lib.h"
#include "core/lib.h"
#include "alias/lib.h"
#include "gui/lib.h"
#include "mutt.h"
#include "send.h"
#include "attach/lib.h"
#include "browser/lib.h"
#include "compose/lib.h"
#include "editor/lib.h"
#include "expando/lib.h"
#include "history/lib.h"
#include "hooks/lib.h"
#include "index/lib.h"
#include "ncrypt/lib.h"
#include "pager/lib.h"
#include "pattern/lib.h"
#include "postpone/lib.h"
#include "question/lib.h"
#include "body.h"
#include "expando_greeting.h"
#include "expando_msgid.h"
#include "globals.h"
#include "header.h"
#include "module_data.h"
#include "multipart.h"
#include "mutt_logging.h"
#include "muttlib.h"
#include "mx.h"
#include "nntp/mdata.h"
#include "sendlib.h"
#include "sendmail.h"
#include "smtp.h"
#include "notmuch/lib.h"
#include "autocrypt/lib.h"
#include "autocrypt/module_data.h"
Include dependency graph for send.c:

Go to the source code of this file.

Functions

static void append_signature (FILE *fp, struct ConfigSubset *sub)
 Append a signature to an email.
static void remove_user (struct AddressList *al, bool leave_only)
 Remove any address which matches the current user.
static void add_mailing_lists (struct AddressList *out, const struct AddressList *t, const struct AddressList *c)
 Search Address lists for mailing lists.
int mutt_edit_address (struct AddressList *al, const char *field, bool expand_aliases)
 Edit an email address.
static int edit_envelope (struct Envelope *en, SendFlags flags, struct ConfigSubset *sub)
 Edit Envelope fields.
static char * nntp_get_header (const char *s)
 Get the trimmed header.
static void process_user_recips (struct Envelope *env)
 Process the user headers.
static void process_user_header (struct Envelope *env)
 Process the user headers.
void mutt_forward_intro (struct Email *e, FILE *fp, struct ConfigSubset *sub)
 Add the "start of forwarded message" text.
void mutt_forward_trailer (struct Email *e, FILE *fp, struct ConfigSubset *sub)
 Add a "end of forwarded message" text.
static int include_forward (struct Mailbox *m, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Write out a forwarded message.
static int inline_forward_attachments (struct Mailbox *m, struct Email *e, struct Body ***plast, enum QuadOption *forwardq, struct ConfigSubset *sub)
 Add attachments to an email, inline.
static void format_attribution (const struct Expando *exp, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Format an attribution prefix/suffix.
void mutt_make_attribution_intro (struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Add "on DATE, PERSON wrote" header.
void mutt_make_attribution_trailer (struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Add suffix to replied email text.
static void mutt_make_greeting (struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Add greetings string.
static int include_reply (struct Mailbox *m, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Generate the reply text for an email.
static const struct AddressList * choose_default_to (const struct Address *from, const struct Envelope *env, struct ConfigSubset *sub)
 Pick the best 'to:' value.
static int default_to (struct AddressList *to, struct Envelope *env, SendFlags flags, int hmfupto, struct ConfigSubset *sub)
 Generate default email addresses.
int mutt_fetch_recips (struct Envelope *out, struct Envelope *in, SendFlags flags, struct ConfigSubset *sub)
 Generate recpients for a reply email.
static void add_references (struct ListHead *head, struct Envelope *env)
 Add the email's references to a list.
static void add_message_id (struct ListHead *head, struct Envelope *env)
 Add the email's message ID to a list.
void mutt_fix_reply_recipients (struct Envelope *env, struct ConfigSubset *sub)
 Remove duplicate recipients.
void mutt_make_forward_subject (struct Envelope *env, struct Email *e, struct ConfigSubset *sub)
 Create a subject for a forwarded email.
void mutt_make_misc_reply_headers (struct Envelope *env, struct Envelope *env_cur, struct ConfigSubset *sub)
 Set subject for a reply.
void mutt_add_to_reference_headers (struct Envelope *env, struct Envelope *env_cur, struct ConfigSubset *sub)
 Generate references for a reply email.
static void make_reference_headers (struct EmailArray *ea, struct Envelope *env, struct ConfigSubset *sub)
 Generate reference headers for an email.
static int envelope_defaults (struct Envelope *env, struct EmailArray *ea, SendFlags flags, struct ConfigSubset *sub)
 Fill in some defaults for a new email.
static int generate_body (FILE *fp_tmp, struct Email *e, SendFlags flags, struct Mailbox *m, struct EmailArray *ea, struct ConfigSubset *sub)
 Create a new email body.
void mutt_set_followup_to (struct Envelope *env, struct ConfigSubset *sub)
 Set followup-to field.
static void set_reverse_name (struct AddressList *al, struct Envelope *env, struct ConfigSubset *sub)
 Try to set the 'from' field from the recipients.
struct Addressmutt_default_from (struct ConfigSubset *sub)
 Get a default 'from' Address.
static int invoke_mta (struct Mailbox *m, struct Email *e, struct ConfigSubset *sub)
 Send an email.
void mutt_encode_descriptions (struct Body *b, bool recurse, struct ConfigSubset *sub)
 RFC2047 encode the content-descriptions.
static void decode_descriptions (struct Body *b)
 RFC2047 decode them in case of an error.
static void fix_end_of_file (const char *data)
 Ensure a file ends with a linefeed.
int mutt_resend_message (FILE *fp, struct Mailbox *m, struct Email *e_cur, struct ConfigSubset *sub)
 Resend an email.
static bool is_reply (struct Email *reply, struct Email *orig)
 Is one email a reply to another?
static bool search_attach_keyword (char *filename, struct ConfigSubset *sub)
 Search an email for 'attachment' keywords.
static int save_fcc (struct Mailbox *m, struct Email *e, struct Buffer *fcc, struct Body *clear_content, char *pgpkeylist, SendFlags flags, char **finalpath, struct ConfigSubset *sub)
 Save an Email to a 'sent mail' folder.
static int postpone_message (struct Email *e_post, struct Email *e_cur, const char *fcc, SendFlags flags, struct ConfigSubset *sub)
 Save an Email for another day.
static bool is_text_plain (const struct Body *b)
 Is a Body a text/plain MIME part?
static bool abort_for_missing_attachments (const struct Body *b, struct ConfigSubset *sub)
 Should we abort sending because of missing attachments?
int mutt_send_message (SendFlags flags, struct Email *e_templ, const char *tempfile, struct Mailbox *m, struct EmailArray *ea, struct ConfigSubset *sub)
 Send an email.
static bool send_simple_email (struct Mailbox *m, struct EmailArray *ea, const char *mailto, const char *subj, const char *body)
 Compose an email given a few basic ingredients.
bool mutt_send_list_subscribe (struct Mailbox *m, struct Email *e)
 Send a mailing-list subscription email.
bool mutt_send_list_unsubscribe (struct Mailbox *m, struct Email *e)
 Send a mailing-list unsubscription email.

Detailed Description

Prepare and send an email.

Authors
  • Richard Russon
  • Pietro Cerutti
  • Jakub Jindra
  • Thomas Sanchez
  • Ashish Panigrahi
  • Charalampos Kardaris
  • Thomas Bracht Laumann Jespersen
  • Viktor Cheburkin
  • David Purton
  • Dennis Schön
  • Whitney Cumber
  • наб
  • Alejandro Colomar
  • Tóth János

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/.

Definition in file send.c.

Function Documentation

◆ append_signature()

void append_signature ( FILE * fp,
struct ConfigSubset * sub )
static

Append a signature to an email.

Parameters
fpFile to write to
subConfig Subset

Definition at line 100 of file send.c.

101{
102 const char *const c_signature = cs_subset_path(sub, "signature");
103 if (!c_signature)
104 return;
105
106 // If the user hasn't set $signature, don't warn them if it doesn't exist
107 struct Buffer *def_sig = buf_pool_get();
108 cs_str_initial_get(sub->cs, "signature", def_sig);
109 mutt_path_canon(def_sig, NeoMutt->home_dir, false);
110 bool notify_missing = !mutt_str_equal(c_signature, buf_string(def_sig));
111 buf_pool_release(&def_sig);
112
113 pid_t pid = 0;
114 FILE *fp_tmp = mutt_open_read(c_signature, &pid);
115 if (!fp_tmp)
116 {
117 if (notify_missing)
118 mutt_perror("%s", c_signature);
119 return;
120 }
121
122 const bool c_sig_dashes = cs_subset_bool(sub, "sig_dashes");
123 if (c_sig_dashes)
124 fputs("\n-- \n", fp);
125 mutt_file_copy_stream(fp_tmp, fp);
126 mutt_file_fclose(&fp_tmp);
127 if (pid != -1)
128 filter_wait(pid);
129}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
const char * cs_subset_path(const struct ConfigSubset *sub, const char *name)
Get a path config item by name.
Definition helpers.c:168
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition helpers.c:47
int cs_str_initial_get(const struct ConfigSet *cs, const char *name, struct Buffer *result)
Get the initial, or parent, value of a config item.
Definition set.c:618
int mutt_file_copy_stream(FILE *fp_in, FILE *fp_out)
Copy the contents of one file into another.
Definition file.c:224
#define mutt_file_fclose(FP)
Definition file.h:144
#define mutt_perror(...)
Definition logging2.h:95
int filter_wait(pid_t pid)
Wait for the exit of a process and return its status.
Definition filter.c:231
bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir)
Create the canonical version of a path.
Definition path.c:248
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition string.c:666
FILE * mutt_open_read(const char *path, pid_t *thepid)
Run a command to read from.
Definition muttlib.c:653
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition pool.c:91
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition pool.c:111
String manipulation buffer.
Definition buffer.h:36
struct ConfigSet * cs
Parent ConfigSet.
Definition subset.h:50
Container for Accounts, Notifications.
Definition neomutt.h:41
char * home_dir
User's home directory.
Definition neomutt.h:55
Here is the call graph for this function:
Here is the caller graph for this function:

◆ remove_user()

void remove_user ( struct AddressList * al,
bool leave_only )
static

Remove any address which matches the current user.

Parameters
alList of addresses
leave_onlyIf set, don't remove the user's address if it it the only one in the list

Definition at line 137 of file send.c.

138{
139 struct Address *a = NULL;
140 struct Address *tmp = NULL;
141 TAILQ_FOREACH_SAFE(a, al, entries, tmp)
142 {
143 if (mutt_addr_is_user(a) && (!leave_only || TAILQ_NEXT(a, entries)))
144 {
145 TAILQ_REMOVE(al, a, entries);
146 mutt_addr_free(&a);
147 }
148 }
149}
void mutt_addr_free(struct Address **ptr)
Free a single Address.
Definition address.c:463
bool mutt_addr_is_user(const struct Address *addr)
Does the address belong to the user.
Definition alias.c:601
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)
Definition queue.h:792
#define TAILQ_REMOVE(head, elm, field)
Definition queue.h:901
#define TAILQ_NEXT(elm, field)
Definition queue.h:889
An email address.
Definition address.h:35
Here is the call graph for this function:
Here is the caller graph for this function:

◆ add_mailing_lists()

void add_mailing_lists ( struct AddressList * out,
const struct AddressList * t,
const struct AddressList * c )
static

Search Address lists for mailing lists.

Parameters
outAddress list where to append matching mailing lists
t'To' Address list
c'Cc' Address list

Definition at line 157 of file send.c.

159{
160 const struct AddressList *const als[] = { t, c };
161
162 for (size_t i = 0; i < countof(als); i++)
163 {
164 const struct AddressList *al = als[i];
165 struct Address *a = NULL;
166 TAILQ_FOREACH(a, al, entries)
167 {
168 if (!a->group && mutt_is_mail_list(a))
169 {
171 }
172 }
173 }
174}
void mutt_addrlist_append(struct AddressList *al, struct Address *a)
Append an Address to an AddressList.
Definition address.c:1494
struct Address * mutt_addr_copy(const struct Address *addr)
Copy the real address.
Definition address.c:756
bool mutt_is_mail_list(const struct Address *addr)
Is this the email address of a mailing list?
Definition maillist.c:46
#define countof(x)
Definition memory.h:49
#define TAILQ_FOREACH(var, head, field)
Definition queue.h:782
bool group
Group mailbox?
Definition address.h:38
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_edit_address()

int mutt_edit_address ( struct AddressList * al,
const char * field,
bool expand_aliases )

Edit an email address.

Parameters
[in,out]alAddressList to edit
[in]fieldPrompt for user
[in]expand_aliasesIf true, expand Address aliases
Return values
0Success
-1Failure

Definition at line 184 of file send.c.

185{
186 int rc = 0;
187 struct Buffer *buf = buf_pool_get();
188 buf_alloc(buf, 8192);
189 char *err = NULL;
190 int idna_ok = 0;
191
192 do
193 {
195 buf_reset(buf);
196 mutt_addrlist_write(al, buf, false);
197 if (!buf_is_empty(buf))
198 buf_addstr(buf, ", ");
199
200 if (mw_get_field(field, buf, MUTT_COMP_NONE, HC_ALIAS, &CompleteAliasOps, NULL) != 0)
201 {
202 rc = -1;
203 goto done;
204 }
207 if (expand_aliases)
209 idna_ok = mutt_addrlist_to_intl(al, &err);
210 if (idna_ok != 0)
211 {
212 mutt_error(_("Bad IDN: '%s'"), err);
213 FREE(&err);
214 }
215 } while (idna_ok != 0);
216
217done:
218 buf_pool_release(&buf);
219 return rc;
220}
void mutt_addrlist_clear(struct AddressList *al)
Unlink and free all Address in an AddressList.
Definition address.c:1473
int mutt_addrlist_to_local(struct AddressList *al)
Convert an Address list from Punycode.
Definition address.c:1389
size_t mutt_addrlist_write(const struct AddressList *al, struct Buffer *buf, bool display)
Write an Address to a buffer.
Definition address.c:1217
int mutt_addrlist_parse2(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition address.c:651
int mutt_addrlist_to_intl(struct AddressList *al, char **err)
Convert an Address list to Punycode.
Definition address.c:1304
const struct CompleteOps CompleteAliasOps
Auto-Completion of Aliases.
Definition complete.c:108
void mutt_expand_aliases(struct AddressList *al)
Expand aliases in a List of Addresses.
Definition alias.c:297
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition buffer.c:89
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition buffer.c:298
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition buffer.c:233
void buf_alloc(struct Buffer *buf, size_t new_size)
Make sure a buffer can store at least new_size bytes.
Definition buffer.c:342
@ MUTT_COMP_NONE
No flags are set.
Definition wdata.h:46
int mw_get_field(const char *prompt, struct Buffer *buf, CompletionFlags complete, enum HistoryClass hclass, const struct CompleteOps *comp_api, void *cdata)
Ask the user for a string -.
Definition window.c:502
#define mutt_error(...)
Definition logging2.h:94
@ HC_ALIAS
Aliases.
Definition lib.h:57
#define FREE(x)
Free memory and set the pointer to NULL.
Definition memory.h:68
#define _(a)
Definition message.h:28
Here is the call graph for this function:
Here is the caller graph for this function:

◆ edit_envelope()

int edit_envelope ( struct Envelope * en,
SendFlags flags,
struct ConfigSubset * sub )
static

Edit Envelope fields.

Parameters
enEnvelope to edit
flagsFlags, see SendFlags
subConfig Subset
Return values
0Success
-1Failure

Definition at line 230 of file send.c.

231{
232 int rc = -1;
233 struct Buffer *buf = buf_pool_get();
234 buf_alloc(buf, 8192);
235
236 /* For NNTP posts, prompt for Newsgroups, Followup-To, and X-Comment-To */
237 if (OptNewsSend)
238 {
239 if (en->newsgroups)
240 buf_strcpy(buf, en->newsgroups);
241 else
242 buf_reset(buf);
243
244 if (mw_get_field("Newsgroups: ", buf, MUTT_COMP_NONE, HC_OTHER, NULL, NULL) != 0)
245 {
246 goto done;
247 }
249
250 if (en->followup_to)
251 buf_strcpy(buf, en->followup_to);
252 else
253 buf_reset(buf);
254
255 const bool c_ask_followup_to = cs_subset_bool(sub, "ask_followup_to");
256 if (c_ask_followup_to &&
257 (mw_get_field("Followup-To: ", buf, MUTT_COMP_NONE, HC_OTHER, NULL, NULL) != 0))
258 {
259 goto done;
260 }
262
263 if (en->x_comment_to)
264 buf_strcpy(buf, en->x_comment_to);
265 else
266 buf_reset(buf);
267
268 const bool c_x_comment_to = cs_subset_bool(sub, "x_comment_to");
269 const bool c_ask_x_comment_to = cs_subset_bool(sub, "ask_x_comment_to");
270 if (c_x_comment_to && c_ask_x_comment_to &&
271 (mw_get_field("X-Comment-To: ", buf, MUTT_COMP_NONE, HC_OTHER, NULL, NULL) != 0))
272 {
273 goto done;
274 }
276 }
277 else
278 {
279 /* For email: prompt for To, Cc, Bcc addresses (skipped with fast_reply) */
280 const bool c_fast_reply = cs_subset_bool(sub, "fast_reply");
281 if (TAILQ_EMPTY(&en->to) || !c_fast_reply || (flags & SEND_REVIEW_TO))
282 {
283 if ((mutt_edit_address(&en->to, _("To: "), true) == -1))
284 goto done;
285 }
286
287 const bool c_ask_cc = cs_subset_bool(sub, "ask_cc");
288 if (TAILQ_EMPTY(&en->cc) || !c_fast_reply)
289 {
290 if (c_ask_cc && (mutt_edit_address(&en->cc, _("Cc: "), true) == -1))
291 goto done;
292 }
293
294 const bool c_ask_bcc = cs_subset_bool(sub, "ask_bcc");
295 if (TAILQ_EMPTY(&en->bcc) || !c_fast_reply)
296 {
297 if (c_ask_bcc && (mutt_edit_address(&en->bcc, _("Bcc: "), true) == -1))
298 goto done;
299 }
300
301 if (TAILQ_EMPTY(&en->to) && TAILQ_EMPTY(&en->cc) && TAILQ_EMPTY(&en->bcc))
302 {
303 mutt_warning(_("No recipients specified"));
304 goto done;
305 }
306
307 const bool c_reply_with_xorig = cs_subset_bool(sub, "reply_with_xorig");
308 if (c_reply_with_xorig && (flags & (SEND_REPLY | SEND_LIST_REPLY | SEND_GROUP_REPLY)) &&
309 (mutt_edit_address(&en->from, "From: ", true) == -1))
310 {
311 goto done;
312 }
313 }
314
316 ASSERT(mod_data);
317
318 /* Handle the Subject line: fast_reply skips the prompt if subject already set.
319 * Check user_header for any "Subject:" override from send-hooks. */
320 if (en->subject)
321 {
322 const bool c_fast_reply = cs_subset_bool(sub, "fast_reply");
323 if (c_fast_reply)
324 {
325 rc = 0;
326 goto done;
327 }
328 buf_strcpy(buf, en->subject);
329 }
330 else
331 {
332 const char *p = NULL;
333
334 buf_reset(buf);
335 struct ListNode *uh = NULL;
336 STAILQ_FOREACH(uh, &mod_data->user_header, entries)
337 {
338 size_t plen = mutt_istr_startswith(uh->data, "subject:");
339 if (plen)
340 {
341 p = mutt_str_skip_email_wsp(uh->data + plen);
342 buf_strcpy(buf, p);
343 }
344 }
345 }
346
347 if ((mw_get_field(_("Subject: "), buf, MUTT_COMP_NONE, HC_OTHER, NULL, NULL) != 0) ||
348 (buf_is_empty(buf) &&
349 (query_quadoption(_("No subject, abort?"), sub, "abort_nosubject") != MUTT_NO)))
350 {
351 mutt_message(_("No subject, aborting"));
352 goto done;
353 }
355 rc = 0;
356
357done:
358 buf_pool_release(&buf);
359 return rc;
360}
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition buffer.c:401
void mutt_env_set_subject(struct Envelope *env, const char *subj)
Set both subject and real_subj to subj.
Definition envelope.c:68
bool OptNewsSend
(pseudo) used to change behavior when posting
Definition globals.c:54
#define mutt_warning(...)
Definition logging2.h:92
#define mutt_message(...)
Definition logging2.h:93
@ HC_OTHER
Miscellaneous strings.
Definition lib.h:61
@ MODULE_ID_SEND
ModuleSend, Send
Definition module_api.h:92
char * mutt_str_skip_email_wsp(const char *s)
Skip over whitespace as defined by RFC5322.
Definition string.c:614
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
Definition string.c:246
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition string.c:284
void * neomutt_get_module_data(struct NeoMutt *n, enum ModuleId id)
Get the private data for a Module.
Definition neomutt.c:666
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition quad.h:38
enum QuadOption query_quadoption(const char *prompt, struct ConfigSubset *sub, const char *name)
Ask the user a quad-question.
Definition question.c:384
#define STAILQ_FOREACH(var, head, field)
Definition queue.h:390
#define TAILQ_EMPTY(head)
Definition queue.h:778
int mutt_edit_address(struct AddressList *al, const char *field, bool expand_aliases)
Edit an email address.
Definition send.c:184
@ SEND_REPLY
Reply to sender.
Definition send.h:46
@ SEND_GROUP_REPLY
Reply to all.
Definition send.h:47
@ SEND_REVIEW_TO
Allow the user to edit the To field.
Definition send.h:60
@ SEND_LIST_REPLY
Reply to mailing list.
Definition send.h:48
#define ASSERT(COND)
Definition signal2.h:59
char *const subject
Email's subject.
Definition envelope.h:70
struct AddressList to
Email's 'To' list.
Definition envelope.h:60
char * followup_to
List of 'followup-to' fields.
Definition envelope.h:80
char * x_comment_to
List of 'X-comment-to' fields.
Definition envelope.h:81
char * newsgroups
List of newsgroups.
Definition envelope.h:78
struct AddressList cc
Email's 'Cc' list.
Definition envelope.h:61
struct AddressList bcc
Email's 'Bcc' list.
Definition envelope.h:62
struct AddressList from
Email's 'From' list.
Definition envelope.h:59
A List node for strings.
Definition list.h:37
char * data
String.
Definition list.h:38
Send private Module data.
Definition module_data.h:33
struct ListHead user_header
Custom headers to add to outgoing emails.
Definition module_data.h:35
Here is the call graph for this function:
Here is the caller graph for this function:

◆ nntp_get_header()

char * nntp_get_header ( const char * s)
static

Get the trimmed header.

Parameters
sHeader line with leading whitespace
Return values
ptrCopy of string
Note
The caller should free the returned string.

Definition at line 369 of file send.c.

370{
371 SKIPWS(s);
372 return mutt_str_dup(s);
373}
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition string.c:257
#define SKIPWS(ch)
Definition string2.h:52
Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_user_recips()

void process_user_recips ( struct Envelope * env)
static

Process the user headers.

Parameters
envEnvelope to populate

Definition at line 379 of file send.c.

380{
382 ASSERT(mod_data);
383
384 struct ListNode *uh = NULL;
385 STAILQ_FOREACH(uh, &mod_data->user_header, entries)
386 {
387 size_t plen;
388 if ((plen = mutt_istr_startswith(uh->data, "to:")))
389 mutt_addrlist_parse(&env->to, uh->data + plen);
390 else if ((plen = mutt_istr_startswith(uh->data, "cc:")))
391 mutt_addrlist_parse(&env->cc, uh->data + plen);
392 else if ((plen = mutt_istr_startswith(uh->data, "bcc:")))
393 mutt_addrlist_parse(&env->bcc, uh->data + plen);
394 else if ((plen = mutt_istr_startswith(uh->data, "newsgroups:")))
395 env->newsgroups = nntp_get_header(uh->data + plen);
396 else if ((plen = mutt_istr_startswith(uh->data, "followup-to:")))
397 env->followup_to = nntp_get_header(uh->data + plen);
398 else if ((plen = mutt_istr_startswith(uh->data, "x-comment-to:")))
399 env->x_comment_to = nntp_get_header(uh->data + plen);
400 }
401}
int mutt_addrlist_parse(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition address.c:481
static char * nntp_get_header(const char *s)
Get the trimmed header.
Definition send.c:369
Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_user_header()

void process_user_header ( struct Envelope * env)
static

Process the user headers.

Parameters
envEnvelope to populate

Definition at line 407 of file send.c.

408{
410 ASSERT(mod_data);
411
412 struct ListNode *uh = NULL;
413 STAILQ_FOREACH(uh, &mod_data->user_header, entries)
414 {
415 size_t plen;
416 if ((plen = mutt_istr_startswith(uh->data, "from:")))
417 {
418 /* User has specified a default From: address. Remove default address */
420 mutt_addrlist_parse(&env->from, uh->data + plen);
421 }
422 else if ((plen = mutt_istr_startswith(uh->data, "reply-to:")))
423 {
425 mutt_addrlist_parse(&env->reply_to, uh->data + plen);
426 }
427 else if ((plen = mutt_istr_startswith(uh->data, "message-id:")))
428 {
429 char *tmp = mutt_extract_message_id(uh->data + plen, NULL);
430 if (mutt_addr_valid_msgid(tmp))
431 {
432 FREE(&env->message_id);
433 env->message_id = tmp;
434 }
435 else
436 {
437 FREE(&tmp);
438 }
439 }
440 else if (!mutt_istr_startswith(uh->data, "to:") &&
441 !mutt_istr_startswith(uh->data, "cc:") &&
442 !mutt_istr_startswith(uh->data, "bcc:") &&
443 !mutt_istr_startswith(uh->data, "newsgroups:") &&
444 !mutt_istr_startswith(uh->data, "followup-to:") &&
445 !mutt_istr_startswith(uh->data, "x-comment-to:") &&
446 !mutt_istr_startswith(uh->data, "supersedes:") &&
447 !mutt_istr_startswith(uh->data, "subject:") &&
448 !mutt_istr_startswith(uh->data, "return-path:"))
449 {
451 }
452 }
453}
bool mutt_addr_valid_msgid(const char *msgid)
Is this a valid Message ID?
Definition address.c:803
char * mutt_extract_message_id(const char *s, size_t *len)
Find a Message-ID.
Definition parse.c:417
struct ListNode * mutt_list_insert_tail(struct ListHead *h, char *s)
Append a string to the end of a List.
Definition list.c:65
struct ListHead userhdrs
user defined headers
Definition envelope.h:85
struct AddressList reply_to
Email's 'reply-to'.
Definition envelope.h:64
char * message_id
Message ID.
Definition envelope.h:73
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_forward_intro()

void mutt_forward_intro ( struct Email * e,
FILE * fp,
struct ConfigSubset * sub )

Add the "start of forwarded message" text.

Parameters
eEmail
subConfig Subset
fpFile to write to

Definition at line 461 of file send.c.

462{
463 const struct Expando *c_forward_attribution_intro = cs_subset_expando(sub, "forward_attribution_intro");
464 if (!c_forward_attribution_intro || !fp)
465 return;
466
467 const char *const c_attribution_locale = cs_subset_string(sub, "attribution_locale");
468
469 struct Buffer *buf = buf_pool_get();
470 setlocale(LC_TIME, NONULL(c_attribution_locale));
471 mutt_make_string(buf, -1, c_forward_attribution_intro, NULL, -1, e, MUTT_FORMAT_NONE, NULL);
472 setlocale(LC_TIME, "");
473 fputs(buf_string(buf), fp);
474 fputs("\n\n", fp);
475 buf_pool_release(&buf);
476}
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition helpers.c:291
const struct Expando * cs_subset_expando(const struct ConfigSubset *sub, const char *name)
Get an Expando config item by name.
int mutt_make_string(struct Buffer *buf, size_t max_cols, const struct Expando *exp, struct Mailbox *m, int inpgr, struct Email *e, MuttFormatFlags flags, const char *progress)
Create formatted strings using mailbox expandos.
Definition dlg_index.c:824
@ MUTT_FORMAT_NONE
No flags are set.
Definition render.h:37
#define NONULL(x)
Definition string2.h:44
Parsed Expando trees.
Definition expando.h:41
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_forward_trailer()

void mutt_forward_trailer ( struct Email * e,
FILE * fp,
struct ConfigSubset * sub )

Add a "end of forwarded message" text.

Parameters
eEmail
subConfig Subset
fpFile to write to

Definition at line 484 of file send.c.

485{
486 const struct Expando *c_forward_attribution_trailer = cs_subset_expando(sub, "forward_attribution_trailer");
487 if (!c_forward_attribution_trailer || !fp)
488 return;
489
490 const char *const c_attribution_locale = cs_subset_string(sub, "attribution_locale");
491
492 struct Buffer *buf = buf_pool_get();
493 setlocale(LC_TIME, NONULL(c_attribution_locale));
494 mutt_make_string(buf, -1, c_forward_attribution_trailer, NULL, -1, e,
495 MUTT_FORMAT_NONE, NULL);
496 setlocale(LC_TIME, "");
497 fputc('\n', fp);
498 fputs(buf_string(buf), fp);
499 fputc('\n', fp);
500 buf_pool_release(&buf);
501}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ include_forward()

int include_forward ( struct Mailbox * m,
struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )
static

Write out a forwarded message.

Parameters
mMailbox
eEmail
fp_outFile to write to
subConfig Subset
Return values
0Success
-1Failure

Definition at line 512 of file send.c.

514{
515 CopyHeaderFlags chflags = CH_DECODE;
517
518 struct Message *msg = mx_msg_open(m, e);
519 if (!msg)
520 {
521 return -1;
522 }
525
526 const bool c_forward_decode = cs_subset_bool(sub, "forward_decode");
527 if ((WithCrypto != 0) && (e->security & SEC_ENCRYPT) && c_forward_decode)
528 {
529 /* make sure we have the user's passphrase before proceeding... */
531 {
532 mx_msg_close(m, &msg);
533 return -1;
534 }
535 }
536
537 mutt_forward_intro(e, fp_out, sub);
538
539 if (c_forward_decode)
540 {
541 cmflags |= MUTT_CM_DECODE | MUTT_CM_CHARCONV;
542
543 const bool c_weed = cs_subset_bool(sub, "weed");
544 if (c_weed)
545 {
546 chflags |= CH_WEED | CH_REORDER;
547 cmflags |= MUTT_CM_WEED;
548 }
549 }
550
551 const bool c_forward_quote = cs_subset_bool(sub, "forward_quote");
552 if (c_forward_quote)
553 cmflags |= MUTT_CM_PREFIX;
554
555 mutt_copy_message(fp_out, e, msg, cmflags, chflags, 0);
556 mx_msg_close(m, &msg);
557 mutt_forward_trailer(e, fp_out, sub);
558 return 0;
559}
void mutt_parse_mime_message(struct Email *e, FILE *fp)
Parse a MIME email.
Definition commands.c:629
@ CMD_MESSAGE_HOOK
:message-hook
Definition command.h:97
int mutt_copy_message(FILE *fp_out, struct Email *e, struct Message *msg, CopyMessageFlags cmflags, CopyHeaderFlags chflags, int wraplen)
Copy a message from a Mailbox.
Definition copy_email.c:920
@ MUTT_CM_PREFIX
Quote the header and body.
Definition copy_email.h:43
@ MUTT_CM_DECODE
Decode the message body into text/plain.
Definition copy_email.h:44
@ MUTT_CM_CHARCONV
Perform character set conversions.
Definition copy_email.h:48
@ MUTT_CM_WEED
Weed message/rfc822 attachment headers.
Definition copy_email.h:47
@ MUTT_CM_NONE
No flags are set.
Definition copy_email.h:41
uint32_t CopyHeaderFlags
Definition copy_email.h:89
@ CH_WEED
Weed the headers?
Definition copy_email.h:67
@ CH_DECODE
Do RFC2047 header decoding.
Definition copy_email.h:68
@ CH_REORDER
Re-order output of headers (specified by 'header-order').
Definition copy_email.h:73
uint16_t CopyMessageFlags
Definition copy_email.h:55
bool crypt_valid_passphrase(SecurityFlags flags)
Check that we have a usable passphrase, ask if not.
Definition crypt.c:131
void exec_message_hook(struct Mailbox *m, struct Email *e, enum CommandId id)
Perform a message hook.
Definition exec.c:137
int mx_msg_close(struct Mailbox *m, struct Message **ptr)
Close a message.
Definition mx.c:1185
struct Message * mx_msg_open(struct Mailbox *m, struct Email *e)
Return a stream pointer for a message.
Definition mx.c:1139
@ SEC_ENCRYPT
Email is encrypted.
Definition lib.h:92
#define WithCrypto
Definition lib.h:132
void mutt_forward_intro(struct Email *e, FILE *fp, struct ConfigSubset *sub)
Add the "start of forwarded message" text.
Definition send.c:461
void mutt_forward_trailer(struct Email *e, FILE *fp, struct ConfigSubset *sub)
Add a "end of forwarded message" text.
Definition send.c:484
SecurityFlags security
bit 0-10: flags, bit 11,12: application, bit 13: traditional pgp See: ncrypt/lib.h pgplib....
Definition email.h:43
A local copy of an email.
Definition message.h:34
FILE * fp
pointer to the message data
Definition message.h:35
Here is the call graph for this function:
Here is the caller graph for this function:

◆ inline_forward_attachments()

int inline_forward_attachments ( struct Mailbox * m,
struct Email * e,
struct Body *** plast,
enum QuadOption * forwardq,
struct ConfigSubset * sub )
static

Add attachments to an email, inline.

Parameters
[in]mMailbox
[in]eCurrent Email
[out]plastPointer to the last Attachment
[out]forwardqResult of asking the user to forward the attachments, e.g. MUTT_YES
[in]subConfig Subset
Return values
0Success
-1Error

Definition at line 571 of file send.c.

574{
575 struct Body **last = *plast;
576 struct Body *body = NULL;
577 struct AttachCtx *actx = NULL;
578 int rc = 0;
579 int i;
580
581 struct Message *msg = mx_msg_open(m, e);
582 if (!msg)
583 {
584 return -1;
585 }
586
589
590 actx = MUTT_MEM_CALLOC(1, struct AttachCtx);
591 actx->email = e;
592 actx->fp_root = msg->fp;
593
594 mutt_generate_recvattach_list(actx, actx->email, actx->email->body,
595 actx->fp_root, -1, 0, 0);
596
597 for (i = 0; i < actx->idxlen; i++)
598 {
599 body = actx->idx[i]->body;
600 if ((body->type != TYPE_MULTIPART) && mutt_prefer_as_attachment(body) &&
601 !((body->type == TYPE_APPLICATION) &&
602 (mutt_istr_equal(body->subtype, "pgp-signature") ||
603 mutt_istr_equal(body->subtype, "x-pkcs7-signature") ||
604 mutt_istr_equal(body->subtype, "pkcs7-signature"))))
605 {
606 /* Ask the quadoption only once */
607 if (*forwardq == MUTT_ABORT)
608 {
609 /* L10N: This is the prompt for $forward_attachments.
610 When inline forwarding ($mime_forward answered "no"), this prompts
611 whether to add non-decodable attachments from the original email.
612 Text/plain parts and the like will already be included in the
613 message contents, but other attachment, such as PDF files, will also
614 be added as attachments to the new mail, if this is answered yes. */
615 *forwardq = query_quadoption(_("Forward attachments?"), sub, "forward_attachments");
616 if (*forwardq != MUTT_YES)
617 {
618 if (*forwardq == -1)
619 rc = -1;
620 goto cleanup;
621 }
622 }
623 if (mutt_body_copy(actx->idx[i]->fp, last, body) == -1)
624 {
625 rc = -1;
626 goto cleanup;
627 }
628 last = &((*last)->next);
629 }
630 }
631
632cleanup:
633 *plast = last;
634 mx_msg_close(m, &msg);
635 mutt_actx_free(&actx);
636 return rc;
637}
void mutt_actx_free(struct AttachCtx **ptr)
Free an Attachment Context.
Definition attach.c:198
int mutt_body_copy(FILE *fp, struct Body **b_dst, struct Body *b_src)
Create a send-mode duplicate from a receive-mode body.
Definition copy_body.c:50
bool mutt_prefer_as_attachment(struct Body *b)
Do we want this part as an attachment?
Definition handler.c:1894
#define MUTT_MEM_CALLOC(n, type)
Definition memory.h:52
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition mime.h:33
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition string.c:678
@ MUTT_ABORT
User aborted the question (with Ctrl-G).
Definition quad.h:37
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition quad.h:39
void mutt_generate_recvattach_list(struct AttachCtx *actx, struct Email *e, struct Body *b, FILE *fp, int parent_type, int level, bool decrypted)
Create a list of attachments.
A set of attachments.
Definition attach.h:65
FILE * fp_root
Used by recvattach for updating.
Definition attach.h:67
struct Email * email
Used by recvattach for updating.
Definition attach.h:66
struct AttachPtr ** idx
Array of attachments.
Definition attach.h:69
short idxlen
Number of attachmentes.
Definition attach.h:70
struct Body * body
Attachment.
Definition attach.h:37
FILE * fp
Used in the recvattach menu.
Definition attach.h:38
The body of an email.
Definition body.h:36
char * subtype
content-type subtype
Definition body.h:61
unsigned int type
content-type primary type, ContentType
Definition body.h:40
struct Body * body
List of MIME parts.
Definition email.h:69
Here is the call graph for this function:
Here is the caller graph for this function:

◆ format_attribution()

void format_attribution ( const struct Expando * exp,
struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )
static

Format an attribution prefix/suffix.

Parameters
expExpando to format
eEmail
fp_outFile to write to
subConfig Subset

Definition at line 646 of file send.c.

648{
649 if (!exp || !fp_out)
650 return;
651
652 const char *const c_attribution_locale = cs_subset_string(sub, "attribution_locale");
653
654 struct Buffer *buf = buf_pool_get();
655 setlocale(LC_TIME, NONULL(c_attribution_locale));
656 mutt_make_string(buf, -1, exp, NULL, -1, e, MUTT_FORMAT_NONE, NULL);
657 setlocale(LC_TIME, "");
658 fputs(buf_string(buf), fp_out);
659 fputc('\n', fp_out);
660 buf_pool_release(&buf);
661}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_make_attribution_intro()

void mutt_make_attribution_intro ( struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )

Add "on DATE, PERSON wrote" header.

Parameters
eEmail
fp_outFile to write to
subConfig Subset

Definition at line 669 of file send.c.

670{
671 format_attribution(cs_subset_expando(sub, "attribution_intro"), e, fp_out, sub);
672}
static void format_attribution(const struct Expando *exp, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Format an attribution prefix/suffix.
Definition send.c:646
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_make_attribution_trailer()

void mutt_make_attribution_trailer ( struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )

Add suffix to replied email text.

Parameters
eEmail
fp_outFile to write to
subConfig Subset

Definition at line 680 of file send.c.

681{
682 format_attribution(cs_subset_expando(sub, "attribution_trailer"), e, fp_out, sub);
683}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_make_greeting()

void mutt_make_greeting ( struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )
static

Add greetings string.

Parameters
eEmail
fp_outFile to write to
subConfig Subset
See also
$greeting

Definition at line 693 of file send.c.

694{
695 const struct Expando *c_greeting = cs_subset_expando(sub, "greeting");
696 if (!c_greeting || !fp_out)
697 return;
698
699 struct Buffer *buf = buf_pool_get();
700
702 buf->dsize, NeoMutt->env, buf);
703
704 fputs(buf_string(buf), fp_out);
705 fputc('\n', fp_out);
706 buf_pool_release(&buf);
707}
int expando_filter(const struct Expando *exp, const struct ExpandoRenderCallback *erc, void *data, MuttFormatFlags flags, int max_cols, char **env_list, struct Buffer *buf)
Render an Expando and run the result through a filter.
Definition filter.c:139
const struct ExpandoRenderCallback GreetingRenderCallbacks[]
Callbacks for Greeting Expandos.
size_t dsize
Length of data.
Definition buffer.h:39
char ** env
Private copy of the environment variables.
Definition neomutt.h:57
Here is the call graph for this function:
Here is the caller graph for this function:

◆ include_reply()

int include_reply ( struct Mailbox * m,
struct Email * e,
FILE * fp_out,
struct ConfigSubset * sub )
static

Generate the reply text for an email.

Parameters
mMailbox
eEmail
fp_outFile to write to
subConfig Subset
Return values
0Success
-1Failure

Definition at line 718 of file send.c.

720{
722 CopyHeaderFlags chflags = CH_DECODE;
723
724 if ((WithCrypto != 0) && (e->security & SEC_ENCRYPT))
725 {
726 /* make sure we have the user's passphrase before proceeding... */
728 return -1;
729 }
730
731 struct Message *msg = mx_msg_open(m, e);
732 if (!msg)
733 {
734 return -1;
735 }
738
739 mutt_make_attribution_intro(e, fp_out, sub);
740
741 const bool c_header = cs_subset_bool(sub, "header");
742 if (!c_header)
743 cmflags |= MUTT_CM_NOHEADER;
744
745 const bool c_weed = cs_subset_bool(sub, "weed");
746 if (c_weed)
747 {
748 chflags |= CH_WEED | CH_REORDER;
749 cmflags |= MUTT_CM_WEED;
750 }
751
752 mutt_copy_message(fp_out, e, msg, cmflags, chflags, 0);
753 mx_msg_close(m, &msg);
754
755 mutt_make_attribution_trailer(e, fp_out, sub);
756
757 return 0;
758}
@ MUTT_CM_REPLYING
Replying the message.
Definition copy_email.h:50
@ MUTT_CM_NOHEADER
Don't copy the message header.
Definition copy_email.h:42
void mutt_make_attribution_intro(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add "on DATE, PERSON wrote" header.
Definition send.c:669
void mutt_make_attribution_trailer(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add suffix to replied email text.
Definition send.c:680
Here is the call graph for this function:
Here is the caller graph for this function:

◆ choose_default_to()

const struct AddressList * choose_default_to ( const struct Address * from,
const struct Envelope * env,
struct ConfigSubset * sub )
static

Pick the best 'to:' value.

Parameters
fromFrom Address
envEnvelope
subConfig Subset
Return values
ptrAddresses to use

Definition at line 767 of file send.c.

770{
771 const bool c_reply_self = cs_subset_bool(sub, "reply_self");
772 if (!c_reply_self && mutt_addr_is_user(from))
773 {
774 /* mail is from the user, assume replying to recipients */
775 return &env->to;
776 }
777 else
778 {
779 return &env->from;
780 }
781}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ default_to()

int default_to ( struct AddressList * to,
struct Envelope * env,
SendFlags flags,
int hmfupto,
struct ConfigSubset * sub )
static

Generate default email addresses.

Parameters
[in,out]to'To' address
[in]envEnvelope to populate
[in]flagsFlags, see SendFlags
[in]hmfuptoIf true, add 'followup-to' address to 'to' address
[in]subConfig Subset
Return values
0Success
-1Aborted

Definition at line 793 of file send.c.

795{
796 const struct Address *from = TAILQ_FIRST(&env->from);
797 const struct Address *reply_to = TAILQ_FIRST(&env->reply_to);
798
799 if (flags && !TAILQ_EMPTY(&env->mail_followup_to) && (hmfupto == MUTT_YES))
800 {
801 mutt_addrlist_copy(to, &env->mail_followup_to, true);
802 return 0;
803 }
804
805 /* Exit now if we're setting up the default Cc list for list-reply
806 * (only set if Mail-Followup-To is present and honoured). */
807 if (flags & SEND_LIST_REPLY)
808 return 0;
809
810 const struct AddressList *default_to = choose_default_to(from, env, sub);
811
812 if (reply_to)
813 {
814 const bool from_is_reply_to = mutt_addr_cmp(from, reply_to);
815 const bool multiple_reply_to = reply_to &&
816 TAILQ_NEXT(TAILQ_FIRST(&env->reply_to), entries);
817
818 const bool c_ignore_list_reply_to = cs_subset_bool(sub, "ignore_list_reply_to");
819 const enum QuadOption c_reply_to = cs_subset_quad(sub, "reply_to");
820 if ((from_is_reply_to && !multiple_reply_to && !reply_to->personal) ||
821 (c_ignore_list_reply_to && mutt_is_mail_list(reply_to) &&
822 (mutt_addrlist_search(&env->to, reply_to) || mutt_addrlist_search(&env->cc, reply_to))))
823 {
824 /* If the Reply-To: address is a mailing list, assume that it was
825 * put there by the mailing list, and use the From: address
826 *
827 * We also take the from header if our correspondent has a reply-to
828 * header which is identical to the electronic mail address given
829 * in his From header, and the reply-to has no display-name. */
830 mutt_addrlist_copy(to, &env->from, false);
831 }
832 else if (!(from_is_reply_to && !multiple_reply_to) && (c_reply_to != MUTT_YES))
833 {
834 char prompt[256] = { 0 };
835 /* There are quite a few mailing lists which set the Reply-To:
836 * header field to the list address, which makes it quite impossible
837 * to send a message to only the sender of the message. This
838 * provides a way to do that. */
839 /* L10N: Asks whether the user respects the reply-to header.
840 If she says no, neomutt will reply to the from header's address instead. */
841 snprintf(prompt, sizeof(prompt), _("Reply to %s%s?"),
842 buf_string(reply_to->mailbox), multiple_reply_to ? ",..." : "");
843 switch (query_quadoption(prompt, sub, "reply_to"))
844 {
845 case MUTT_YES:
846 mutt_addrlist_copy(to, &env->reply_to, false);
847 break;
848
849 case MUTT_NO:
850 mutt_addrlist_copy(to, default_to, false);
851 break;
852
853 default:
854 return -1; /* abort */
855 }
856 }
857 else
858 {
859 mutt_addrlist_copy(to, &env->reply_to, false);
860 }
861 }
862 else
863 {
864 mutt_addrlist_copy(to, default_to, false);
865 }
866
867 return 0;
868}
void mutt_addrlist_copy(struct AddressList *dst, const struct AddressList *src, bool prune)
Copy a list of addresses into another list.
Definition address.c:776
bool mutt_addr_cmp(const struct Address *a, const struct Address *b)
Compare two e-mail addresses.
Definition address.c:903
bool mutt_addrlist_search(const struct AddressList *haystack, const struct Address *needle)
Search for an e-mail address in a list.
Definition address.c:920
enum QuadOption cs_subset_quad(const struct ConfigSubset *sub, const char *name)
Get a quad-value config item by name.
Definition helpers.c:192
QuadOption
Possible values for a quad-option.
Definition quad.h:36
#define TAILQ_FIRST(head)
Definition queue.h:780
static const struct AddressList * choose_default_to(const struct Address *from, const struct Envelope *env, struct ConfigSubset *sub)
Pick the best 'to:' value.
Definition send.c:767
static int default_to(struct AddressList *to, struct Envelope *env, SendFlags flags, int hmfupto, struct ConfigSubset *sub)
Generate default email addresses.
Definition send.c:793
struct Buffer * personal
Real name of address.
Definition address.h:36
struct Buffer * mailbox
Mailbox and host address.
Definition address.h:37
struct AddressList mail_followup_to
Email's 'mail-followup-to'.
Definition envelope.h:65
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_fetch_recips()

int mutt_fetch_recips ( struct Envelope * out,
struct Envelope * in,
SendFlags flags,
struct ConfigSubset * sub )

Generate recpients for a reply email.

Parameters
outEnvelope to populate
inEnvelope of source email
flagsFlags, see SendFlags
subConfig Subset
Return values
0Success
-1Failure

Definition at line 879 of file send.c.

881{
882 enum QuadOption hmfupto = MUTT_ABORT;
883 const struct Address *followup_to = TAILQ_FIRST(&in->mail_followup_to);
884
885 if ((flags & (SEND_LIST_REPLY | SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY)) && followup_to)
886 {
887 char prompt[256] = { 0 };
888 snprintf(prompt, sizeof(prompt), _("Follow-up to %s%s?"),
889 buf_string(followup_to->mailbox),
890 TAILQ_NEXT(TAILQ_FIRST(&in->mail_followup_to), entries) ? ",..." : "");
891
892 hmfupto = query_quadoption(prompt, sub, "honor_followup_to");
893 if (hmfupto == MUTT_ABORT)
894 return -1;
895 }
896
897 if (flags & SEND_LIST_REPLY)
898 {
899 add_mailing_lists(&out->to, &in->to, &in->cc);
900
901 if (followup_to && (hmfupto == MUTT_YES) &&
902 (default_to(&out->cc, in, flags & SEND_LIST_REPLY, (hmfupto == MUTT_YES), sub) == MUTT_ABORT))
903 {
904 return -1; /* abort */
905 }
906 }
907 else if (flags & SEND_TO_SENDER)
908 {
909 mutt_addrlist_copy(&out->to, &in->from, false);
910 }
911 else
912 {
913 if (default_to(&out->to, in, flags & (SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY),
914 (hmfupto == MUTT_YES), sub) == -1)
915 {
916 return -1; /* abort */
917 }
918
919 if ((flags & (SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY)) &&
920 (!followup_to || (hmfupto != MUTT_YES)))
921 {
922 /* if(!mutt_addr_is_user(in->to)) */
923 if (flags & SEND_GROUP_REPLY)
924 mutt_addrlist_copy(&out->cc, &in->to, true);
925 else
926 mutt_addrlist_copy(&out->to, &in->to, true);
927 mutt_addrlist_copy(&out->cc, &in->cc, true);
928 }
929 }
930 return 0;
931}
static void add_mailing_lists(struct AddressList *out, const struct AddressList *t, const struct AddressList *c)
Search Address lists for mailing lists.
Definition send.c:157
@ SEND_GROUP_CHAT_REPLY
Reply to all recipients preserving To/Cc.
Definition send.h:58
@ SEND_TO_SENDER
Compose new email to sender.
Definition send.h:57
Here is the call graph for this function:
Here is the caller graph for this function:

◆ add_references()

void add_references ( struct ListHead * head,
struct Envelope * env )
static

Add the email's references to a list.

Parameters
headList of references
envEnvelope of message

Definition at line 938 of file send.c.

939{
940 struct ListHead *src = STAILQ_EMPTY(&env->references) ? &env->in_reply_to : &env->references;
941 mutt_list_copy_tail(head, src);
942}
void mutt_list_copy_tail(struct ListHead *dst, const struct ListHead *src)
Copy a list into another list.
Definition list.c:278
#define STAILQ_EMPTY(head)
Definition queue.h:382
struct ListHead references
message references (in reverse order)
Definition envelope.h:83
struct ListHead in_reply_to
in-reply-to header content
Definition envelope.h:84
Here is the call graph for this function:
Here is the caller graph for this function:

◆ add_message_id()

void add_message_id ( struct ListHead * head,
struct Envelope * env )
static

Add the email's message ID to a list.

Parameters
headList of message IDs
envEnvelope of message

Definition at line 949 of file send.c.

950{
951 if (env->message_id)
952 {
954 }
955}
struct ListNode * mutt_list_insert_head(struct ListHead *h, char *s)
Insert a string at the beginning of a List.
Definition list.c:46
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_fix_reply_recipients()

void mutt_fix_reply_recipients ( struct Envelope * env,
struct ConfigSubset * sub )

Remove duplicate recipients.

Parameters
envEnvelope to fix
subConfig Subset

Definition at line 962 of file send.c.

963{
964 const bool c_me_too = cs_subset_bool(sub, "me_too");
965 if (!c_me_too)
966 {
967 const bool c_reply_self = cs_subset_bool(sub, "reply_self");
968
969 /* the order is important here. do the CC: first so that if the
970 * the user is the only recipient, it ends up on the TO: field */
971 remove_user(&env->cc, TAILQ_EMPTY(&env->to));
972 remove_user(&env->to, TAILQ_EMPTY(&env->cc) || c_reply_self);
973 }
974
975 /* the CC field can get cluttered, especially with lists */
978 mutt_addrlist_remove_xrefs(&env->to, &env->cc);
979
980 if (!TAILQ_EMPTY(&env->cc) && TAILQ_EMPTY(&env->to))
981 {
982 TAILQ_SWAP(&env->to, &env->cc, Address, entries);
983 }
984}
void mutt_addrlist_remove_xrefs(const struct AddressList *a, struct AddressList *b)
Remove cross-references.
Definition address.c:1444
void mutt_addrlist_dedupe(struct AddressList *al)
Remove duplicate addresses.
Definition address.c:1408
#define TAILQ_SWAP(head1, head2, type, field)
Definition queue.h:937
static void remove_user(struct AddressList *al, bool leave_only)
Remove any address which matches the current user.
Definition send.c:137
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_make_forward_subject()

void mutt_make_forward_subject ( struct Envelope * env,
struct Email * e,
struct ConfigSubset * sub )

Create a subject for a forwarded email.

Parameters
envEnvelope for result
eEmail
subConfig Subset

Definition at line 992 of file send.c.

993{
994 if (!env)
995 return;
996
997 const struct Expando *c_forward_format = cs_subset_expando(sub, "forward_format");
998
999 struct Buffer *buf = buf_pool_get();
1000 /* set the default subject for the message. */
1001 mutt_make_string(buf, -1, c_forward_format, NULL, -1, e, MUTT_FORMAT_NONE, NULL);
1003 buf_pool_release(&buf);
1004}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_make_misc_reply_headers()

void mutt_make_misc_reply_headers ( struct Envelope * env,
struct Envelope * env_cur,
struct ConfigSubset * sub )

Set subject for a reply.

Parameters
envEnvelope for result
env_curEnvelope of source email
subConfig Subset

Definition at line 1012 of file send.c.

1014{
1015 if (!env || !env_cur)
1016 return;
1017
1018 /* This takes precedence over a subject that might have
1019 * been taken from a List-Post header. Is that correct? */
1020 if (env_cur->real_subj)
1021 {
1022 char *subj = NULL;
1023 mutt_str_asprintf(&subj, "Re: %s", env_cur->real_subj);
1024 mutt_env_set_subject(env, subj);
1025 FREE(&subj);
1026 }
1027 else if (!env->subject)
1028 {
1029 const char *const c_empty_subject = cs_subset_string(sub, "empty_subject");
1030 mutt_env_set_subject(env, c_empty_subject);
1031 }
1032}
int mutt_str_asprintf(char **strp, const char *fmt,...)
Definition string.c:809
char *const real_subj
Offset of the real subject.
Definition envelope.h:71
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_add_to_reference_headers()

void mutt_add_to_reference_headers ( struct Envelope * env,
struct Envelope * env_cur,
struct ConfigSubset * sub )

Generate references for a reply email.

Parameters
envEnvelope for result
env_curEnvelope of source email
subConfig Subset

Definition at line 1040 of file send.c.

1042{
1043 add_references(&env->references, env_cur);
1044 add_message_id(&env->references, env_cur);
1045 add_message_id(&env->in_reply_to, env_cur);
1046
1047 const bool c_x_comment_to = cs_subset_bool(sub, "x_comment_to");
1048 if (OptNewsSend && c_x_comment_to && !TAILQ_EMPTY(&env_cur->from))
1050}
const char * mutt_get_name(const struct Address *a)
Pick the best name to display from an address.
Definition sort.c:138
static void add_message_id(struct ListHead *head, struct Envelope *env)
Add the email's message ID to a list.
Definition send.c:949
static void add_references(struct ListHead *head, struct Envelope *env)
Add the email's references to a list.
Definition send.c:938
Here is the call graph for this function:
Here is the caller graph for this function:

◆ make_reference_headers()

void make_reference_headers ( struct EmailArray * ea,
struct Envelope * env,
struct ConfigSubset * sub )
static

Generate reference headers for an email.

Parameters
eaArray of source Emails
envEnvelope for result
subConfig Subset

Definition at line 1058 of file send.c.

1060{
1061 if (!ea || !env || ARRAY_EMPTY(ea))
1062 return;
1063
1064 struct Email **ep = NULL;
1065 ARRAY_FOREACH(ep, ea)
1066 {
1067 struct Email *e = *ep;
1069 }
1070
1071 /* if there's more than entry in In-Reply-To (i.e. message has multiple
1072 * parents), don't generate a References: header as it's discouraged by
1073 * RFC2822, sect. 3.6.4 */
1074 if ((ARRAY_SIZE(ea) > 1) && !STAILQ_EMPTY(&env->in_reply_to) &&
1076 {
1078 }
1079}
#define ARRAY_FOREACH(elem, head)
Iterate over all elements of the array.
Definition array.h:223
#define ARRAY_EMPTY(head)
Check if an array is empty.
Definition array.h:74
#define ARRAY_SIZE(head)
The number of elements stored.
Definition array.h:87
void mutt_list_free(struct ListHead *h)
Free a List AND its strings.
Definition list.c:123
#define STAILQ_FIRST(head)
Definition queue.h:388
#define STAILQ_NEXT(elm, field)
Definition queue.h:439
void mutt_add_to_reference_headers(struct Envelope *env, struct Envelope *env_cur, struct ConfigSubset *sub)
Generate references for a reply email.
Definition send.c:1040
The envelope/body of an email.
Definition email.h:39
struct Envelope * env
Envelope information.
Definition email.h:68
Here is the call graph for this function:
Here is the caller graph for this function:

◆ envelope_defaults()

int envelope_defaults ( struct Envelope * env,
struct EmailArray * ea,
SendFlags flags,
struct ConfigSubset * sub )
static

Fill in some defaults for a new email.

Parameters
envEnvelope for result
eaArray of Emails to use
flagsFlags, see SendFlags
subConfig Subset
Return values
0Success
-1Failure

Definition at line 1090 of file send.c.

1092{
1093 if (!ea || ARRAY_EMPTY(ea))
1094 return -1;
1095
1096 struct Email *e_cur = *ARRAY_GET(ea, 0);
1097 bool single = (ARRAY_SIZE(ea) == 1);
1098
1099 struct Envelope *env_cur = e_cur->env;
1100 if (!env_cur)
1101 return -1;
1102
1103 if (flags & (SEND_REPLY | SEND_TO_SENDER))
1104 {
1105 if ((flags & SEND_NEWS))
1106 {
1107 /* in case followup set Newsgroups: with Followup-To: if it present */
1108 if (!env->newsgroups && !mutt_istr_equal(env_cur->followup_to, "poster"))
1109 {
1110 env->newsgroups = mutt_str_dup(env_cur->followup_to);
1111 }
1112 }
1113 else if (!single)
1114 {
1115 struct Email **ep = NULL;
1116 ARRAY_FOREACH(ep, ea)
1117 {
1118 struct Email *e = *ep;
1119 if (mutt_fetch_recips(env, e->env, flags, sub) == -1)
1120 return -1;
1121 }
1122 }
1123 else if (mutt_fetch_recips(env, env_cur, flags, sub) == -1)
1124 {
1125 return -1;
1126 }
1127
1128 if ((flags & SEND_LIST_REPLY) && TAILQ_EMPTY(&env->to))
1129 {
1130 mutt_error(_("No mailing lists found"));
1131 return -1;
1132 }
1133
1134 if (flags & SEND_REPLY)
1135 {
1136 mutt_make_misc_reply_headers(env, env_cur, sub);
1137 make_reference_headers(ea, env, sub);
1138 }
1139 }
1140 else if (flags & SEND_FORWARD)
1141 {
1142 mutt_make_forward_subject(env, e_cur, sub);
1143
1144 const bool c_forward_references = cs_subset_bool(sub, "forward_references");
1145 if (c_forward_references)
1146 make_reference_headers(ea, env, sub);
1147 }
1148
1149 return 0;
1150}
#define ARRAY_GET(head, idx)
Return the element at index.
Definition array.h:109
void mutt_make_misc_reply_headers(struct Envelope *env, struct Envelope *env_cur, struct ConfigSubset *sub)
Set subject for a reply.
Definition send.c:1012
void mutt_make_forward_subject(struct Envelope *env, struct Email *e, struct ConfigSubset *sub)
Create a subject for a forwarded email.
Definition send.c:992
static void make_reference_headers(struct EmailArray *ea, struct Envelope *env, struct ConfigSubset *sub)
Generate reference headers for an email.
Definition send.c:1058
int mutt_fetch_recips(struct Envelope *out, struct Envelope *in, SendFlags flags, struct ConfigSubset *sub)
Generate recpients for a reply email.
Definition send.c:879
@ SEND_FORWARD
Forward email.
Definition send.h:49
@ SEND_NEWS
Reply to a news article.
Definition send.h:59
The header of an Email.
Definition envelope.h:57
Here is the call graph for this function:
Here is the caller graph for this function:

◆ generate_body()

int generate_body ( FILE * fp_tmp,
struct Email * e,
SendFlags flags,
struct Mailbox * m,
struct EmailArray * ea,
struct ConfigSubset * sub )
static

Create a new email body.

Parameters
fp_tmpStream for outgoing message
eEmail for outgoing message
flagsCompose mode, see SendFlags
mMailbox
eaArray of Emails to use
subConfig Subset
Return values
0Success
-1Error

Definition at line 1163 of file send.c.

1165{
1166 /* An EmailList is required for replying and forwarding */
1167 if (!ea && (flags & (SEND_REPLY | SEND_FORWARD)))
1168 return -1;
1169
1170 /* Handle reply: optionally include quoted original message(s) */
1171 if (flags & SEND_REPLY)
1172 {
1173 enum QuadOption ans = query_quadoption(_("Include message in reply?"), sub, "include");
1174 if (ans == MUTT_ABORT)
1175 return -1;
1176
1177 if (ans == MUTT_YES)
1178 {
1179 mutt_message(_("Including quoted message..."));
1180 struct Email **ep = NULL;
1181 size_t count = ARRAY_SIZE(ea) - 1;
1182 ARRAY_FOREACH(ep, ea)
1183 {
1184 if (include_reply(m, *ep, fp_tmp, sub) == -1)
1185 {
1186 mutt_error(_("Could not include all requested messages"));
1187 return -1;
1188 }
1189 if (ARRAY_FOREACH_IDX_ep < count)
1190 {
1191 fputc('\n', fp_tmp);
1192 }
1193 }
1194 }
1195 }
1196 else if (flags & SEND_FORWARD)
1197 {
1198 /* Handle forward: either as message/rfc822 MIME attachment
1199 * or inline with optional attachment forwarding */
1200 enum QuadOption ans = query_quadoption(_("Forward as attachment?"), sub, "mime_forward");
1201 if (ans == MUTT_YES)
1202 {
1203 struct Body *last = e->body;
1204
1205 mutt_message(_("Preparing forwarded message..."));
1206
1207 while (last && last->next)
1208 last = last->next;
1209
1210 struct Email **ep = NULL;
1211 ARRAY_FOREACH(ep, ea)
1212 {
1213 struct Body *tmp = mutt_make_message_attach(m, *ep, false, sub);
1214 if (last)
1215 {
1216 last->next = tmp;
1217 last = tmp;
1218 }
1219 else
1220 {
1221 last = tmp;
1222 e->body = tmp;
1223 }
1224 }
1225 }
1226 else if (ans != MUTT_ABORT)
1227 {
1228 enum QuadOption forwardq = MUTT_ABORT;
1229 struct Body **last = NULL;
1230
1231 const bool c_forward_decode = cs_subset_bool(sub, "forward_decode");
1232 const enum QuadOption c_forward_attachments = cs_subset_quad(sub, "forward_attachments");
1233 if (c_forward_decode && (c_forward_attachments != MUTT_NO))
1234 {
1235 last = &e->body;
1236 while (*last)
1237 last = &((*last)->next);
1238 }
1239
1240 struct Email **ep = NULL;
1241 ARRAY_FOREACH(ep, ea)
1242 {
1243 struct Email *e_cur = *ep;
1244 include_forward(m, e_cur, fp_tmp, sub);
1245 if (c_forward_decode && (c_forward_attachments != MUTT_NO))
1246 {
1247 if (inline_forward_attachments(m, e_cur, &last, &forwardq, sub) != 0)
1248 return -1;
1249 }
1250 }
1251 }
1252 else
1253 {
1254 return -1;
1255 }
1256 }
1257 else if (((WithCrypto & APPLICATION_PGP) != 0) && (flags & SEND_KEY))
1258 {
1259 /* Attach the user's PGP public key to the message */
1260 struct Body *b = NULL;
1261
1262 if (((WithCrypto & APPLICATION_PGP) != 0) && !(b = crypt_pgp_make_key_attachment()))
1263 {
1264 return -1;
1265 }
1266
1267 b->next = e->body;
1268 e->body = b;
1269 }
1270
1272
1273 return 0;
1274}
struct Body * crypt_pgp_make_key_attachment(void)
Wrapper for CryptModuleSpecs::pgp_make_key_attachment().
Definition cryptglue.c:349
void mutt_clear_error(void)
Clear the message line (bottom line of screen).
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition lib.h:106
static int include_reply(struct Mailbox *m, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Generate the reply text for an email.
Definition send.c:718
static int include_forward(struct Mailbox *m, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Write out a forwarded message.
Definition send.c:512
static int inline_forward_attachments(struct Mailbox *m, struct Email *e, struct Body ***plast, enum QuadOption *forwardq, struct ConfigSubset *sub)
Add attachments to an email, inline.
Definition send.c:571
@ SEND_KEY
Mail a PGP public key.
Definition send.h:52
struct Body * mutt_make_message_attach(struct Mailbox *m, struct Email *e, bool attach_msg, struct ConfigSubset *sub)
Create a message attachment.
Definition sendlib.c:456
struct Body * next
next attachment in the list
Definition body.h:72
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_set_followup_to()

void mutt_set_followup_to ( struct Envelope * env,
struct ConfigSubset * sub )

Set followup-to field.

Parameters
envEnvelope to modify
subConfig Subset

Definition at line 1281 of file send.c.

1282{
1283 /* Only generate the Mail-Followup-To if the user has requested it, and
1284 * it hasn't already been set */
1285
1286 const bool c_followup_to = cs_subset_bool(sub, "followup_to");
1287 if (!c_followup_to)
1288 return;
1289 if (OptNewsSend)
1290 {
1291 if (!env->followup_to && env->newsgroups && (strrchr(env->newsgroups, ',')))
1292 env->followup_to = mutt_str_dup(env->newsgroups);
1293 return;
1294 }
1295
1296 if (TAILQ_EMPTY(&env->mail_followup_to))
1297 {
1298 if (mutt_is_list_recipient(false, env))
1299 {
1300 /* this message goes to known mailing lists, so create a proper
1301 * mail-followup-to header */
1302
1303 mutt_addrlist_copy(&env->mail_followup_to, &env->to, false);
1304 mutt_addrlist_copy(&env->mail_followup_to, &env->cc, true);
1305 }
1306
1307 /* remove ourselves from the mail-followup-to header */
1308 remove_user(&env->mail_followup_to, false);
1309
1310 /* If we are not subscribed to any of the lists in question, re-add
1311 * ourselves to the mail-followup-to header. The mail-followup-to header
1312 * generated is a no-op with group-reply, but makes sure list-reply has the
1313 * desired effect. */
1314
1315 if (!TAILQ_EMPTY(&env->mail_followup_to) &&
1317 {
1318 struct AddressList *al = NULL;
1319 if (!TAILQ_EMPTY(&env->reply_to))
1320 al = &env->reply_to;
1321 else if (!TAILQ_EMPTY(&env->from))
1322 al = &env->from;
1323
1324 if (al)
1325 {
1326 struct Address *a = NULL;
1327 TAILQ_FOREACH_REVERSE(a, al, AddressList, entries)
1328 {
1330 }
1331 }
1332 else
1333 {
1335 }
1336 }
1337
1339 }
1340}
void mutt_addrlist_prepend(struct AddressList *al, struct Address *a)
Prepend an Address to an AddressList.
Definition address.c:1505
bool mutt_is_subscribed_list_recipient(bool all_addr, struct Envelope *env)
Matches subscribed mailing lists.
Definition exec.c:494
bool mutt_is_list_recipient(bool all_addr, struct Envelope *env)
Matches known mailing lists.
Definition exec.c:507
#define TAILQ_FOREACH_REVERSE(var, head, headname, field)
Definition queue.h:802
struct Address * mutt_default_from(struct ConfigSubset *sub)
Get a default 'from' Address.
Definition send.c:1405
Here is the call graph for this function:
Here is the caller graph for this function:

◆ set_reverse_name()

void set_reverse_name ( struct AddressList * al,
struct Envelope * env,
struct ConfigSubset * sub )
static

Try to set the 'from' field from the recipients.

Parameters
alAddressList to prepend the found address
envEnvelope to use
subConfig Subset

Look through the recipients of the message we are replying to, and if we find an address that matches $alternates, we use that as the default from field

Definition at line 1352 of file send.c.

1354{
1355 struct Address *a = NULL;
1356 if (TAILQ_EMPTY(al))
1357 {
1358 TAILQ_FOREACH(a, &env->to, entries)
1359 {
1360 if (mutt_addr_is_user(a))
1361 {
1363 break;
1364 }
1365 }
1366 }
1367
1368 if (TAILQ_EMPTY(al))
1369 {
1370 TAILQ_FOREACH(a, &env->cc, entries)
1371 {
1372 if (mutt_addr_is_user(a))
1373 {
1375 break;
1376 }
1377 }
1378 }
1379
1380 if (TAILQ_EMPTY(al))
1381 {
1382 struct Address *from = TAILQ_FIRST(&env->from);
1383 if (from && mutt_addr_is_user(from))
1384 {
1386 }
1387 }
1388
1389 if (!TAILQ_EMPTY(al))
1390 {
1391 /* when $reverse_real_name is not set, clear the personal name so that it
1392 * may be set via a reply- or send-hook. */
1393
1394 const bool c_reverse_real_name = cs_subset_bool(sub, "reverse_real_name");
1395 if (!c_reverse_real_name)
1396 FREE(&TAILQ_FIRST(al)->personal);
1397 }
1398}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_default_from()

struct Address * mutt_default_from ( struct ConfigSubset * sub)

Get a default 'from' Address.

Parameters
subConfig Subset
Return values
ptrNewly allocated Address

Definition at line 1405 of file send.c.

1406{
1407 /* Note: We let $from override $real_name here.
1408 * Is this the right thing to do?
1409 */
1410
1411 const struct Address *c_from = cs_subset_address(sub, "from");
1412 if (c_from)
1413 {
1414 return mutt_addr_copy(c_from);
1415 }
1416
1417 char domain[1024] = { 0 };
1418 const char *mailbox = NeoMutt->username;
1419 const bool c_use_domain = cs_subset_bool(sub, "use_domain");
1420 if (c_use_domain)
1421 {
1422 snprintf(domain, sizeof(domain), "%s@%s", NONULL(NeoMutt->username),
1423 NONULL(mutt_fqdn(true, sub)));
1424 mailbox = domain;
1425 }
1426
1427 return mutt_addr_create(NULL, mailbox);
1428}
struct Address * mutt_addr_create(const char *personal, const char *mailbox)
Create and populate a new Address.
Definition address.c:414
const struct Address * cs_subset_address(const struct ConfigSubset *sub, const char *name)
Get an Address config item by name.
const char * mutt_fqdn(bool may_hide_host, const struct ConfigSubset *sub)
Get the Fully-Qualified Domain Name.
Definition sendlib.c:718
char * username
User's login name.
Definition neomutt.h:56
Here is the call graph for this function:
Here is the caller graph for this function:

◆ invoke_mta()

int invoke_mta ( struct Mailbox * m,
struct Email * e,
struct ConfigSubset * sub )
static

Send an email.

Parameters
mMailbox
eEmail
subConfig Subset
Return values
0Success
-1Failure

Definition at line 1438 of file send.c.

1439{
1440 struct Buffer *tempfile = NULL;
1441 int rc = -1;
1442
1443 /* Write out the message in MIME form. */
1444 tempfile = buf_pool_get();
1445 buf_mktemp(tempfile);
1446 FILE *fp_tmp = mutt_file_fopen(buf_string(tempfile), "w");
1447 if (!fp_tmp)
1448 goto cleanup;
1449
1450 const bool c_write_bcc = cs_subset_bool(sub, "write_bcc");
1451 const char *const c_smtp_url = cs_subset_string(sub, "smtp_url");
1452 if (c_smtp_url)
1453 cs_subset_str_native_set(sub, "write_bcc", false, NULL);
1454
1456 false, mutt_should_hide_protected_subject(e), sub);
1457
1458 cs_subset_str_native_set(sub, "write_bcc", c_write_bcc, NULL);
1459
1460 fputc('\n', fp_tmp); /* tie off the header. */
1461
1462 if ((mutt_write_mime_body(e->body, fp_tmp, sub) == -1))
1463 goto cleanup;
1464
1465 if (mutt_file_fclose(&fp_tmp) != 0)
1466 {
1467 mutt_perror("%s", buf_string(tempfile));
1468 unlink(buf_string(tempfile));
1469 goto cleanup;
1470 }
1471
1472 if (OptNewsSend)
1473 goto sendmail;
1474
1475 if (c_smtp_url)
1476 {
1477 rc = mutt_smtp_send(&e->env->from, &e->env->to, &e->env->cc, &e->env->bcc,
1478 buf_string(tempfile), (e->body->encoding == ENC_8BIT), sub);
1479 goto cleanup;
1480 }
1481
1482sendmail:
1483 rc = mutt_invoke_sendmail(m, &e->env->from, &e->env->to, &e->env->cc, &e->env->bcc,
1484 buf_string(tempfile), (e->body->encoding == ENC_8BIT), sub);
1485cleanup:
1486 if (fp_tmp)
1487 {
1488 mutt_file_fclose(&fp_tmp);
1489 unlink(buf_string(tempfile));
1490 }
1491 buf_pool_release(&tempfile);
1492 return rc;
1493}
bool mutt_should_hide_protected_subject(struct Email *e)
Should NeoMutt hide the protected subject?
Definition crypt.c:1107
#define mutt_file_fopen(PATH, MODE)
Definition file.h:143
@ ENC_8BIT
8-bit text
Definition mime.h:50
int mutt_write_mime_body(struct Body *b, FILE *fp, struct ConfigSubset *sub)
Write a MIME part.
Definition body.c:304
int mutt_rfc822_write_header(FILE *fp, struct Envelope *env, struct Body *b, enum MuttWriteHeaderMode mode, bool privacy, bool hide_protected_subject, struct ConfigSubset *sub)
Write out one RFC822 header line.
Definition header.c:584
@ MUTT_WRITE_HEADER_NORMAL
A normal Email, write full header + MIME headers.
Definition header.h:38
int mutt_invoke_sendmail(struct Mailbox *m, struct AddressList *from, struct AddressList *to, struct AddressList *cc, struct AddressList *bcc, const char *msg, bool eightbit, struct ConfigSubset *sub)
Run sendmail.
Definition sendmail.c:303
int mutt_smtp_send(const struct AddressList *from, const struct AddressList *to, const struct AddressList *cc, const struct AddressList *bcc, const char *msgfile, bool eightbit, struct ConfigSubset *sub)
Send a message using SMTP.
Definition smtp.c:1136
unsigned int encoding
content-transfer-encoding, ContentEncoding
Definition body.h:41
int cs_subset_str_native_set(const struct ConfigSubset *sub, const char *name, intptr_t value, struct Buffer *err)
Natively set the value of a string config item.
Definition subset.c:303
#define buf_mktemp(buf)
Definition tmp.h:33
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_encode_descriptions()

void mutt_encode_descriptions ( struct Body * b,
bool recurse,
struct ConfigSubset * sub )

RFC2047 encode the content-descriptions.

Parameters
bBody of email
recurseIf true, encode children parts
subConfig Subset

Definition at line 1501 of file send.c.

1502{
1503 const struct Slist *const c_send_charset = cs_subset_slist(sub, "send_charset");
1504 for (struct Body *t = b; t; t = t->next)
1505 {
1506 if (t->description)
1507 {
1508 rfc2047_encode(&t->description, NULL, sizeof("Content-Description:"), c_send_charset);
1509 }
1510 if (recurse && t->parts)
1511 mutt_encode_descriptions(t->parts, recurse, sub);
1512 }
1513}
const struct Slist * cs_subset_slist(const struct ConfigSubset *sub, const char *name)
Get a string-list config item by name.
Definition helpers.c:242
void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets)
RFC-2047-encode a string.
Definition rfc2047.c:646
void mutt_encode_descriptions(struct Body *b, bool recurse, struct ConfigSubset *sub)
RFC2047 encode the content-descriptions.
Definition send.c:1501
String list.
Definition slist.h:37
Here is the call graph for this function:
Here is the caller graph for this function:

◆ decode_descriptions()

void decode_descriptions ( struct Body * b)
static

RFC2047 decode them in case of an error.

Parameters
bMIME parts to decode

Definition at line 1519 of file send.c.

1520{
1521 for (struct Body *t = b; t; t = t->next)
1522 {
1523 if (t->description)
1524 {
1525 rfc2047_decode(&t->description);
1526 }
1527 if (t->parts)
1528 decode_descriptions(t->parts);
1529 }
1530}
void rfc2047_decode(char **pd)
Decode any RFC2047-encoded header fields.
Definition rfc2047.c:679
static void decode_descriptions(struct Body *b)
RFC2047 decode them in case of an error.
Definition send.c:1519
Here is the call graph for this function:
Here is the caller graph for this function:

◆ fix_end_of_file()

void fix_end_of_file ( const char * data)
static

Ensure a file ends with a linefeed.

Parameters
dataName of file to fix

Definition at line 1536 of file send.c.

1537{
1538 FILE *fp = mutt_file_fopen(data, "a+");
1539 if (!fp)
1540 return;
1541
1542 if ((mutt_file_get_size_fp(fp) > 0) && mutt_file_seek(fp, -1, SEEK_END))
1543 {
1544 int c = fgetc(fp);
1545 if (c != '\n')
1546 fputc('\n', fp);
1547 }
1548 mutt_file_fclose(&fp);
1549}
long mutt_file_get_size_fp(FILE *fp)
Get the size of a file.
Definition file.c:1433
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
Definition file.c:648
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_resend_message()

int mutt_resend_message ( FILE * fp,
struct Mailbox * m,
struct Email * e_cur,
struct ConfigSubset * sub )

Resend an email.

Parameters
fpFile containing email
mMailbox
e_curEmail to resend
subConfig Subset
Return values
0Message was successfully sent
-1Message was aborted or an error occurred
1Message was postponed

Definition at line 1561 of file send.c.

1563{
1564 struct Email *e_new = email_new();
1565
1566 if (mutt_prepare_template(fp, m, e_new, e_cur, true) < 0)
1567 {
1568 email_free(&e_new);
1569 return -1;
1570 }
1571
1572 if (WithCrypto)
1573 {
1574 /* mutt_prepare_template doesn't always flip on an application bit.
1575 * so fix that here */
1576 if (!(e_new->security & (APPLICATION_SMIME | APPLICATION_PGP)))
1577 {
1578 const bool c_smime_is_default = cs_subset_bool(sub, "smime_is_default");
1579 if (((WithCrypto & APPLICATION_SMIME) != 0) && c_smime_is_default)
1580 e_new->security |= APPLICATION_SMIME;
1581 else if (WithCrypto & APPLICATION_PGP)
1582 e_new->security |= APPLICATION_PGP;
1583 else
1584 e_new->security |= APPLICATION_SMIME;
1585 }
1586
1587 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
1588 if (c_crypt_opportunistic_encrypt)
1589 {
1590 e_new->security |= SEC_OPPENCRYPT;
1592 }
1593 }
1594
1595 struct EmailArray ea = ARRAY_HEAD_INITIALIZER;
1596 ARRAY_ADD(&ea, e_cur);
1597 int rc = mutt_send_message(SEND_RESEND, e_new, NULL, m, &ea, sub);
1598 ARRAY_FREE(&ea);
1599
1600 return rc;
1601}
#define ARRAY_ADD(head, elem)
Add an element at the end of the array.
Definition array.h:157
#define ARRAY_FREE(head)
Release all memory.
Definition array.h:209
#define ARRAY_HEAD_INITIALIZER
Static initializer for arrays.
Definition array.h:58
void crypt_opportunistic_encrypt(struct Email *e)
Can all recipients be determined.
Definition crypt.c:1052
struct Email * email_new(void)
Create a new Email.
Definition email.c:77
void email_free(struct Email **ptr)
Free an Email.
Definition email.c:46
@ SEC_OPPENCRYPT
Opportunistic encrypt mode.
Definition lib.h:100
#define APPLICATION_SMIME
Use SMIME to encrypt/sign.
Definition lib.h:107
int mutt_prepare_template(FILE *fp, struct Mailbox *m, struct Email *e_new, struct Email *e, bool resend)
Prepare a message template.
Definition postpone.c:490
int mutt_send_message(SendFlags flags, struct Email *e_templ, const char *tempfile, struct Mailbox *m, struct EmailArray *ea, struct ConfigSubset *sub)
Send an email.
Definition send.c:2035
@ SEND_RESEND
Reply using the current email as a template.
Definition send.h:53
Here is the call graph for this function:
Here is the caller graph for this function:

◆ is_reply()

bool is_reply ( struct Email * reply,
struct Email * orig )
static

Is one email a reply to another?

Parameters
replyEmail to test
origOriginal email
Return values
trueIt is a reply
falseIt is not a reply

Definition at line 1610 of file send.c.

1611{
1612 if (!reply || !reply->env || !orig || !orig->env)
1613 return false;
1614 return mutt_list_find(&orig->env->references, reply->env->message_id) ||
1615 mutt_list_find(&orig->env->in_reply_to, reply->env->message_id);
1616}
struct ListNode * mutt_list_find(const struct ListHead *h, const char *data)
Find a string in a List.
Definition list.c:103
Here is the call graph for this function:
Here is the caller graph for this function:

◆ search_attach_keyword()

bool search_attach_keyword ( char * filename,
struct ConfigSubset * sub )
static

Search an email for 'attachment' keywords.

Parameters
filenameFilename
subConfig Subset
Return values
trueThe regex matches in the email

Search an email for the regex in $abort_noattach_regex. A match might indicate that the user should have attached something.

Note
Quoted lines (as defined by $quote_regex) are ignored

Definition at line 1629 of file send.c.

1630{
1631 const struct Regex *c_abort_noattach_regex = cs_subset_regex(sub, "abort_noattach_regex");
1632 const struct Regex *c_quote_regex = cs_subset_regex(sub, "quote_regex");
1633
1634 /* Search for the regex in `$abort_noattach_regex` within a file */
1635 if (!c_abort_noattach_regex || !c_abort_noattach_regex->regex ||
1636 !c_quote_regex || !c_quote_regex->regex)
1637 {
1638 return false;
1639 }
1640
1641 FILE *fp_att = mutt_file_fopen(filename, "r");
1642 if (!fp_att)
1643 return false;
1644
1645 char *inputline = MUTT_MEM_MALLOC(1024, char);
1646 bool found = false;
1647 while (!feof(fp_att) && fgets(inputline, 1024, fp_att))
1648 {
1649 if (!mutt_is_quote_line(inputline, NULL) &&
1650 mutt_regex_match(c_abort_noattach_regex, inputline))
1651 {
1652 found = true;
1653 break;
1654 }
1655 }
1656 FREE(&inputline);
1657 mutt_file_fclose(&fp_att);
1658 return found;
1659}
const struct Regex * cs_subset_regex(const struct ConfigSubset *sub, const char *name)
Get a regex config item by name.
Definition helpers.c:217
bool mutt_is_quote_line(char *line, regmatch_t *pmatch)
Is a line of message text a quote?
Definition display.c:324
#define MUTT_MEM_MALLOC(n, type)
Definition memory.h:53
bool mutt_regex_match(const struct Regex *regex, const char *str)
Shorthand to mutt_regex_capture().
Definition regex.c:621
Cached regular expression.
Definition regex3.h:85
regex_t * regex
compiled expression
Definition regex3.h:87
Here is the call graph for this function:
Here is the caller graph for this function:

◆ save_fcc()

int save_fcc ( struct Mailbox * m,
struct Email * e,
struct Buffer * fcc,
struct Body * clear_content,
char * pgpkeylist,
SendFlags flags,
char ** finalpath,
struct ConfigSubset * sub )
static

Save an Email to a 'sent mail' folder.

Parameters
[in]mCurrent Mailbox
[in]eEmail to save
[in]fccFolder to save to (can be comma-separated list)
[in]clear_contentCleartext content of Email
[in]pgpkeylistList of pgp keys
[in]flagsSend mode, see SendFlags
[out]finalpathPath of final folder
[in]subConfig Subset
Return values
0Success
-1Error

Definition at line 1674 of file send.c.

1677{
1678 int rc = 0;
1679 struct Body *save_content = NULL;
1680
1681 expand_path(fcc, false);
1682
1683 if (buf_is_empty(fcc) || mutt_str_equal("/dev/null", buf_string(fcc)))
1684 return rc;
1685
1686 struct Body *tmpbody = e->body;
1687 struct Body *save_sig = NULL;
1688 struct Body *save_parts = NULL;
1689
1690 const bool c_fcc_before_send = cs_subset_bool(sub, "fcc_before_send");
1691 /* Before sending, we don't allow message manipulation because it
1692 * will break message signatures. This is especially complicated by
1693 * Protected Headers. */
1694 if (!c_fcc_before_send)
1695 {
1696 const bool c_fcc_clear = cs_subset_bool(sub, "fcc_clear");
1697 if ((WithCrypto != 0) &&
1698 (e->security & (SEC_ENCRYPT | SEC_SIGN | SEC_AUTOCRYPT)) && c_fcc_clear)
1699 {
1700 e->body = clear_content;
1703 mutt_param_delete(&e->body->parameter, "protected-headers");
1704 }
1705
1706 const enum QuadOption c_fcc_attach = cs_subset_quad(sub, "fcc_attach");
1707
1708 /* check to see if the user wants copies of all attachments */
1709 bool save_atts = true;
1710 if (e->body->type == TYPE_MULTIPART)
1711 {
1712 /* In batch mode, save attachments if the quadoption is yes or ask-yes */
1713 if (flags & SEND_BATCH)
1714 {
1715 if ((c_fcc_attach == MUTT_NO) || (c_fcc_attach == MUTT_ASKNO))
1716 save_atts = false;
1717 }
1718 else if (query_quadoption(_("Save attachments in Fcc?"), sub, "fcc_attach") != MUTT_YES)
1719 {
1720 save_atts = false;
1721 }
1722 }
1723 if (!save_atts)
1724 {
1725 if ((WithCrypto != 0) && (e->security & (SEC_ENCRYPT | SEC_SIGN | SEC_AUTOCRYPT)) &&
1726 (mutt_str_equal(e->body->subtype, "encrypted") ||
1727 mutt_str_equal(e->body->subtype, "signed")))
1728 {
1729 if ((clear_content->type == TYPE_MULTIPART) &&
1730 (query_quadoption(_("Save attachments in Fcc?"), sub, "fcc_attach") != MUTT_YES))
1731 {
1732 if (!(e->security & SEC_ENCRYPT) && (e->security & SEC_SIGN))
1733 {
1734 /* save initial signature and attachments */
1735 save_sig = e->body->parts->next;
1736 save_parts = clear_content->parts->next;
1737 }
1738
1739 /* this means writing only the main part */
1740 e->body = clear_content->parts;
1741
1742 if (mutt_protect(e, pgpkeylist, false) == -1)
1743 {
1744 /* we can't do much about it at this point, so
1745 * fallback to saving the whole thing to fcc */
1746 e->body = tmpbody;
1747 save_sig = NULL;
1748 goto full_fcc;
1749 }
1750
1751 save_content = e->body;
1752 }
1753 }
1754 else
1755 {
1756 if (query_quadoption(_("Save attachments in Fcc?"), sub, "fcc_attach") != MUTT_YES)
1757 e->body = e->body->parts;
1758 }
1759 }
1760 }
1761
1762full_fcc:
1763 if (e->body)
1764 {
1765 /* update received time so that when storing to a mbox-style folder
1766 * the From_ line contains the current time instead of when the
1767 * message was first postponed. */
1768 e->received = mutt_date_now();
1769 rc = mutt_write_multiple_fcc(buf_string(fcc), e, NULL, false, NULL, finalpath, sub);
1770 if (rc && (flags & SEND_BATCH))
1771 {
1772 /* Printed when an Fcc in batch mode fails. */
1773 mutt_error(_("Warning: Fcc to %s failed"), buf_string(fcc));
1774 return rc;
1775 }
1776
1777 while (rc && !(flags & SEND_BATCH))
1778 {
1780 int choice = mw_multi_choice(
1781 /* L10N: Called when saving to $record or Fcc failed after sending.
1782 (r)etry tries the same mailbox again.
1783 alternate (m)ailbox prompts for a different mailbox to try.
1784 (s)kip aborts saving. */
1785 _("Fcc failed. (r)etry, alternate (m)ailbox, or (s)kip?"),
1786 /* L10N: These correspond to the "Fcc failed" multi-choice prompt
1787 (r)etry, alternate (m)ailbox, or (s)kip.
1788 Any similarity to famous leaders of the FSF is coincidental. */
1789 _("rms"));
1790 switch (choice)
1791 {
1792 case 2: /* alternate (m)ailbox */
1793 /* L10N: This is the prompt to enter an "alternate (m)ailbox" when the
1794 initial Fcc fails. */
1795 rc = mw_enter_fname(_("Fcc mailbox"), fcc, true, m, false, NULL, NULL, MUTT_SEL_NONE);
1796 if ((rc == -1) || buf_is_empty(fcc))
1797 {
1798 rc = 0;
1799 break;
1800 }
1802
1803 case 1: /* (r)etry */
1804 rc = mutt_write_multiple_fcc(buf_string(fcc), e, NULL, false, NULL, finalpath, sub);
1805 break;
1806
1807 case -1: /* abort */
1808 case 3: /* (s)kip */
1809 rc = 0;
1810 break;
1811
1812 default:
1813 rc = 0;
1814 break;
1815 }
1816 }
1817 }
1818
1819 if (!c_fcc_before_send)
1820 {
1821 e->body = tmpbody;
1822
1823 if ((WithCrypto != 0) && save_sig)
1824 {
1825 /* cleanup the second signature structures */
1826 if (save_content->parts)
1827 {
1828 mutt_body_free(&save_content->parts->next);
1829 save_content->parts = NULL;
1830 }
1831 mutt_body_free(&save_content);
1832
1833 /* restore old signature and attachments */
1834 e->body->parts->next = save_sig;
1835 e->body->parts->parts->next = save_parts;
1836 }
1837 else if ((WithCrypto != 0) && save_content)
1838 {
1839 /* destroy the new encrypted body. */
1840 mutt_body_free(&save_content);
1841 }
1842 }
1843
1844 return 0;
1845}
@ MUTT_SEL_NONE
No flags are set.
Definition lib.h:59
int mutt_protect(struct Email *e, char *keylist, bool postpone)
Encrypt and/or sign a message.
Definition crypt.c:156
void mutt_body_free(struct Body **ptr)
Free a Body.
Definition body.c:58
void mutt_env_free(struct Envelope **ptr)
Free an Envelope.
Definition envelope.c:125
int mw_enter_fname(const char *prompt, struct Buffer *fname, bool mailbox, struct Mailbox *m, bool multiple, char ***files, int *numfiles, SelectFileFlags flags)
Ask the user to select a file -.
Definition curs_lib.c:237
int mw_multi_choice(const char *prompt, const char *letters)
Offer the user a multiple choice question -.
Definition question.c:62
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
Definition date.c:459
#define FALLTHROUGH
Definition lib.h:117
void expand_path(struct Buffer *buf, bool regex)
Create the canonical path.
Definition muttlib.c:122
@ SEC_SIGN
Email is signed.
Definition lib.h:93
@ SEC_AUTOCRYPT
(Autocrypt) Message will be, or was Autocrypt encrypt+signed
Definition lib.h:101
void mutt_param_delete(struct ParameterList *pl, const char *attribute)
Delete a matching Parameter.
Definition parameter.c:143
@ MUTT_ASKNO
Ask the user, defaulting to 'No'.
Definition quad.h:40
@ SEND_BATCH
Send email in batch mode (without user interaction).
Definition send.h:51
int mutt_write_multiple_fcc(const char *path, struct Email *e, const char *msgid, bool post, char *fcc, char **finalpath, struct ConfigSubset *sub)
Handle FCC with multiple, comma separated entries.
Definition sendlib.c:976
struct Body * parts
parts of a multipart or message/rfc822
Definition body.h:73
struct Envelope * mime_headers
Memory hole protected headers.
Definition body.h:76
struct ParameterList parameter
Parameters of the content-type.
Definition body.h:63
time_t received
Time when the message was placed in the mailbox.
Definition email.h:61
Here is the call graph for this function:
Here is the caller graph for this function:

◆ postpone_message()

int postpone_message ( struct Email * e_post,
struct Email * e_cur,
const char * fcc,
SendFlags flags,
struct ConfigSubset * sub )
static

Save an Email for another day.

Parameters
e_postEmail to postpone
e_curCurrent Email in the index
fccFolder for 'sent mail'
flagsSend mode, see SendFlags
subConfig Subset
Return values
0Success
-1Error

Definition at line 1857 of file send.c.

1859{
1860 char *pgpkeylist = NULL;
1861 const char *encrypt_as = NULL;
1862 struct Body *clear_content = NULL;
1863
1864 const char *const c_postponed = cs_subset_string(sub, "postponed");
1865 if (!c_postponed)
1866 {
1867 mutt_error(_("Can't postpone. $postponed is unset"));
1868 return -1;
1869 }
1870
1871 if (e_post->body->next)
1872 e_post->body = mutt_make_multipart(e_post->body);
1873
1874 mutt_encode_descriptions(e_post->body, true, sub);
1875
1876 const bool c_postpone_encrypt = cs_subset_bool(sub, "postpone_encrypt");
1877 if ((WithCrypto != 0) && c_postpone_encrypt &&
1878 (e_post->security & (SEC_ENCRYPT | SEC_AUTOCRYPT)))
1879 {
1880 if (((WithCrypto & APPLICATION_PGP) != 0) && (e_post->security & APPLICATION_PGP))
1881 {
1882 const char *const c_pgp_default_key = cs_subset_string(sub, "pgp_default_key");
1883 encrypt_as = c_pgp_default_key;
1884 }
1885 else if (((WithCrypto & APPLICATION_SMIME) != 0) && (e_post->security & APPLICATION_SMIME))
1886 {
1887 const char *const c_smime_default_key = cs_subset_string(sub, "smime_default_key");
1888 encrypt_as = c_smime_default_key;
1889 }
1890 if (!encrypt_as)
1891 {
1892 const char *const c_postpone_encrypt_as = cs_subset_string(sub, "postpone_encrypt_as");
1893 encrypt_as = c_postpone_encrypt_as;
1894 }
1895
1896#ifdef USE_AUTOCRYPT
1897 if (e_post->security & SEC_AUTOCRYPT)
1898 {
1900 {
1901 if (mutt_istr_equal(e_post->body->subtype, "mixed"))
1902 e_post->body = mutt_remove_multipart(e_post->body);
1903 decode_descriptions(e_post->body);
1904 mutt_error(_("Error encrypting message. Check your crypt settings."));
1905 return -1;
1906 }
1908 encrypt_as = mod_data->autocrypt_default_key;
1909 }
1910#endif
1911
1912 if (encrypt_as)
1913 {
1914 pgpkeylist = mutt_str_dup(encrypt_as);
1915 clear_content = e_post->body;
1916 if (mutt_protect(e_post, pgpkeylist, true) == -1)
1917 {
1918 FREE(&pgpkeylist);
1919 if (mutt_istr_equal(e_post->body->subtype, "mixed"))
1920 e_post->body = mutt_remove_multipart(e_post->body);
1921 decode_descriptions(e_post->body);
1922 mutt_error(_("Error encrypting message. Check your crypt settings."));
1923 return -1;
1924 }
1925
1926 FREE(&pgpkeylist);
1927
1928 mutt_encode_descriptions(e_post->body, false, sub);
1929 }
1930 }
1931
1932 /* make sure the message is written to the right part of a maildir
1933 * postponed folder. */
1934 e_post->read = false;
1935 e_post->old = false;
1936
1937 mutt_prepare_envelope(e_post->env, false, sub);
1938 mutt_env_to_intl(e_post->env, NULL, NULL); /* Handle bad IDNAs the next time. */
1939
1940 if (mutt_write_fcc(NONULL(c_postponed), e_post,
1941 (e_cur && (flags & SEND_REPLY)) ? e_cur->env->message_id : NULL,
1942 true, fcc, NULL, sub) < 0)
1943 {
1944 if (clear_content)
1945 {
1946 mutt_body_free(&e_post->body);
1947 e_post->body = clear_content;
1948 }
1949 mutt_env_free(&e_post->body->mime_headers); /* protected headers */
1950 mutt_param_delete(&e_post->body->parameter, "protected-headers");
1951 if (mutt_istr_equal(e_post->body->subtype, "mixed"))
1952 e_post->body = mutt_remove_multipart(e_post->body);
1953 decode_descriptions(e_post->body);
1955 return -1;
1956 }
1957
1959
1960 if (clear_content)
1961 mutt_body_free(&clear_content);
1962
1963 return 0;
1964}
int mutt_autocrypt_set_sign_as_default_key(struct Email *e)
Set the Autocrypt default key for signing.
Definition autocrypt.c:717
int mutt_env_to_intl(struct Envelope *env, const char **tag, char **err)
Convert an Envelope's Address fields to Punycode format.
Definition envelope.c:350
@ MODULE_ID_AUTOCRYPT
ModuleAutocrypt, Autocrypt
Definition module_api.h:50
struct Body * mutt_remove_multipart(struct Body *b)
Extract the multipart body if it exists.
Definition multipart.c:133
struct Body * mutt_make_multipart(struct Body *b)
Create a multipart email.
Definition multipart.c:107
void mutt_update_num_postponed(void)
Force the update of the number of postponed messages.
Definition postpone.c:171
void mutt_unprepare_envelope(struct Envelope *env)
Undo the encodings of mutt_prepare_envelope().
Definition sendlib.c:790
void mutt_prepare_envelope(struct Envelope *env, bool final, struct ConfigSubset *sub)
Prepare an email header.
Definition sendlib.c:751
int mutt_write_fcc(const char *path, struct Email *e, const char *msgid, bool post, const char *fcc, char **finalpath, struct ConfigSubset *sub)
Write email to FCC mailbox.
Definition sendlib.c:1029
Autocrypt private Module data.
Definition module_data.h:32
char * autocrypt_default_key
Autocrypt default key id (used for postponing messages).
Definition module_data.h:35
bool read
Email is read.
Definition email.h:50
bool old
Email is seen, but unread.
Definition email.h:49
Here is the call graph for this function:
Here is the caller graph for this function:

◆ is_text_plain()

bool is_text_plain ( const struct Body * b)
static

Is a Body a text/plain MIME part?

Parameters
bBody to check
Return values
trueBody is text/plain
falseBody is not

Definition at line 1972 of file send.c.

1973{
1974 return (b->type == TYPE_TEXT) && mutt_istr_equal(b->subtype, "plain");
1975}
@ TYPE_TEXT
Type: 'text/*'.
Definition mime.h:38
Here is the call graph for this function:
Here is the caller graph for this function:

◆ abort_for_missing_attachments()

bool abort_for_missing_attachments ( const struct Body * b,
struct ConfigSubset * sub )
static

Should we abort sending because of missing attachments?

Parameters
bBody
subConfig Subset
Return values
trueAbort because of missing attachments

Definition at line 1983 of file send.c.

1984{
1985 const enum QuadOption c_abort_noattach = cs_subset_quad(sub, "abort_noattach");
1986
1987 if (c_abort_noattach == MUTT_NO)
1988 return false;
1989
1990 if (b->next)
1991 return false;
1992
1993 bool has_keyword = false;
1994
1995 /* search text/plain parts, whether they are main or alternative parts */
1996 if (is_text_plain(b))
1997 {
1998 has_keyword |= search_attach_keyword(b->filename, sub);
1999 }
2000 else
2001 {
2002 for (b = b->parts; b; b = b->next)
2003 {
2004 if (is_text_plain(b))
2005 {
2006 has_keyword |= search_attach_keyword(b->filename, sub);
2007 }
2008 }
2009 }
2010
2011 if (!has_keyword)
2012 return false;
2013
2014 if (c_abort_noattach == MUTT_YES)
2015 {
2016 mutt_error(_("Message contains text matching \"$abort_noattach_regex\". Not sending."));
2017 return true;
2018 }
2019
2020 return query_quadoption(_("No attachments, cancel sending?"), sub, "abort_noattach") != MUTT_NO;
2021}
static bool search_attach_keyword(char *filename, struct ConfigSubset *sub)
Search an email for 'attachment' keywords.
Definition send.c:1629
static bool is_text_plain(const struct Body *b)
Is a Body a text/plain MIME part?
Definition send.c:1972
char * filename
When sending a message, this is the file to which this structure refers.
Definition body.h:59
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_send_message()

int mutt_send_message ( SendFlags flags,
struct Email * e_templ,
const char * tempfile,
struct Mailbox * m,
struct EmailArray * ea,
struct ConfigSubset * sub )

Send an email.

Parameters
flagsSend mode, see SendFlags
e_templTemplate to use for new message
tempfileFile specified by -i or -H
mCurrent mailbox
eaArray of Emails to send
subConfig Subset
Return values
0Message was successfully sent
-1Message was aborted or an error occurred
1Message was postponed

Definition at line 2035 of file send.c.

2037{
2038 struct Buffer *fcc = buf_pool_get(); /* where to copy this message */
2039 FILE *fp_tmp = NULL;
2040 struct Body *pbody = NULL;
2041 int i;
2042 bool free_clear_content = false;
2043
2044 struct Body *clear_content = NULL;
2045 char *pgpkeylist = NULL;
2046 /* save current value of "pgp_sign_as" and "smime_default_key" */
2047 char *pgp_sign_as = NULL;
2048 char *smime_sign_as = NULL;
2049 const char *tag = NULL;
2050 char *err = NULL;
2051 char *finalpath = NULL;
2052 struct Email *e_cur = NULL;
2053
2054 if (ea && (ARRAY_SIZE(ea) == 1))
2055 e_cur = *ARRAY_GET(ea, 0);
2056
2057 int rc = -1;
2058
2059 if (flags & SEND_NEWS)
2060 OptNewsSend = true;
2061 else
2062 OptNewsSend = false;
2063
2064 const enum QuadOption c_recall = cs_subset_quad(sub, "recall");
2065
2066 if (!flags && !e_templ && (c_recall != MUTT_NO) && mutt_num_postponed(m, true))
2067 {
2068 /* If the user is composing a new message, check to see if there
2069 * are any postponed messages first. */
2070 enum QuadOption ans = query_quadoption(_("Recall postponed message?"), sub, "recall");
2071 if (ans == MUTT_ABORT)
2072 return rc;
2073
2074 if (ans == MUTT_YES)
2075 flags |= SEND_POSTPONED;
2076 }
2077
2078 if (flags & SEND_POSTPONED)
2079 {
2081 {
2082 const char *const c_pgp_sign_as = cs_subset_string(sub, "pgp_sign_as");
2083 pgp_sign_as = mutt_str_dup(c_pgp_sign_as);
2084 }
2086 {
2087 const char *const c_smime_sign_as = cs_subset_string(sub, "smime_sign_as");
2088 smime_sign_as = mutt_str_dup(c_smime_sign_as);
2089 }
2090 }
2091
2092 /* Delay expansion of aliases until absolutely necessary--shouldn't
2093 * be necessary unless we are prompting the user or about to execute a
2094 * send-hook. */
2095
2096 if (!e_templ)
2097 {
2098 e_templ = email_new();
2099
2100 if (flags == SEND_POSTPONED)
2101 {
2102 rc = mutt_get_postponed(m, e_templ, &e_cur, fcc);
2103 if (rc < 0)
2104 {
2105 flags = SEND_POSTPONED;
2106 goto cleanup;
2107 }
2108 flags = rc;
2109 /* If postponed message is a news article, it have
2110 * a "Newsgroups:" header line, then set appropriate flag. */
2111 if (e_templ->env->newsgroups)
2112 {
2113 flags |= SEND_NEWS;
2114 OptNewsSend = true;
2115 }
2116 else
2117 {
2118 flags &= ~SEND_NEWS;
2119 OptNewsSend = false;
2120 }
2121 }
2122
2123 if (flags & (SEND_POSTPONED | SEND_RESEND))
2124 {
2125 struct Body *b = e_templ->body;
2126 while (b->parts)
2127 b = b->parts;
2128 fp_tmp = mutt_file_fopen(b->filename, "a+");
2129 if (!fp_tmp)
2130 {
2131 mutt_perror("%s", b->filename);
2132 goto cleanup;
2133 }
2134 }
2135
2136 if (!e_templ->env)
2137 e_templ->env = mutt_env_new();
2138 }
2139
2140 /* Parse and use an eventual list-post header */
2141 if ((flags & SEND_LIST_REPLY) && e_cur && e_cur->env && e_cur->env->list_post)
2142 {
2143 /* Use any list-post header as a template */
2144 mutt_parse_mailto(e_templ->env, NULL, e_cur->env->list_post);
2145 /* We don't let them set the sender's address. */
2146 mutt_addrlist_clear(&e_templ->env->from);
2147 }
2148
2149 if (!(flags & (SEND_KEY | SEND_POSTPONED | SEND_RESEND)))
2150 {
2151 /* When SEND_DRAFT_FILE is set, the caller has already
2152 * created the "parent" body structure. */
2153 if (!(flags & SEND_DRAFT_FILE))
2154 {
2155 pbody = mutt_body_new();
2156 pbody->next = e_templ->body; /* don't kill command-line attachments */
2157 e_templ->body = pbody;
2158
2159 const char *const c_content_type = cs_subset_string(sub, "content_type");
2160 const char *ctype = mutt_str_dup(c_content_type ? c_content_type : "text/plain");
2161 mutt_parse_content_type(ctype, e_templ->body);
2162 FREE(&ctype);
2163 e_templ->body->unlink = true;
2164 e_templ->body->use_disp = false;
2165 e_templ->body->disposition = DISP_INLINE;
2166
2167 if (tempfile)
2168 {
2169 fp_tmp = mutt_file_fopen(tempfile, "a+");
2170 e_templ->body->filename = mutt_str_dup(tempfile);
2171 if (flags & SEND_NO_FREE_HEADER)
2172 e_templ->body->unlink = false;
2173 }
2174 else
2175 {
2176 struct Buffer *buf = buf_pool_get();
2177 buf_mktemp_draft(buf);
2178 fp_tmp = mutt_file_fopen(buf_string(buf), "w+");
2179 e_templ->body->filename = buf_strdup(buf);
2180 buf_pool_release(&buf);
2181 }
2182 }
2183 else
2184 {
2185 struct Body *b = e_templ->body;
2186 while (b->parts)
2187 b = b->parts;
2188 fp_tmp = mutt_file_fopen(b->filename, "a+");
2189 }
2190
2191 if (!fp_tmp)
2192 {
2193 mutt_debug(LL_DEBUG1, "can't create tempfile %s (errno=%d)\n",
2194 e_templ->body->filename, errno);
2195 mutt_perror("%s", e_templ->body->filename);
2196 goto cleanup;
2197 }
2198 }
2199
2200 const bool c_reverse_name = cs_subset_bool(sub, "reverse_name");
2201 /* this is handled here so that the user can match ~f in send-hook */
2202 if (e_cur && c_reverse_name && !(flags & (SEND_POSTPONED | SEND_RESEND)))
2203 {
2204 /* We shouldn't have to worry about alias expansion here since we are
2205 * either replying to a real or postponed message, therefore no aliases
2206 * should exist since the user has not had the opportunity to add
2207 * addresses to the list. We just have to ensure the postponed messages
2208 * have their aliases expanded. */
2209
2210 if (!TAILQ_EMPTY(&e_templ->env->from))
2211 {
2212 mutt_debug(LL_DEBUG5, "e_templ->env->from before set_reverse_name: %s\n",
2213 buf_string(TAILQ_FIRST(&e_templ->env->from)->mailbox));
2214 mutt_addrlist_clear(&e_templ->env->from);
2215 }
2216 set_reverse_name(&e_templ->env->from, e_cur->env, sub);
2217 }
2218
2219 const bool c_reply_with_xorig = cs_subset_bool(sub, "reply_with_xorig");
2220 if (e_cur && c_reply_with_xorig && !(flags & (SEND_POSTPONED | SEND_RESEND | SEND_FORWARD)))
2221 {
2222 /* We shouldn't have to worry about freeing 'e_templ->env->from' before
2223 * setting it here since this code will only execute when doing some
2224 * sort of reply. The pointer will only be set when using the -H command
2225 * line option.
2226 *
2227 * If there is already a from address recorded in 'e_templ->env->from',
2228 * then it theoretically comes from `$reverse_name` handling, and we don't use
2229 * the 'X-Original-To header'. */
2230 if (!TAILQ_EMPTY(&e_cur->env->x_original_to) && TAILQ_EMPTY(&e_templ->env->from))
2231 {
2232 mutt_addrlist_copy(&e_templ->env->from, &e_cur->env->x_original_to, false);
2233 mutt_debug(LL_DEBUG5, "e_templ->env->from extracted from X-Original-To: header: %s\n",
2234 buf_string(TAILQ_FIRST(&e_templ->env->from)->mailbox));
2235 }
2236 }
2237
2238 if (!e_templ->env->message_id)
2239 e_templ->env->message_id = msgid_generate();
2240
2241 const bool c_resume_draft_files = cs_subset_bool(sub, "resume_draft_files");
2242 if (!(flags & (SEND_POSTPONED | SEND_RESEND)) &&
2243 !((flags & SEND_DRAFT_FILE) && c_resume_draft_files))
2244 {
2245 if ((flags & (SEND_REPLY | SEND_FORWARD | SEND_TO_SENDER)) &&
2246 (envelope_defaults(e_templ->env, ea, flags, sub) == -1))
2247 {
2248 goto cleanup;
2249 }
2250
2251 const bool c_hdrs = cs_subset_bool(sub, "hdrs");
2252 if (c_hdrs)
2253 process_user_recips(e_templ->env);
2254
2255 /* Expand aliases and remove duplicates/crossrefs */
2256 mutt_expand_aliases_env(e_templ->env);
2257
2258 if (flags & SEND_REPLY)
2259 mutt_fix_reply_recipients(e_templ->env, sub);
2260
2261 if ((flags & SEND_NEWS) && (m && m->type == MUTT_NNTP) && !e_templ->env->newsgroups)
2262 {
2263 e_templ->env->newsgroups = mutt_str_dup(((struct NntpMboxData *) m->mdata)->group);
2264 }
2265
2266 const bool c_auto_edit = cs_subset_bool(sub, "auto_edit");
2267 const bool c_edit_headers = cs_subset_bool(sub, "edit_headers");
2268 const bool c_fast_reply = cs_subset_bool(sub, "fast_reply");
2269 if (!(flags & SEND_BATCH) && !(c_auto_edit && c_edit_headers) &&
2270 !((flags & SEND_REPLY) && c_fast_reply))
2271 {
2272 if (edit_envelope(e_templ->env, flags, sub) == -1)
2273 goto cleanup;
2274 }
2275
2276 /* the from address must be set here regardless of whether or not
2277 * $use_from is set so that the '~P' (from you) operator in send-hook
2278 * patterns will work. if $use_from is unset, the from address is killed
2279 * after send-hooks are evaluated */
2280
2281 const bool killfrom = TAILQ_EMPTY(&e_templ->env->from);
2282 if (killfrom)
2283 {
2285 }
2286
2287 if ((flags & SEND_REPLY) && e_cur)
2288 {
2289 /* change setting based upon message we are replying to */
2291
2292 /* set the replied flag for the message we are generating so that the
2293 * user can use ~Q in a send-hook to know when reply-hook's are also
2294 * being used. */
2295 e_templ->replied = true;
2296 }
2297
2298 /* change settings based upon recipients */
2299
2300 exec_message_hook(NULL, e_templ, CMD_SEND_HOOK);
2301
2302 /* Unset the replied flag from the message we are composing since it is
2303 * no longer required. This is done here because the FCC'd copy of
2304 * this message was erroneously get the 'R'eplied flag when stored in
2305 * a maildir-style mailbox. */
2306 e_templ->replied = false;
2307
2308 /* $use_from and/or $from might have changed in a send-hook */
2309 if (killfrom)
2310 {
2311 mutt_addrlist_clear(&e_templ->env->from);
2312
2313 const bool c_use_from = cs_subset_bool(sub, "use_from");
2314 if (c_use_from && !(flags & (SEND_POSTPONED | SEND_RESEND)))
2316 }
2317
2318 if (c_hdrs)
2319 process_user_header(e_templ->env);
2320
2321 if ((flags & SEND_BATCH) && !(flags & SEND_CONSUMED_STDIN))
2322 {
2323 if (mutt_file_copy_stream(stdin, fp_tmp) < 0)
2324 {
2325 mutt_error(_("Error sending message"));
2326 goto cleanup;
2327 }
2328 }
2329
2330 if (!(flags & SEND_BATCH))
2331 mutt_make_greeting(e_templ, fp_tmp, sub);
2332
2333 const bool c_sig_on_top = cs_subset_bool(sub, "sig_on_top");
2334 const char *const c_editor = cs_subset_string(sub, "editor");
2335 if (c_sig_on_top && !(flags & (SEND_KEY | SEND_BATCH)) && c_editor)
2336 {
2337 append_signature(fp_tmp, sub);
2338 }
2339
2340 /* include replies/forwarded messages, unless we are given a template */
2341 if (!tempfile && (m || !(flags & (SEND_REPLY | SEND_FORWARD))) &&
2342 (generate_body(fp_tmp, e_templ, flags, m, ea, sub) == -1))
2343 {
2344 goto cleanup;
2345 }
2346
2347 if (!c_sig_on_top && !(flags & (SEND_KEY | SEND_BATCH)) && c_editor)
2348 {
2349 append_signature(fp_tmp, sub);
2350 }
2351 }
2352
2353 /* Only set format=flowed for new messages. postponed/resent/draftfiles
2354 * should respect the original email.
2355 *
2356 * This is set here so that send-hook can be used to turn the option on. */
2357 if (!(flags & (SEND_KEY | SEND_POSTPONED | SEND_RESEND | SEND_DRAFT_FILE)))
2358 {
2359 const bool c_text_flowed = cs_subset_bool(sub, "text_flowed");
2360 if (c_text_flowed && is_text_plain(e_templ->body))
2361 {
2362 mutt_param_set(&e_templ->body->parameter, "format", "flowed");
2363 }
2364 }
2365
2366 /* This hook is even called for postponed messages, and can, e.g., be used
2367 * for setting the editor, the sendmail path, or the envelope sender. */
2368 exec_message_hook(NULL, e_templ, CMD_SEND2_HOOK);
2369
2370 /* wait until now to set the real name portion of our return address so
2371 * that $real_name can be set in a send-hook */
2372 {
2373 struct Address *from = TAILQ_FIRST(&e_templ->env->from);
2374 if (from && !from->personal && !(flags & (SEND_RESEND | SEND_POSTPONED)))
2375 {
2376 const char *const c_real_name = cs_subset_string(sub, "real_name");
2377 if (c_real_name)
2378 from->personal = buf_new(c_real_name);
2379 }
2380 }
2381
2382 if (!(((WithCrypto & APPLICATION_PGP) != 0) && (flags & SEND_KEY)))
2383 mutt_file_fclose(&fp_tmp);
2384
2385 if (!(flags & SEND_BATCH))
2386 {
2387 struct stat st = { 0 };
2388 time_t mtime;
2389 struct Body *b = e_templ->body;
2390 while (b->parts)
2391 b = b->parts;
2392 mtime = mutt_file_decrease_mtime(b->filename, NULL);
2393 if (mtime == (time_t) -1)
2394 {
2395 mutt_perror("%s", b->filename);
2396 goto cleanup;
2397 }
2398
2399 mutt_update_encoding(b, sub);
2400
2401 const bool c_edit_headers = cs_subset_bool(sub, "edit_headers");
2402 const bool c_auto_edit = cs_subset_bool(sub, "auto_edit");
2403
2404 /* Select whether or not the user's editor should be called now. We
2405 * don't want to do this when:
2406 * 1) we are sending a key/cert
2407 * 2) we are forwarding a message and the user doesn't want to edit it.
2408 * This is controlled by the quadoption $forward_edit. However, if
2409 * both $edit_headers and $auto_edit are set, we want to ignore the
2410 * setting of $forward_edit because the user probably needs to add the
2411 * recipients. */
2412 if (!(flags & SEND_KEY) &&
2413 (((flags & SEND_FORWARD) == 0) || (c_edit_headers && c_auto_edit) ||
2414 (query_quadoption(_("Edit forwarded message?"), sub, "forward_edit") == MUTT_YES)))
2415 {
2416 /* If the this isn't a text message, look for a mailcap edit command */
2417 const char *const c_editor = cs_subset_string(sub, "editor");
2418 b = e_templ->body;
2419 while (b->parts)
2420 b = b->parts;
2421 if (mutt_needs_mailcap(b))
2422 {
2423 if (!mutt_edit_attachment(b))
2424 goto cleanup;
2425 }
2426 else if (c_edit_headers)
2427 {
2428 mutt_env_to_local(e_templ->env);
2429 mutt_edit_headers(c_editor, b->filename, e_templ, fcc);
2430 mutt_env_to_intl(e_templ->env, NULL, NULL);
2431 }
2432 else
2433 {
2434 mutt_edit_file(c_editor, b->filename);
2435 if (stat(b->filename, &st) == 0)
2436 {
2437 if (mtime != st.st_mtime)
2439 }
2440 else
2441 {
2442 mutt_perror("%s", b->filename);
2443 }
2444 }
2445
2446 exec_message_hook(NULL, e_templ, CMD_SEND2_HOOK);
2447 }
2448
2450 {
2451 if (stat(e_templ->body->filename, &st) == 0)
2452 {
2453 /* if the file was not modified, bail out now */
2454 if ((mtime == st.st_mtime) && !e_templ->body->next &&
2455 (query_quadoption(_("Abort unmodified message?"), sub, "abort_unmodified") == MUTT_YES))
2456 {
2457 mutt_message(_("Aborted unmodified message"));
2458 goto cleanup;
2459 }
2460 }
2461 else
2462 {
2463 mutt_perror("%s", e_templ->body->filename);
2464 }
2465 }
2466 }
2467
2468 /* Set the message security unless:
2469 * 1) crypto support is not enabled (WithCrypto==0)
2470 * 2) pgp: header field was present during message editing with $edit_headers (e_templ->security != 0)
2471 * 3) we are resending a message
2472 * 4) we are recalling a postponed message (don't override the user's saved settings)
2473 * 5) we are in batch mode
2474 * But 3, 4, and 5, can be overridden with '-C' in the command line (flags & SEND_CLI_CRYPTO)
2475 *
2476 * This is done after allowing the user to edit the message so that security
2477 * settings can be configured with send2-hook and $edit_headers. */
2478 if ((WithCrypto != 0) && (e_templ->security == 0) &&
2479 ((flags & SEND_CLI_CRYPTO) || !(flags & (SEND_BATCH | SEND_POSTPONED | SEND_RESEND))))
2480 {
2481 bool c_autocrypt = false;
2482 bool c_autocrypt_reply = false;
2483
2484#ifdef USE_AUTOCRYPT
2485 c_autocrypt = cs_subset_bool(sub, "autocrypt");
2486 c_autocrypt_reply = cs_subset_bool(sub, "autocrypt_reply");
2487#endif
2488
2489 if (c_autocrypt && c_autocrypt_reply && e_cur && (e_cur->security & SEC_AUTOCRYPT))
2490 {
2492 }
2493 else
2494 {
2495 const bool c_crypt_auto_sign = cs_subset_bool(sub, "crypt_auto_sign");
2496 const bool c_crypt_auto_encrypt = cs_subset_bool(sub, "crypt_auto_encrypt");
2497 const bool c_crypt_reply_encrypt = cs_subset_bool(sub, "crypt_reply_encrypt");
2498 const bool c_crypt_reply_sign = cs_subset_bool(sub, "crypt_reply_sign");
2499 const bool c_crypt_reply_sign_encrypted = cs_subset_bool(sub, "crypt_reply_sign_encrypted");
2500
2501 if (c_crypt_auto_sign)
2502 e_templ->security |= SEC_SIGN;
2503 if (c_crypt_auto_encrypt)
2504 e_templ->security |= SEC_ENCRYPT;
2505 if (c_crypt_reply_encrypt && e_cur && (e_cur->security & SEC_ENCRYPT))
2506 e_templ->security |= SEC_ENCRYPT;
2507 if (c_crypt_reply_sign && e_cur && (e_cur->security & SEC_SIGN))
2508 e_templ->security |= SEC_SIGN;
2509 if (c_crypt_reply_sign_encrypted && e_cur && (e_cur->security & SEC_ENCRYPT))
2510 e_templ->security |= SEC_SIGN;
2511
2512 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
2513
2514 if (((WithCrypto & APPLICATION_PGP) != 0) &&
2515 ((e_templ->security & (SEC_ENCRYPT | SEC_SIGN)) || c_crypt_opportunistic_encrypt))
2516 {
2517 const bool c_pgp_auto_inline = cs_subset_bool(sub, "pgp_auto_inline");
2518 const bool c_pgp_reply_inline = cs_subset_bool(sub, "pgp_reply_inline");
2519
2520 if (c_pgp_auto_inline)
2521 e_templ->security |= SEC_INLINE;
2522 if (c_pgp_reply_inline && e_cur && (e_cur->security & SEC_INLINE))
2523 e_templ->security |= SEC_INLINE;
2524 }
2525 }
2526
2527 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
2528
2529 if (e_templ->security || c_crypt_opportunistic_encrypt)
2530 {
2531 const bool c_crypt_auto_pgp = cs_subset_bool(sub, "crypt_auto_pgp");
2532 const bool c_crypt_auto_smime = cs_subset_bool(sub, "crypt_auto_smime");
2533
2534 /* When replying / forwarding, use the original message's
2535 * crypto system. According to the documentation,
2536 * smime_is_default should be disregarded here.
2537 *
2538 * Problem: At least with forwarding, this doesn't really
2539 * make much sense. Should we have an option to completely
2540 * disable individual mechanisms at run-time? */
2541 if (e_cur)
2542 {
2543 if (((WithCrypto & APPLICATION_PGP) != 0) && c_crypt_auto_pgp &&
2544 (e_cur->security & APPLICATION_PGP))
2545 {
2546 e_templ->security |= APPLICATION_PGP;
2547 }
2548 else if (((WithCrypto & APPLICATION_SMIME) != 0) &&
2549 c_crypt_auto_smime && (e_cur->security & APPLICATION_SMIME))
2550 {
2551 e_templ->security |= APPLICATION_SMIME;
2552 }
2553 }
2554
2555 const bool c_smime_is_default = cs_subset_bool(sub, "smime_is_default");
2556
2557 /* No crypto mechanism selected? Use availability + smime_is_default
2558 * for the decision. */
2559 if (!(e_templ->security & (APPLICATION_SMIME | APPLICATION_PGP)))
2560 {
2561 if (((WithCrypto & APPLICATION_SMIME) != 0) && c_crypt_auto_smime && c_smime_is_default)
2562 {
2563 e_templ->security |= APPLICATION_SMIME;
2564 }
2565 else if (((WithCrypto & APPLICATION_PGP) != 0) && c_crypt_auto_pgp)
2566 {
2567 e_templ->security |= APPLICATION_PGP;
2568 }
2569 else if (((WithCrypto & APPLICATION_SMIME) != 0) && c_crypt_auto_smime)
2570 {
2571 e_templ->security |= APPLICATION_SMIME;
2572 }
2573 }
2574 }
2575
2576 /* opportunistic encrypt relies on SMIME or PGP already being selected */
2577 if (c_crypt_opportunistic_encrypt)
2578 {
2579 /* If something has already enabled encryption, e.g. `$crypt_auto_encrypt`
2580 * or `$crypt_reply_encrypt`, then don't enable opportunistic encrypt for
2581 * the message. */
2582 if (!(e_templ->security & (SEC_ENCRYPT | SEC_AUTOCRYPT)))
2583 {
2584 e_templ->security |= SEC_OPPENCRYPT;
2586 }
2587 }
2588
2589 /* No permissible mechanisms found. Don't sign or encrypt. */
2590 if (!(e_templ->security & (APPLICATION_SMIME | APPLICATION_PGP)))
2591 e_templ->security = SEC_NONE;
2592 }
2593
2594 /* Deal with the corner case where the crypto module backend is not available.
2595 * This can happen if configured without PGP/SMIME and with GPGME, but
2596 * $crypt_use_gpgme is unset. */
2597 if (e_templ->security && !crypt_has_module_backend(e_templ->security))
2598 {
2599 mutt_error(_("No crypto backend configured. Disabling message security setting."));
2600 e_templ->security = SEC_NONE;
2601 }
2602
2603 /* specify a default fcc. if we are in batchmode, only save a copy of
2604 * the message if the value of $copy is yes or ask-yes */
2605
2606 const enum QuadOption c_copy = cs_subset_quad(sub, "copy");
2607
2608 if (buf_is_empty(fcc) && !(flags & SEND_POSTPONED_FCC) &&
2609 (!(flags & SEND_BATCH) || (c_copy & 0x1)))
2610 {
2611 /* set the default FCC */
2612 const bool killfrom = TAILQ_EMPTY(&e_templ->env->from);
2613 if (killfrom)
2614 {
2616 }
2617 mutt_select_fcc(fcc, e_templ);
2618 if (killfrom)
2619 {
2620 mutt_addrlist_clear(&e_templ->env->from);
2621 }
2622 }
2623
2624 mutt_rfc3676_space_stuff(e_templ);
2625
2626 mutt_update_encoding(e_templ->body, sub);
2627
2628 if (!(flags & SEND_BATCH))
2629 {
2630 main_loop:
2631
2632 pretty_mailbox(fcc);
2633 i = dlg_compose(e_templ, fcc,
2634 ((flags & SEND_NO_FREE_HEADER) ? MUTT_COMPOSE_NOFREEHEADER : 0), sub);
2635 if (i == -1)
2636 {
2637 /* abort */
2638 if (flags & SEND_NEWS)
2639 mutt_message(_("Article not posted"));
2640 else
2641 mutt_message(_("Mail not sent"));
2642 goto cleanup;
2643 }
2644 else if (i == 1)
2645 {
2646 if (postpone_message(e_templ, e_cur, buf_string(fcc), flags, sub) != 0)
2647 goto main_loop;
2648 mutt_message(_("Message postponed"));
2649 rc = 1;
2650 goto cleanup;
2651 }
2652 }
2653
2654 if (!(flags & SEND_NEWS))
2655 {
2656 if ((mutt_addrlist_count_recips(&e_templ->env->to) == 0) &&
2657 (mutt_addrlist_count_recips(&e_templ->env->cc) == 0) &&
2658 (mutt_addrlist_count_recips(&e_templ->env->bcc) == 0))
2659 {
2660 if (flags & SEND_BATCH)
2661 {
2662 puts(_("No recipients specified"));
2663 goto cleanup;
2664 }
2665
2666 mutt_warning(_("No recipients specified"));
2667 goto main_loop;
2668 }
2669 }
2670
2671 if (mutt_env_to_intl(e_templ->env, &tag, &err))
2672 {
2673 mutt_error(_("Bad IDN in '%s': '%s'"), tag, err);
2674 FREE(&err);
2675 if (flags & SEND_BATCH)
2676 goto cleanup;
2677 goto main_loop;
2678 }
2679
2680 const enum QuadOption c_abort_nosubject = cs_subset_quad(sub, "abort_nosubject");
2681
2682 if (!e_templ->env->subject && !(flags & SEND_BATCH) &&
2683 (query_quadoption(_("No subject, abort sending?"), sub, "abort_nosubject") != MUTT_NO))
2684 {
2685 /* if the abort is automatic, print an error message */
2686 if (c_abort_nosubject == MUTT_YES)
2687 mutt_error(_("No subject specified"));
2688 goto main_loop;
2689 }
2690
2691 if ((flags & SEND_NEWS) && !e_templ->env->subject)
2692 {
2693 mutt_error(_("No subject specified"));
2694 goto main_loop;
2695 }
2696
2697 if ((flags & SEND_NEWS) && !e_templ->env->newsgroups)
2698 {
2699 mutt_error(_("No newsgroup specified"));
2700 goto main_loop;
2701 }
2702
2703 if (!(flags & SEND_BATCH) && abort_for_missing_attachments(e_templ->body, sub))
2704 {
2705 goto main_loop;
2706 }
2707
2708 const bool c_confirm_empty_to = cs_subset_bool(sub, "confirm_empty_to");
2709 if (c_confirm_empty_to && TAILQ_EMPTY(&e_templ->env->to) &&
2710 (query_yesorno(_("No recipients specified in To. Send anyway?"), MUTT_NO) == MUTT_NO))
2711 {
2712 goto main_loop;
2713 }
2714
2715 if (e_templ->body->next)
2716 e_templ->body = mutt_make_multipart(e_templ->body);
2717
2718 /* Ok, we need to do it this way instead of handling all fcc stuff in
2719 * one place in order to avoid going to main_loop with encoded "env"
2720 * in case of error. Ugh. */
2721
2722 mutt_encode_descriptions(e_templ->body, true, sub);
2723
2724 /* Make sure that clear_content and free_clear_content are
2725 * properly initialized -- we may visit this particular place in
2726 * the code multiple times, including after a failed call to
2727 * mutt_protect(). */
2728
2729 clear_content = NULL;
2730 free_clear_content = false;
2731
2732 if (WithCrypto)
2733 {
2734 if (e_templ->security & (SEC_ENCRYPT | SEC_SIGN | SEC_AUTOCRYPT))
2735 {
2736 /* save the decrypted attachments */
2737 clear_content = e_templ->body;
2738
2739 if ((crypt_get_keys(e_templ, &pgpkeylist, false) == -1) ||
2740 (mutt_protect(e_templ, pgpkeylist, false) == -1))
2741 {
2742 if (mutt_istr_equal(e_templ->body->subtype, "mixed"))
2743 e_templ->body = mutt_remove_multipart(e_templ->body);
2744
2745 FREE(&pgpkeylist);
2746
2747 decode_descriptions(e_templ->body);
2748
2749 if (flags & SEND_BATCH)
2750 {
2751 mutt_message(_("Missing encryption key; mail not sent"));
2752 rc = -1;
2753 goto cleanup;
2754 }
2755
2756 goto main_loop;
2757 }
2758 mutt_encode_descriptions(e_templ->body, false, sub);
2759 }
2760
2761 /* at this point, e_templ->body is one of the following three things:
2762 * - multipart/signed. In this case, clear_content is a child
2763 * - multipart/encrypted. In this case, clear_content exists independently
2764 * - application/pgp. In this case, clear_content exists independently
2765 * - something else. In this case, it's the same as clear_content */
2766
2767 /* This is ugly -- lack of "reporting back" from mutt_protect(). */
2768
2769 if (clear_content && (e_templ->body != clear_content) &&
2770 (e_templ->body->parts != clear_content))
2771 free_clear_content = true;
2772 }
2773
2774 if (OptGui)
2775 mutt_message(_("Sending message..."));
2776
2777 mutt_prepare_envelope(e_templ->env, true, sub);
2778
2779 const bool c_fcc_before_send = cs_subset_bool(sub, "fcc_before_send");
2780 if (c_fcc_before_send)
2781 {
2782 if (save_fcc(m, e_templ, fcc, clear_content, pgpkeylist, flags, &finalpath, sub) &&
2783 (flags & SEND_BATCH))
2784 {
2785 /* In batch mode with $fcc_before_send set, abort sending if Fcc fails. */
2786 puts(_("Fcc failed. Aborting sending."));
2787 goto cleanup;
2788 }
2789 }
2790
2791 i = invoke_mta(m, e_templ, sub);
2792 if (i < 0)
2793 {
2794 if (!(flags & SEND_BATCH))
2795 {
2796 if (!WithCrypto)
2797 ; // do nothing
2798 else if ((e_templ->security & (SEC_ENCRYPT | SEC_AUTOCRYPT)) ||
2799 ((e_templ->security & SEC_SIGN) && (e_templ->body->type == TYPE_APPLICATION)))
2800 {
2801 if (e_templ->body != clear_content)
2802 {
2803 mutt_body_free(&e_templ->body); /* destroy PGP data */
2804 e_templ->body = clear_content; /* restore clear text. */
2805 }
2806 }
2807 else if ((e_templ->security & SEC_SIGN) && (e_templ->body->type == TYPE_MULTIPART))
2808 {
2809 mutt_body_free(&e_templ->body->parts->next); /* destroy sig */
2810 if (mutt_istr_equal(e_templ->body->subtype, "mixed") ||
2811 mutt_istr_equal(e_templ->body->subtype, "signed"))
2812 {
2813 e_templ->body = mutt_remove_multipart(e_templ->body);
2814 }
2815 }
2816
2817 FREE(&pgpkeylist);
2818 mutt_env_free(&e_templ->body->mime_headers); /* protected headers */
2819 mutt_param_delete(&e_templ->body->parameter, "protected-headers");
2820 if (mutt_istr_equal(e_templ->body->subtype, "mixed"))
2821 e_templ->body = mutt_remove_multipart(e_templ->body);
2822 decode_descriptions(e_templ->body);
2823 mutt_unprepare_envelope(e_templ->env);
2824 FREE(&finalpath);
2825 goto main_loop;
2826 }
2827 else
2828 {
2829 puts(_("Could not send the message"));
2830 goto cleanup;
2831 }
2832 }
2833
2834 if (!c_fcc_before_send)
2835 save_fcc(m, e_templ, fcc, clear_content, pgpkeylist, flags, &finalpath, sub);
2836
2837 if (OptGui)
2838 {
2839 mutt_message((i != 0) ? _("Sending in background") :
2840 (flags & SEND_NEWS) ? _("Article posted") :
2841 _("Mail sent"));
2842#ifdef USE_NOTMUCH
2843 const bool c_nm_record = cs_subset_bool(sub, "nm_record");
2844 if (c_nm_record)
2845 nm_record_message(m, finalpath, e_cur);
2846#endif
2847 mutt_sleep(0);
2848 }
2849
2850 if (WithCrypto)
2851 FREE(&pgpkeylist);
2852
2853 if ((WithCrypto != 0) && free_clear_content)
2854 mutt_body_free(&clear_content);
2855
2856 /* set 'replied' flag only if the user didn't change/remove
2857 * In-Reply-To: and References: headers during edit */
2858 if (flags & SEND_REPLY)
2859 {
2860 if (!(flags & SEND_POSTPONED) && m)
2861 {
2862 struct Email **ep = NULL;
2863 ARRAY_FOREACH(ep, ea)
2864 {
2865 struct Email *e = *ep;
2866 mutt_set_flag(m, e, MUTT_REPLIED, is_reply(e, e_templ), true);
2867 }
2868 }
2869 }
2870
2871 rc = 0;
2872
2873cleanup:
2874 buf_pool_release(&fcc);
2875
2876 if (flags & SEND_POSTPONED)
2877 {
2879 {
2880 cs_subset_str_string_set(sub, "pgp_sign_as", pgp_sign_as, NULL);
2881 FREE(&pgp_sign_as);
2882 }
2884 {
2885 cs_subset_str_string_set(sub, "smime_sign_as", smime_sign_as, NULL);
2886 FREE(&smime_sign_as);
2887 }
2888 }
2889
2890 mutt_file_fclose(&fp_tmp);
2891 if (!(flags & SEND_NO_FREE_HEADER))
2892 email_free(&e_templ);
2893
2894 FREE(&finalpath);
2895 return rc;
2896}
int mutt_addrlist_count_recips(const struct AddressList *al)
Count the number of Addresses with valid recipients.
Definition address.c:883
void mutt_expand_aliases_env(struct Envelope *env)
Expand aliases in all the fields of an Envelope.
Definition alias.c:311
struct Buffer * buf_new(const char *str)
Allocate a new Buffer.
Definition buffer.c:311
char * buf_strdup(const struct Buffer *buf)
Copy a Buffer's string.
Definition buffer.c:577
@ CMD_SEND_HOOK
:send-hook
Definition command.h:110
@ CMD_SEND2_HOOK
:send2-hook
Definition command.h:109
@ CMD_REPLY_HOOK
:reply-hook
Definition command.h:105
#define MUTT_COMPOSE_NOFREEHEADER
Don't free the header when closing compose dialog.
Definition lib.h:55
@ MUTT_NNTP
'NNTP' (Usenet) Mailbox type
Definition mailbox.h:48
int crypt_get_keys(struct Email *e, char **keylist, bool oppenc_mode)
Check we have all the keys we need.
Definition crypt.c:968
bool crypt_has_module_backend(SecurityFlags type)
Is there a crypto backend for a given type?
Definition cryptglue.c:188
void mutt_edit_file(const char *editor, const char *file)
Let the user edit a file.
Definition curs_lib.c:117
struct Body * mutt_body_new(void)
Create a new Body.
Definition body.c:44
void mutt_edit_headers(const char *editor, const char *body, struct Email *e, struct Buffer *fcc)
Let the user edit the message header and body.
Definition header.c:181
void mutt_parse_content_type(const char *s, struct Body *b)
Parse a content type.
Definition parse.c:464
bool mutt_parse_mailto(struct Envelope *env, char **body, const char *src)
Parse a mailto:// url.
Definition parse.c:1911
struct Envelope * mutt_env_new(void)
Create a new Envelope.
Definition envelope.c:45
void mutt_env_to_local(struct Envelope *env)
Convert an Envelope's Address fields to local format.
Definition envelope.c:316
char * msgid_generate(void)
Generate a Message-ID.
time_t mutt_file_decrease_mtime(const char *fp, struct stat *st)
Decrease a file's modification time by 1 second.
Definition file.c:898
void mutt_set_flag(struct Mailbox *m, struct Email *e, enum MessageType flag, bool bf, bool upd_mbox)
Set a flag on an email.
Definition flags.c:54
bool OptGui
(pseudo) when the gui (and curses) are started
Definition globals.c:48
int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope -.
#define mutt_debug(LEVEL,...)
Definition logging2.h:91
void mutt_select_fcc(struct Buffer *path, struct Email *e)
Select the FCC path for an email.
Definition exec.c:256
@ LL_DEBUG5
Log at debug level 5.
Definition logging2.h:49
@ LL_DEBUG1
Log at debug level 1.
Definition logging2.h:45
@ DISP_INLINE
Content is inline.
Definition mime.h:62
@ MUTT_REPLIED
Messages that have been replied to.
Definition mutt.h:91
bool mutt_edit_attachment(struct Body *b)
Edit an attachment.
void mutt_sleep(short s)
Sleep for a while.
Definition muttlib.c:795
void pretty_mailbox(struct Buffer *buf)
Shorten a mailbox path using '~' or '='.
Definition muttlib.c:431
bool mutt_needs_mailcap(struct Body *b)
Does this type need a mailcap entry do display.
Definition muttlib.c:368
@ SEC_NONE
No flags are set.
Definition lib.h:91
@ SEC_INLINE
Email has an inline signature.
Definition lib.h:99
@ SEC_AUTOCRYPT_OVERRIDE
(Autocrypt) Indicates manual set/unset of encryption
Definition lib.h:102
int nm_record_message(struct Mailbox *m, char *path, struct Email *e)
Add a message to the Notmuch database.
Definition notmuch.c:1956
void mutt_param_set(struct ParameterList *pl, const char *attribute, const char *value)
Set a Parameter.
Definition parameter.c:111
int mutt_num_postponed(struct Mailbox *m, bool force)
Return the number of postponed messages.
Definition postpone.c:63
int mutt_get_postponed(struct Mailbox *m_cur, struct Email *hdr, struct Email **cur, struct Buffer *fcc)
Recall a postponed message.
Definition postpone.c:665
enum QuadOption query_yesorno(const char *prompt, enum QuadOption def)
Ask the user a Yes/No question.
Definition question.c:329
void mutt_rfc3676_space_stuff(struct Email *e)
Perform RFC3676 space stuffing on an Email.
Definition rfc3676.c:492
static int postpone_message(struct Email *e_post, struct Email *e_cur, const char *fcc, SendFlags flags, struct ConfigSubset *sub)
Save an Email for another day.
Definition send.c:1857
static bool is_reply(struct Email *reply, struct Email *orig)
Is one email a reply to another?
Definition send.c:1610
static int save_fcc(struct Mailbox *m, struct Email *e, struct Buffer *fcc, struct Body *clear_content, char *pgpkeylist, SendFlags flags, char **finalpath, struct ConfigSubset *sub)
Save an Email to a 'sent mail' folder.
Definition send.c:1674
static int envelope_defaults(struct Envelope *env, struct EmailArray *ea, SendFlags flags, struct ConfigSubset *sub)
Fill in some defaults for a new email.
Definition send.c:1090
void mutt_fix_reply_recipients(struct Envelope *env, struct ConfigSubset *sub)
Remove duplicate recipients.
Definition send.c:962
static int generate_body(FILE *fp_tmp, struct Email *e, SendFlags flags, struct Mailbox *m, struct EmailArray *ea, struct ConfigSubset *sub)
Create a new email body.
Definition send.c:1163
static void mutt_make_greeting(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add greetings string.
Definition send.c:693
static int invoke_mta(struct Mailbox *m, struct Email *e, struct ConfigSubset *sub)
Send an email.
Definition send.c:1438
static void process_user_recips(struct Envelope *env)
Process the user headers.
Definition send.c:379
static void process_user_header(struct Envelope *env)
Process the user headers.
Definition send.c:407
static int edit_envelope(struct Envelope *en, SendFlags flags, struct ConfigSubset *sub)
Edit Envelope fields.
Definition send.c:230
static bool abort_for_missing_attachments(const struct Body *b, struct ConfigSubset *sub)
Should we abort sending because of missing attachments?
Definition send.c:1983
static void set_reverse_name(struct AddressList *al, struct Envelope *env, struct ConfigSubset *sub)
Try to set the 'from' field from the recipients.
Definition send.c:1352
static void fix_end_of_file(const char *data)
Ensure a file ends with a linefeed.
Definition send.c:1536
static void append_signature(FILE *fp, struct ConfigSubset *sub)
Append a signature to an email.
Definition send.c:100
@ SEND_CONSUMED_STDIN
stdin has been read; don't read it twice
Definition send.h:61
@ SEND_NO_FREE_HEADER
Used by the -E flag.
Definition send.h:55
@ SEND_CLI_CRYPTO
Enable message security in modes that by default don't enable it.
Definition send.h:62
@ SEND_DRAFT_FILE
Used by the -H flag.
Definition send.h:56
@ SEND_POSTPONED_FCC
Used by mutt_get_postponed() to signal that the Mutt-Fcc header field was present.
Definition send.h:54
@ SEND_POSTPONED
Recall a postponed email.
Definition send.h:50
void mutt_update_encoding(struct Body *b, struct ConfigSubset *sub)
Update the encoding type.
Definition sendlib.c:424
bool unlink
If true, filename should be unlink()ed before free()ing this structure.
Definition body.h:68
bool use_disp
Content-Disposition uses filename= ?
Definition body.h:47
unsigned int disposition
content-disposition, ContentDisposition
Definition body.h:42
bool replied
Email has been replied to.
Definition email.h:51
struct AddressList x_original_to
Email's 'X-Original-to'.
Definition envelope.h:66
char * list_post
This stores a mailto URL, or nothing.
Definition envelope.h:67
enum MailboxType type
Mailbox type.
Definition mailbox.h:104
void * mdata
Driver specific data.
Definition mailbox.h:134
NNTP-specific Mailbox data -.
Definition mdata.h:34
int cs_subset_str_string_set(const struct ConfigSubset *sub, const char *name, const char *value, struct Buffer *err)
Set a config item by string.
Definition subset.c:392
#define buf_mktemp_draft(buf)
Definition tmp.h:34
Here is the caller graph for this function:

◆ send_simple_email()

bool send_simple_email ( struct Mailbox * m,
struct EmailArray * ea,
const char * mailto,
const char * subj,
const char * body )
static

Compose an email given a few basic ingredients.

Parameters
mMailbox
eaArray of source Emails
mailtomailto address to parse (can include fields such as subject)
subjSubject, if not overridden by mailto
bodytext/plain body
Return values
trueSuccess
falseFailure

Definition at line 2908 of file send.c.

2910{
2911 struct Email *e = email_new();
2912
2913 /* envelope */
2914 e->env = mutt_env_new();
2915 mutt_parse_mailto(e->env, NULL, mailto);
2916 if (!e->env->subject)
2917 {
2918 mutt_env_set_subject(e->env, subj);
2919 }
2920 if (TAILQ_EMPTY(&e->env->to) && !mutt_addrlist_parse(&e->env->to, NULL))
2921 {
2922 mutt_warning(_("No recipient specified"));
2923 }
2924
2925 /* body */
2926 e->body = mutt_body_new();
2927 char ctype[] = "text/plain";
2928 mutt_parse_content_type(ctype, e->body);
2929 e->body->use_disp = false;
2931
2932 struct Buffer *tempfile = buf_pool_get();
2933 buf_mktemp_draft(tempfile);
2934 if (body)
2935 {
2936 FILE *fp = mutt_file_fopen(buf_string(tempfile), "w+");
2937 if (!fp)
2938 {
2939 email_free(&e);
2940 buf_pool_release(&tempfile);
2941 return false;
2942 }
2943 fprintf(fp, "%s\n", body);
2944 mutt_file_fclose(&fp);
2945 }
2946 e->body->filename = buf_strdup(tempfile);
2947 e->body->unlink = true;
2948 buf_pool_release(&tempfile);
2949
2950 const int rc = mutt_send_message(SEND_DRAFT_FILE, e, NULL, m, ea, NeoMutt->sub);
2951 return rc >= 0;
2952}
struct ConfigSubset * sub
Inherited config items.
Definition neomutt.h:49
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_send_list_subscribe()

bool mutt_send_list_subscribe ( struct Mailbox * m,
struct Email * e )

Send a mailing-list subscription email.

Parameters
mMailbox
eEmail carrying mailing-list subscription headers
Return values
trueSuccess
falseFailure

Definition at line 2961 of file send.c.

2962{
2963 if (!e || !e->env)
2964 {
2965 return false;
2966 }
2967
2968 const char *uri = e->env->list_subscribe;
2969 if (!uri)
2970 {
2971 mutt_warning(_("No List-Subscribe header found"));
2972 return false;
2973 }
2974
2975 struct EmailArray ea = ARRAY_HEAD_INITIALIZER;
2976 ARRAY_ADD(&ea, e);
2977 bool rc = send_simple_email(m, &ea, uri, "Subscribe", "subscribe");
2978 ARRAY_FREE(&ea);
2979
2980 return rc;
2981}
static bool send_simple_email(struct Mailbox *m, struct EmailArray *ea, const char *mailto, const char *subj, const char *body)
Compose an email given a few basic ingredients.
Definition send.c:2908
char * list_subscribe
This stores a list URI, preferring mailto.
Definition envelope.h:68
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mutt_send_list_unsubscribe()

bool mutt_send_list_unsubscribe ( struct Mailbox * m,
struct Email * e )

Send a mailing-list unsubscription email.

Parameters
mMailbox
eEmail carrying mailing-list unsubscription headers
Return values
trueSuccess
falseFailure

Definition at line 2990 of file send.c.

2991{
2992 if (!e || !e->env)
2993 {
2994 return false;
2995 }
2996
2997 const char *uri = e->env->list_unsubscribe;
2998 if (!uri)
2999 {
3000 mutt_warning(_("No List-Unsubscribe header found"));
3001 return false;
3002 }
3003
3004 struct EmailArray ea = ARRAY_HEAD_INITIALIZER;
3005 ARRAY_ADD(&ea, e);
3006 bool rc = send_simple_email(m, &ea, uri, "Unsubscribe", "unsubscribe");
3007 ARRAY_FREE(&ea);
3008
3009 return rc;
3010}
char * list_unsubscribe
This stores a list URI, preferring mailto.
Definition envelope.h:69
Here is the call graph for this function:
Here is the caller graph for this function: