X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fmx_imap.c;h=17147e5f54867b792c1d2a89b538c50be615aabd;hp=eb402db269b87dbdacbb6ded6ffe4d068e64128b;hb=2ce8de509852f47a90f834b3e8d047e054810309;hpb=8e6b42b9b28f646a6764936d80bda04647d5b45f diff --git a/imap/mx_imap.c b/imap/mx_imap.c index eb402db..17147e5 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -3,9 +3,8 @@ * 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 "mutt.h" #include "imap_private.h" @@ -13,17 +12,10 @@ #include "mx.h" #include "mx_imap.h" -#include "lib/mem.h" -#include "lib/str.h" - -#include "url.h" - -static int imap_is_magic (const char* path) { +int imap_is_magic (const char* path, struct stat* st __attribute__ ((unused))) { url_scheme_t s; if (!path || !*path) return (-1); - if (*path == '{') /* painpine compatibility */ - return (M_IMAP); s = url_check_scheme (NONULL (path)); return ((s == U_IMAP || s == U_IMAPS) ? M_IMAP : -1); } @@ -33,14 +25,48 @@ static int acl_check_imap (CONTEXT* ctx, int bit) { mutt_bit_isset (((IMAP_DATA*) ctx->data)->rights, bit)); } -mx_t* imap_reg_mx (void) { - mx_t* fmt = safe_calloc (1, sizeof (mx_t)); +static int imap_open_new_message (MESSAGE * msg, + CONTEXT * dest __attribute__ ((unused)), + HEADER * hdr __attribute__ ((unused))) +{ + char tmp[_POSIX_PATH_MAX]; + + mutt_mktemp (tmp); + if ((msg->fp = safe_fopen (tmp, "w")) == NULL) { + mutt_perror (tmp); + return (-1); + } + msg->path = m_strdup(tmp); + return 0; +} + +/* this ugly kludge is required since the last int to + * imap_check_mailbox() doesn't mean 'lock' but 'force'... */ +static int _imap_check_mailbox (CONTEXT* ctx, + int* index_hint, + int lock __attribute__ ((unused))) { + return (imap_check_mailbox (ctx, index_hint, 0)); +} - /* make up mx_t record... */ - fmt->type = M_IMAP; - fmt->mx_is_magic = imap_is_magic; - fmt->mx_access = imap_access; - fmt->mx_open_mailbox = imap_open_mailbox; - fmt->mx_acl_check = acl_check_imap; - return (fmt); +static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) { + int r = 0; + + if ((r = safe_fclose (&msg->fp)) == 0) + r = imap_append_message (ctx, msg); + return (r); } + +mx_t const imap_mx = { + M_IMAP, + 0, + imap_is_magic, + NULL, + imap_access, + imap_open_mailbox, + imap_open_new_message, + acl_check_imap, + _imap_check_mailbox, + imap_close_mailbox, + imap_sync_mailbox, + imap_commit_message, +};