29abeecf4fe99662f6871060b8a70e3adac981d9
[apps/madmutt.git] / imap / mx_imap.c
1 /*
2  * This file is part of mutt-ng, see http://www.muttng.org/.
3  * It's licensed under the GNU General Public License,
4  * please see the file GPL in the top level source directory.
5  */
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include <sys/stat.h>
11
12 #include <lib-lib/mem.h>
13
14 #include "mutt.h"
15 #include "imap_private.h"
16
17 #include "mx.h"
18 #include "mx_imap.h"
19
20 #include "lib/str.h"
21
22 #include "url.h"
23
24 int imap_is_magic (const char* path, struct stat* st) {
25   url_scheme_t s;
26   if (!path || !*path)
27     return (-1);
28   s = url_check_scheme (NONULL (path));
29   return ((s == U_IMAP || s == U_IMAPS) ? M_IMAP : -1);
30 }
31
32 static int acl_check_imap (CONTEXT* ctx, int bit) {
33   return (!mutt_bit_isset (((IMAP_DATA*) ctx->data)->capabilities, ACL) ||
34           mutt_bit_isset (((IMAP_DATA*) ctx->data)->rights, bit));
35 }
36
37 static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
38 {
39   char tmp[_POSIX_PATH_MAX];
40
41   mutt_mktemp (tmp);
42   if ((msg->fp = safe_fopen (tmp, "w")) == NULL) {
43     mutt_perror (tmp);
44     return (-1);
45   }
46   msg->path = str_dup (tmp);
47   return 0;
48 }
49
50 /* this ugly kludge is required since the last int to
51  * imap_check_mailbox() doesn't mean 'lock' but 'force'... */
52 static int _imap_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) {
53   return (imap_check_mailbox (ctx, index_hint, 0));
54 }
55
56 static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) {
57   int r = 0;
58
59   if ((r = safe_fclose (&msg->fp)) == 0)
60     r = imap_append_message (ctx, msg);
61   return (r);
62 }
63
64 mx_t* imap_reg_mx (void) {
65   mx_t* fmt = p_new(mx_t, 1);
66
67   /* make up mx_t record... */
68   fmt->type = M_IMAP;
69   fmt->mx_is_magic = imap_is_magic;
70   fmt->mx_access = imap_access;
71   fmt->mx_open_mailbox = imap_open_mailbox;
72   fmt->mx_open_new_message = imap_open_new_message;
73   fmt->mx_acl_check = acl_check_imap;
74   fmt->mx_fastclose_mailbox = imap_close_mailbox;
75   fmt->mx_sync_mailbox = imap_sync_mailbox;
76   fmt->mx_check_mailbox = _imap_check_mailbox;
77   fmt->mx_commit_message = imap_commit_message;
78   return (fmt);
79 }