2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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.
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.
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.
37 typedef struct _IMAPFolder IMAPFolder;
38 typedef struct _IMAPSession IMAPSession;
39 typedef struct _IMAPNameSpace IMAPNameSpace;
40 typedef struct _IMAPFolderItem IMAPFolderItem;
42 #include "prefs_account.h"
44 #define IMAP_FOLDER(obj) ((IMAPFolder *)obj)
45 #define IMAP_SESSION(obj) ((IMAPSession *)obj)
51 gchar *selected_folder;
53 /* list of IMAPNameSpace */
64 time_t last_access_time;
73 struct _IMAPFolderItem
81 #define IMAP_SUCCESS 0
83 #define IMAP_AUTHFAIL 3
84 #define IMAP_PROTOCOL 4
89 #define IMAPBUFSIZE 8192
93 IMAP_FLAG_SEEN = 1 << 0,
94 IMAP_FLAG_ANSWERED = 1 << 1,
95 IMAP_FLAG_FLAGGED = 1 << 2,
96 IMAP_FLAG_DELETED = 1 << 3,
97 IMAP_FLAG_DRAFT = 1 << 4
100 #define IMAP_IS_SEEN(flags) ((flags & IMAP_FLAG_SEEN) != 0)
101 #define IMAP_IS_ANSWERED(flags) ((flags & IMAP_FLAG_ANSWERED) != 0)
102 #define IMAP_IS_FLAGGED(flags) ((flags & IMAP_FLAG_FLAGGED) != 0)
103 #define IMAP_IS_DELETED(flags) ((flags & IMAP_FLAG_DELETED) != 0)
104 #define IMAP_IS_DRAFT(flags) ((flags & IMAP_FLAG_DRAFT) != 0)
106 Folder *imap_folder_new (const gchar *name,
108 void imap_folder_destroy (Folder *folder);
110 FolderItem *imap_folder_item_new ();
111 void imap_folder_item_destroy (FolderItem *item);
113 Session *imap_session_new (const PrefsAccount *account);
114 void imap_session_destroy (Session *session);
115 void imap_session_destroy_all (void);
117 GSList *imap_get_msg_list (Folder *folder,
120 gchar *imap_fetch_msg (Folder *folder,
123 gint imap_add_msg (Folder *folder,
126 gboolean remove_source);
128 gint imap_move_msg (Folder *folder,
131 gint imap_move_msgs_with_dest (Folder *folder,
134 gint imap_copy_msg (Folder *folder,
137 gint imap_copy_msgs_with_dest (Folder *folder,
141 gint imap_remove_msg (Folder *folder,
144 gint imap_remove_msgs (Folder *folder,
147 gint imap_remove_all_msg (Folder *folder,
150 gboolean imap_is_msg_changed (Folder *folder,
154 gint imap_scan_folder (Folder *folder,
156 void imap_scan_tree (Folder *folder);
158 gint imap_create_tree (Folder *folder);
160 FolderItem *imap_create_folder (Folder *folder,
163 gint imap_rename_folder (Folder *folder,
166 gint imap_remove_folder (Folder *folder,
169 gint imap_msg_set_perm_flags (MsgInfo *msginfo,
171 gint imap_msg_unset_perm_flags (MsgInfo *msginfo,
174 #endif /* __IMAP_H__ */