NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
account.h
Go to the documentation of this file.
1
23#ifndef MUTT_MAILDIR_ACCOUNT_H
24#define MUTT_MAILDIR_ACCOUNT_H
25
26#include <stdbool.h>
27
28struct Account;
29struct Mailbox;
30
31bool maildir_ac_add (struct Account *a, struct Mailbox *m);
32bool maildir_ac_owns_path(struct Account *a, const char *path);
33
34#endif /* MUTT_MAILDIR_ACCOUNT_H */
bool maildir_ac_add(struct Account *a, struct Mailbox *m)
Add a Mailbox to an Account - Implements MxOps::ac_add() -.
Definition: account.c:37
bool maildir_ac_owns_path(struct Account *a, const char *path)
Check whether an Account owns a Mailbox path - Implements MxOps::ac_owns_path() -.
Definition: account.c:45
A group of associated Mailboxes.
Definition: account.h:36
A mailbox.
Definition: mailbox.h:79