2004-03-27 16:07:20 +00:00
|
|
|
/*
|
|
|
|
* mbsync - mailbox synchronizer
|
2002-12-28 15:31:20 +00:00
|
|
|
* Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
|
2004-01-27 20:50:49 +00:00
|
|
|
* Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
|
2000-12-20 21:41:21 +00: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
|
2006-02-09 17:44:22 +00:00
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-10-30 02:31:20 +00:00
|
|
|
*
|
2004-03-27 16:07:20 +00:00
|
|
|
* As a special exception, mbsync may be linked with the OpenSSL library,
|
2002-10-30 02:31:20 +00:00
|
|
|
* despite that library's more restrictive license.
|
2000-12-20 21:41:21 +00:00
|
|
|
*/
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
2003-05-07 00:06:37 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2004-09-20 11:28:33 +00:00
|
|
|
#include <stdarg.h>
|
2004-03-27 16:07:20 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define as(ar) (sizeof(ar)/sizeof(ar[0]))
|
|
|
|
|
2006-02-03 21:33:43 +00:00
|
|
|
#define __stringify(x) #x
|
|
|
|
#define stringify(x) __stringify(x)
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
|
|
|
|
# define ATTR_UNUSED __attribute__((unused))
|
|
|
|
# define ATTR_NORETURN __attribute__((noreturn))
|
|
|
|
# define ATTR_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
|
|
|
|
#else
|
|
|
|
# define ATTR_UNUSED
|
|
|
|
# define ATTR_NORETURN
|
|
|
|
# define ATTR_PRINTFLIKE(fmt,var)
|
2000-12-21 06:27:05 +00:00
|
|
|
#endif
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
#define EXE "mbsync"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char *file;
|
|
|
|
FILE *fp;
|
|
|
|
char *buf;
|
|
|
|
int bufl;
|
|
|
|
int line;
|
|
|
|
char *cmd, *val, *rest;
|
|
|
|
} conffile_t;
|
|
|
|
|
|
|
|
#define OP_NEW (1<<0)
|
|
|
|
#define OP_RENEW (1<<1)
|
|
|
|
#define OP_DELETE (1<<2)
|
|
|
|
#define OP_FLAGS (1<<3)
|
|
|
|
#define OP_MASK_TYPE (OP_NEW|OP_RENEW|OP_DELETE|OP_FLAGS) /* asserted in the target ops */
|
|
|
|
#define OP_EXPUNGE (1<<4)
|
|
|
|
#define OP_CREATE (1<<5)
|
|
|
|
#define XOP_PUSH (1<<6)
|
|
|
|
#define XOP_PULL (1<<7)
|
|
|
|
#define XOP_MASK_DIR (XOP_PUSH|XOP_PULL)
|
|
|
|
#define XOP_HAVE_TYPE (1<<8)
|
|
|
|
#define XOP_HAVE_EXPUNGE (1<<9)
|
|
|
|
#define XOP_HAVE_CREATE (1<<10)
|
|
|
|
|
|
|
|
typedef struct driver driver_t;
|
|
|
|
|
|
|
|
typedef struct store_conf {
|
|
|
|
struct store_conf *next;
|
|
|
|
char *name;
|
|
|
|
driver_t *driver;
|
|
|
|
const char *path; /* should this be here? its interpretation is driver-specific */
|
2005-12-28 10:02:22 +00:00
|
|
|
const char *map_inbox;
|
|
|
|
const char *trash;
|
2004-03-27 16:07:20 +00:00
|
|
|
unsigned max_size; /* off_t is overkill */
|
|
|
|
unsigned trash_remote_new:1, trash_only_new:1;
|
|
|
|
} store_conf_t;
|
|
|
|
|
|
|
|
typedef struct string_list {
|
|
|
|
struct string_list *next;
|
|
|
|
char string[1];
|
|
|
|
} string_list_t;
|
|
|
|
|
2005-12-28 10:02:22 +00:00
|
|
|
#define M 0 /* master */
|
|
|
|
#define S 1 /* slave */
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
typedef struct channel_conf {
|
|
|
|
struct channel_conf *next;
|
2005-12-28 10:02:22 +00:00
|
|
|
const char *name;
|
|
|
|
store_conf_t *stores[2];
|
|
|
|
const char *boxes[2];
|
2004-03-27 16:07:20 +00:00
|
|
|
char *sync_state;
|
|
|
|
string_list_t *patterns;
|
2005-12-28 10:02:22 +00:00
|
|
|
int ops[2];
|
2004-03-27 16:07:20 +00:00
|
|
|
unsigned max_messages; /* for slave only */
|
|
|
|
} channel_conf_t;
|
|
|
|
|
|
|
|
typedef struct group_conf {
|
|
|
|
struct group_conf *next;
|
2005-12-28 10:02:22 +00:00
|
|
|
const char *name;
|
2004-03-27 16:07:20 +00:00
|
|
|
string_list_t *channels;
|
|
|
|
} group_conf_t;
|
|
|
|
|
|
|
|
/* For message->flags */
|
|
|
|
/* Keep the mailbox driver flag definitions in sync! */
|
|
|
|
/* The order is according to alphabetical maildir flag sort */
|
|
|
|
#define F_DRAFT (1<<0) /* Draft */
|
|
|
|
#define F_FLAGGED (1<<1) /* Flagged */
|
|
|
|
#define F_ANSWERED (1<<2) /* Replied */
|
|
|
|
#define F_SEEN (1<<3) /* Seen */
|
|
|
|
#define F_DELETED (1<<4) /* Trashed */
|
|
|
|
#define NUM_FLAGS 5
|
|
|
|
|
|
|
|
/* For message->status */
|
|
|
|
#define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
|
|
|
|
#define M_DEAD (1<<1) /* expunged */
|
|
|
|
#define M_FLAGS (1<<2) /* flags fetched */
|
|
|
|
|
|
|
|
typedef struct message {
|
|
|
|
struct message *next;
|
2006-01-30 10:26:04 +00:00
|
|
|
struct sync_rec *srec;
|
2004-03-27 16:07:20 +00:00
|
|
|
/* string_list_t *keywords; */
|
|
|
|
size_t size; /* zero implies "not fetched" */
|
|
|
|
int uid;
|
|
|
|
unsigned char flags, status;
|
|
|
|
} message_t;
|
|
|
|
|
|
|
|
/* For opts, both in store and driver_t->select() */
|
|
|
|
#define OPEN_OLD (1<<0)
|
|
|
|
#define OPEN_NEW (1<<1)
|
|
|
|
#define OPEN_FLAGS (1<<2)
|
|
|
|
#define OPEN_SIZE (1<<3)
|
|
|
|
#define OPEN_CREATE (1<<4)
|
|
|
|
#define OPEN_EXPUNGE (1<<5)
|
|
|
|
#define OPEN_SETFLAGS (1<<6)
|
|
|
|
#define OPEN_APPEND (1<<7)
|
2006-02-03 21:33:43 +00:00
|
|
|
#define OPEN_FIND (1<<8)
|
2004-03-27 16:07:20 +00:00
|
|
|
|
|
|
|
typedef struct store {
|
2006-03-20 19:38:20 +00:00
|
|
|
struct store *next;
|
2004-03-27 16:07:20 +00:00
|
|
|
store_conf_t *conf; /* foreign */
|
2006-03-20 19:27:38 +00:00
|
|
|
string_list_t *boxes; /* _list results - own */
|
|
|
|
unsigned listed:1; /* was _list already run? */
|
2004-03-27 16:07:20 +00:00
|
|
|
|
|
|
|
/* currently open mailbox */
|
|
|
|
const char *name; /* foreign! maybe preset? */
|
|
|
|
char *path; /* own */
|
|
|
|
message_t *msgs; /* own */
|
|
|
|
int uidvalidity;
|
2006-02-03 21:33:43 +00:00
|
|
|
unsigned opts; /* maybe preset? */
|
2004-03-27 16:07:20 +00:00
|
|
|
/* note that the following do _not_ reflect stats from msgs, but mailbox totals */
|
|
|
|
int count; /* # of messages */
|
|
|
|
int recent; /* # of recent messages - don't trust this beyond the initial read */
|
|
|
|
} store_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *data;
|
|
|
|
int len;
|
|
|
|
unsigned char flags;
|
|
|
|
} msg_data_t;
|
|
|
|
|
|
|
|
#define DRV_OK 0
|
|
|
|
#define DRV_MSG_BAD -1
|
|
|
|
#define DRV_BOX_BAD -2
|
|
|
|
#define DRV_STORE_BAD -3
|
|
|
|
|
2006-02-03 21:33:43 +00:00
|
|
|
#define DRV_CRLF 1
|
|
|
|
|
|
|
|
#define TUIDL 12
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
struct driver {
|
2006-02-03 21:33:43 +00:00
|
|
|
int flags;
|
2004-03-27 16:07:20 +00:00
|
|
|
int (*parse_store)( conffile_t *cfg, store_conf_t **storep, int *err );
|
2006-03-20 19:38:20 +00:00
|
|
|
void (*cleanup)( void );
|
|
|
|
store_t *(*open_store)( store_conf_t *conf );
|
|
|
|
void (*disown_store)( store_t *ctx );
|
|
|
|
store_t *(*own_store)( store_conf_t *conf );
|
|
|
|
void (*cancel_store)( store_t *ctx );
|
2006-03-20 19:27:38 +00:00
|
|
|
int (*list)( store_t *ctx );
|
2006-01-29 11:22:45 +00:00
|
|
|
void (*prepare_paths)( store_t *ctx );
|
|
|
|
void (*prepare_opts)( store_t *ctx, int opts );
|
2004-03-27 16:07:20 +00:00
|
|
|
int (*select)( store_t *ctx, int minuid, int maxuid, int *excs, int nexcs );
|
|
|
|
int (*fetch_msg)( store_t *ctx, message_t *msg, msg_data_t *data );
|
|
|
|
int (*store_msg)( store_t *ctx, msg_data_t *data, int *uid ); /* if uid is null, store to trash */
|
2006-02-03 21:33:43 +00:00
|
|
|
int (*find_msg)( store_t *ctx, const char *tuid, int *uid );
|
2004-03-27 16:07:20 +00:00
|
|
|
int (*set_flags)( store_t *ctx, message_t *msg, int uid, int add, int del ); /* msg can be null, therefore uid as a fallback */
|
|
|
|
int (*trash_msg)( store_t *ctx, message_t *msg ); /* This may expunge the original message immediately, but it needn't to */
|
|
|
|
int (*check)( store_t *ctx ); /* IMAP-style: flush */
|
|
|
|
int (*close)( store_t *ctx ); /* IMAP-style: expunge inclusive */
|
2000-12-20 21:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
/* main.c */
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
extern int Pid;
|
|
|
|
extern char Hostname[256];
|
|
|
|
extern const char *Home;
|
2000-12-21 10:24:53 +00:00
|
|
|
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
/* util.c */
|
2000-12-21 10:24:53 +00:00
|
|
|
|
2006-01-29 14:46:16 +00:00
|
|
|
#define DEBUG 1
|
|
|
|
#define VERBOSE 2
|
|
|
|
#define QUIET 4
|
|
|
|
#define VERYQUIET 8
|
2006-01-29 15:46:09 +00:00
|
|
|
#define KEEPJOURNAL 16
|
2006-01-29 14:46:16 +00:00
|
|
|
|
2006-03-19 11:29:12 +00:00
|
|
|
extern int DFlags, Ontty;
|
2004-01-31 01:01:07 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
void debug( const char *, ... );
|
2006-03-19 11:29:12 +00:00
|
|
|
void debugn( const char *, ... );
|
2004-03-27 16:07:20 +00:00
|
|
|
void info( const char *, ... );
|
2006-03-19 11:29:12 +00:00
|
|
|
void infon( const char *, ... );
|
2004-03-27 16:07:20 +00:00
|
|
|
void infoc( char );
|
|
|
|
void warn( const char *, ... );
|
2006-03-19 11:29:12 +00:00
|
|
|
void error( const char *, ... );
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
char *next_arg( char ** );
|
2001-11-20 18:06:09 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
void add_string_list( string_list_t **list, const char *str );
|
|
|
|
void free_string_list( string_list_t *list );
|
2004-01-12 01:24:47 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
void free_generic_messages( message_t * );
|
2004-01-12 01:24:47 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
void *nfmalloc( size_t sz );
|
|
|
|
void *nfcalloc( size_t sz );
|
|
|
|
void *nfrealloc( void *mem, size_t sz );
|
|
|
|
char *nfstrdup( const char *str );
|
|
|
|
int nfvasprintf( char **str, const char *fmt, va_list va );
|
|
|
|
int nfasprintf( char **str, const char *fmt, ... );
|
|
|
|
int nfsnprintf( char *buf, int blen, const char *fmt, ... );
|
|
|
|
void ATTR_NORETURN oob( void );
|
2000-12-20 21:41:21 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
char *expand_strdup( const char *s );
|
2000-12-23 00:02:42 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
void sort_ints( int *arr, int len );
|
|
|
|
|
|
|
|
void arc4_init( void );
|
|
|
|
unsigned char arc4_getbyte( void );
|
|
|
|
|
|
|
|
/* sync.c */
|
|
|
|
|
2005-12-28 10:02:22 +00:00
|
|
|
#define SYNC_OK 0
|
|
|
|
#define SYNC_FAIL 1
|
|
|
|
#define SYNC_BAD(ms) (2+(ms))
|
2006-02-03 21:33:43 +00:00
|
|
|
#define SYNC_NOGOOD 4 /* internal */
|
2004-03-27 16:07:20 +00:00
|
|
|
|
2005-12-28 10:02:22 +00:00
|
|
|
int sync_boxes( store_t *ctx[], const char *names[], channel_conf_t * );
|
2004-03-27 16:07:20 +00:00
|
|
|
|
|
|
|
/* config.c */
|
|
|
|
|
2006-03-20 18:36:49 +00:00
|
|
|
#define N_DRIVERS 2
|
|
|
|
extern driver_t *drivers[N_DRIVERS];
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
extern channel_conf_t *channels;
|
|
|
|
extern group_conf_t *groups;
|
2005-12-28 10:02:22 +00:00
|
|
|
extern int global_ops[2];
|
2004-03-27 16:07:20 +00:00
|
|
|
extern char *global_sync_state;
|
|
|
|
|
|
|
|
int parse_bool( conffile_t *cfile );
|
|
|
|
int parse_int( conffile_t *cfile );
|
|
|
|
int parse_size( conffile_t *cfile );
|
|
|
|
int getcline( conffile_t *cfile );
|
2005-12-28 10:02:22 +00:00
|
|
|
int merge_ops( int cops, int ops[] );
|
2004-03-27 16:07:20 +00:00
|
|
|
int load_config( const char *filename, int pseudo );
|
|
|
|
void parse_generic_store( store_conf_t *store, conffile_t *cfg, int *err );
|
2000-12-21 06:27:05 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
/* drv_*.c */
|
|
|
|
extern driver_t maildir_driver, imap_driver;
|