claws-mail/src/common/smtp.h
Christoph Hohmann fef4522147 0.8.6claws90
* src/Makefile.am
* src/smtp.[ch]                 ** REMOVE **
* src/common/Makefile.am
* src/common/smtp.[ch]          ** NEW **
        move smtp files to common directory
2002-12-09 19:06:34 +00:00

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__ */