NeoMutt  2025-12-11-276-g10b23b
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mailbox.h
Go to the documentation of this file.
1
23
24#ifndef MUTT_CORE_MAILBOX_H
25#define MUTT_CORE_MAILBOX_H
26
27#include <stdbool.h>
28#include <stdint.h>
29#include <sys/types.h>
30#include <time.h>
31#include "mutt/lib.h"
32
33struct ConfigSubset;
34struct Email;
35
54
58typedef uint16_t AclFlags;
59#define MUTT_ACL_NO_FLAGS 0
60#define MUTT_ACL_ADMIN (1 << 0)
61#define MUTT_ACL_CREATE (1 << 1)
62#define MUTT_ACL_DELETE (1 << 2)
63#define MUTT_ACL_DELMX (1 << 3)
64#define MUTT_ACL_EXPUNGE (1 << 4)
65#define MUTT_ACL_INSERT (1 << 5)
66#define MUTT_ACL_LOOKUP (1 << 6)
67#define MUTT_ACL_POST (1 << 7)
68#define MUTT_ACL_READ (1 << 8)
69#define MUTT_ACL_SEEN (1 << 9)
70#define MUTT_ACL_WRITE (1 << 10)
71
72#define MUTT_ACL_ALL ((1 << 11) - 1)
73
77struct Mailbox
78{
79 struct Buffer pathbuf;
80 char *realpath;
81 char *name;
82 struct ConfigSubset *sub;
83 off_t size;
84 bool has_new;
85
86 // These next three are only set when $mail_check_stats is set
90
91 int msg_new;
94
95 struct Email **emails;
97 int *v2r;
98 int vcount;
99
100 bool notified;
103 struct timespec last_visited;
105
106 const struct MxOps *mx_ops;
107
108 bool append : 1;
109 bool changed : 1;
110 bool dontwrite : 1;
112 bool notify_user : 1;
113 bool peekonly : 1;
114 bool poll_new_mail : 1;
115 bool readonly : 1;
116 bool verbose : 1;
117
119
121
125
126 struct Account *account;
127 int opened;
128
129 bool visible;
130
131 void *mdata;
132
142 void (*mdata_free)(void **ptr);
143
144 struct Notify *notify;
145
146 int gen;
147};
148ARRAY_HEAD(MailboxArray, struct Mailbox *);
149
161
171{
176
177 /* These don't really belong here as they are tied to GUI operations.
178 * Eventually, they'll be eliminated. */
183};
184
189{
190 struct Mailbox *mailbox;
191};
192
193void mailbox_changed (struct Mailbox *m, enum NotifyMailbox action);
194struct Mailbox *mailbox_find (const char *path);
195struct Mailbox *mailbox_find_name (const char *name);
196void mailbox_free (struct Mailbox **ptr);
197int mailbox_gen (void);
198struct Mailbox *mailbox_new (void);
199bool mailbox_set_subset(struct Mailbox *m, struct ConfigSubset *sub);
200void mailbox_size_add (struct Mailbox *m, const struct Email *e);
201void mailbox_size_sub (struct Mailbox *m, const struct Email *e);
202void mailbox_update (struct Mailbox *m);
203void mailbox_gc_add (struct Email *e);
204void mailbox_gc_run (void);
205
206const char *mailbox_get_type_name(enum MailboxType type);
207
213static inline const char *mailbox_path(const struct Mailbox *m) // LCOV_EXCL_LINE
214{
215 return buf_string(&m->pathbuf); // LCOV_EXCL_LINE
216}
217
218#endif /* MUTT_CORE_MAILBOX_H */
#define ARRAY_HEAD(name, T)
Define a named struct for arrays of elements of a certain type.
Definition array.h:47
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
NotifyMailbox
Types of Mailbox Event.
Definition mailbox.h:171
@ NT_MAILBOX_UNTAG
Clear the 'last-tagged' pointer.
Definition mailbox.h:182
@ NT_MAILBOX_CHANGE
Mailbox has been changed.
Definition mailbox.h:175
@ NT_MAILBOX_RESORT
Email list needs resorting.
Definition mailbox.h:180
@ NT_MAILBOX_DELETE
Mailbox is about to be deleted.
Definition mailbox.h:173
@ NT_MAILBOX_INVALID
Email list was changed.
Definition mailbox.h:179
@ NT_MAILBOX_DELETE_ALL
All Mailboxes are about to be deleted.
Definition mailbox.h:174
@ NT_MAILBOX_UPDATE
Update internal tables.
Definition mailbox.h:181
@ NT_MAILBOX_ADD
Mailbox has been added.
Definition mailbox.h:172
bool mailbox_set_subset(struct Mailbox *m, struct ConfigSubset *sub)
Set a Mailbox's Config Subset.
Definition mailbox.c:269
void mailbox_gc_run(void)
Run the garbage-collection.
Definition mailbox.c:311
void mailbox_size_add(struct Mailbox *m, const struct Email *e)
Add an email's size to the total size of a Mailbox.
Definition mailbox.c:248
void mailbox_size_sub(struct Mailbox *m, const struct Email *e)
Subtract an email's size from the total size of a Mailbox.
Definition mailbox.c:258
ExpandoDataMailbox
Expando UIDs for Mailboxes.
Definition mailbox.h:156
@ ED_MBX_MESSAGE_COUNT
Mailbox.msg_count.
Definition mailbox.h:158
@ ED_MBX_PERCENTAGE
EmailFormatInfo.pager_progress.
Definition mailbox.h:159
@ ED_MBX_MAILBOX_NAME
Mailbox, mailbox_path()
Definition mailbox.h:157
int mailbox_gen(void)
Get the next generation number.
Definition mailbox.c:59
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition mailbox.h:213
uint16_t AclFlags
ACL Rights - These show permission to...
Definition mailbox.h:58
struct Mailbox * mailbox_new(void)
Create a new Mailbox.
Definition mailbox.c:69
void mailbox_gc_add(struct Email *e)
Add an Email to the garbage-collection set.
Definition mailbox.c:297
void mailbox_update(struct Mailbox *m)
Get the mailbox's current size.
Definition mailbox.c:214
void mailbox_free(struct Mailbox **ptr)
Free a Mailbox.
Definition mailbox.c:90
struct Mailbox * mailbox_find_name(const char *name)
Find the mailbox with a given name.
Definition mailbox.c:187
void mailbox_changed(struct Mailbox *m, enum NotifyMailbox action)
Notify observers of a change to a Mailbox.
Definition mailbox.c:232
MailboxType
Supported mailbox formats.
Definition mailbox.h:40
@ MUTT_NOTMUCH
'Notmuch' (virtual) Mailbox type
Definition mailbox.h:50
@ MUTT_MMDF
'mmdf' Mailbox type
Definition mailbox.h:45
@ MUTT_MAILBOX_ERROR
Error occurred examining Mailbox.
Definition mailbox.h:42
@ MUTT_POP
'POP3' Mailbox type
Definition mailbox.h:51
@ MUTT_MH
'MH' Mailbox type
Definition mailbox.h:46
@ MUTT_NNTP
'NNTP' (Usenet) Mailbox type
Definition mailbox.h:48
@ MUTT_IMAP
'IMAP' Mailbox type
Definition mailbox.h:49
@ MUTT_MBOX
'mbox' Mailbox type
Definition mailbox.h:44
@ MUTT_MAILBOX_ANY
Match any Mailbox type.
Definition mailbox.h:41
@ MUTT_COMPRESSED
Compressed file Mailbox type.
Definition mailbox.h:52
@ MUTT_UNKNOWN
Mailbox wasn't recognised.
Definition mailbox.h:43
@ MUTT_MAILDIR
'Maildir' Mailbox type
Definition mailbox.h:47
const char * mailbox_get_type_name(enum MailboxType type)
Get the type of a Mailbox.
Definition mailbox.c:325
struct Mailbox * mailbox_find(const char *path)
Find the mailbox with a given path.
Definition mailbox.c:151
Convenience wrapper for the library headers.
A group of associated Mailboxes.
Definition account.h:36
String manipulation buffer.
Definition buffer.h:36
A set of inherited config items.
Definition subset.h:46
The envelope/body of an email.
Definition email.h:39
An Event that happened to a Mailbox.
Definition mailbox.h:189
struct Mailbox * mailbox
The Mailbox this Event relates to.
Definition mailbox.h:190
A Hash Table.
Definition hash.h:99
A mailbox.
Definition mailbox.h:78
void(* mdata_free)(void **ptr)
Definition mailbox.h:142
int vcount
The number of virtual messages.
Definition mailbox.h:98
bool changed
Mailbox has been modified.
Definition mailbox.h:109
bool has_new
Mailbox has new mail.
Definition mailbox.h:84
char * realpath
Used for duplicate detection, context comparison, and the sidebar.
Definition mailbox.h:80
bool append
Mailbox is opened in append mode.
Definition mailbox.h:108
int * v2r
Mapping from virtual to real msgno.
Definition mailbox.h:97
const struct MxOps * mx_ops
MXAPI callback functions.
Definition mailbox.h:106
int msg_new
Number of new messages.
Definition mailbox.h:91
time_t last_checked
Last time we checked this mailbox for new mail.
Definition mailbox.h:104
int msg_count
Total number of messages.
Definition mailbox.h:87
bool first_check_stats_done
True when the check have been done at least one time.
Definition mailbox.h:111
AclFlags rights
ACL bits, see AclFlags.
Definition mailbox.h:118
int email_max
Size of emails array.
Definition mailbox.h:96
enum MailboxType type
Mailbox type.
Definition mailbox.h:101
bool newly_created
Mbox or mmdf just popped into existence.
Definition mailbox.h:102
bool poll_new_mail
Check for new mail.
Definition mailbox.h:114
void * mdata
Driver specific data.
Definition mailbox.h:131
struct HashTable * subj_hash
Hash Table: "subject" -> Email.
Definition mailbox.h:123
struct Email ** emails
Array of Emails.
Definition mailbox.h:95
char * name
A short name for the Mailbox.
Definition mailbox.h:81
struct Notify * notify
Notifications: NotifyMailbox, EventMailbox.
Definition mailbox.h:144
bool notify_user
Notify the user of new mail.
Definition mailbox.h:112
struct HashTable * id_hash
Hash Table: "message-id" -> Email.
Definition mailbox.h:122
struct Buffer pathbuf
Path of the Mailbox.
Definition mailbox.h:79
bool peekonly
Just taking a glance, revert atime.
Definition mailbox.h:113
int msg_deleted
Number of deleted messages.
Definition mailbox.h:92
struct Account * account
Account that owns this Mailbox.
Definition mailbox.h:126
bool dontwrite
Don't write the mailbox on close.
Definition mailbox.h:110
bool notified
User has been notified.
Definition mailbox.h:100
off_t size
Size of the Mailbox.
Definition mailbox.h:83
struct HashTable * label_hash
Hash Table: "x-labels" -> Email.
Definition mailbox.h:124
bool visible
True if a result of "mailboxes".
Definition mailbox.h:129
int msg_flagged
Number of flagged messages.
Definition mailbox.h:89
int opened
Number of times mailbox is opened.
Definition mailbox.h:127
void * compress_info
Compressed mbox module private data.
Definition mailbox.h:120
struct timespec last_visited
Time of last exit from this mailbox.
Definition mailbox.h:103
bool readonly
Don't allow changes to the mailbox.
Definition mailbox.h:115
int msg_tagged
How many messages are tagged?
Definition mailbox.h:93
bool verbose
Display status messages?
Definition mailbox.h:116
int msg_unread
Number of unread messages.
Definition mailbox.h:88
int gen
Generation number, for sorting.
Definition mailbox.h:146
struct ConfigSubset * sub
Inherited config items.
Definition mailbox.h:82
Definition mxapi.h:87
Notification API.
Definition notify.c:53