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.
35 typedef struct _SMTPSession SMTPSession;
37 #define SMTP_SESSION(obj) ((SMTPSession *)obj)
39 #define MSGBUFSIZE 8192
43 #define SM_UNRECOVERABLE 129
44 #define SM_AUTHFAIL 130
46 #define ESMTP_8BITMIME 0x01
47 #define ESMTP_SIZE 0x02
48 #define ESMTP_ETRN 0x04
52 SMTPAUTH_LOGIN = 1 << 0,
53 SMTPAUTH_CRAM_MD5 = 1 << 1,
54 SMTPAUTH_DIGEST_MD5 = 1 << 2,
55 SMTPAUTH_TLS_AVAILABLE = 1 << 3
79 SMTPAuthType avail_auth_type;
84 Session *smtp_session_new (void);
85 void smtp_session_destroy (Session *session);
88 gint smtp_connect (SMTPSession *session,
96 gint smtp_connect (SMTPSession *session,
104 gint smtp_from (SMTPSession *session,
106 gint smtp_auth (SMTPSession *session,
107 SMTPAuthType forced_auth_type);
109 gint smtp_ehlo (SMTPSession *session,
110 const gchar *hostname,
111 SMTPAuthType *avail_auth_type);
113 gint smtp_helo (SMTPSession *session,
114 const gchar *hostname);
115 gint smtp_rcpt (SMTPSession *session,
117 gint smtp_data (SMTPSession *session);
118 gint smtp_rset (SMTPSession *session);
119 gint smtp_quit (SMTPSession *session);
120 gint smtp_eom (SMTPSession *session);
122 #endif /* __SMTP_H__ */