NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
send.h File Reference

Prepare and send an email. More...

#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
+ Include dependency graph for send.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define SEND_NO_FLAGS   0
 No flags are set. More...
 
#define SEND_REPLY   (1 << 0)
 Reply to sender. More...
 
#define SEND_GROUP_REPLY   (1 << 1)
 Reply to all. More...
 
#define SEND_LIST_REPLY   (1 << 2)
 Reply to mailing list. More...
 
#define SEND_FORWARD   (1 << 3)
 Forward email. More...
 
#define SEND_POSTPONED   (1 << 4)
 Recall a postponed email. More...
 
#define SEND_BATCH   (1 << 5)
 Send email in batch mode (without user interaction) More...
 
#define SEND_KEY   (1 << 6)
 Mail a PGP public key. More...
 
#define SEND_RESEND   (1 << 7)
 Reply using the current email as a template. More...
 
#define SEND_POSTPONED_FCC   (1 << 8)
 Used by mutt_get_postponed() to signal that the Mutt-Fcc header field was present. More...
 
#define SEND_NO_FREE_HEADER   (1 << 9)
 Used by the -E flag. More...
 
#define SEND_DRAFT_FILE   (1 << 10)
 Used by the -H flag. More...
 
#define SEND_TO_SENDER   (1 << 11)
 Compose new email to sender. More...
 
#define SEND_GROUP_CHAT_REPLY   (1 << 12)
 Reply to all recipients preserving To/Cc. More...
 
#define SEND_NEWS   (1 << 13)
 Reply to a news article. More...
 
#define SEND_REVIEW_TO   (1 << 14)
 Allow the user to edit the To field. More...
 

Typedefs

typedef uint16_t SendFlags
 Flags for mutt_send_message(), e.g. SEND_REPLY. More...
 

Functions

void mutt_add_to_reference_headers (struct Envelope *env, struct Envelope *curenv, struct ConfigSubset *sub)
 Generate references for a reply email. More...
 
struct Addressmutt_default_from (struct ConfigSubset *sub)
 Get a default 'from' Address. More...
 
int mutt_edit_address (struct AddressList *al, const char *field, bool expand_aliases)
 Edit an email address. More...
 
void mutt_encode_descriptions (struct Body *b, bool recurse, struct ConfigSubset *sub)
 RFC2047 encode the content-descriptions. More...
 
int mutt_fetch_recips (struct Envelope *out, struct Envelope *in, SendFlags flags, struct ConfigSubset *sub)
 Generate recpients for a reply email. More...
 
void mutt_fix_reply_recipients (struct Envelope *env, struct ConfigSubset *sub)
 Remove duplicate recipients. More...
 
void mutt_forward_intro (struct Email *e, FILE *fp, struct ConfigSubset *sub)
 Add the "start of forwarded message" text. More...
 
void mutt_forward_trailer (struct Email *e, FILE *fp, struct ConfigSubset *sub)
 Add a "end of forwarded message" text. More...
 
void mutt_make_attribution_intro (struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Add "on DATE, PERSON wrote" header. More...
 
void mutt_make_attribution_trailer (struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
 Add suffix to replied email text. More...
 
void mutt_make_forward_subject (struct Envelope *env, struct Email *e, struct ConfigSubset *sub)
 Create a subject for a forwarded email. More...
 
void mutt_make_misc_reply_headers (struct Envelope *env, struct Envelope *curenv, struct ConfigSubset *sub)
 Set subject for a reply. More...
 
int mutt_resend_message (FILE *fp, struct Mailbox *m, struct Email *e_cur, struct ConfigSubset *sub)
 Resend an email. More...
 
int mutt_send_message (SendFlags flags, struct Email *e_templ, const char *tempfile, struct Mailbox *m, struct EmailList *el, struct ConfigSubset *sub)
 Send an email. More...
 
void mutt_set_followup_to (struct Envelope *env, struct ConfigSubset *sub)
 Set followup-to field. More...
 
bool mutt_send_list_subscribe (struct Mailbox *m, struct Email *e)
 Send a mailing-list subscription email. More...
 
bool mutt_send_list_unsubscribe (struct Mailbox *m, struct Email *e)
 Send a mailing-list unsubscription email. More...
 

Detailed Description

Prepare and send an email.

Authors
  • Richard Russon

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

Macro Definition Documentation

◆ SEND_NO_FLAGS

#define SEND_NO_FLAGS   0

No flags are set.

Definition at line 39 of file send.h.

◆ SEND_REPLY

#define SEND_REPLY   (1 << 0)

Reply to sender.

Definition at line 40 of file send.h.

◆ SEND_GROUP_REPLY

#define SEND_GROUP_REPLY   (1 << 1)

Reply to all.

Definition at line 41 of file send.h.

◆ SEND_LIST_REPLY

#define SEND_LIST_REPLY   (1 << 2)

Reply to mailing list.

Definition at line 42 of file send.h.

◆ SEND_FORWARD

#define SEND_FORWARD   (1 << 3)

Forward email.

Definition at line 43 of file send.h.

◆ SEND_POSTPONED

#define SEND_POSTPONED   (1 << 4)

Recall a postponed email.

Definition at line 44 of file send.h.

◆ SEND_BATCH

#define SEND_BATCH   (1 << 5)

Send email in batch mode (without user interaction)

Definition at line 45 of file send.h.

◆ SEND_KEY

#define SEND_KEY   (1 << 6)

Mail a PGP public key.

Definition at line 46 of file send.h.

◆ SEND_RESEND

#define SEND_RESEND   (1 << 7)

Reply using the current email as a template.

Definition at line 47 of file send.h.

◆ SEND_POSTPONED_FCC

#define SEND_POSTPONED_FCC   (1 << 8)

Used by mutt_get_postponed() to signal that the Mutt-Fcc header field was present.

Definition at line 48 of file send.h.

◆ SEND_NO_FREE_HEADER

#define SEND_NO_FREE_HEADER   (1 << 9)

Used by the -E flag.

Definition at line 49 of file send.h.

◆ SEND_DRAFT_FILE

#define SEND_DRAFT_FILE   (1 << 10)

Used by the -H flag.

Definition at line 50 of file send.h.

◆ SEND_TO_SENDER

#define SEND_TO_SENDER   (1 << 11)

Compose new email to sender.

Definition at line 51 of file send.h.

◆ SEND_GROUP_CHAT_REPLY

#define SEND_GROUP_CHAT_REPLY   (1 << 12)

Reply to all recipients preserving To/Cc.

Definition at line 52 of file send.h.

◆ SEND_NEWS

#define SEND_NEWS   (1 << 13)

Reply to a news article.

Definition at line 53 of file send.h.

◆ SEND_REVIEW_TO

#define SEND_REVIEW_TO   (1 << 14)

Allow the user to edit the To field.

Definition at line 54 of file send.h.

Typedef Documentation

◆ SendFlags

typedef uint16_t SendFlags

Flags for mutt_send_message(), e.g. SEND_REPLY.

Definition at line 38 of file send.h.

Function Documentation

◆ mutt_add_to_reference_headers()

void mutt_add_to_reference_headers ( struct Envelope env,
struct Envelope curenv,
struct ConfigSubset sub 
)

Generate references for a reply email.

Parameters
envEnvelope for result
curenvEnvelope of source email
subConfig Subset

Definition at line 1093 of file send.c.

1095{
1096 add_references(&env->references, curenv);
1097 add_message_id(&env->references, curenv);
1098 add_message_id(&env->in_reply_to, curenv);
1099
1100#ifdef USE_NNTP
1101 const bool c_x_comment_to = cs_subset_bool(sub, "x_comment_to");
1102 if (OptNewsSend && c_x_comment_to && !TAILQ_EMPTY(&curenv->from))
1104#endif
1105}
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:73
bool OptNewsSend
(pseudo) used to change behavior when posting
Definition: globals.c:79
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:250
#define TAILQ_FIRST(head)
Definition: queue.h:723
#define TAILQ_EMPTY(head)
Definition: queue.h:721
static void add_message_id(struct ListHead *head, struct Envelope *env)
Add the email's message ID to a list.
Definition: send.c:1003
static void add_references(struct ListHead *head, struct Envelope *env)
Add the email's references to a list.
Definition: send.c:987
const char * mutt_get_name(const struct Address *a)
Pick the best name to display from an address.
Definition: sort.c:136
char * x_comment_to
List of 'X-comment-to' fields.
Definition: envelope.h:82
struct ListHead references
message references (in reverse order)
Definition: envelope.h:85
struct ListHead in_reply_to
in-reply-to header content
Definition: envelope.h:86
struct AddressList from
Email's 'From' list.
Definition: envelope.h:59
+ 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.

Return values
ptrNewly allocated Address

Definition at line 1462 of file send.c.

1463{
1464 /* Note: We let $from override $real_name here.
1465 * Is this the right thing to do?
1466 */
1467
1468 const struct Address *c_from = cs_subset_address(sub, "from");
1469 const bool c_use_domain = cs_subset_bool(sub, "use_domain");
1470 if (c_from)
1471 {
1472 return mutt_addr_copy(c_from);
1473 }
1474 else if (c_use_domain)
1475 {
1476 struct Address *addr = mutt_addr_new();
1477 mutt_str_asprintf(&addr->mailbox, "%s@%s", NONULL(Username),
1478 NONULL(mutt_fqdn(true, sub)));
1479 return addr;
1480 }
1481 else
1482 {
1483 return mutt_addr_create(NULL, Username);
1484 }
1485}
struct Address * mutt_addr_create(const char *personal, const char *mailbox)
Create and populate a new Address.
Definition: address.c:398
struct Address * mutt_addr_new(void)
Create a new Address.
Definition: address.c:385
struct Address * mutt_addr_copy(const struct Address *addr)
Copy the real address.
Definition: address.c:716
const struct Address * cs_subset_address(const struct ConfigSubset *sub, const char *name)
Get an Address config item by name.
Definition: helpers.c:49
char * Username
User's login name.
Definition: globals.c:41
int mutt_str_asprintf(char **strp, const char *fmt,...)
Definition: string.c:1031
const char * mutt_fqdn(bool may_hide_host, const struct ConfigSubset *sub)
Get the Fully-Qualified Domain Name.
Definition: sendlib.c:696
#define NONULL(x)
Definition: string2.h:37
An email address.
Definition: address.h:36
char * mailbox
Mailbox and host address.
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 178 of file send.c.

179{
180 int rc = 0;
181 struct Buffer *buf = mutt_buffer_pool_get();
182 mutt_buffer_alloc(buf, 8192);
183 char *err = NULL;
184 int idna_ok = 0;
185
186 do
187 {
190 mutt_addrlist_write(al, buf, false);
191 if (mutt_buffer_get_field(field, buf, MUTT_COMP_ALIAS, false, NULL, NULL, NULL) != 0)
192 {
193 rc = -1;
194 goto done;
195 }
198 if (expand_aliases)
200 idna_ok = mutt_addrlist_to_intl(al, &err);
201 if (idna_ok != 0)
202 {
203 mutt_error(_("Bad IDN: '%s'"), err);
204 FREE(&err);
205 }
206 } while (idna_ok != 0);
207
208done:
210 return rc;
211}
void mutt_addrlist_clear(struct AddressList *al)
Unlink and free all Address in an AddressList.
Definition: address.c:1435
int mutt_addrlist_to_local(struct AddressList *al)
Convert an Address list from Punycode.
Definition: address.c:1353
size_t mutt_addrlist_write(const struct AddressList *al, struct Buffer *buf, bool display)
Write an Address to a buffer.
Definition: address.c:1184
int mutt_addrlist_parse2(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition: address.c:616
int mutt_addrlist_to_intl(struct AddressList *al, char **err)
Convert an Address list to Punycode.
Definition: address.c:1270
void mutt_expand_aliases(struct AddressList *al)
Expand aliases in a List of Addresses.
Definition: alias.c:298
void mutt_buffer_alloc(struct Buffer *buf, size_t new_size)
Make sure a buffer can store at least new_size bytes.
Definition: buffer.c:313
void mutt_buffer_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition: buffer.c:85
static const char * mutt_buffer_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:78
int mutt_buffer_get_field(const char *field, struct Buffer *buf, CompletionFlags complete, bool multiple, struct Mailbox *m, char ***files, int *numfiles)
Ask the user for a string.
Definition: window.c:178
#define mutt_error(...)
Definition: logging.h:87
#define FREE(x)
Definition: memory.h:43
#define _(a)
Definition: message.h:28
#define MUTT_COMP_ALIAS
Alias completion (in alias dialog)
Definition: mutt.h:56
void mutt_buffer_pool_release(struct Buffer **pbuf)
Free a Buffer from the pool.
Definition: pool.c:112
struct Buffer * mutt_buffer_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:101
String manipulation buffer.
Definition: buffer.h:34
+ 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 1581 of file send.c.

1582{
1583 for (struct Body *t = b; t; t = t->next)
1584 {
1585 if (t->description)
1586 {
1587 const struct Slist *const c_send_charset = cs_subset_slist(sub, "send_charset");
1588 rfc2047_encode(&t->description, NULL, sizeof("Content-Description:"), c_send_charset);
1589 }
1590 if (recurse && t->parts)
1591 mutt_encode_descriptions(t->parts, recurse, sub);
1592 }
1593}
const struct Slist * cs_subset_slist(const struct ConfigSubset *sub, const char *name)
Get a string-list config item by name.
Definition: helpers.c:268
void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets)
RFC-2047-encode a string.
Definition: rfc2047.c:619
void mutt_encode_descriptions(struct Body *b, bool recurse, struct ConfigSubset *sub)
RFC2047 encode the content-descriptions.
Definition: send.c:1581
The body of an email.
Definition: body.h:36
struct Body * next
next attachment in the list
Definition: body.h:71
String list.
Definition: slist.h:47
+ 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 928 of file send.c.

930{
931 enum QuadOption hmfupto = MUTT_ABORT;
932 const struct Address *followup_to = TAILQ_FIRST(&in->mail_followup_to);
933
934 if ((flags & (SEND_LIST_REPLY | SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY)) && followup_to)
935 {
936 char prompt[256] = { 0 };
937 snprintf(prompt, sizeof(prompt), _("Follow-up to %s%s?"), followup_to->mailbox,
938 TAILQ_NEXT(TAILQ_FIRST(&in->mail_followup_to), entries) ? ",..." : "");
939
940 const enum QuadOption c_honor_followup_to = cs_subset_quad(sub, "honor_followup_to");
941 hmfupto = query_quadoption(c_honor_followup_to, prompt);
942 if (hmfupto == MUTT_ABORT)
943 return -1;
944 }
945
946 if (flags & SEND_LIST_REPLY)
947 {
948 add_mailing_lists(&out->to, &in->to, &in->cc);
949
950 if (followup_to && (hmfupto == MUTT_YES) &&
951 (default_to(&out->cc, in, flags & SEND_LIST_REPLY, (hmfupto == MUTT_YES), sub) == MUTT_ABORT))
952 {
953 return -1; /* abort */
954 }
955 }
956 else if (flags & SEND_TO_SENDER)
957 {
958 mutt_addrlist_copy(&out->to, &in->from, false);
959 }
960 else
961 {
962 if (default_to(&out->to, in, flags & (SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY),
963 (hmfupto == MUTT_YES), sub) == -1)
964 {
965 return -1; /* abort */
966 }
967
968 if ((flags & (SEND_GROUP_REPLY | SEND_GROUP_CHAT_REPLY)) &&
969 (!followup_to || (hmfupto != MUTT_YES)))
970 {
971 /* if(!mutt_addr_is_user(in->to)) */
972 if (flags & SEND_GROUP_REPLY)
973 mutt_addrlist_copy(&out->cc, &in->to, true);
974 else
975 mutt_addrlist_copy(&out->to, &in->to, true);
976 mutt_addrlist_copy(&out->cc, &in->cc, true);
977 }
978 }
979 return 0;
980}
void mutt_addrlist_copy(struct AddressList *dst, const struct AddressList *src, bool prune)
Copy a list of addresses into another list.
Definition: address.c:737
enum QuadOption cs_subset_quad(const struct ConfigSubset *sub, const char *name)
Get a quad-value config item by name.
Definition: helpers.c:218
QuadOption
Possible values for a quad-option.
Definition: quad.h:36
@ 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
enum QuadOption query_quadoption(enum QuadOption opt, const char *prompt)
Ask the user a quad-question.
Definition: question.c:386
#define TAILQ_NEXT(elm, field)
Definition: queue.h:832
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:151
static int default_to(struct AddressList *to, struct Envelope *env, SendFlags flags, int hmfupto, struct ConfigSubset *sub)
Generate default email addresses.
Definition: send.c:842
#define SEND_GROUP_CHAT_REPLY
Reply to all recipients preserving To/Cc.
Definition: send.h:52
#define SEND_GROUP_REPLY
Reply to all.
Definition: send.h:41
#define SEND_LIST_REPLY
Reply to mailing list.
Definition: send.h:42
#define SEND_TO_SENDER
Compose new email to sender.
Definition: send.h:51
struct AddressList to
Email's 'To' list.
Definition: envelope.h:60
struct AddressList mail_followup_to
Email's 'mail-followup-to'.
Definition: envelope.h:65
struct AddressList cc
Email's 'Cc' list.
Definition: envelope.h:61
+ 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 1016 of file send.c.

1017{
1018 const bool c_me_too = cs_subset_bool(sub, "me_too");
1019 if (!c_me_too)
1020 {
1021 const bool c_reply_self = cs_subset_bool(sub, "reply_self");
1022
1023 /* the order is important here. do the CC: first so that if the
1024 * the user is the only recipient, it ends up on the TO: field */
1025 remove_user(&env->cc, TAILQ_EMPTY(&env->to));
1026 remove_user(&env->to, TAILQ_EMPTY(&env->cc) || c_reply_self);
1027 }
1028
1029 /* the CC field can get cluttered, especially with lists */
1030 mutt_addrlist_dedupe(&env->to);
1031 mutt_addrlist_dedupe(&env->cc);
1032 mutt_addrlist_remove_xrefs(&env->to, &env->cc);
1033
1034 if (!TAILQ_EMPTY(&env->cc) && TAILQ_EMPTY(&env->to))
1035 {
1036 TAILQ_SWAP(&env->to, &env->cc, Address, entries);
1037 }
1038}
void mutt_addrlist_remove_xrefs(const struct AddressList *a, struct AddressList *b)
Remove cross-references.
Definition: address.c:1408
void mutt_addrlist_dedupe(struct AddressList *al)
Remove duplicate addresses.
Definition: address.c:1372
#define TAILQ_SWAP(head1, head2, type, field)
Definition: queue.h:859
static void remove_user(struct AddressList *al, bool leave_only)
Remove any address which matches the current user.
Definition: send.c:132
+ 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 449 of file send.c.

450{
451 const char *const c_forward_attribution_intro = cs_subset_string(sub, "forward_attribution_intro");
452 if (!c_forward_attribution_intro || !fp)
453 return;
454
455 const char *const c_attribution_locale = cs_subset_string(sub, "attribution_locale");
456
457 char buf[1024] = { 0 };
458 setlocale(LC_TIME, NONULL(c_attribution_locale));
459 mutt_make_string(buf, sizeof(buf), 0, c_forward_attribution_intro, NULL, -1,
460 e, MUTT_FORMAT_NO_FLAGS, NULL);
461 setlocale(LC_TIME, "");
462 fputs(buf, fp);
463 fputs("\n\n", fp);
464}
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition: helpers.c:317
#define MUTT_FORMAT_NO_FLAGS
No flags are set.
Definition: format_flags.h:30
void mutt_make_string(char *buf, size_t buflen, int cols, const char *s, struct Mailbox *m, int inpgr, struct Email *e, MuttFormatFlags flags, const char *progress)
Create formatted strings using mailbox expandos.
Definition: hdrline.c:1417
+ 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 472 of file send.c.

473{
474 const char *const c_forward_attribution_trailer = cs_subset_string(sub, "forward_attribution_trailer");
475 if (!c_forward_attribution_trailer || !fp)
476 return;
477
478 const char *const c_attribution_locale = cs_subset_string(sub, "attribution_locale");
479
480 char buf[1024] = { 0 };
481 setlocale(LC_TIME, NONULL(c_attribution_locale));
482 mutt_make_string(buf, sizeof(buf), 0, c_forward_attribution_trailer, NULL, -1,
483 e, MUTT_FORMAT_NO_FLAGS, NULL);
484 setlocale(LC_TIME, "");
485 fputc('\n', fp);
486 fputs(buf, fp);
487 fputc('\n', fp);
488}
+ 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 656 of file send.c.

657{
658 format_attribution(cs_subset_string(sub, "attribution_intro"), e, fp_out, sub);
659}
static void format_attribution(const char *s, struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Format an attribution prefix/suffix.
Definition: send.c:634
+ 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 667 of file send.c.

668{
669 format_attribution(cs_subset_string(sub, "attribution_trailer"), e, fp_out, sub);
670}
+ 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 1046 of file send.c.

1047{
1048 if (!env)
1049 return;
1050
1051 const char *const c_forward_format = cs_subset_string(sub, "forward_format");
1052
1053 char buf[256] = { 0 };
1054 /* set the default subject for the message. */
1055 mutt_make_string(buf, sizeof(buf), 0, NONULL(c_forward_format), NULL, -1, e,
1056 MUTT_FORMAT_NO_FLAGS, NULL);
1057 mutt_str_replace(&env->subject, buf);
1058}
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition: string.c:326
char * subject
Email's subject.
Definition: envelope.h:70
+ 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 curenv,
struct ConfigSubset sub 
)

Set subject for a reply.

Parameters
envEnvelope for result
curenvEnvelope of source email
subConfig Subset

Definition at line 1066 of file send.c.

1068{
1069 if (!env || !curenv)
1070 return;
1071
1072 /* This takes precedence over a subject that might have
1073 * been taken from a List-Post header. Is that correct? */
1074 if (curenv->real_subj)
1075 {
1076 FREE(&env->subject);
1077 env->subject = mutt_mem_malloc(mutt_str_len(curenv->real_subj) + 5);
1078 sprintf(env->subject, "Re: %s", curenv->real_subj);
1079 }
1080 else if (!env->subject)
1081 {
1082 const char *const c_empty_subject = cs_subset_string(sub, "empty_subject");
1083 env->subject = mutt_str_dup(c_empty_subject);
1084 }
1085}
void * mutt_mem_malloc(size_t size)
Allocate memory on the heap.
Definition: memory.c:90
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
Definition: string.c:567
char * 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_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 1641 of file send.c.

1643{
1644 struct Email *e_new = email_new();
1645
1646 if (mutt_prepare_template(fp, m, e_new, e_cur, true) < 0)
1647 {
1648 email_free(&e_new);
1649 return -1;
1650 }
1651
1652 if (WithCrypto)
1653 {
1654 /* mutt_prepare_template doesn't always flip on an application bit.
1655 * so fix that here */
1656 if (!(e_new->security & (APPLICATION_SMIME | APPLICATION_PGP)))
1657 {
1658 const bool c_smime_is_default = cs_subset_bool(sub, "smime_is_default");
1659 if (((WithCrypto & APPLICATION_SMIME) != 0) && c_smime_is_default)
1660 e_new->security |= APPLICATION_SMIME;
1661 else if (WithCrypto & APPLICATION_PGP)
1662 e_new->security |= APPLICATION_PGP;
1663 else
1664 e_new->security |= APPLICATION_SMIME;
1665 }
1666
1667 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
1668 if (c_crypt_opportunistic_encrypt)
1669 {
1670 e_new->security |= SEC_OPPENCRYPT;
1672 }
1673 }
1674
1675 struct EmailList el = STAILQ_HEAD_INITIALIZER(el);
1676 emaillist_add_email(&el, e_cur);
1677 int rc = mutt_send_message(SEND_RESEND, e_new, NULL, m, &el, sub);
1678 emaillist_clear(&el);
1679
1680 return rc;
1681}
void crypt_opportunistic_encrypt(struct Email *e)
Can all recipients be determined.
Definition: crypt.c:1023
int emaillist_add_email(struct EmailList *el, struct Email *e)
Add an Email to a list.
Definition: email.c:159
struct Email * email_new(void)
Create a new Email.
Definition: email.c:78
void email_free(struct Email **ptr)
Free an Email.
Definition: email.c:44
void emaillist_clear(struct EmailList *el)
Drop a private list of Emails.
Definition: email.c:138
#define SEC_OPPENCRYPT
Opportunistic encrypt mode.
Definition: lib.h:86
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition: lib.h:90
#define APPLICATION_SMIME
Use SMIME to encrypt/sign.
Definition: lib.h:91
#define WithCrypto
Definition: lib.h:116
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:489
#define STAILQ_HEAD_INITIALIZER(head)
Definition: queue.h:324
int mutt_send_message(SendFlags flags, struct Email *e_templ, const char *tempfile, struct Mailbox *m, struct EmailList *el, struct ConfigSubset *sub)
Send an email.
Definition: send.c:2129
#define SEND_RESEND
Reply using the current email as a template.
Definition: send.h:47
The envelope/body of an email.
Definition: email.h:37
SecurityFlags security
bit 0-10: flags, bit 11,12: application, bit 13: traditional pgp See: ncrypt/lib.h pgplib....
Definition: email.h:41
+ 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 EmailList *  el,
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
elList 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 2129 of file send.c.

2131{
2132 struct Buffer fcc = mutt_buffer_make(0); /* where to copy this message */
2133 FILE *fp_tmp = NULL;
2134 struct Body *pbody = NULL;
2135 int i;
2136 bool free_clear_content = false;
2137
2138 struct Body *clear_content = NULL;
2139 char *pgpkeylist = NULL;
2140 /* save current value of "pgp_sign_as" and "smime_default_key" */
2141 char *pgp_sign_as = NULL;
2142 char *smime_sign_as = NULL;
2143 const char *tag = NULL;
2144 char *err = NULL;
2145 const char *ctype = NULL;
2146 char *finalpath = NULL;
2147 struct EmailNode *en = NULL;
2148 struct Email *e_cur = NULL;
2149
2150 if (el)
2151 en = STAILQ_FIRST(el);
2152 if (en)
2153 e_cur = STAILQ_NEXT(en, entries) ? NULL : en->email;
2154
2155 int rc = -1;
2156
2157#ifdef USE_NNTP
2158 if (flags & SEND_NEWS)
2159 OptNewsSend = true;
2160 else
2161 OptNewsSend = false;
2162#endif
2163
2164 const enum QuadOption c_recall = cs_subset_quad(sub, "recall");
2165
2166 if (!flags && !e_templ && (c_recall != MUTT_NO) && mutt_num_postponed(m, true))
2167 {
2168 /* If the user is composing a new message, check to see if there
2169 * are any postponed messages first. */
2170 enum QuadOption ans = query_quadoption(c_recall, _("Recall postponed message?"));
2171 if (ans == MUTT_ABORT)
2172 return rc;
2173
2174 if (ans == MUTT_YES)
2175 flags |= SEND_POSTPONED;
2176 }
2177
2178 /* Allocate the buffer due to the long lifetime, but
2179 * pre-resize it to ensure there are no NULL data field issues */
2180 mutt_buffer_alloc(&fcc, 1024);
2181
2182 if (flags & SEND_POSTPONED)
2183 {
2185 {
2186 const char *const c_pgp_sign_as = cs_subset_string(sub, "pgp_sign_as");
2187 pgp_sign_as = mutt_str_dup(c_pgp_sign_as);
2188 }
2190 {
2191 const char *const c_smime_sign_as = cs_subset_string(sub, "smime_sign_as");
2192 smime_sign_as = mutt_str_dup(c_smime_sign_as);
2193 }
2194 }
2195
2196 /* Delay expansion of aliases until absolutely necessary--shouldn't
2197 * be necessary unless we are prompting the user or about to execute a
2198 * send-hook. */
2199
2200 if (!e_templ)
2201 {
2202 e_templ = email_new();
2203
2204 if (flags == SEND_POSTPONED)
2205 {
2206 rc = mutt_get_postponed(m, e_templ, &e_cur, &fcc);
2207 if (rc < 0)
2208 {
2209 flags = SEND_POSTPONED;
2210 goto cleanup;
2211 }
2212 flags = rc;
2213#ifdef USE_NNTP
2214 /* If postponed message is a news article, it have
2215 * a "Newsgroups:" header line, then set appropriate flag. */
2216 if (e_templ->env->newsgroups)
2217 {
2218 flags |= SEND_NEWS;
2219 OptNewsSend = true;
2220 }
2221 else
2222 {
2223 flags &= ~SEND_NEWS;
2224 OptNewsSend = false;
2225 }
2226#endif
2227 }
2228
2229 if (flags & (SEND_POSTPONED | SEND_RESEND))
2230 {
2231 struct Body *b = e_templ->body;
2232 while (b->parts)
2233 b = b->parts;
2234 fp_tmp = mutt_file_fopen(b->filename, "a+");
2235 if (!fp_tmp)
2236 {
2238 goto cleanup;
2239 }
2240 }
2241
2242 if (!e_templ->env)
2243 e_templ->env = mutt_env_new();
2244 }
2245
2246 /* Parse and use an eventual list-post header */
2247 if ((flags & SEND_LIST_REPLY) && e_cur && e_cur->env && e_cur->env->list_post)
2248 {
2249 /* Use any list-post header as a template */
2250 mutt_parse_mailto(e_templ->env, NULL, e_cur->env->list_post);
2251 /* We don't let them set the sender's address. */
2252 mutt_addrlist_clear(&e_templ->env->from);
2253 }
2254
2255 if (!(flags & (SEND_KEY | SEND_POSTPONED | SEND_RESEND)))
2256 {
2257 /* When SEND_DRAFT_FILE is set, the caller has already
2258 * created the "parent" body structure. */
2259 if (!(flags & SEND_DRAFT_FILE))
2260 {
2261 pbody = mutt_body_new();
2262 pbody->next = e_templ->body; /* don't kill command-line attachments */
2263 e_templ->body = pbody;
2264
2265 const char *const c_content_type = cs_subset_string(sub, "content_type");
2266 ctype = c_content_type;
2267 if (!ctype)
2268 ctype = "text/plain";
2269 mutt_parse_content_type(ctype, e_templ->body);
2270 e_templ->body->unlink = true;
2271 e_templ->body->use_disp = false;
2272 e_templ->body->disposition = DISP_INLINE;
2273
2274 if (tempfile)
2275 {
2276 fp_tmp = mutt_file_fopen(tempfile, "a+");
2277 e_templ->body->filename = mutt_str_dup(tempfile);
2278 if (flags & SEND_NO_FREE_HEADER)
2279 e_templ->body->unlink = false;
2280 }
2281 else
2282 {
2283 char buf[1024] = { 0 };
2284 mutt_mktemp(buf, sizeof(buf));
2285 fp_tmp = mutt_file_fopen(buf, "w+");
2286 e_templ->body->filename = mutt_str_dup(buf);
2287 }
2288 }
2289 else
2290 {
2291 struct Body *b = e_templ->body;
2292 while (b->parts)
2293 b = b->parts;
2294 fp_tmp = mutt_file_fopen(b->filename, "a+");
2295 }
2296
2297 if (!fp_tmp)
2298 {
2299 mutt_debug(LL_DEBUG1, "can't create tempfile %s (errno=%d)\n",
2300 e_templ->body->filename, errno);
2301 mutt_perror(e_templ->body->filename);
2302 goto cleanup;
2303 }
2304 }
2305
2306 const bool c_reverse_name = cs_subset_bool(sub, "reverse_name");
2307 /* this is handled here so that the user can match ~f in send-hook */
2308 if (e_cur && c_reverse_name && !(flags & (SEND_POSTPONED | SEND_RESEND)))
2309 {
2310 /* We shouldn't have to worry about alias expansion here since we are
2311 * either replying to a real or postponed message, therefore no aliases
2312 * should exist since the user has not had the opportunity to add
2313 * addresses to the list. We just have to ensure the postponed messages
2314 * have their aliases expanded. */
2315
2316 if (!TAILQ_EMPTY(&e_templ->env->from))
2317 {
2318 mutt_debug(LL_DEBUG5, "e_templ->env->from before set_reverse_name: %s\n",
2319 TAILQ_FIRST(&e_templ->env->from)->mailbox);
2320 mutt_addrlist_clear(&e_templ->env->from);
2321 }
2322 set_reverse_name(&e_templ->env->from, e_cur->env, sub);
2323 }
2324
2325 const bool c_reply_with_xorig = cs_subset_bool(sub, "reply_with_xorig");
2326 if (e_cur && c_reply_with_xorig && !(flags & (SEND_POSTPONED | SEND_RESEND | SEND_FORWARD)))
2327 {
2328 /* We shouldn't have to worry about freeing 'e_templ->env->from' before
2329 * setting it here since this code will only execute when doing some
2330 * sort of reply. The pointer will only be set when using the -H command
2331 * line option.
2332 *
2333 * If there is already a from address recorded in 'e_templ->env->from',
2334 * then it theoretically comes from `$reverse_name` handling, and we don't use
2335 * the 'X-Orig-To header'. */
2336 if (!TAILQ_EMPTY(&e_cur->env->x_original_to) && TAILQ_EMPTY(&e_templ->env->from))
2337 {
2338 mutt_addrlist_copy(&e_templ->env->from, &e_cur->env->x_original_to, false);
2339 mutt_debug(LL_DEBUG5, "e_templ->env->from extracted from X-Original-To: header: %s\n",
2340 TAILQ_FIRST(&e_templ->env->from)->mailbox);
2341 }
2342 }
2343
2344 const bool c_resume_draft_files = cs_subset_bool(sub, "resume_draft_files");
2345 if (!(flags & (SEND_POSTPONED | SEND_RESEND)) &&
2346 !((flags & SEND_DRAFT_FILE) && c_resume_draft_files))
2347 {
2348 if ((flags & (SEND_REPLY | SEND_FORWARD | SEND_TO_SENDER)) &&
2349 (envelope_defaults(e_templ->env, el, flags, sub) == -1))
2350 {
2351 goto cleanup;
2352 }
2353
2354 const bool c_hdrs = cs_subset_bool(sub, "hdrs");
2355 if (c_hdrs)
2356 process_user_recips(e_templ->env);
2357
2358 /* Expand aliases and remove duplicates/crossrefs */
2359 mutt_expand_aliases_env(e_templ->env);
2360
2361 if (flags & SEND_REPLY)
2362 mutt_fix_reply_recipients(e_templ->env, sub);
2363
2364#ifdef USE_NNTP
2365 if ((flags & SEND_NEWS) && (m && m->type == MUTT_NNTP) && !e_templ->env->newsgroups)
2366 {
2367 e_templ->env->newsgroups = mutt_str_dup(((struct NntpMboxData *) m->mdata)->group);
2368 }
2369#endif
2370
2371 const bool c_auto_edit = cs_subset_bool(sub, "auto_edit");
2372 const bool c_edit_headers = cs_subset_bool(sub, "edit_headers");
2373 const bool c_fast_reply = cs_subset_bool(sub, "fast_reply");
2374 if (!(flags & SEND_BATCH) && !(c_auto_edit && c_edit_headers) &&
2375 !((flags & SEND_REPLY) && c_fast_reply))
2376 {
2377 if (edit_envelope(e_templ->env, flags, sub) == -1)
2378 goto cleanup;
2379 }
2380
2381 /* the from address must be set here regardless of whether or not
2382 * $use_from is set so that the '~P' (from you) operator in send-hook
2383 * patterns will work. if $use_from is unset, the from address is killed
2384 * after send-hooks are evaluated */
2385
2386 const bool killfrom = TAILQ_EMPTY(&e_templ->env->from);
2387 if (killfrom)
2388 {
2390 }
2391
2392 if ((flags & SEND_REPLY) && e_cur)
2393 {
2394 /* change setting based upon message we are replying to */
2396
2397 /* set the replied flag for the message we are generating so that the
2398 * user can use ~Q in a send-hook to know when reply-hook's are also
2399 * being used. */
2400 e_templ->replied = true;
2401 }
2402
2403 /* change settings based upon recipients */
2404
2405 mutt_message_hook(NULL, e_templ, MUTT_SEND_HOOK);
2406
2407 /* Unset the replied flag from the message we are composing since it is
2408 * no longer required. This is done here because the FCC'd copy of
2409 * this message was erroneously get the 'R'eplied flag when stored in
2410 * a maildir-style mailbox. */
2411 e_templ->replied = false;
2412
2413 /* $use_from and/or $from might have changed in a send-hook */
2414 if (killfrom)
2415 {
2416 mutt_addrlist_clear(&e_templ->env->from);
2417
2418 const bool c_use_from = cs_subset_bool(sub, "use_from");
2419 if (c_use_from && !(flags & (SEND_POSTPONED | SEND_RESEND)))
2421 }
2422
2423 if (c_hdrs)
2424 process_user_header(e_templ->env);
2425
2426 if (flags & SEND_BATCH)
2427 {
2428 if (mutt_file_copy_stream(stdin, fp_tmp) < 1)
2429 {
2430 mutt_error(_("Refusing to send an empty email"));
2431 mutt_message(_("Try: echo | neomutt -s 'subject' user@example.com"));
2432 goto cleanup;
2433 }
2434 }
2435
2436 if (!(flags & SEND_BATCH))
2437 mutt_make_greeting(e_templ, fp_tmp, sub);
2438
2439 const bool c_sig_on_top = cs_subset_bool(sub, "sig_on_top");
2440 const char *const c_editor = cs_subset_string(sub, "editor");
2441 if (c_sig_on_top && !(flags & (SEND_KEY | SEND_BATCH)) && c_editor)
2442 {
2443 append_signature(fp_tmp, sub);
2444 }
2445
2446 /* include replies/forwarded messages, unless we are given a template */
2447 if (!tempfile && (m || !(flags & (SEND_REPLY | SEND_FORWARD))) &&
2448 (generate_body(fp_tmp, e_templ, flags, m, el, sub) == -1))
2449 {
2450 goto cleanup;
2451 }
2452
2453 if (!c_sig_on_top && !(flags & (SEND_KEY | SEND_BATCH)) && c_editor)
2454 {
2455 append_signature(fp_tmp, sub);
2456 }
2457 }
2458
2459 /* Only set format=flowed for new messages. postponed/resent/draftfiles
2460 * should respect the original email.
2461 *
2462 * This is set here so that send-hook can be used to turn the option on. */
2463 if (!(flags & (SEND_KEY | SEND_POSTPONED | SEND_RESEND | SEND_DRAFT_FILE)))
2464 {
2465 const bool c_text_flowed = cs_subset_bool(sub, "text_flowed");
2466 if (c_text_flowed && is_text_plain(e_templ->body))
2467 {
2468 mutt_param_set(&e_templ->body->parameter, "format", "flowed");
2469 }
2470 }
2471
2472 /* This hook is even called for postponed messages, and can, e.g., be used
2473 * for setting the editor, the sendmail path, or the envelope sender. */
2474 mutt_message_hook(NULL, e_templ, MUTT_SEND2_HOOK);
2475
2476 /* wait until now to set the real name portion of our return address so
2477 * that $real_name can be set in a send-hook */
2478 {
2479 struct Address *from = TAILQ_FIRST(&e_templ->env->from);
2480 if (from && !from->personal && !(flags & (SEND_RESEND | SEND_POSTPONED)))
2481 {
2482 const char *const c_real_name = cs_subset_string(sub, "real_name");
2483 from->personal = mutt_str_dup(c_real_name);
2484 }
2485 }
2486
2487 if (!(((WithCrypto & APPLICATION_PGP) != 0) && (flags & SEND_KEY)))
2488 mutt_file_fclose(&fp_tmp);
2489
2490 if (!(flags & SEND_BATCH))
2491 {
2492 struct stat st = { 0 };
2493 time_t mtime;
2494 struct Body *b = e_templ->body;
2495 while (b->parts)
2496 b = b->parts;
2497 mtime = mutt_file_decrease_mtime(b->filename, NULL);
2498 if (mtime == (time_t) -1)
2499 {
2501 goto cleanup;
2502 }
2503
2504 mutt_update_encoding(b, sub);
2505
2506 const bool c_edit_headers = cs_subset_bool(sub, "edit_headers");
2507 const bool c_auto_edit = cs_subset_bool(sub, "auto_edit");
2508 const enum QuadOption c_forward_edit = cs_subset_quad(sub, "forward_edit");
2509
2510 /* Select whether or not the user's editor should be called now. We
2511 * don't want to do this when:
2512 * 1) we are sending a key/cert
2513 * 2) we are forwarding a message and the user doesn't want to edit it.
2514 * This is controlled by the quadoption $forward_edit. However, if
2515 * both $edit_headers and $auto_edit are set, we want to ignore the
2516 * setting of $forward_edit because the user probably needs to add the
2517 * recipients. */
2518 if (!(flags & SEND_KEY) &&
2519 (((flags & SEND_FORWARD) == 0) || (c_edit_headers && c_auto_edit) ||
2520 (query_quadoption(c_forward_edit, _("Edit forwarded message?")) == MUTT_YES)))
2521 {
2522 /* If the this isn't a text message, look for a mailcap edit command */
2523 const char *const c_editor = cs_subset_string(sub, "editor");
2524 b = e_templ->body;
2525 while (b->parts)
2526 b = b->parts;
2527 if (mutt_needs_mailcap(b))
2528 {
2529 if (!mutt_edit_attachment(b))
2530 goto cleanup;
2531 }
2532 else if (c_edit_headers)
2533 {
2534 mutt_env_to_local(e_templ->env);
2535 mutt_edit_headers(c_editor, b->filename, e_templ, &fcc);
2536 mutt_env_to_intl(e_templ->env, NULL, NULL);
2537 }
2538 else
2539 {
2540 mutt_edit_file(c_editor, b->filename);
2541 if (stat(b->filename, &st) == 0)
2542 {
2543 if (mtime != st.st_mtime)
2545 }
2546 else
2547 {
2549 }
2550 }
2551
2552 mutt_message_hook(NULL, e_templ, MUTT_SEND2_HOOK);
2553 }
2554
2556 {
2557 if (stat(e_templ->body->filename, &st) == 0)
2558 {
2559 const enum QuadOption c_abort_unmodified = cs_subset_quad(sub, "abort_unmodified");
2560
2561 /* if the file was not modified, bail out now */
2562 if ((mtime == st.st_mtime) && !e_templ->body->next &&
2563 (query_quadoption(c_abort_unmodified, _("Abort unmodified message?")) == MUTT_YES))
2564 {
2565 mutt_message(_("Aborted unmodified message"));
2566 goto cleanup;
2567 }
2568 }
2569 else
2570 mutt_perror(e_templ->body->filename);
2571 }
2572 }
2573
2574 /* Set the message security unless:
2575 * 1) crypto support is not enabled (WithCrypto==0)
2576 * 2) pgp: header field was present during message editing with $edit_headers (e_templ->security != 0)
2577 * 3) we are resending a message
2578 * 4) we are recalling a postponed message (don't override the user's saved settings)
2579 * 5) we are in batch mode
2580 *
2581 * This is done after allowing the user to edit the message so that security
2582 * settings can be configured with send2-hook and $edit_headers. */
2583 if ((WithCrypto != 0) && (e_templ->security == 0) &&
2584 !(flags & (SEND_BATCH | SEND_POSTPONED | SEND_RESEND)))
2585 {
2586 bool c_autocrypt = false;
2587 bool c_autocrypt_reply = false;
2588
2589#ifdef USE_AUTOCRYPT
2590 c_autocrypt = cs_subset_bool(sub, "autocrypt");
2591 c_autocrypt_reply = cs_subset_bool(sub, "autocrypt_reply");
2592#endif
2593
2594 if (c_autocrypt && c_autocrypt_reply && e_cur && (e_cur->security & SEC_AUTOCRYPT))
2595 {
2597 }
2598 else
2599 {
2600 const bool c_crypt_auto_sign = cs_subset_bool(sub, "crypt_auto_sign");
2601 const bool c_crypt_auto_encrypt = cs_subset_bool(sub, "crypt_auto_encrypt");
2602 const bool c_crypt_reply_encrypt = cs_subset_bool(sub, "crypt_reply_encrypt");
2603 const bool c_crypt_reply_sign = cs_subset_bool(sub, "crypt_reply_sign");
2604 const bool c_crypt_reply_sign_encrypted = cs_subset_bool(sub, "crypt_reply_sign_encrypted");
2605
2606 if (c_crypt_auto_sign)
2607 e_templ->security |= SEC_SIGN;
2608 if (c_crypt_auto_encrypt)
2609 e_templ->security |= SEC_ENCRYPT;
2610 if (c_crypt_reply_encrypt && e_cur && (e_cur->security & SEC_ENCRYPT))
2611 e_templ->security |= SEC_ENCRYPT;
2612 if (c_crypt_reply_sign && e_cur && (e_cur->security & SEC_SIGN))
2613 e_templ->security |= SEC_SIGN;
2614 if (c_crypt_reply_sign_encrypted && e_cur && (e_cur->security & SEC_ENCRYPT))
2615 e_templ->security |= SEC_SIGN;
2616
2617 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
2618
2619 if (((WithCrypto & APPLICATION_PGP) != 0) &&
2620 ((e_templ->security & (SEC_ENCRYPT | SEC_SIGN)) || c_crypt_opportunistic_encrypt))
2621 {
2622 const bool c_pgp_auto_inline = cs_subset_bool(sub, "pgp_auto_inline");
2623 const bool c_pgp_reply_inline = cs_subset_bool(sub, "pgp_reply_inline");
2624
2625 if (c_pgp_auto_inline)
2626 e_templ->security |= SEC_INLINE;
2627 if (c_pgp_reply_inline && e_cur && (e_cur->security & SEC_INLINE))
2628 e_templ->security |= SEC_INLINE;
2629 }
2630 }
2631
2632 const bool c_crypt_opportunistic_encrypt = cs_subset_bool(sub, "crypt_opportunistic_encrypt");
2633
2634 if (e_templ->security || c_crypt_opportunistic_encrypt)
2635 {
2636 const bool c_crypt_auto_pgp = cs_subset_bool(sub, "crypt_auto_pgp");
2637 const bool c_crypt_auto_smime = cs_subset_bool(sub, "crypt_auto_smime");
2638
2639 /* When replying / forwarding, use the original message's
2640 * crypto system. According to the documentation,
2641 * smime_is_default should be disregarded here.
2642 *
2643 * Problem: At least with forwarding, this doesn't really
2644 * make much sense. Should we have an option to completely
2645 * disable individual mechanisms at run-time? */
2646 if (e_cur)
2647 {
2648 if (((WithCrypto & APPLICATION_PGP) != 0) && c_crypt_auto_pgp &&
2649 (e_cur->security & APPLICATION_PGP))
2650 {
2651 e_templ->security |= APPLICATION_PGP;
2652 }
2653 else if (((WithCrypto & APPLICATION_SMIME) != 0) &&
2654 c_crypt_auto_smime && (e_cur->security & APPLICATION_SMIME))
2655 {
2656 e_templ->security |= APPLICATION_SMIME;
2657 }
2658 }
2659
2660 const bool c_smime_is_default = cs_subset_bool(sub, "smime_is_default");
2661
2662 /* No crypto mechanism selected? Use availability + smime_is_default
2663 * for the decision. */
2664 if (!(e_templ->security & (APPLICATION_SMIME | APPLICATION_PGP)))
2665 {
2666 if (((WithCrypto & APPLICATION_SMIME) != 0) && c_crypt_auto_smime && c_smime_is_default)
2667 {
2668 e_templ->security |= APPLICATION_SMIME;
2669 }
2670 else if (((WithCrypto & APPLICATION_PGP) != 0) && c_crypt_auto_pgp)
2671 {
2672 e_templ->security |= APPLICATION_PGP;
2673 }
2674 else if (((WithCrypto & APPLICATION_SMIME) != 0) && c_crypt_auto_smime)
2675 {
2676 e_templ->security |= APPLICATION_SMIME;
2677 }
2678 }
2679 }
2680
2681 /* opportunistic encrypt relies on SMIME or PGP already being selected */
2682 if (c_crypt_opportunistic_encrypt)
2683 {
2684 /* If something has already enabled encryption, e.g. `$crypt_auto_encrypt`
2685 * or `$crypt_reply_encrypt`, then don't enable opportunistic encrypt for
2686 * the message. */
2687 if (!(e_templ->security & (SEC_ENCRYPT | SEC_AUTOCRYPT)))
2688 {
2689 e_templ->security |= SEC_OPPENCRYPT;
2691 }
2692 }
2693
2694 /* No permissible mechanisms found. Don't sign or encrypt. */
2695 if (!(e_templ->security & (APPLICATION_SMIME | APPLICATION_PGP)))
2696 e_templ->security = SEC_NO_FLAGS;
2697 }
2698
2699 /* Deal with the corner case where the crypto module backend is not available.
2700 * This can happen if configured without PGP/SMIME and with GPGME, but
2701 * $crypt_use_gpgme is unset. */
2702 if (e_templ->security && !crypt_has_module_backend(e_templ->security))
2703 {
2704 mutt_error(_("No crypto backend configured. Disabling message security setting."));
2705 e_templ->security = SEC_NO_FLAGS;
2706 }
2707
2708 /* specify a default fcc. if we are in batchmode, only save a copy of
2709 * the message if the value of $copy is yes or ask-yes */
2710
2711 const enum QuadOption c_copy = cs_subset_quad(sub, "copy");
2712
2713 if (mutt_buffer_is_empty(&fcc) && !(flags & SEND_POSTPONED_FCC) &&
2714 (!(flags & SEND_BATCH) || (c_copy & 0x1)))
2715 {
2716 /* set the default FCC */
2717 const bool killfrom = TAILQ_EMPTY(&e_templ->env->from);
2718 if (killfrom)
2719 {
2721 }
2722 mutt_select_fcc(&fcc, e_templ);
2723 if (killfrom)
2724 {
2725 mutt_addrlist_clear(&e_templ->env->from);
2726 }
2727 }
2728
2729 mutt_rfc3676_space_stuff(e_templ);
2730
2731 mutt_update_encoding(e_templ->body, sub);
2732
2733 if (!(flags & SEND_BATCH))
2734 {
2735 main_loop:
2736
2738 i = mutt_compose_menu(e_templ, &fcc,
2740 sub);
2741 if (i == -1)
2742 {
2743/* abort */
2744#ifdef USE_NNTP
2745 if (flags & SEND_NEWS)
2746 mutt_message(_("Article not posted"));
2747 else
2748#endif
2749 mutt_message(_("Mail not sent"));
2750 goto cleanup;
2751 }
2752 else if (i == 1)
2753 {
2754 if (postpone_message(e_templ, e_cur, mutt_buffer_string(&fcc), flags, sub) != 0)
2755 goto main_loop;
2756 mutt_message(_("Message postponed"));
2757 rc = 1;
2758 goto cleanup;
2759 }
2760 }
2761
2762#ifdef USE_NNTP
2763 if (!(flags & SEND_NEWS))
2764#endif
2765 if ((mutt_addrlist_count_recips(&e_templ->env->to) == 0) &&
2766 (mutt_addrlist_count_recips(&e_templ->env->cc) == 0) &&
2767 (mutt_addrlist_count_recips(&e_templ->env->bcc) == 0))
2768 {
2769 if (flags & SEND_BATCH)
2770 {
2771 puts(_("No recipients specified"));
2772 goto cleanup;
2773 }
2774
2775 mutt_warning(_("No recipients specified"));
2776 goto main_loop;
2777 }
2778
2779 if (mutt_env_to_intl(e_templ->env, &tag, &err))
2780 {
2781 mutt_error(_("Bad IDN in '%s': '%s'"), tag, err);
2782 FREE(&err);
2783 if (flags & SEND_BATCH)
2784 goto cleanup;
2785 goto main_loop;
2786 }
2787
2788 const enum QuadOption c_abort_nosubject = cs_subset_quad(sub, "abort_nosubject");
2789
2790 if (!e_templ->env->subject && !(flags & SEND_BATCH) &&
2791 (query_quadoption(c_abort_nosubject, _("No subject, abort sending?")) != MUTT_NO))
2792 {
2793 /* if the abort is automatic, print an error message */
2794 if (c_abort_nosubject == MUTT_YES)
2795 mutt_error(_("No subject specified"));
2796 goto main_loop;
2797 }
2798#ifdef USE_NNTP
2799 if ((flags & SEND_NEWS) && !e_templ->env->subject)
2800 {
2801 mutt_error(_("No subject specified"));
2802 goto main_loop;
2803 }
2804
2805 if ((flags & SEND_NEWS) && !e_templ->env->newsgroups)
2806 {
2807 mutt_error(_("No newsgroup specified"));
2808 goto main_loop;
2809 }
2810#endif
2811
2812 if (!(flags & SEND_BATCH) && abort_for_missing_attachments(e_templ->body, sub))
2813 {
2814 goto main_loop;
2815 }
2816
2817 if (e_templ->body->next)
2818 e_templ->body = mutt_make_multipart(e_templ->body);
2819
2820 /* Ok, we need to do it this way instead of handling all fcc stuff in
2821 * one place in order to avoid going to main_loop with encoded "env"
2822 * in case of error. Ugh. */
2823
2824 mutt_encode_descriptions(e_templ->body, true, sub);
2825
2826 /* Make sure that clear_content and free_clear_content are
2827 * properly initialized -- we may visit this particular place in
2828 * the code multiple times, including after a failed call to
2829 * mutt_protect(). */
2830
2831 clear_content = NULL;
2832 free_clear_content = false;
2833
2834 if (WithCrypto)
2835 {
2836 if (e_templ->security & (SEC_ENCRYPT | SEC_SIGN | SEC_AUTOCRYPT))
2837 {
2838 /* save the decrypted attachments */
2839 clear_content = e_templ->body;
2840
2841 if ((crypt_get_keys(e_templ, &pgpkeylist, 0) == -1) ||
2842 (mutt_protect(e_templ, pgpkeylist, false) == -1))
2843 {
2844 if (mutt_istr_equal(e_templ->body->subtype, "mixed"))
2845 e_templ->body = mutt_remove_multipart(e_templ->body);
2846
2847 FREE(&pgpkeylist);
2848
2849 decode_descriptions(e_templ->body);
2850 goto main_loop;
2851 }
2852 mutt_encode_descriptions(e_templ->body, false, sub);
2853 }
2854
2855 /* at this point, e_templ->body is one of the following three things:
2856 * - multipart/signed. In this case, clear_content is a child
2857 * - multipart/encrypted. In this case, clear_content exists independently
2858 * - application/pgp. In this case, clear_content exists independently
2859 * - something else. In this case, it's the same as clear_content */
2860
2861 /* This is ugly -- lack of "reporting back" from mutt_protect(). */
2862
2863 if (clear_content && (e_templ->body != clear_content) &&
2864 (e_templ->body->parts != clear_content))
2865 free_clear_content = true;
2866 }
2867
2868 if (!OptNoCurses)
2869 mutt_message(_("Sending message..."));
2870
2871 mutt_prepare_envelope(e_templ->env, true, sub);
2872
2873 const bool c_fcc_before_send = cs_subset_bool(sub, "fcc_before_send");
2874 if (c_fcc_before_send)
2875 save_fcc(m, e_templ, &fcc, clear_content, pgpkeylist, flags, &finalpath, sub);
2876
2877 i = invoke_mta(m, e_templ, sub);
2878 if (i < 0)
2879 {
2880 if (!(flags & SEND_BATCH))
2881 {
2882 if (!WithCrypto)
2883 ; // do nothing
2884 else if ((e_templ->security & (SEC_ENCRYPT | SEC_AUTOCRYPT)) ||
2885 ((e_templ->security & SEC_SIGN) && (e_templ->body->type == TYPE_APPLICATION)))
2886 {
2887 if (e_templ->body != clear_content)
2888 {
2889 mutt_body_free(&e_templ->body); /* destroy PGP data */
2890 e_templ->body = clear_content; /* restore clear text. */
2891 }
2892 }
2893 else if ((e_templ->security & SEC_SIGN) && (e_templ->body->type == TYPE_MULTIPART))
2894 {
2895 mutt_body_free(&e_templ->body->parts->next); /* destroy sig */
2896 if (mutt_istr_equal(e_templ->body->subtype, "mixed") ||
2897 mutt_istr_equal(e_templ->body->subtype, "signed"))
2898 {
2899 e_templ->body = mutt_remove_multipart(e_templ->body);
2900 }
2901 }
2902
2903 FREE(&pgpkeylist);
2904 mutt_env_free(&e_templ->body->mime_headers); /* protected headers */
2905 mutt_param_delete(&e_templ->body->parameter, "protected-headers");
2906 if (mutt_istr_equal(e_templ->body->subtype, "mixed"))
2907 e_templ->body = mutt_remove_multipart(e_templ->body);
2908 decode_descriptions(e_templ->body);
2909 mutt_unprepare_envelope(e_templ->env);
2910 FREE(&finalpath);
2911 goto main_loop;
2912 }
2913 else
2914 {
2915 puts(_("Could not send the message"));
2916 goto cleanup;
2917 }
2918 }
2919
2920 if (!c_fcc_before_send)
2921 save_fcc(m, e_templ, &fcc, clear_content, pgpkeylist, flags, &finalpath, sub);
2922
2923 if (!OptNoCurses)
2924 {
2925 mutt_message((i != 0) ? _("Sending in background") :
2926 (flags & SEND_NEWS) ? _("Article posted") : /* USE_NNTP */
2927 _("Mail sent"));
2928#ifdef USE_NOTMUCH
2929 const bool c_nm_record = cs_subset_bool(sub, "nm_record");
2930 if (c_nm_record)
2931 nm_record_message(m, finalpath, e_cur);
2932#endif
2933 mutt_sleep(0);
2934 }
2935
2936 if (WithCrypto)
2937 FREE(&pgpkeylist);
2938
2939 if ((WithCrypto != 0) && free_clear_content)
2940 mutt_body_free(&clear_content);
2941
2942 /* set 'replied' flag only if the user didn't change/remove
2943 * In-Reply-To: and References: headers during edit */
2944 if (flags & SEND_REPLY)
2945 {
2946 if (!(flags & SEND_POSTPONED) && m)
2947 {
2948 STAILQ_FOREACH(en, el, entries)
2949 {
2950 mutt_set_flag(m, en->email, MUTT_REPLIED, is_reply(en->email, e_templ));
2951 }
2952 }
2953 }
2954
2955 rc = 0;
2956
2957cleanup:
2958 mutt_buffer_dealloc(&fcc);
2959
2960 if (flags & SEND_POSTPONED)
2961 {
2963 {
2964 cs_subset_str_string_set(sub, "pgp_sign_as", pgp_sign_as, NULL);
2965 FREE(&pgp_sign_as);
2966 }
2968 {
2969 cs_subset_str_string_set(sub, "smime_sign_as", smime_sign_as, NULL);
2970 FREE(&smime_sign_as);
2971 }
2972 }
2973
2974 mutt_file_fclose(&fp_tmp);
2975 if (!(flags & SEND_NO_FREE_HEADER))
2976 email_free(&e_templ);
2977
2978 FREE(&finalpath);
2979 return rc;
2980}
void mutt_addrlist_append(struct AddressList *al, struct Address *a)
Append an Address to an AddressList.
Definition: address.c:1455
int mutt_addrlist_count_recips(const struct AddressList *al)
Count the number of Addresses with valid recipients.
Definition: address.c:844
void mutt_expand_aliases_env(struct Envelope *env)
Expand aliases in all the fields of an Envelope.
Definition: alias.c:312
struct Buffer mutt_buffer_make(size_t size)
Make a new buffer on the stack.
Definition: buffer.c:67
bool mutt_buffer_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition: buffer.c:298
void mutt_buffer_dealloc(struct Buffer *buf)
Release the memory allocated by a buffer.
Definition: buffer.c:347
#define MUTT_COMPOSE_NOFREEHEADER
Definition: lib.h:50
int mutt_compose_menu(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope.
Definition: compose.c:307
int mutt_protect(struct Email *e, char *keylist, bool postpone)
Encrypt and/or sign a message.
Definition: crypt.c:159
int crypt_get_keys(struct Email *e, char **keylist, bool oppenc_mode)
Check we have all the keys we need.
Definition: crypt.c:939
bool crypt_has_module_backend(SecurityFlags type)
Is there a crypto backend for a given type?
Definition: cryptglue.c:171
void mutt_edit_file(const char *editor, const char *file)
Let the user edit a file.
Definition: curs_lib.c:311
void mutt_body_free(struct Body **ptr)
Free a Body.
Definition: body.c:57
struct Body * mutt_body_new(void)
Create a new Body.
Definition: body.c:43
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:326
void mutt_env_free(struct Envelope **ptr)
Free an Envelope.
Definition: envelope.c:97
struct Envelope * mutt_env_new(void)
Create a new Envelope.
Definition: envelope.c:43
void mutt_env_to_local(struct Envelope *env)
Convert an Envelope's Address fields to local format.
Definition: envelope.c:288
int mutt_file_copy_stream(FILE *fp_in, FILE *fp_out)
Copy the contents of one file into another.
Definition: file.c:259
FILE * mutt_file_fopen(const char *path, const char *mode)
Call fopen() safely.
Definition: file.c:634
int mutt_file_fclose(FILE **fp)
Close a FILE handle (and NULL the pointer)
Definition: file.c:151
time_t mutt_file_decrease_mtime(const char *fp, struct stat *st)
Decrease a file's modification time by 1 second.
Definition: file.c:1035
bool OptNoCurses
(pseudo) when sending in batch mode
Definition: globals.c:81
#define mutt_warning(...)
Definition: logging.h:85
#define mutt_message(...)
Definition: logging.h:86
#define mutt_debug(LEVEL,...)
Definition: logging.h:84
#define mutt_perror(...)
Definition: logging.h:88
void mutt_select_fcc(struct Buffer *path, struct Email *e)
Select the FCC path for an email.
Definition: hook.c:774
void mutt_message_hook(struct Mailbox *m, struct Email *e, HookFlags type)
Perform a message hook.
Definition: hook.c:656
#define MUTT_SEND_HOOK
send-hook: when composing a new email
Definition: hook.h:40
#define MUTT_SEND2_HOOK
send2-hook: when changing fields in the compose menu
Definition: hook.h:49
#define MUTT_REPLY_HOOK
reply-hook: when replying to an email
Definition: hook.h:48
@ LL_DEBUG5
Log at debug level 5.
Definition: logging.h:44
@ LL_DEBUG1
Log at debug level 1.
Definition: logging.h:40
@ MUTT_NNTP
'NNTP' (Usenet) Mailbox type
Definition: mailbox.h:49
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition: mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition: mime.h:33
@ DISP_INLINE
Content is inline.
Definition: mime.h:62
struct Body * mutt_remove_multipart(struct Body *b)
Extract the multipart body if it exists.
Definition: multipart.c:126
struct Body * mutt_make_multipart(struct Body *b)
Create a multipart email.
Definition: multipart.c:100
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition: string.c:819
@ MUTT_REPLIED
Messages that have been replied to.
Definition: mutt.h:80
bool mutt_edit_attachment(struct Body *a)
Edit an attachment.
Definition: mutt_attach.c:260
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: mutt_header.c:173
void mutt_buffer_pretty_mailbox(struct Buffer *buf)
Shorten a mailbox path using '~' or '='.
Definition: muttlib.c:600
bool mutt_needs_mailcap(struct Body *m)
Does this type need a mailcap entry do display.
Definition: muttlib.c:405
void mutt_sleep(short s)
Sleep for a while.
Definition: muttlib.c:1456
#define mutt_mktemp(buf, buflen)
Definition: muttlib.h:71
#define SEC_INLINE
Email has an inline signature.
Definition: lib.h:85
#define SEC_AUTOCRYPT
(Autocrypt) Message will be, or was Autocrypt encrypt+signed
Definition: lib.h:87
#define SEC_NO_FLAGS
No flags are set.
Definition: lib.h:77
#define SEC_ENCRYPT
Email is encrypted.
Definition: lib.h:78
#define SEC_AUTOCRYPT_OVERRIDE
(Autocrypt) Indicates manual set/unset of encryption
Definition: lib.h:88
#define SEC_SIGN
Email is signed.
Definition: lib.h:79
int nm_record_message(struct Mailbox *m, char *path, struct Email *e)
Add a message to the Notmuch database.
Definition: notmuch.c:1871
void mutt_param_delete(struct ParameterList *pl, const char *attribute)
Delete a matching Parameter.
Definition: parameter.c:142
void mutt_param_set(struct ParameterList *pl, const char *attribute, const char *value)
Set a Parameter.
Definition: parameter.c:110
void mutt_parse_content_type(const char *s, struct Body *ct)
Parse a content type.
Definition: parse.c:424
bool mutt_parse_mailto(struct Envelope *env, char **body, const char *src)
Parse a mailto:// url.
Definition: parse.c:1670
int mutt_num_postponed(struct Mailbox *m, bool force)
Return the number of postponed messages.
Definition: postpone.c:69
int mutt_get_postponed(struct Mailbox *m_cur, struct Email *hdr, struct Email **cur, struct Buffer *fcc)
Recall a postponed message.
Definition: postpone.c:661
#define mutt_set_flag(m, e, flag, bf)
Definition: protos.h:63
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
#define STAILQ_FIRST(head)
Definition: queue.h:350
#define STAILQ_FOREACH(var, head, field)
Definition: queue.h:352
#define STAILQ_NEXT(elm, field)
Definition: queue.h:400
void mutt_rfc3676_space_stuff(struct Email *e)
Perform RFC3676 space stuffing on an Email.
Definition: rfc3676.c:482
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:1952
static int generate_body(FILE *fp_tmp, struct Email *e, SendFlags flags, struct Mailbox *m, struct EmailList *el, struct ConfigSubset *sub)
Create a new email body.
Definition: send.c:1223
static bool is_reply(struct Email *reply, struct Email *orig)
Is one email a reply to another?
Definition: send.c:1690
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:1755
void mutt_fix_reply_recipients(struct Envelope *env, struct ConfigSubset *sub)
Remove duplicate recipients.
Definition: send.c:1016
static int envelope_defaults(struct Envelope *env, struct EmailList *el, SendFlags flags, struct ConfigSubset *sub)
Fill in some defaults for a new email.
Definition: send.c:1151
static void mutt_make_greeting(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add greetings string.
Definition: send.c:743
static int invoke_mta(struct Mailbox *m, struct Email *e, struct ConfigSubset *sub)
Send an email.
Definition: send.c:1495
struct Address * mutt_default_from(struct ConfigSubset *sub)
Get a default 'from' Address.
Definition: send.c:1462
static void process_user_recips(struct Envelope *env)
Process the user headers.
Definition: send.c:371
static void process_user_header(struct Envelope *env)
Process the user headers.
Definition: send.c:398
static int edit_envelope(struct Envelope *en, SendFlags flags, struct ConfigSubset *sub)
Edit Envelope fields.
Definition: send.c:221
static bool abort_for_missing_attachments(const struct Body *b, struct ConfigSubset *sub)
Should we abort sending because of missing attachments?
Definition: send.c:2077
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:1410
static void fix_end_of_file(const char *data)
Ensure a file ends with a linefeed.
Definition: send.c:1616
static bool is_text_plain(const struct Body *b)
Is a Body a text/plain MIME part?
Definition: send.c:2066
static void decode_descriptions(struct Body *b)
RFC2047 decode them in case of an error.
Definition: send.c:1599
static void append_signature(FILE *fp, struct ConfigSubset *sub)
Append a signature to an email.
Definition: send.c:95
#define SEND_POSTPONED_FCC
Used by mutt_get_postponed() to signal that the Mutt-Fcc header field was present.
Definition: send.h:48
#define SEND_BATCH
Send email in batch mode (without user interaction)
Definition: send.h:45
#define SEND_NO_FREE_HEADER
Used by the -E flag.
Definition: send.h:49
#define SEND_DRAFT_FILE
Used by the -H flag.
Definition: send.h:50
#define SEND_KEY
Mail a PGP public key.
Definition: send.h:46
#define SEND_POSTPONED
Recall a postponed email.
Definition: send.h:44
#define SEND_REPLY
Reply to sender.
Definition: send.h:40
#define SEND_NEWS
Reply to a news article.
Definition: send.h:53
#define SEND_FORWARD
Forward email.
Definition: send.h:43
void mutt_unprepare_envelope(struct Envelope *env)
Undo the encodings of mutt_prepare_envelope()
Definition: sendlib.c:808
void mutt_prepare_envelope(struct Envelope *env, bool final, struct ConfigSubset *sub)
Prepare an email header.
Definition: sendlib.c:769
void mutt_update_encoding(struct Body *a, struct ConfigSubset *sub)
Update the encoding type.
Definition: sendlib.c:411
char * personal
Real name of address.
Definition: address.h:37
struct Body * parts
parts of a multipart or message/rfc822
Definition: body.h:72
bool unlink
If true, filename should be unlink()ed before free()ing this structure.
Definition: body.h:67
struct Envelope * mime_headers
Memory hole protected headers.
Definition: body.h:75
struct ParameterList parameter
Parameters of the content-type.
Definition: body.h:62
bool use_disp
Content-Disposition uses filename= ?
Definition: body.h:47
unsigned int disposition
content-disposition, ContentDisposition
Definition: body.h:42
char * subtype
content-type subtype
Definition: body.h:60
unsigned int type
content-type primary type, ContentType
Definition: body.h:40
char * filename
When sending a message, this is the file to which this structure refers.
Definition: body.h:58
List of Emails.
Definition: email.h:131
struct Email * email
Email in the list.
Definition: email.h:132
struct Envelope * env
Envelope information.
Definition: email.h:66
struct Body * body
List of MIME parts.
Definition: email.h:67
bool replied
Email has been replied to.
Definition: email.h:49
struct AddressList x_original_to
Email's 'X-Orig-to'.
Definition: envelope.h:66
char * newsgroups
List of newsgroups.
Definition: envelope.h:79
struct AddressList bcc
Email's 'Bcc' list.
Definition: envelope.h:62
char * list_post
This stores a mailto URL, or nothing.
Definition: envelope.h:67
enum MailboxType type
Mailbox type.
Definition: mailbox.h:102
void * mdata
Driver specific data.
Definition: mailbox.h:132
NNTP-specific Mailbox data -.
Definition: mdata.h:33
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:408
+ 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 1337 of file send.c.

1338{
1339 /* Only generate the Mail-Followup-To if the user has requested it, and
1340 * it hasn't already been set */
1341
1342 const bool c_followup_to = cs_subset_bool(sub, "followup_to");
1343 if (!c_followup_to)
1344 return;
1345#ifdef USE_NNTP
1346 if (OptNewsSend)
1347 {
1348 if (!env->followup_to && env->newsgroups && (strrchr(env->newsgroups, ',')))
1349 env->followup_to = mutt_str_dup(env->newsgroups);
1350 return;
1351 }
1352#endif
1353
1354 if (TAILQ_EMPTY(&env->mail_followup_to))
1355 {
1356 if (mutt_is_list_recipient(false, env))
1357 {
1358 /* this message goes to known mailing lists, so create a proper
1359 * mail-followup-to header */
1360
1361 mutt_addrlist_copy(&env->mail_followup_to, &env->to, false);
1362 mutt_addrlist_copy(&env->mail_followup_to, &env->cc, true);
1363 }
1364
1365 /* remove ourselves from the mail-followup-to header */
1366 remove_user(&env->mail_followup_to, false);
1367
1368 /* If we are not subscribed to any of the lists in question, re-add
1369 * ourselves to the mail-followup-to header. The mail-followup-to header
1370 * generated is a no-op with group-reply, but makes sure list-reply has the
1371 * desired effect. */
1372
1373 if (!TAILQ_EMPTY(&env->mail_followup_to) &&
1375 {
1376 struct AddressList *al = NULL;
1377 if (!TAILQ_EMPTY(&env->reply_to))
1378 al = &env->reply_to;
1379 else if (!TAILQ_EMPTY(&env->from))
1380 al = &env->from;
1381
1382 if (al)
1383 {
1384 struct Address *a = NULL;
1385 TAILQ_FOREACH_REVERSE(a, al, AddressList, entries)
1386 {
1388 }
1389 }
1390 else
1391 {
1393 }
1394 }
1395
1397 }
1398}
void mutt_addrlist_prepend(struct AddressList *al, struct Address *a)
Prepend an Address to an AddressList.
Definition: address.c:1466
bool mutt_is_subscribed_list_recipient(bool all_addr, struct Envelope *env)
Matches subscribed mailing lists.
Definition: exec.c:459
bool mutt_is_list_recipient(bool all_addr, struct Envelope *env)
Matches known mailing lists.
Definition: exec.c:472
#define TAILQ_FOREACH_REVERSE(var, head, headname, field)
Definition: queue.h:745
char * followup_to
List of 'followup-to' fields.
Definition: envelope.h:81
struct AddressList reply_to
Email's 'reply-to'.
Definition: envelope.h:64
+ 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 3041 of file send.c.

3042{
3043 if (!e || !e->env)
3044 {
3045 return false;
3046 }
3047
3048 const char *mailto = e->env->list_subscribe;
3049 if (!mailto)
3050 {
3051 mutt_warning(_("No List-Subscribe header found"));
3052 return false;
3053 }
3054
3055 struct EmailList el = STAILQ_HEAD_INITIALIZER(el);
3056 emaillist_add_email(&el, e);
3057 bool rc = send_simple_email(m, &el, mailto, "Subscribe", "subscribe");
3058 emaillist_clear(&el);
3059
3060 return rc;
3061}
static bool send_simple_email(struct Mailbox *m, struct EmailList *el, const char *mailto, const char *subj, const char *body)
Compose an email given a few basic ingredients.
Definition: send.c:2992
char * list_subscribe
This stores a mailto URL, or nothing.
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 3070 of file send.c.

3071{
3072 if (!e || !e->env)
3073 {
3074 return false;
3075 }
3076
3077 const char *mailto = e->env->list_unsubscribe;
3078 if (!mailto)
3079 {
3080 mutt_warning(_("No List-Unsubscribe header found"));
3081 return false;
3082 }
3083
3084 struct EmailList el = STAILQ_HEAD_INITIALIZER(el);
3085 emaillist_add_email(&el, e);
3086 bool rc = send_simple_email(m, &el, mailto, "Unsubscribe", "unsubscribe");
3087 emaillist_clear(&el);
3088
3089 return rc;
3090}
char * list_unsubscribe
This stores a mailto URL, or nothing.
Definition: envelope.h:69
+ Here is the call graph for this function:
+ Here is the caller graph for this function: