NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
account.c
Go to the documentation of this file.
1
29#include "config.h"
30#include "account.h"
31
32// Mailbox API -----------------------------------------------------------------
33
37bool maildir_ac_add(struct Account *a, struct Mailbox *m)
38{
39 return true;
40}
41
45bool maildir_ac_owns_path(struct Account *a, const char *path)
46{
47 return true;
48}
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
Maildir Account.
A group of associated Mailboxes.
Definition: account.h:36
A mailbox.
Definition: mailbox.h:79