NeoMutt
2024-10-02-37-gfa9146
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
37
bool
maildir_ac_add
(
struct
Account
*a,
struct
Mailbox
*m)
38
{
39
return
true
;
40
}
41
45
bool
maildir_ac_owns_path
(
struct
Account
*a,
const
char
*path)
46
{
47
return
true
;
48
}
maildir_ac_add
bool maildir_ac_add(struct Account *a, struct Mailbox *m)
Add a Mailbox to an Account - Implements MxOps::ac_add() -.
Definition:
account.c:37
maildir_ac_owns_path
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
account.h
Maildir Account.
Account
A group of associated Mailboxes.
Definition:
account.h:36
Mailbox
A mailbox.
Definition:
mailbox.h:79