This commit was manufactured by cvs2svn to create tag 'LAST_STABLE'.
[claws.git] / src / smtp.h
blob3fd848c164019de296a20182b07bf63a96391f50
1 /*
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.
20 #ifndef __SMTP_H__
21 #define __SMTP_H__
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
27 #include <glib.h>
29 #include "socket.h"
30 #if USE_SSL
31 # include "ssl.h"
32 #endif
33 #include "session.h"
35 typedef struct _SMTPSession SMTPSession;
37 #define SMTP_SESSION(obj) ((SMTPSession *)obj)
39 #define MSGBUFSIZE 8192
41 #define SM_OK 0
42 #define SM_ERROR 128
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
50 typedef enum
52 SMTPAUTH_LOGIN = 1 << 0,
53 SMTPAUTH_CRAM_MD5 = 1 << 1,
54 SMTPAUTH_DIGEST_MD5 = 1 << 2
55 } SMTPAuthType;
57 struct _SMTPSession
59 Session session;
61 SMTPAuthType avail_auth_type;
62 gchar *user;
63 gchar *pass;
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 (SMTPSession *session);
82 gint smtp_from (SMTPSession *session,
83 const gchar *from);
84 gint smtp_auth (SMTPSession *session);
86 gint smtp_ehlo (SockInfo *sock,
87 const gchar *hostname,
88 SMTPAuthType *avail_auth_type);
90 gint smtp_helo (SockInfo *sock,
91 const gchar *hostname);
92 gint smtp_rcpt (SockInfo *sock,
93 const gchar *to);
94 gint smtp_data (SockInfo *sock);
95 gint smtp_rset (SockInfo *sock);
96 gint smtp_quit (SockInfo *sock);
97 gint smtp_eom (SockInfo *sock);
99 #endif /* __SMTP_H__ */