view src/pop3/common.h @ 9002:9d0037a997f4 HEAD

Initial commit for config rewrite.
author Timo Sirainen <tss@iki.fi>
date Tue, 27 Jan 2009 18:21:53 -0500
parents e4eb71ae8e96
children e560b92ed763
line wrap: on
line source

#ifndef COMMON_H
#define COMMON_H

enum client_workarounds {
	WORKAROUND_OUTLOOK_NO_NULS		= 0x01,
	WORKAROUND_OE_NS_EOH			= 0x02
};

enum uidl_keys {
	UIDL_UIDVALIDITY	= 0x01,
	UIDL_UID		= 0x02,
	UIDL_MD5		= 0x04,
	UIDL_FILE_NAME		= 0x08
};

#include "lib.h"
#include "client.h"
#include "pop3-settings.h"

extern struct ioloop *ioloop;

extern void (*hook_client_created)(struct client **client);

#endif