]> granicus.if.org Git - neomutt/commitdiff
account: add mailbox_add()
authorRichard Russon <rich@flatcap.org>
Tue, 9 Jul 2019 14:12:55 +0000 (15:12 +0100)
committerRichard Russon <rich@flatcap.org>
Sat, 13 Jul 2019 23:25:45 +0000 (00:25 +0100)
account.c
account.h
compress.c
mx.c

index 252f7e0823dd88674dcf16da5e475f9d294a891c..9ababa0098bcf2fd6ce7467272a0d9c6a12f1886 100644 (file)
--- a/account.c
+++ b/account.c
@@ -118,6 +118,25 @@ void account_free_config(struct Account *a)
   FREE(&a->vars);
 }
 
+/**
+ * account_mailbox_add - Add a Mailbox to an Account
+ * @param a Account
+ * @param m Mailbox to add
+ * @retval true If Mailbox was added
+ */
+bool account_mailbox_add(struct Account *a, struct Mailbox *m)
+{
+  if (!a || !m)
+    return false;
+
+  m->account = a;
+  struct MailboxNode *np = mutt_mem_calloc(1, sizeof(*np));
+  np->mailbox = m;
+  STAILQ_INSERT_TAIL(&a->mailboxes, np, entries);
+
+  return true;
+}
+
 /**
  * account_mailbox_remove - Remove a Mailbox from an Account
  * @param a Account
@@ -146,10 +165,6 @@ bool account_mailbox_remove(struct Account *a, struct Mailbox *m)
     }
   }
 
-  if (STAILQ_EMPTY(&a->mailboxes))
-  {
-    neomutt_account_remove(NeoMutt, a);
-  }
   return result;
 }
 
index bb230ec51c22dcf469c58bc1c532f58d5ae3d4dc..d0afb7fda2fdb133207a12fcd727d11825a496e6 100644 (file)
--- a/account.h
+++ b/account.h
@@ -73,6 +73,7 @@ bool            account_add_config(struct Account *a, const struct ConfigSet *cs
 void            account_free(struct Account **ptr);
 void            account_free_config(struct Account *a);
 int             account_get_value(const struct Account *a, size_t vid, struct Buffer *result);
+bool            account_mailbox_add(struct Account *a, struct Mailbox *m);
 bool            account_mailbox_remove(struct Account *a, struct Mailbox *m);
 struct Account *account_new(void);
 int             account_set_value(const struct Account *a, size_t vid, intptr_t value, struct Buffer *err);
index 5320d8dc456e3b0ef47731fe573438aa44f0a2ec..6af4e5e22dbd130152f5531b7c0f6967ed6bfaad 100644 (file)
@@ -442,12 +442,6 @@ int comp_ac_add(struct Account *a, struct Mailbox *m)
 {
   if (!a || !m || (m->magic != MUTT_COMPRESSED))
     return -1;
-
-  m->account = a;
-
-  struct MailboxNode *np = mutt_mem_calloc(1, sizeof(*np));
-  np->mailbox = m;
-  STAILQ_INSERT_TAIL(&a->mailboxes, np, entries);
   return 0;
 }
 
diff --git a/mx.c b/mx.c
index d35ad094fe0c0f6e2bd37362f0a6e20c0297e779..4e85a21e2e4fbd9426ef6c7014bb7a27c6ca7b49 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -1573,10 +1573,7 @@ int mx_ac_add(struct Account *a, struct Mailbox *m)
   if (m->mx_ops->ac_add(a, m) < 0)
     return -1;
 
-  m->account = a;
-  struct MailboxNode *np = mutt_mem_calloc(1, sizeof(*np));
-  np->mailbox = m;
-  STAILQ_INSERT_TAIL(&a->mailboxes, np, entries);
+  account_mailbox_add(a, m);
   return 0;
 }
 
@@ -1590,6 +1587,10 @@ int mx_ac_remove(struct Mailbox *m)
     return -1;
 
   account_mailbox_remove(m->account, m);
+  if (STAILQ_EMPTY(&m->account->mailboxes))
+  {
+    neomutt_account_remove(NeoMutt, m->account);
+  }
   return 0;
 }