we always want to DOTLOCK mboxes.
[apps/madmutt.git] / pop / mx_pop.c
index c1f2048..b75ba14 100644 (file)
@@ -3,19 +3,11 @@
  * It's licensed under the GNU General Public License,
  * please see the file GPL in the top level source directory.
  */
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
 
-#include <sys/stat.h>
-
-#include <lib-lib/mem.h>
-#include <lib-lib/str.h>
-#include <lib-lib/url.h>
+#include <lib-lib/lib-lib.h>
 
 #include "mutt.h"
 #include "pop.h"
-
 #include "mx.h"
 #include "mx_pop.h"
 
@@ -37,16 +29,17 @@ static int acl_check_pop (CONTEXT* ctx __attribute__ ((unused)), int bit) {
   }
 }
 
-mx_t* pop_reg_mx (void) {
-  mx_t* fmt = p_new(mx_t, 1);
-
-  /* make up mx_t record... */
-  fmt->type = M_POP;
-  fmt->mx_is_magic = pop_is_magic;
-  fmt->mx_open_mailbox = pop_open_mailbox;
-  fmt->mx_acl_check = acl_check_pop;
-  fmt->mx_fastclose_mailbox = pop_close_mailbox;
-  fmt->mx_sync_mailbox = pop_sync_mailbox;
-  fmt->mx_check_mailbox = pop_check_mailbox;
-  return (fmt);
-}
+mx_t const pop_mx = {
+    M_POP,
+    0,
+    pop_is_magic,
+    NULL,
+    NULL,
+    pop_open_mailbox,
+    NULL,
+    acl_check_pop,
+    pop_check_mailbox,
+    pop_close_mailbox,
+    pop_sync_mailbox,
+    NULL,
+};