From 6103f1b94f338a378ff17d5cf4a57c742bf5b844 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 20 Sep 2007 20:03:31 +0000 Subject: [PATCH] Removed the ifdef for the pop3client module --- citadel/modules/pop3client/serv_pop3client.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/citadel/modules/pop3client/serv_pop3client.c b/citadel/modules/pop3client/serv_pop3client.c index dbcfff80e..b90b57f27 100644 --- a/citadel/modules/pop3client/serv_pop3client.c +++ b/citadel/modules/pop3client/serv_pop3client.c @@ -1,9 +1,7 @@ /* - * $Id: $ + * $Id$ * - * Aggregate remote POP3 accounts - * - * NOTE: this is disabled in Citadel 7.20 -- enable with -DPOP3_AGGREGATION at your own risk. + * Consolidate mail from remote POP3 accounts. * */ @@ -47,9 +45,6 @@ struct pop3aggr { struct pop3aggr *palist = NULL; -#ifdef POP3_AGGREGATION - - void pop3_do_fetching(char *roomname, char *pop3host, char *pop3user, char *pop3pass) { int sock; @@ -241,14 +236,11 @@ void pop3client_scan(void) { doing_pop3client = 0; } -#endif CTDL_MODULE_INIT(pop3client) { -#ifdef POP3_AGGREGATION CtdlRegisterSessionHook(pop3client_scan, EVT_TIMER); -#endif /* return our Subversion id for the Log */ - return "$Id: $"; + return "$Id$"; } -- 2.39.2