2007-01-17 [colin] 2.7.1cvs16
[claws.git] / src / imap.h
index 768b4d51510349fea605f96d614de9c0388de765..d329fceca60508298495279da30cdd62709e9f3a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2002 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef __IMAP_H__
 
 #include "folder.h"
 
-FolderClass *imap_get_class            ();
+typedef enum
+{
+       IMAP_AUTH_LOGIN         = 1 << 0,
+       IMAP_AUTH_CRAM_MD5      = 1 << 1,
+       IMAP_AUTH_ANON          = 1 << 2,
+       IMAP_AUTH_GSSAPI        = 1 << 3
+} IMAPAuthType;
 
+FolderClass *imap_get_class            (void);
+guint imap_folder_get_refcnt(Folder *folder);
+void imap_folder_ref(Folder *folder);
+void imap_folder_unref(Folder *folder);
+gchar imap_get_path_separator_for_item (FolderItem *item);
+void imap_disconnect_all(void);
+gint imap_scan_tree_real(Folder *folder, gboolean subs_only);
+gint imap_subscribe(Folder *folder, FolderItem *item, gchar *rpath, gboolean sub);
+GList *imap_scan_subtree(Folder *folder, FolderItem *item, gboolean unsubs_only, gboolean recursive);
 #endif /* __IMAP_H__ */