91e8ab0aaf
* src/Makefile.am * src/about.c * src/account.c * src/crash.c * src/esmtp.h * src/imap.[ch] * src/inc.c * src/main.c * src/mainwindow.c * src/news.c * src/pop.[ch] * src/prefs_account.[ch] * src/prefs_common.[ch] * src/send.[ch] * src/smtp.[ch] * src/ssl_certificate.[ch] * src/ssl_manager.[ch] * src/common/Makefile.am * src/common/log.c * src/common/nntp.[ch] * src/common/socket.[ch] * src/common/ssl.[ch] * src/gtk/sslcertwindow.c * ac/openssl.m4 use new autoconf script to detect OpenSSL with extra parameters to specify the location of libs and includes, also remove USE_SSL to USE_OPENSSL * src/common/sylpheed.[ch] * src/common/version.h.in start seperation of common code initialization seperated from gui last commit did not work without this, so here is the rest
121 lines
2.7 KiB
C
121 lines
2.7 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __SMTP_H__
|
|
#define __SMTP_H__
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <glib.h>
|
|
|
|
#include "socket.h"
|
|
#if USE_OPENSSL
|
|
# include "ssl.h"
|
|
#endif
|
|
#include "session.h"
|
|
|
|
typedef struct _SMTPSession SMTPSession;
|
|
|
|
#define SMTP_SESSION(obj) ((SMTPSession *)obj)
|
|
|
|
#define MSGBUFSIZE 8192
|
|
|
|
#define SM_OK 0
|
|
#define SM_ERROR 128
|
|
#define SM_UNRECOVERABLE 129
|
|
#define SM_AUTHFAIL 130
|
|
|
|
#define ESMTP_8BITMIME 0x01
|
|
#define ESMTP_SIZE 0x02
|
|
#define ESMTP_ETRN 0x04
|
|
|
|
typedef enum
|
|
{
|
|
SMTPAUTH_LOGIN = 1 << 0,
|
|
SMTPAUTH_CRAM_MD5 = 1 << 1,
|
|
SMTPAUTH_DIGEST_MD5 = 1 << 2
|
|
} SMTPAuthType;
|
|
|
|
typedef enum
|
|
{
|
|
SMTP_CONNECT,
|
|
SMTP_HELO,
|
|
SMTP_EHLO,
|
|
SMTP_STARTTLS,
|
|
SMTP_FROM,
|
|
SMTP_AUTH,
|
|
SMTP_RCPT,
|
|
SMTP_DATA,
|
|
SMTP_RSET,
|
|
SMTP_QUIT,
|
|
SMTP_EOM,
|
|
|
|
N_SMTP_PHASE
|
|
} SMTPPhase;
|
|
|
|
struct _SMTPSession
|
|
{
|
|
Session session;
|
|
|
|
SMTPAuthType avail_auth_type;
|
|
gchar *user;
|
|
gchar *pass;
|
|
};
|
|
|
|
Session *smtp_session_new (void);
|
|
void smtp_session_destroy (Session *session);
|
|
|
|
#if USE_OPENSSL
|
|
gint smtp_connect (SMTPSession *session,
|
|
const gchar *server,
|
|
gushort port,
|
|
const gchar *domain,
|
|
const gchar *user,
|
|
const gchar *pass,
|
|
SSLType ssl_type);
|
|
#else
|
|
gint smtp_connect (SMTPSession *session,
|
|
const gchar *server,
|
|
gushort port,
|
|
const gchar *domain,
|
|
const gchar *user,
|
|
const gchar *pass);
|
|
#endif
|
|
|
|
gint smtp_from (SMTPSession *session,
|
|
const gchar *from);
|
|
gint smtp_auth (SMTPSession *session,
|
|
SMTPAuthType forced_auth_type);
|
|
|
|
gint smtp_ehlo (SMTPSession *session,
|
|
const gchar *hostname,
|
|
SMTPAuthType *avail_auth_type);
|
|
|
|
gint smtp_helo (SMTPSession *session,
|
|
const gchar *hostname);
|
|
gint smtp_rcpt (SMTPSession *session,
|
|
const gchar *to);
|
|
gint smtp_data (SMTPSession *session);
|
|
gint smtp_rset (SMTPSession *session);
|
|
gint smtp_quit (SMTPSession *session);
|
|
gint smtp_eom (SMTPSession *session);
|
|
|
|
#endif /* __SMTP_H__ */
|