enable IMAP folder dnd
[claws.git] / src / smtp.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 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 "socket.h"
30 #if USE_SSL
31 #  include "ssl.h"
32 #endif
33 #include "session.h"
34
35 typedef struct _SMTPSession     SMTPSession;
36
37 #define SMTP_SESSION(obj)       ((SMTPSession *)obj)
38
39 #define MSGBUFSIZE              8192
40
41 #define SM_OK                   0
42 #define SM_ERROR                128
43 #define SM_UNRECOVERABLE        129
44 #define SM_AUTHFAIL             130
45
46 #define ESMTP_8BITMIME          0x01
47 #define ESMTP_SIZE              0x02
48 #define ESMTP_ETRN              0x04
49
50 typedef enum
51 {
52         SMTPAUTH_LOGIN      = 1 << 0,
53         SMTPAUTH_CRAM_MD5   = 1 << 1,
54         SMTPAUTH_DIGEST_MD5 = 1 << 2
55 } SMTPAuthType;
56
57 typedef enum
58 {
59         SMTP_CONNECT,
60         SMTP_HELO,
61         SMTP_EHLO,
62         SMTP_STARTTLS,
63         SMTP_FROM,
64         SMTP_AUTH,
65         SMTP_RCPT,
66         SMTP_DATA,
67         SMTP_RSET,
68         SMTP_QUIT,
69         SMTP_EOM,
70
71         N_SMTP_PHASE
72 } SMTPPhase;
73
74 struct _SMTPSession
75 {
76         Session session;
77
78         SMTPAuthType avail_auth_type;
79         gchar *user;
80         gchar *pass;
81 };
82
83 Session *smtp_session_new       (void);
84 void smtp_session_destroy       (Session        *session);
85
86 #if USE_SSL
87 gint smtp_connect               (SMTPSession    *session,
88                                  const gchar    *server,
89                                  gushort         port,
90                                  const gchar    *domain,
91                                  const gchar    *user,
92                                  const gchar    *pass,
93                                  SSLType         ssl_type);
94 #else
95 gint smtp_connect               (SMTPSession    *session,
96                                  const gchar    *server,
97                                  gushort         port,
98                                  const gchar    *domain,
99                                  const gchar    *user,
100                                  const gchar    *pass);
101 #endif
102
103 gint smtp_from                  (SMTPSession    *session,
104                                  const gchar    *from);
105 gint smtp_auth                  (SMTPSession    *session,
106                                  SMTPAuthType    forced_auth_type);
107
108 gint smtp_ehlo                  (SMTPSession    *session,
109                                  const gchar    *hostname,
110                                  SMTPAuthType   *avail_auth_type);
111
112 gint smtp_helo                  (SMTPSession    *session,
113                                  const gchar    *hostname);
114 gint smtp_rcpt                  (SMTPSession    *session,
115                                  const gchar    *to);
116 gint smtp_data                  (SMTPSession    *session);
117 gint smtp_rset                  (SMTPSession    *session);
118 gint smtp_quit                  (SMTPSession    *session);
119 gint smtp_eom                   (SMTPSession    *session);
120
121 #endif /* __SMTP_H__ */