dfc4c89b78f9da6bb50ce85190f90ebe98a471a4
[claws.git] / src / common / smtp.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 #define SM_OK                   0
38 #define SM_ERROR                128
39 #define SM_UNRECOVERABLE        129
40 #define SM_AUTHFAIL             130
41
42 #define ESMTP_8BITMIME          0x01
43 #define ESMTP_SIZE              0x02
44 #define ESMTP_ETRN              0x04
45
46 typedef enum
47 {
48         SMTPAUTH_LOGIN      = 1 << 0,
49         SMTPAUTH_CRAM_MD5   = 1 << 1,
50         SMTPAUTH_DIGEST_MD5 = 1 << 2,
51         SMTPAUTH_TLS_AVAILABLE = 1 << 3
52 } SMTPAuthType;
53
54 typedef enum
55 {
56         SMTP_READY,
57         SMTP_CONNECTED,
58         SMTP_HELO,
59         SMTP_EHLO,
60         SMTP_STARTTLS,
61         SMTP_FROM,
62         SMTP_AUTH,
63         SMTP_AUTH_LOGIN_USER,
64         SMTP_AUTH_LOGIN_PASS,
65         SMTP_AUTH_CRAM_MD5,
66         SMTP_RCPT,
67         SMTP_DATA,
68         SMTP_SEND_DATA,
69         SMTP_EOM,
70         SMTP_RSET,
71         SMTP_QUIT,
72         SMTP_ERROR,
73         SMTP_AUTH_FAILED,
74         SMTP_DISCONNECTED,
75
76         N_SMTP_PHASE
77 } SMTPState;
78
79 struct _SMTPSession
80 {
81         Session session;
82
83         SMTPState state;
84
85 #if USE_OPENSSL
86         gboolean tls_init_done;
87 #endif
88
89         gchar *hostname;
90
91         gchar *user;
92         gchar *pass;
93
94         gchar *from;
95         GSList *to_list;
96         GSList *cur_to;
97
98         guchar *send_data;
99         guint send_data_len;
100
101         SMTPAuthType avail_auth_type;
102         SMTPAuthType forced_auth_type;
103         SMTPAuthType auth_type;
104 };
105
106 Session *smtp_session_new       (void);
107
108 #endif /* __SMTP_H__ */