2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
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 3 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, see <http://www.gnu.org/licenses/>.
24 #include "claws-features.h"
31 typedef struct _SMTPSession SMTPSession
;
33 #define SMTP_SESSION(obj) ((SMTPSession *)obj)
35 #define MESSAGEBUFSIZE 8192
41 SM_UNRECOVERABLE
= 129,
47 ESMTP_8BITMIME
= 1 << 0,
54 SMTPAUTH_LOGIN
= 1 << 0,
55 SMTPAUTH_CRAM_MD5
= 1 << 1,
56 SMTPAUTH_DIGEST_MD5
= 1 << 2,
57 SMTPAUTH_TLS_AVAILABLE
= 1 << 3,
58 SMTPAUTH_PLAIN
= 1 << 4,
59 SMTPAUTH_OAUTH2
= 1 << 5
106 gint max_message_size
;
108 SMTPAuthType avail_auth_type
;
109 SMTPAuthType forced_auth_type
;
110 SMTPAuthType auth_type
;
112 SMTPErrorValue error_val
;
115 ESMTPFlag esmtp_flags
;
120 gboolean tls_init_done
;
124 Session
*smtp_session_new (void *prefs_account
);
125 gint
smtp_from(SMTPSession
*session
);
126 gint
smtp_quit(SMTPSession
*session
);
128 #endif /* __SMTP_H__ */