claws-mail/src/imap.h
Colin Leroy b8882e98ef 2006-06-29 [colin] 2.3.1cvs41
* src/imap.c
	* src/imap.h
	* src/mainwindow.c
		Disconnect from IMAP servers when going
		offline. Fixes bug #978 (going to offline-mode
		won't close connections)
2006-06-29 17:20:04 +00:00

38 lines
1.3 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __IMAP_H__
#define __IMAP_H__
#include "folder.h"
typedef enum
{
IMAP_AUTH_LOGIN = 1 << 0,
IMAP_AUTH_CRAM_MD5 = 1 << 1,
IMAP_AUTH_ANON = 1 << 2
} 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);
#endif /* __IMAP_H__ */