4a3608d0a354a6797150dc4254eac27067137ff4
[apps/madmutt.git] / imap / imap.h
1 /*
2  * Copyright (C) 1996-8 Michael R. Elkins <me@mutt.org>
3  * Copyright (C) 2000-3 Brendan Cully <brendan@kublai.com>
4  * 
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  * 
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  * 
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
18  */ 
19
20 #ifndef _IMAP_H
21 #define _IMAP_H 1
22
23 #include "account.h"
24 #include "browser.h"
25 #include "mailbox.h"
26
27 /* -- data structures -- */
28 typedef struct
29 {
30   ACCOUNT account;
31   char* mbox;
32 } IMAP_MBOX;
33
34 /* imap.c */
35 int imap_access (const char*, int);
36 int imap_check_mailbox (CONTEXT *ctx, int *index_hint, int force);
37 int imap_close_connection (CONTEXT *ctx);
38 int imap_delete_mailbox (CONTEXT* idata, IMAP_MBOX mx);
39 int imap_open_mailbox (CONTEXT *ctx);
40 int imap_open_mailbox_append (CONTEXT *ctx);
41 int imap_sync_mailbox (CONTEXT *ctx, int expunge, int *index_hint);
42 void imap_close_mailbox (CONTEXT *ctx);
43 int imap_buffy_check (char *path);
44 int imap_mailbox_check (char *path, int new);
45 int imap_subscribe (char *path, int subscribe);
46 int imap_complete (char* dest, size_t dlen, char* path);
47
48 void imap_allow_reopen (CONTEXT *ctx);
49 void imap_disallow_reopen (CONTEXT *ctx);
50
51 /* browse.c */
52 int imap_browse (char* path, struct browser_state* state);
53 int imap_mailbox_create (const char* folder);
54
55 /* message.c */
56 int imap_append_message (CONTEXT* ctx, MESSAGE* msg);
57 int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete);
58 int imap_fetch_message (MESSAGE* msg, CONTEXT* ctx, int msgno);
59
60 /* socket.c */
61 void imap_logout_all (void);
62
63 /* util.c */
64 int imap_expand_path (char* path, size_t len);
65 int imap_parse_path (const char* path, IMAP_MBOX* mx);
66 void imap_pretty_mailbox (char* path);
67
68 int imap_wait_keepalive (pid_t pid);
69 void imap_keepalive (void);
70
71 #endif