claws-mail/src/pop.h

142 lines
3.4 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2003-03-25 09:29:02 +01:00
* Copyright (C) 1999-2003 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 __POP_H__
#define __POP_H__
2002-05-29 10:28:56 +02:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2001-04-19 14:21:46 +02:00
#include <glib.h>
2002-06-17 12:02:21 +02:00
#include <time.h>
2001-04-19 14:21:46 +02:00
2003-03-25 09:29:02 +01:00
#include "session.h"
2002-08-31 11:41:45 +02:00
#include "prefs_account.h"
2001-04-27 22:27:24 +02:00
2002-02-27 09:15:53 +01:00
typedef struct _Pop3MsgInfo Pop3MsgInfo;
2003-03-25 09:29:02 +01:00
typedef struct _Pop3Session Pop3Session;
#define POP3_SESSION(obj) ((Pop3Session *)obj)
2002-02-27 09:15:53 +01:00
2001-04-19 14:21:46 +02:00
typedef enum {
2003-03-25 09:29:02 +01:00
POP3_READY,
POP3_GREETING,
#if USE_OPENSSL
2003-03-25 09:29:02 +01:00
POP3_STLS,
2002-05-29 10:28:56 +02:00
#endif
2003-03-25 09:29:02 +01:00
POP3_GETAUTH_USER,
POP3_GETAUTH_PASS,
POP3_GETAUTH_APOP,
POP3_GETRANGE_STAT,
POP3_GETRANGE_LAST,
POP3_GETRANGE_UIDL,
2001-04-19 14:21:46 +02:00
POP3_GETRANGE_UIDL_RECV,
2003-03-25 09:29:02 +01:00
POP3_GETSIZE_LIST,
2001-04-28 00:47:56 +02:00
POP3_GETSIZE_LIST_RECV,
2003-03-25 09:29:02 +01:00
POP3_RETR,
2001-04-19 14:21:46 +02:00
POP3_RETR_RECV,
2003-03-25 09:29:02 +01:00
POP3_DELETE,
POP3_LOGOUT,
POP3_ERROR,
2001-04-19 14:21:46 +02:00
2003-03-25 09:29:02 +01:00
N_POP3_STATE
} Pop3State;
2001-04-19 14:21:46 +02:00
2002-09-25 08:15:31 +02:00
typedef enum {
RECV_TIME_NONE = 0,
RECV_TIME_RECEIVED = 1,
RECV_TIME_KEEP = 2
} RecvTime;
2002-02-27 09:15:53 +01:00
struct _Pop3MsgInfo
{
gint size;
gchar *uidl;
2002-06-17 12:02:21 +02:00
time_t recv_time;
2002-02-27 09:15:53 +01:00
guint received : 1;
guint deleted : 1;
};
2003-03-25 09:29:02 +01:00
struct _Pop3Session
2002-08-31 11:41:45 +02:00
{
2003-03-25 09:29:02 +01:00
Session session;
2002-08-31 11:41:45 +02:00
2003-03-25 09:29:02 +01:00
Pop3State state;
2002-08-31 11:41:45 +02:00
gchar *prev_folder;
2003-03-25 09:29:02 +01:00
PrefsAccount *ac_prefs;
2002-08-31 11:41:45 +02:00
gchar *greeting;
gchar *user;
gchar *pass;
gint count;
gint total_bytes;
gint cur_msg;
gint cur_total_num;
gint cur_total_bytes;
gint cur_total_recv_bytes;
Pop3MsgInfo *msg;
GHashTable *uidl_table;
2003-03-25 09:29:02 +01:00
gboolean new_msg_exist;
2002-08-31 11:41:45 +02:00
gboolean uidl_is_valid;
time_t current_time;
gint error_val;
gpointer data;
};
2001-04-19 14:21:46 +02:00
#define POPBUFSIZE 512
#define IDLEN 128
/* exit code values */
#define PS_SUCCESS 0 /* successful receipt of messages */
#define PS_NOMAIL 1 /* no mail available */
#define PS_SOCKET 2 /* socket I/O woes */
#define PS_AUTHFAIL 3 /* user authorization failed */
#define PS_PROTOCOL 4 /* protocol violation */
#define PS_SYNTAX 5 /* command-line syntax error */
#define PS_IOERR 6 /* bad permissions on rc file */
#define PS_ERROR 7 /* protocol error */
#define PS_EXCLUDE 8 /* client-side exclusion error */
#define PS_LOCKBUSY 9 /* server responded lock busy */
#define PS_SMTP 10 /* SMTP error */
#define PS_DNS 11 /* fatal DNS error */
#define PS_BSMTP 12 /* output batch could not be opened */
#define PS_MAXFETCH 13 /* poll ended by fetch limit */
/* leave space for more codes */
#define PS_UNDEFINED 23 /* something I hadn't thought of */
#define PS_TRANSIENT 24 /* transient failure (internal use) */
#define PS_REFUSED 25 /* mail refused (internal use) */
#define PS_RETAINED 26 /* message retained (internal use) */
#define PS_TRUNCATED 27 /* headers incomplete (internal use) */
2003-03-25 09:29:02 +01:00
#define PS_CONTINUE 128
Session *pop3_session_new (PrefsAccount *account);
2002-08-31 11:41:45 +02:00
GHashTable *pop3_get_uidl_table (PrefsAccount *account);
2003-03-25 09:29:02 +01:00
gint pop3_write_uidl_list (Pop3Session *session);
2002-08-31 11:41:45 +02:00
2001-04-19 14:21:46 +02:00
#endif /* __POP_H__ */