0.8.5claws173
[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 struct _SMTPSession
58 {
59         Session session;
60
61         SMTPAuthType avail_auth_type;
62         gchar *user;
63         gchar *pass;
64 };
65
66 #if USE_SSL
67 Session *smtp_session_new       (const gchar    *server,
68                                  gushort         port,
69                                  const gchar    *domain,
70                                  const gchar    *user,
71                                  const gchar    *pass,
72                                  SSLType         ssl_type);
73 #else
74 Session *smtp_session_new       (const gchar    *server,
75                                  gushort         port,
76                                  const gchar    *domain,
77                                  const gchar    *user,
78                                  const gchar    *pass);
79 #endif
80 void smtp_session_destroy       (Session        *session);
81
82 gint smtp_from                  (SMTPSession    *session,
83                                  const gchar    *from,
84                                  SMTPAuthType    forced_auth_type);
85 gint smtp_auth                  (SMTPSession    *session,
86                                  SMTPAuthType    forced_auth_type);
87
88 gint smtp_ehlo                  (SockInfo       *sock,
89                                  const gchar    *hostname,
90                                  SMTPAuthType   *avail_auth_type);
91
92 gint smtp_helo                  (SockInfo       *sock,
93                                  const gchar    *hostname);
94 gint smtp_rcpt                  (SockInfo       *sock,
95                                  const gchar    *to);
96 gint smtp_data                  (SockInfo       *sock);
97 gint smtp_rset                  (SockInfo       *sock);
98 gint smtp_quit                  (SockInfo       *sock);
99 gint smtp_eom                   (SockInfo       *sock);
100
101 #endif /* __SMTP_H__ */