claws-mail/src/smtp.h

122 lines
2.7 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2002-04-09 17:21:52 +02:00
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
2001-04-19 14:21:46 +02:00
*
* 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__
2002-04-09 17:21:52 +02:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2001-04-19 14:21:46 +02:00
#include <glib.h>
2001-04-27 22:27:24 +02:00
#include "socket.h"
2002-04-09 17:21:52 +02:00
#if USE_SSL
# include "ssl.h"
#endif
#include "session.h"
typedef struct _SMTPSession SMTPSession;
#define SMTP_SESSION(obj) ((SMTPSession *)obj)
2001-04-27 22:27:24 +02:00
2002-04-09 17:21:52 +02:00
#define MSGBUFSIZE 8192
2001-04-19 14:21:46 +02:00
#define SM_OK 0
#define SM_ERROR 128
#define SM_UNRECOVERABLE 129
2001-10-19 09:49:39 +02:00
#define SM_AUTHFAIL 130
2001-04-19 14:21:46 +02:00
#define ESMTP_8BITMIME 0x01
#define ESMTP_SIZE 0x02
#define ESMTP_ETRN 0x04
2002-04-09 17:21:52 +02:00
typedef enum
{
SMTPAUTH_LOGIN = 1 << 0,
SMTPAUTH_CRAM_MD5 = 1 << 1,
SMTPAUTH_DIGEST_MD5 = 1 << 2
} SMTPAuthType;
2002-11-25 19:10:26 +01:00
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;
2002-04-09 17:21:52 +02:00
struct _SMTPSession
{
Session session;
SMTPAuthType avail_auth_type;
gchar *user;
gchar *pass;
};
2002-11-25 19:10:26 +01:00
Session *smtp_session_new (void);
void smtp_session_destroy (Session *session);
2002-04-09 17:21:52 +02:00
#if USE_SSL
2002-11-25 19:10:26 +01:00
gint smtp_connect (SMTPSession *session,
const gchar *server,
2002-04-09 17:21:52 +02:00
gushort port,
const gchar *domain,
const gchar *user,
const gchar *pass,
2002-06-28 10:08:36 +02:00
SSLType ssl_type);
2002-04-09 17:21:52 +02:00
#else
2002-11-25 19:10:26 +01:00
gint smtp_connect (SMTPSession *session,
const gchar *server,
2002-04-09 17:21:52 +02:00
gushort port,
const gchar *domain,
const gchar *user,
2002-06-28 10:08:36 +02:00
const gchar *pass);
2002-04-09 17:21:52 +02:00
#endif
gint smtp_from (SMTPSession *session,
2002-11-25 19:09:26 +01:00
const gchar *from);
2002-06-28 10:08:36 +02:00
gint smtp_auth (SMTPSession *session,
SMTPAuthType forced_auth_type);
2002-04-09 17:21:52 +02:00
2002-11-25 19:10:26 +01:00
gint smtp_ehlo (SMTPSession *session,
2002-04-09 17:21:52 +02:00
const gchar *hostname,
2002-06-28 10:08:36 +02:00
SMTPAuthType *avail_auth_type);
2002-04-09 17:21:52 +02:00
2002-11-25 19:10:26 +01:00
gint smtp_helo (SMTPSession *session,
2002-04-09 17:21:52 +02:00
const gchar *hostname);
2002-11-25 19:10:26 +01:00
gint smtp_rcpt (SMTPSession *session,
2002-04-09 17:21:52 +02:00
const gchar *to);
2002-11-25 19:10:26 +01:00
gint smtp_data (SMTPSession *session);
gint smtp_rset (SMTPSession *session);
gint smtp_quit (SMTPSession *session);
gint smtp_eom (SMTPSession *session);
2001-04-19 14:21:46 +02:00
#endif /* __SMTP_H__ */