X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=pop%2Fmx_pop.c;h=b75ba148bf99886b73ca8f94c97ce3a45d65df66;hb=5b365d691700e8e59f96dfa3a4c209574da29898;hp=c1f204884897449d9b510e34998d9ba7c0fab871;hpb=5b0581b41f115cd0442037a97db313ef5b5b8822;p=apps%2Fmadmutt.git diff --git a/pop/mx_pop.c b/pop/mx_pop.c index c1f2048..b75ba14 100644 --- a/pop/mx_pop.c +++ b/pop/mx_pop.c @@ -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 - -#include -#include -#include +#include #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, +};