NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
recvcmd.h File Reference

Send/reply with an attachment. More...

#include <stdio.h>
#include "send/lib.h"
+ Include dependency graph for recvcmd.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void attach_bounce_message (struct Mailbox *m, FILE *fp, struct AttachCtx *actx, struct Body *b)
 Bounce function, from the attachment menu.
 
void mutt_attach_resend (FILE *fp, struct Mailbox *m, struct AttachCtx *actx, struct Body *b)
 Resend-message, from the attachment menu.
 
void mutt_attach_forward (FILE *fp, struct Email *e, struct AttachCtx *actx, struct Body *b, SendFlags flags)
 Forward an Attachment.
 
void mutt_attach_reply (FILE *fp, struct Mailbox *m, struct Email *e, struct AttachCtx *actx, struct Body *b, SendFlags flags)
 Attach a reply.
 
void mutt_attach_mail_sender (struct AttachCtx *actx, struct Body *b)
 Compose an email to the sender in the email attachment.
 

Detailed Description

Send/reply with an attachment.

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

Function Documentation

◆ attach_bounce_message()

void attach_bounce_message ( struct Mailbox * m,
FILE * fp,
struct AttachCtx * actx,
struct Body * b )

Bounce function, from the attachment menu.

Parameters
mMailbox
fpHandle of message
actxAttachment context
bBody of email

Definition at line 162 of file recvcmd.c.

164{
165 if (!m || !fp || !actx)
166 return;
167
168 if (!check_all_msg(actx, b, true))
169 return;
170
171 struct AddressList al = TAILQ_HEAD_INITIALIZER(al);
172 struct Buffer *prompt = buf_pool_get();
173 struct Buffer *buf = buf_pool_get();
174
175 /* RFC5322 mandates a From: header, so warn before bouncing
176 * messages without one */
177 if (b)
178 {
179 if (TAILQ_EMPTY(&b->email->env->from))
180 {
181 mutt_error(_("Warning: message contains no From: header"));
183 }
184 }
185 else
186 {
187 for (short i = 0; i < actx->idxlen; i++)
188 {
189 if (actx->idx[i]->body->tagged)
190 {
191 if (TAILQ_EMPTY(&actx->idx[i]->body->email->env->from))
192 {
193 mutt_error(_("Warning: message contains no From: header"));
195 break;
196 }
197 }
198 }
199 }
200
201 /* one or more messages? */
202 int num_msg = b ? 1 : count_tagged(actx);
203 if (num_msg == 1)
204 buf_strcpy(prompt, _("Bounce message to: "));
205 else
206 buf_strcpy(prompt, _("Bounce tagged messages to: "));
207
209 &CompleteAliasOps, NULL) != 0) ||
210 buf_is_empty(buf))
211 {
212 goto done;
213 }
214
216 if (TAILQ_EMPTY(&al))
217 {
218 mutt_error(_("Error parsing address"));
219 goto done;
220 }
221
223
224 char *err = NULL;
225 if (mutt_addrlist_to_intl(&al, &err) < 0)
226 {
227 mutt_error(_("Bad IDN: '%s'"), err);
228 FREE(&err);
229 goto done;
230 }
231
232 buf_reset(buf);
233 buf_alloc(buf, 8192);
234 mutt_addrlist_write(&al, buf, true);
235
236 buf_printf(prompt, ngettext("Bounce message to %s?", "Bounce messages to %s?", num_msg),
237 buf_string(buf));
238
239 if (query_quadoption(buf_string(prompt), NeoMutt->sub, "bounce") != MUTT_YES)
240 {
241 msgwin_clear_text(NULL);
242 mutt_message(ngettext("Message not bounced", "Messages not bounced", num_msg));
243 goto done;
244 }
245
246 msgwin_clear_text(NULL);
247
248 int rc = 0;
249 if (b)
250 {
251 rc = mutt_bounce_message(fp, m, b->email, &al, NeoMutt->sub);
252 }
253 else
254 {
255 for (short i = 0; i < actx->idxlen; i++)
256 {
257 if (actx->idx[i]->body->tagged)
258 {
259 if (mutt_bounce_message(actx->idx[i]->fp, m, actx->idx[i]->body->email,
260 &al, NeoMutt->sub))
261 {
262 rc = 1;
263 }
264 }
265 }
266 }
267
268 if (rc == 0)
269 mutt_message(ngettext("Message bounced", "Messages bounced", num_msg));
270 else
271 mutt_error(ngettext("Error bouncing message", "Error bouncing messages", num_msg));
272
273done:
275 buf_pool_release(&buf);
276 buf_pool_release(&prompt);
277}
void mutt_addrlist_clear(struct AddressList *al)
Unlink and free all Address in an AddressList.
Definition address.c:1464
size_t mutt_addrlist_write(const struct AddressList *al, struct Buffer *buf, bool display)
Write an Address to a buffer.
Definition address.c:1210
int mutt_addrlist_parse(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition address.c:480
int mutt_addrlist_to_intl(struct AddressList *al, char **err)
Convert an Address list to Punycode.
Definition address.c:1297
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:296
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition buffer.c:161
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition buffer.c:76
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
Definition buffer.c:291
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition buffer.c:395
void buf_alloc(struct Buffer *buf, size_t new_size)
Make sure a buffer can store at least new_size bytes.
Definition buffer.c:337
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
#define MUTT_COMP_NO_FLAGS
No flags are set.
Definition wdata.h:42
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:270
#define mutt_error(...)
Definition logging2.h:94
#define mutt_message(...)
Definition logging2.h:93
@ HC_ALIAS
Aliases.
Definition lib.h:56
#define FREE(x)
Free memory and set the pointer to NULL.
Definition memory.h:68
void msgwin_clear_text(struct MuttWindow *win)
Clear the text in the Message Window.
Definition msgwin.c:518
#define _(a)
Definition message.h:28
void mutt_clear_error(void)
Clear the message line (bottom line of screen)
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
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition quad.h:39
enum QuadOption query_quadoption(const char *prompt, struct ConfigSubset *sub, const char *name)
Ask the user a quad-question.
Definition question.c:378
#define TAILQ_HEAD_INITIALIZER(head)
Definition queue.h:694
#define TAILQ_EMPTY(head)
Definition queue.h:778
static short count_tagged(struct AttachCtx *actx)
Count the number of tagged attachments.
Definition recvcmd.c:127
static bool check_all_msg(struct AttachCtx *actx, struct Body *b, bool err)
Are all the Attachments RFC822 messages?
Definition recvcmd.c:86
int mutt_bounce_message(FILE *fp, struct Mailbox *m, struct Email *e, struct AddressList *to, struct ConfigSubset *sub)
Bounce an email message.
Definition sendlib.c:876
struct AttachPtr ** idx
Array of attachments.
Definition attach.h:67
short idxlen
Number of attachmentes.
Definition attach.h:68
struct Body * body
Attachment.
Definition attach.h:36
FILE * fp
Used in the recvattach menu.
Definition attach.h:37
struct Email * email
header information for message/rfc822
Definition body.h:74
bool tagged
This attachment is tagged.
Definition body.h:90
String manipulation buffer.
Definition buffer.h:36
struct Envelope * env
Envelope information.
Definition email.h:68
struct AddressList from
Email's 'From' list.
Definition envelope.h:59
Container for Accounts, Notifications.
Definition neomutt.h:41
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_attach_resend()

void mutt_attach_resend ( FILE * fp,
struct Mailbox * m,
struct AttachCtx * actx,
struct Body * b )

Resend-message, from the attachment menu.

Parameters
fpFile containing email
mCurrent mailbox
actxAttachment context
bAttachment

Definition at line 286 of file recvcmd.c.

287{
288 if (!check_all_msg(actx, b, true))
289 return;
290
291 if (b)
292 {
294 }
295 else
296 {
297 for (short i = 0; i < actx->idxlen; i++)
298 {
299 if (actx->idx[i]->body->tagged)
300 {
301 mutt_resend_message(actx->idx[i]->fp, m, actx->idx[i]->body->email,
302 NeoMutt->sub);
303 }
304 }
305 }
306}
int mutt_resend_message(FILE *fp, struct Mailbox *m, struct Email *e_cur, struct ConfigSubset *sub)
Resend an email.
Definition send.c:1552
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_attach_forward()

void mutt_attach_forward ( FILE * fp,
struct Email * e,
struct AttachCtx * actx,
struct Body * b,
SendFlags flags )

Forward an Attachment.

Parameters
fpHandle to the attachment
eEmail
actxAttachment Context
bCurrent message
flagsSend mode, see SendFlags

Definition at line 789 of file recvcmd.c.

791{
792 if (check_all_msg(actx, b, false))
793 {
794 attach_forward_msgs(fp, actx, b, flags);
795 }
796 else
797 {
798 const short nattach = count_tagged(actx);
799 attach_forward_bodies(fp, e, actx, b, nattach);
800 }
801}
static void attach_forward_bodies(FILE *fp, struct Email *e, struct AttachCtx *actx, struct Body *b, short nattach)
Forward one or several MIME bodies.
Definition recvcmd.c:474
static void attach_forward_msgs(FILE *fp, struct AttachCtx *actx, struct Body *b, SendFlags flags)
Forward one or several message-type attachments.
Definition recvcmd.c:658
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_attach_reply()

void mutt_attach_reply ( FILE * fp,
struct Mailbox * m,
struct Email * e,
struct AttachCtx * actx,
struct Body * b,
SendFlags flags )

Attach a reply.

Parameters
fpFile handle to reply
mMailbox
eEmail
actxAttachment Context
bCurrent message
flagsSend mode, see SendFlags

Definition at line 945 of file recvcmd.c.

947{
948 bool mime_reply_any = false;
949
950 short nattach = 0;
951 struct AttachPtr *parent = NULL;
952 struct Email *e_parent = NULL;
953 FILE *fp_parent = NULL;
954 struct Email *e_tmp = NULL;
955 FILE *fp_tmp = NULL;
956 struct Buffer *tempfile = NULL;
957 struct EmailArray ea = ARRAY_HEAD_INITIALIZER;
958
959 struct Buffer *prefix = buf_pool_get();
960
961 if (flags & SEND_NEWS)
962 OptNewsSend = true;
963 else
964 OptNewsSend = false;
965
966 if (!check_all_msg(actx, b, false))
967 {
968 nattach = count_tagged(actx);
969 parent = find_parent(actx, b, nattach);
970 if (parent)
971 {
972 e_parent = parent->body->email;
973 fp_parent = parent->fp;
974 }
975 else
976 {
977 e_parent = e;
978 fp_parent = actx->fp_root;
979 }
980 }
981
982 if ((nattach > 1) && !check_can_decode(actx, b))
983 {
984 const enum QuadOption ans = query_quadoption(_("Can't decode all tagged attachments. MIME-encapsulate the others?"),
985 NeoMutt->sub, "mime_forward_rest");
986 if (ans == MUTT_ABORT)
987 goto cleanup;
988 if (ans == MUTT_YES)
989 mime_reply_any = true;
990 }
991 else if (nattach == 1)
992 {
993 mime_reply_any = true;
994 }
995
996 e_tmp = email_new();
997 e_tmp->env = mutt_env_new();
998
999 if (attach_reply_envelope_defaults(e_tmp->env, actx,
1000 e_parent ? e_parent : (b ? b->email : NULL),
1001 flags) == -1)
1002 {
1003 goto cleanup;
1004 }
1005
1006 tempfile = buf_pool_get();
1007 buf_mktemp(tempfile);
1008 fp_tmp = mutt_file_fopen(buf_string(tempfile), "w");
1009 if (!fp_tmp)
1010 {
1011 mutt_error(_("Can't create %s"), buf_string(tempfile));
1012 goto cleanup;
1013 }
1014
1015 if (e_parent)
1016 {
1017 mutt_make_attribution_intro(e_parent, fp_tmp, NeoMutt->sub);
1018
1019 struct State state = { 0 };
1020 state.fp_out = fp_tmp;
1021
1022 const bool c_text_flowed = cs_subset_bool(NeoMutt->sub, "text_flowed");
1023 if (c_text_flowed)
1024 {
1025 buf_strcpy(prefix, ">");
1026 }
1027 else
1028 {
1029 const char *const c_attribution_locale = cs_subset_string(NeoMutt->sub, "attribution_locale");
1030 const struct Expando *c_indent_string = cs_subset_expando(NeoMutt->sub, "indent_string");
1031 setlocale(LC_TIME, NONULL(c_attribution_locale));
1032 mutt_make_string(prefix, -1, c_indent_string, m, -1, e_parent,
1033 MUTT_FORMAT_NO_FLAGS, NULL);
1034 setlocale(LC_TIME, "");
1035 }
1036
1037 state.prefix = buf_string(prefix);
1038 state.flags = STATE_CHARCONV;
1039
1040 const bool c_weed = cs_subset_bool(NeoMutt->sub, "weed");
1041 if (c_weed)
1042 state.flags |= STATE_WEED;
1043
1044 const bool c_header = cs_subset_bool(NeoMutt->sub, "header");
1045 if (c_header)
1046 include_header(true, fp_parent, e_parent, fp_tmp, buf_string(prefix));
1047
1048 if (b)
1049 {
1050 if (mutt_can_decode(b))
1051 {
1052 state.fp_in = fp;
1053 mutt_body_handler(b, &state);
1054 state_putc(&state, '\n');
1055 }
1056 else
1057 {
1058 mutt_body_copy(fp, &e_tmp->body, b);
1059 }
1060 }
1061 else
1062 {
1063 for (short i = 0; i < actx->idxlen; i++)
1064 {
1065 if (actx->idx[i]->body->tagged && mutt_can_decode(actx->idx[i]->body))
1066 {
1067 state.fp_in = actx->idx[i]->fp;
1068 mutt_body_handler(actx->idx[i]->body, &state);
1069 state_putc(&state, '\n');
1070 }
1071 }
1072 }
1073
1074 mutt_make_attribution_trailer(e_parent, fp_tmp, NeoMutt->sub);
1075
1076 if (mime_reply_any && !b && !copy_problematic_attachments(&e_tmp->body, actx, false))
1077 {
1078 goto cleanup;
1079 }
1080 }
1081 else
1082 {
1083 if (b)
1084 {
1085 attach_include_reply(fp, fp_tmp, b->email);
1086 }
1087 else
1088 {
1089 for (short i = 0; i < actx->idxlen; i++)
1090 {
1091 if (actx->idx[i]->body->tagged)
1092 attach_include_reply(actx->idx[i]->fp, fp_tmp, actx->idx[i]->body->email);
1093 }
1094 }
1095 }
1096
1097 mutt_file_fclose(&fp_tmp);
1098
1099 ARRAY_ADD(&ea, e_parent ? e_parent : (b ? b->email : NULL));
1100 if (mutt_send_message(flags, e_tmp, buf_string(tempfile), NULL, &ea, NeoMutt->sub) == 0)
1101 {
1102 mutt_set_flag(m, e, MUTT_REPLIED, true, true);
1103 }
1104 e_tmp = NULL; /* mutt_send_message frees this */
1105
1106cleanup:
1107 if (fp_tmp)
1108 {
1109 mutt_file_fclose(&fp_tmp);
1110 mutt_file_unlink(buf_string(tempfile));
1111 }
1112 buf_pool_release(&tempfile);
1113 buf_pool_release(&prefix);
1114 email_free(&e_tmp);
1115 ARRAY_FREE(&ea);
1116}
#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
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition helpers.c:291
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition helpers.c:47
const struct Expando * cs_subset_expando(const struct ConfigSubset *sub, const char *name)
Get an Expando config item by name.
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
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:802
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
struct Envelope * mutt_env_new(void)
Create a new Envelope.
Definition envelope.c:45
void mutt_file_unlink(const char *s)
Delete a file, carefully.
Definition file.c:156
#define mutt_file_fclose(FP)
Definition file.h:139
#define mutt_file_fopen(PATH, MODE)
Definition file.h:138
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 OptNewsSend
(pseudo) used to change behavior when posting
Definition globals.c:54
bool mutt_can_decode(struct Body *b)
Will decoding the attachment produce any output.
Definition handler.c:1893
int mutt_body_handler(struct Body *b, struct State *state)
Handler for the Body of an email.
Definition handler.c:1659
#define STATE_WEED
Weed headers even when not in display mode.
Definition state.h:36
#define state_putc(STATE, STR)
Definition state.h:59
#define STATE_CHARCONV
Do character set conversions.
Definition state.h:37
@ MUTT_REPLIED
Messages that have been replied to.
Definition mutt.h:91
QuadOption
Possible values for a quad-option.
Definition quad.h:36
@ MUTT_ABORT
User aborted the question (with Ctrl-G)
Definition quad.h:37
static void attach_include_reply(FILE *fp, FILE *fp_tmp, struct Email *e)
This is very similar to send.c's include_reply()
Definition recvcmd.c:915
static struct Body ** copy_problematic_attachments(struct Body **last, struct AttachCtx *actx, bool force)
Attach the body parts which can't be decoded.
Definition recvcmd.c:449
static bool check_can_decode(struct AttachCtx *actx, struct Body *b)
Can we decode all tagged attachments?
Definition recvcmd.c:110
static struct AttachPtr * find_parent(struct AttachCtx *actx, struct Body *b, short nattach)
Find the parent of an Attachment.
Definition recvcmd.c:370
static void include_header(bool quote, FILE *fp_in, struct Email *e, FILE *fp_out, const char *prefix)
Write an email header to a file, optionally quoting it.
Definition recvcmd.c:403
static int attach_reply_envelope_defaults(struct Envelope *env, struct AttachCtx *actx, struct Email *parent, SendFlags flags)
Create the envelope defaults for a reply.
Definition recvcmd.c:822
#define MUTT_FORMAT_NO_FLAGS
No flags are set.
Definition render.h:33
void mutt_make_attribution_intro(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add "on DATE, PERSON wrote" header.
Definition send.c:664
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:2037
void mutt_make_attribution_trailer(struct Email *e, FILE *fp_out, struct ConfigSubset *sub)
Add suffix to replied email text.
Definition send.c:675
#define SEND_NEWS
Reply to a news article.
Definition send.h:55
#define NONULL(x)
Definition string2.h:44
FILE * fp_root
Used by recvattach for updating.
Definition attach.h:65
An email to which things will be attached.
Definition attach.h:35
The envelope/body of an email.
Definition email.h:39
struct Body * body
List of MIME parts.
Definition email.h:69
Parsed Expando trees.
Definition expando.h:41
Keep track when processing files.
Definition state.h:48
StateFlags flags
Flags, e.g. STATE_DISPLAY.
Definition state.h:52
FILE * fp_out
File to write to.
Definition state.h:50
FILE * fp_in
File to read from.
Definition state.h:49
const char * prefix
String to add to the beginning of each output line.
Definition state.h:51
#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_attach_mail_sender()

void mutt_attach_mail_sender ( struct AttachCtx * actx,
struct Body * b )

Compose an email to the sender in the email attachment.

Parameters
actxAttachment Context
bCurrent attachment

Definition at line 1123 of file recvcmd.c.

1124{
1125 if (!check_all_msg(actx, b, 0))
1126 {
1127 /* L10N: You will see this error message if you invoke <compose-to-sender>
1128 when you are on a normal attachment. */
1129 mutt_error(_("You may only compose to sender with message/rfc822 parts"));
1130 return;
1131 }
1132
1133 struct Email *e_tmp = email_new();
1134 e_tmp->env = mutt_env_new();
1135
1136 if (b)
1137 {
1138 if (mutt_fetch_recips(e_tmp->env, b->email->env, SEND_TO_SENDER, NeoMutt->sub) == -1)
1139 {
1140 email_free(&e_tmp);
1141 return;
1142 }
1143 }
1144 else
1145 {
1146 for (int i = 0; i < actx->idxlen; i++)
1147 {
1148 if (actx->idx[i]->body->tagged &&
1149 (mutt_fetch_recips(e_tmp->env, actx->idx[i]->body->email->env,
1150 SEND_TO_SENDER, NeoMutt->sub) == -1))
1151 {
1152 email_free(&e_tmp);
1153 return;
1154 }
1155 }
1156 }
1157
1158 // This call will free e_tmp for us
1159 mutt_send_message(SEND_NO_FLAGS, e_tmp, NULL, NULL, NULL, NeoMutt->sub);
1160}
int mutt_fetch_recips(struct Envelope *out, struct Envelope *in, SendFlags flags, struct ConfigSubset *sub)
Generate recpients for a reply email.
Definition send.c:874
#define SEND_TO_SENDER
Compose new email to sender.
Definition send.h:53
#define SEND_NO_FLAGS
No flags are set.
Definition send.h:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function: