* src/main.c
[claws.git] / src / imap.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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-1307, USA.
18  */
19
20 #ifndef __IMAP_H__
21 #define __IMAP_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28 #include <time.h>
29
30 #if USE_OPENSSL
31 #  include "ssl.h"
32 #endif
33 #include "folder.h"
34 #include "session.h"
35 #include "procmsg.h"
36
37 typedef struct _IMAPFolder      IMAPFolder;
38 typedef struct _IMAPSession     IMAPSession;
39 typedef struct _IMAPNameSpace   IMAPNameSpace;
40 typedef struct _IMAPFolderItem  IMAPFolderItem;
41
42 #include "prefs_account.h"
43
44 #define IMAP_FOLDER(obj)        ((IMAPFolder *)obj)
45 #define IMAP_SESSION(obj)       ((IMAPSession *)obj)
46
47 struct _IMAPFolder
48 {
49         RemoteFolder rfolder;
50
51         /* list of IMAPNameSpace */
52         GList *ns_personal;
53         GList *ns_others;
54         GList *ns_shared;
55 };
56
57 struct _IMAPSession
58 {
59         Session session;
60
61         gchar **capability;
62         gchar *mbox;
63         time_t last_access_time;
64         gboolean authenticated;
65 };
66
67 struct _IMAPNameSpace
68 {
69         gchar *name;
70         gchar separator;
71 };
72
73 #define IMAP_SUCCESS    0
74 #define IMAP_SOCKET     2
75 #define IMAP_AUTHFAIL   3
76 #define IMAP_PROTOCOL   4
77 #define IMAP_SYNTAX     5
78 #define IMAP_IOERR      6
79 #define IMAP_ERROR      7
80
81 #define IMAPBUFSIZE     8192
82
83 typedef enum
84 {
85         IMAP_FLAG_SEEN          = 1 << 0,
86         IMAP_FLAG_ANSWERED      = 1 << 1,
87         IMAP_FLAG_FLAGGED       = 1 << 2,
88         IMAP_FLAG_DELETED       = 1 << 3,
89         IMAP_FLAG_DRAFT         = 1 << 4
90 } IMAPFlags;
91
92 #define IMAP_IS_SEEN(flags)     ((flags & IMAP_FLAG_SEEN) != 0)
93 #define IMAP_IS_ANSWERED(flags) ((flags & IMAP_FLAG_ANSWERED) != 0)
94 #define IMAP_IS_FLAGGED(flags)  ((flags & IMAP_FLAG_FLAGGED) != 0)
95 #define IMAP_IS_DELETED(flags)  ((flags & IMAP_FLAG_DELETED) != 0)
96 #define IMAP_IS_DRAFT(flags)    ((flags & IMAP_FLAG_DRAFT) != 0)
97
98 FolderClass *imap_get_class             ();
99
100 #endif /* __IMAP_H__ */