use my own APIS for headers, parameters and so on
[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 #include <lib-lib/file.h>
14 #include <lib-lib/str.h>
15
16 #include "mutt.h"
17 #include "imap_private.h"
18
19 #include "mx.h"
20 #include "mx_imap.h"
21
22
23 #include "url.h"
24
25 int imap_is_magic (const char* path, struct stat* st) {
26   url_scheme_t s;
27   if (!path || !*path)
28     return (-1);
29   s = url_check_scheme (NONULL (path));
30   return ((s == U_IMAP || s == U_IMAPS) ? M_IMAP : -1);
31 }
32
33 static int acl_check_imap (CONTEXT* ctx, int bit) {
34   return (!mutt_bit_isset (((IMAP_DATA*) ctx->data)->capabilities, ACL) ||
35           mutt_bit_isset (((IMAP_DATA*) ctx->data)->rights, bit));
36 }
37
38 static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
39 {
40   char tmp[_POSIX_PATH_MAX];
41
42   mutt_mktemp (tmp);
43   if ((msg->fp = safe_fopen (tmp, "w")) == NULL) {
44     mutt_perror (tmp);
45     return (-1);
46   }
47   msg->path = m_strdup(tmp);
48   return 0;
49 }
50
51 /* this ugly kludge is required since the last int to
52  * imap_check_mailbox() doesn't mean 'lock' but 'force'... */
53 static int _imap_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) {
54   return (imap_check_mailbox (ctx, index_hint, 0));
55 }
56
57 static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) {
58   int r = 0;
59
60   if ((r = safe_fclose (&msg->fp)) == 0)
61     r = imap_append_message (ctx, msg);
62   return (r);
63 }
64
65 mx_t* imap_reg_mx (void) {
66   mx_t* fmt = p_new(mx_t, 1);
67
68   /* make up mx_t record... */
69   fmt->type = M_IMAP;
70   fmt->mx_is_magic = imap_is_magic;
71   fmt->mx_access = imap_access;
72   fmt->mx_open_mailbox = imap_open_mailbox;
73   fmt->mx_open_new_message = imap_open_new_message;
74   fmt->mx_acl_check = acl_check_imap;
75   fmt->mx_fastclose_mailbox = imap_close_mailbox;
76   fmt->mx_sync_mailbox = imap_sync_mailbox;
77   fmt->mx_check_mailbox = _imap_check_mailbox;
78   fmt->mx_commit_message = imap_commit_message;
79   return (fmt);
80 }