view src/pop3/pop3-common.h @ 9348:0c587f108916 HEAD

lib-master has now a global master_service variable that all binaries use. There should always be only one of them anyway.
author Timo Sirainen <tss@iki.fi>
date Fri, 22 May 2009 17:26:27 -0400
parents 97cdfeb57129
children fdfe0236d50a
line wrap: on
line source

#ifndef POP3_COMMON_H
#define POP3_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 "pop3-client.h"
#include "pop3-settings.h"

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

#endif