root / src / smtp.h @ 133
History | View | Annotate | Download (2.1 kB)
| 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 | 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 | } SMTPAuthType; |
| 58 | |
| 59 | typedef enum |
| 60 | {
|
| 61 | SMTP_READY, |
| 62 | SMTP_CONNECTED, |
| 63 | SMTP_HELO, |
| 64 | SMTP_EHLO, |
| 65 | SMTP_STARTTLS, |
| 66 | SMTP_FROM, |
| 67 | SMTP_AUTH, |
| 68 | SMTP_AUTH_LOGIN_USER, |
| 69 | SMTP_AUTH_LOGIN_PASS, |
| 70 | SMTP_AUTH_CRAM_MD5, |
| 71 | SMTP_RCPT, |
| 72 | SMTP_DATA, |
| 73 | SMTP_SEND_DATA, |
| 74 | SMTP_EOM, |
| 75 | SMTP_RSET, |
| 76 | SMTP_QUIT, |
| 77 | SMTP_ERROR, |
| 78 | SMTP_DISCONNECTED, |
| 79 | |
| 80 | N_SMTP_PHASE |
| 81 | } SMTPState; |
| 82 | |
| 83 | struct _SMTPSession
|
| 84 | {
|
| 85 | Session session; |
| 86 | |
| 87 | SMTPState state; |
| 88 | |
| 89 | #if USE_SSL
|
| 90 | gboolean tls_init_done; |
| 91 | #endif
|
| 92 | |
| 93 | gchar *hostname; |
| 94 | |
| 95 | gchar *user; |
| 96 | gchar *pass; |
| 97 | |
| 98 | gchar *from; |
| 99 | GSList *to_list; |
| 100 | GSList *cur_to; |
| 101 | |
| 102 | guchar *send_data; |
| 103 | guint send_data_len; |
| 104 | |
| 105 | SMTPAuthType avail_auth_type; |
| 106 | SMTPAuthType forced_auth_type; |
| 107 | SMTPAuthType auth_type; |
| 108 | |
| 109 | SMTPErrorValue error_val; |
| 110 | gchar *error_msg; |
| 111 | }; |
| 112 | |
| 113 | Session *smtp_session_new (void);
|
| 114 | |
| 115 | #endif /* __SMTP_H__ */ |