2007-05-03 [wwp] 2.9.1cvs41
[claws.git] / src / common / smtp.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
4  *
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.
9  *
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.
14  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __SMTP_H__
21 #define __SMTP_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28
29 #include "session.h"
30
31 typedef struct _SMTPSession     SMTPSession;
32
33 #define SMTP_SESSION(obj)       ((SMTPSession *)obj)
34
35 #define MSGBUFSIZE              8192
36
37 typedef enum
38 {
39         SM_OK                   = 0,
40         SM_ERROR                = 128,
41         SM_UNRECOVERABLE        = 129,
42         SM_AUTHFAIL             = 130
43 } SMTPErrorValue;
44
45 typedef enum
46 {
47         ESMTP_8BITMIME  = 1 << 0,
48         ESMTP_SIZE      = 1 << 1,
49         ESMTP_ETRN      = 1 << 2
50 } ESMTPFlag;
51
52 typedef enum
53 {
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 } SMTPAuthType;
60
61 typedef enum
62 {
63         SMTP_READY,
64         SMTP_CONNECTED,
65         SMTP_HELO,
66         SMTP_EHLO,
67         SMTP_STARTTLS,
68         SMTP_FROM,
69         SMTP_AUTH,
70         SMTP_AUTH_LOGIN_USER,
71         SMTP_AUTH_LOGIN_PASS,
72         SMTP_AUTH_CRAM_MD5,
73         SMTP_AUTH_PLAIN,
74         SMTP_RCPT,
75         SMTP_DATA,
76         SMTP_SEND_DATA,
77         SMTP_EOM,
78         SMTP_RSET,
79         SMTP_QUIT,
80         SMTP_ERROR,
81         SMTP_DISCONNECTED,
82         SMTP_MAIL_SENT_OK,
83
84         N_SMTP_PHASE
85 } SMTPState;
86
87 struct _SMTPSession
88 {
89         Session session;
90
91         SMTPState state;
92
93 #if USE_OPENSSL
94         gboolean tls_init_done;
95 #endif
96
97         gchar *hostname;
98
99         gchar *user;
100         gchar *pass;
101
102         gchar *from;
103         GSList *to_list;
104         GSList *cur_to;
105
106         guchar *send_data;
107         guint send_data_len;
108
109         gint max_message_size;
110
111         SMTPAuthType avail_auth_type;
112         SMTPAuthType forced_auth_type;
113         SMTPAuthType auth_type;
114
115         SMTPErrorValue error_val;
116         gchar *error_msg;
117         gboolean is_esmtp;
118         ESMTPFlag esmtp_flags;
119         
120         void *dialog;
121 };
122
123 Session *smtp_session_new       (void);
124 gint smtp_from(SMTPSession *session);
125 gint smtp_quit(SMTPSession *session);
126
127 #endif /* __SMTP_H__ */