NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
message.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_MAILDIR_MESSAGE_H
24
#define MUTT_MAILDIR_MESSAGE_H
25
26
#include <stdbool.h>
27
28
struct
Email
;
29
struct
Mailbox
;
30
struct
Message
;
31
32
int
maildir_msg_close
(
struct
Mailbox
*m,
struct
Message
*msg);
33
int
maildir_msg_commit
(
struct
Mailbox
*m,
struct
Message
*msg);
34
bool
maildir_msg_open_new
(
struct
Mailbox
*m,
struct
Message
*msg,
const
struct
Email
*e);
35
bool
maildir_msg_open
(
struct
Mailbox
*m,
struct
Message
*msg,
struct
Email
*e);
36
int
maildir_msg_save_hcache
(
struct
Mailbox
*m,
struct
Email
*e);
37
38
#endif
/* MUTT_MAILDIR_MESSAGE_H */
maildir_msg_close
int maildir_msg_close(struct Mailbox *m, struct Message *msg)
Close an email - Implements MxOps::msg_close() -.
Definition
message.c:639
maildir_msg_commit
int maildir_msg_commit(struct Mailbox *m, struct Message *msg)
Save changes to an email - Implements MxOps::msg_commit() -.
Definition
message.c:629
maildir_msg_open_new
bool maildir_msg_open_new(struct Mailbox *m, struct Message *msg, const struct Email *e)
Open a new message in a Mailbox - Implements MxOps::msg_open_new() -.
Definition
message.c:550
maildir_msg_open
bool maildir_msg_open(struct Mailbox *m, struct Message *msg, struct Email *e)
Open an email message in a Mailbox - Implements MxOps::msg_open() -.
Definition
message.c:523
maildir_msg_save_hcache
int maildir_msg_save_hcache(struct Mailbox *m, struct Email *e)
Save message to the header cache - Implements MxOps::msg_save_hcache() -.
Definition
message.c:647
Email
The envelope/body of an email.
Definition
email.h:39
Mailbox
A mailbox.
Definition
mailbox.h:81
Message
A local copy of an email.
Definition
message.h:34