NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
ac_add()

Add a Mailbox to an Account. More...

+ Collaboration diagram for ac_add():

Functions

static bool comp_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool imap_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool maildir_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool mh_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool mbox_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool nntp_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool nm_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 
static bool pop_ac_add (struct Account *a, struct Mailbox *m)
 Add a Mailbox to an Account - Implements MxOps::ac_add() -.
 

Detailed Description

Add a Mailbox to an Account.

Parameters
aAccount to add to
mMailbox to add
Return values
trueSuccess
falseError
Precondition
a is not NULL
m is not NULL

Function Documentation

◆ comp_ac_add()

static bool comp_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 435 of file compress.c.

436{
437 return true;
438}

◆ imap_ac_add()

static bool imap_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 1676 of file imap.c.

1677{
1678 struct ImapAccountData *adata = a->adata;
1679
1680 if (!adata)
1681 {
1682 struct ConnAccount cac = { { 0 } };
1683 char mailbox[PATH_MAX] = { 0 };
1684
1685 if (imap_parse_path(mailbox_path(m), &cac, mailbox, sizeof(mailbox)) < 0)
1686 return false;
1687
1688 adata = imap_adata_new(a);
1689 adata->conn = mutt_conn_new(&cac);
1690 if (!adata->conn)
1691 {
1692 imap_adata_free((void **) &adata);
1693 return false;
1694 }
1695
1697
1698 if (imap_login(adata) < 0)
1699 {
1700 imap_adata_free((void **) &adata);
1701 return false;
1702 }
1703
1704 a->adata = adata;
1706 }
1707
1708 if (!m->mdata)
1709 {
1710 struct Url *url = url_parse(mailbox_path(m));
1711 if (!url)
1712 return false;
1713 struct ImapMboxData *mdata = imap_mdata_new(adata, url->path);
1714
1715 /* fixup path and realpath, mainly to replace / by /INBOX */
1716 char buf[1024] = { 0 };
1717 imap_qualify_path(buf, sizeof(buf), &adata->conn->account, mdata->name);
1718 buf_strcpy(&m->pathbuf, buf);
1720
1721 m->mdata = mdata;
1723 url_free(&url);
1724 }
1725 return true;
1726}
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition: buffer.c:407
void mutt_account_hook(const char *url)
Perform an account hook.
Definition: hook.c:846
void imap_adata_free(void **ptr)
Free the private Account data - Implements Account::adata_free()
Definition: adata.c:69
struct ImapAccountData * imap_adata_new(struct Account *a)
Allocate and initialise a new ImapAccountData structure.
Definition: adata.c:98
int imap_parse_path(const char *path, struct ConnAccount *cac, char *mailbox, size_t mailboxlen)
Parse an IMAP mailbox name into ConnAccount, name.
Definition: util.c:471
struct ImapMboxData * imap_mdata_new(struct ImapAccountData *adata, const char *name)
Allocate and initialise a new ImapMboxData structure.
Definition: mdata.c:73
void imap_mdata_free(void **ptr)
Free the private Mailbox data - Implements Mailbox::mdata_free()
Definition: mdata.c:39
void imap_qualify_path(char *buf, size_t buflen, struct ConnAccount *conn_account, char *path)
Make an absolute IMAP folder target.
Definition: util.c:813
int imap_login(struct ImapAccountData *adata)
Open an IMAP connection.
Definition: imap.c:1765
static const char * mailbox_path(const struct Mailbox *m)
Get the Mailbox's path string.
Definition: mailbox.h:210
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition: string.c:327
#define PATH_MAX
Definition: mutt.h:41
struct Connection * mutt_conn_new(const struct ConnAccount *cac)
Create a new Connection.
Definition: mutt_socket.c:48
void(* adata_free)(void **ptr)
Free the private data attached to the Account.
Definition: account.h:52
void * adata
Private data (for Mailbox backends)
Definition: account.h:43
Login details for a remote server.
Definition: connaccount.h:53
struct ConnAccount account
Account details: username, password, etc.
Definition: connection.h:50
IMAP-specific Account data -.
Definition: adata.h:40
struct Connection * conn
Connection to IMAP server.
Definition: adata.h:41
IMAP-specific Mailbox data -.
Definition: mdata.h:40
void(* mdata_free)(void **ptr)
Free the private data attached to the Mailbox.
Definition: mailbox.h:142
char * realpath
Used for duplicate detection, context comparison, and the sidebar.
Definition: mailbox.h:81
void * mdata
Driver specific data.
Definition: mailbox.h:133
struct Buffer pathbuf
Path of the Mailbox.
Definition: mailbox.h:80
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition: url.h:69
char * path
Path.
Definition: url.h:75
struct Url * url_parse(const char *src)
Fill in Url.
Definition: url.c:238
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition: url.c:123
+ Here is the call graph for this function:

◆ maildir_ac_add()

static bool maildir_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 1115 of file maildir.c.

1116{
1117 return true;
1118}

◆ mh_ac_add()

static bool mh_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 827 of file mh.c.

828{
829 return true;
830}

◆ mbox_ac_add()

static bool mbox_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 790 of file mbox.c.

791{
792 return true;
793}

◆ nntp_ac_add()

static bool nntp_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 2324 of file nntp.c.

2325{
2326 return true;
2327}

◆ nm_ac_add()

static bool nm_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 2016 of file notmuch.c.

2017{
2018 if (a->adata)
2019 return true;
2020
2021 struct NmAccountData *adata = nm_adata_new();
2022 a->adata = adata;
2024
2025 return true;
2026}
struct NmAccountData * nm_adata_new(void)
Allocate and initialise a new NmAccountData structure.
Definition: adata.c:58
void nm_adata_free(void **ptr)
Free the private Account data - Implements Account::adata_free()
Definition: adata.c:39
Notmuch-specific Account data -.
Definition: adata.h:35
+ Here is the call graph for this function:

◆ pop_ac_add()

static bool pop_ac_add ( struct Account a,
struct Mailbox m 
)
static

Add a Mailbox to an Account - Implements MxOps::ac_add() -.

Definition at line 709 of file pop.c.

710{
711 if (a->adata)
712 return true;
713
714 struct ConnAccount cac = { { 0 } };
715 if (pop_parse_path(mailbox_path(m), &cac))
716 {
717 mutt_error(_("%s is an invalid POP path"), mailbox_path(m));
718 return false;
719 }
720
722 adata->conn = mutt_conn_new(&cac);
723 if (!adata->conn)
724 {
725 pop_adata_free((void **) &adata);
726 return false;
727 }
728 a->adata = adata;
730
731 return true;
732}
#define mutt_error(...)
Definition: logging2.h:92
#define _(a)
Definition: message.h:28
struct PopAccountData * pop_adata_new(void)
Create a new PopAccountData object.
Definition: adata.c:63
void pop_adata_free(void **ptr)
Free the private Account data - Implements Account::adata_free()
Definition: adata.c:41
int pop_parse_path(const char *path, struct ConnAccount *cac)
Parse a POP mailbox name.
Definition: lib.c:82
POP-specific Account data -.
Definition: adata.h:37
+ Here is the call graph for this function: