NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
account.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_MAILDIR_ACCOUNT_H
24
#define MUTT_MAILDIR_ACCOUNT_H
25
26
#include <stdbool.h>
27
28
struct
Account
;
29
struct
Mailbox
;
30
31
bool
maildir_ac_add
(
struct
Account
*a,
struct
Mailbox
*m);
32
bool
maildir_ac_owns_path
(
struct
Account
*a,
const
char
*path);
33
34
#endif
/* MUTT_MAILDIR_ACCOUNT_H */
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
A group of associated Mailboxes.
Definition
account.h:36
Mailbox
A mailbox.
Definition
mailbox.h:81