NeoMutt
2025-12-11-1040-g5187ba
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
recvcmd.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_ATTACH_RECVCMD_H
24
#define MUTT_ATTACH_RECVCMD_H
25
26
#include "
send/lib.h
"
27
28
struct
AttachCtx
;
29
struct
AttachPtrArray;
30
struct
Email
;
31
struct
Mailbox
;
32
33
void
attach_bounce_message
(
struct
AttachPtrArray *aa,
struct
Mailbox
*m);
34
void
mutt_attach_resend
(
struct
AttachPtrArray *aa,
struct
Mailbox
*m);
35
void
mutt_attach_forward
(
struct
AttachPtrArray *aa,
struct
Email
*e,
struct
AttachCtx
*actx,
SendFlags
flags);
36
void
mutt_attach_reply
(
struct
AttachPtrArray *aa,
struct
Mailbox
*m,
struct
Email
*e,
struct
AttachCtx
*actx,
SendFlags
flags);
37
void
mutt_attach_mail_sender
(
struct
AttachPtrArray *aa);
38
39
#endif
/* MUTT_ATTACH_RECVCMD_H */
mutt_attach_mail_sender
void mutt_attach_mail_sender(struct AttachPtrArray *aa)
Compose an email to the sender in the email attachment.
Definition
recvcmd.c:1074
mutt_attach_reply
void mutt_attach_reply(struct AttachPtrArray *aa, struct Mailbox *m, struct Email *e, struct AttachCtx *actx, SendFlags flags)
Attach a reply.
Definition
recvcmd.c:885
mutt_attach_resend
void mutt_attach_resend(struct AttachPtrArray *aa, struct Mailbox *m)
Resend-message, from the attachment menu.
Definition
recvcmd.c:255
attach_bounce_message
void attach_bounce_message(struct AttachPtrArray *aa, struct Mailbox *m)
Bounce function, from the attachment menu.
Definition
recvcmd.c:158
mutt_attach_forward
void mutt_attach_forward(struct AttachPtrArray *aa, struct Email *e, struct AttachCtx *actx, SendFlags flags)
Forward selected attachments.
Definition
recvcmd.c:737
lib.h
Convenience wrapper for the send headers.
SendFlags
uint32_t SendFlags
Definition
send.h:64
AttachCtx
A set of attachments.
Definition
attach.h:65
Email
The envelope/body of an email.
Definition
email.h:39
Mailbox
A mailbox.
Definition
mailbox.h:81