From e46ea2b45cda3f39fe92050e864caa0372dd9a9d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 17 Sep 2007 16:04:13 +0000 Subject: [PATCH] Skeleton module for POP3 client --- citadel/modules/pop3client/serv_pop3client.c | 49 ++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 citadel/modules/pop3client/serv_pop3client.c diff --git a/citadel/modules/pop3client/serv_pop3client.c b/citadel/modules/pop3client/serv_pop3client.c new file mode 100644 index 000000000..e260e34da --- /dev/null +++ b/citadel/modules/pop3client/serv_pop3client.c @@ -0,0 +1,49 @@ +/* + * Aggregate remote POP3 accounts + */ + +#include +#include +#include + +#if TIME_WITH_SYS_TIME +# include +# include +#else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +#endif + +#include +#include +#include +#include "citadel.h" +#include "server.h" +#include "citserver.h" +#include "support.h" +#include "user_ops.h" +#include "md5.h" +#include "tools.h" + + +#include "ctdl_module.h" + + +/* +void pop3client_scan(void) { + lprintf(CTDL_DEBUG, "pop3client started\n"); + lprintf(CTDL_DEBUG, "pop3client ended\n"); +} +*/ + + +CTDL_MODULE_INIT(pop3client) +{ + /* CtdlRegisterSessionHook(pop3client_scan, EVT_TIMER); */ + + /* return our Subversion id for the Log */ + return "$Id: $"; +} -- 2.39.2