Skeleton module for POP3 client
[citadel.git] / citadel / modules / pop3client / serv_pop3client.c
1 /*
2  * Aggregate remote POP3 accounts
3  */
4
5 #include <stdlib.h>
6 #include <unistd.h>
7 #include <stdio.h>
8
9 #if TIME_WITH_SYS_TIME
10 # include <sys/time.h>
11 # include <time.h>
12 #else
13 # if HAVE_SYS_TIME_H
14 #  include <sys/time.h>
15 # else
16 #  include <time.h>
17 # endif
18 #endif
19
20 #include <ctype.h>
21 #include <string.h>
22 #include <errno.h>
23 #include "citadel.h"
24 #include "server.h"
25 #include "citserver.h"
26 #include "support.h"
27 #include "user_ops.h"
28 #include "md5.h"
29 #include "tools.h"
30
31
32 #include "ctdl_module.h"
33
34
35 /*
36 void pop3client_scan(void) {
37         lprintf(CTDL_DEBUG, "pop3client started\n");
38         lprintf(CTDL_DEBUG, "pop3client ended\n");
39 }
40 */
41
42
43 CTDL_MODULE_INIT(pop3client)
44 {
45         /* CtdlRegisterSessionHook(pop3client_scan, EVT_TIMER); */
46
47         /* return our Subversion id for the Log */
48         return "$Id:  $";
49 }