add Summary->Next/Prev labeled message
[claws.git] / src / imap.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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
29 #include "folder.h"
30 #include "session.h"
31
32 typedef struct _IMAPSession     IMAPSession;
33 typedef struct _IMAPNameSpace   IMAPNameSpace;
34
35 #include "prefs_account.h"
36
37 #define IMAP_SESSION(obj)       ((IMAPSession *)obj)
38
39 struct _IMAPSession
40 {
41         Session session;
42
43         gchar *mbox;
44 };
45
46 struct _IMAPNameSpace
47 {
48         gchar *name;
49         gchar separator;
50 };
51
52 #define IMAP_SUCCESS    0
53 #define IMAP_SOCKET     2
54 #define IMAP_AUTHFAIL   3
55 #define IMAP_PROTOCOL   4
56 #define IMAP_SYNTAX     5
57 #define IMAP_IOERR      6
58 #define IMAP_ERROR      7
59
60 #define IMAPBUFSIZE     8192
61
62 typedef enum
63 {
64         IMAP_FLAG_SEEN          = 1 << 0,
65         IMAP_FLAG_ANSWERED      = 1 << 1,
66         IMAP_FLAG_FLAGGED       = 1 << 2,
67         IMAP_FLAG_DELETED       = 1 << 3,
68         IMAP_FLAG_DRAFT         = 1 << 4
69 } IMAPFlags;
70
71 #define IMAP_IS_SEEN(flags)     ((flags & IMAP_FLAG_SEEN) != 0)
72 #define IMAP_IS_ANSWERED(flags) ((flags & IMAP_FLAG_ANSWERED) != 0)
73 #define IMAP_IS_FLAGGED(flags)  ((flags & IMAP_FLAG_FLAGGED) != 0)
74 #define IMAP_IS_DELETED(flags)  ((flags & IMAP_FLAG_DELETED) != 0)
75 #define IMAP_IS_DRAFT(flags)    ((flags & IMAP_FLAG_DRAFT) != 0)
76
77 #if USE_SSL
78 Session *imap_session_new               (const gchar    *server,
79                                          gushort         port,
80                                          const gchar    *user,
81                                          const gchar    *pass,
82                                          gboolean        use_ssl);
83 #else
84 Session *imap_session_new               (const gchar    *server,
85                                          gushort         port,
86                                          const gchar    *user,
87                                          const gchar    *pass);
88 #endif
89 void imap_session_destroy               (IMAPSession    *session);
90 void imap_session_destroy_all           (void);
91
92 GSList *imap_get_msg_list               (Folder         *folder,
93                                          FolderItem     *item,
94                                          gboolean        use_cache);
95 gchar *imap_fetch_msg                   (Folder         *folder,
96                                          FolderItem     *item,
97                                          gint            uid);
98 gint imap_add_msg                       (Folder         *folder,
99                                          FolderItem     *dest,
100                                          const gchar    *file,
101                                          gboolean        remove_source);
102
103 gint imap_move_msg                      (Folder         *folder,
104                                          FolderItem     *dest,
105                                          MsgInfo        *msginfo);
106 gint imap_move_msgs_with_dest           (Folder         *folder,
107                                          FolderItem     *dest,
108                                          GSList         *msglist);
109 gint imap_copy_msg                      (Folder         *folder,
110                                          FolderItem     *dest,
111                                          MsgInfo        *msginfo);
112 gint imap_copy_msgs_with_dest           (Folder         *folder,
113                                          FolderItem     *dest,
114                                          GSList         *msglist);
115
116 gint imap_remove_msg                    (Folder         *folder,
117                                          FolderItem     *item,
118                                          gint            uid);
119 gint imap_remove_all_msg                (Folder         *folder,
120                                          FolderItem     *item);
121
122 void imap_scan_folder                   (Folder         *folder,
123                                          FolderItem     *item);
124 void imap_scan_tree                     (Folder         *folder);
125
126 gint imap_create_tree                   (Folder         *folder);
127
128 FolderItem *imap_create_folder          (Folder         *folder,
129                                          FolderItem     *parent,
130                                          const gchar    *name);
131 gint imap_remove_folder                 (Folder         *folder,
132                                          FolderItem     *item);
133
134 #endif /* __IMAP_H__ */