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