foo
[citadel.git] / citadel / modules / pop3client / serv_pop3client.c
1 /*
2  * Consolidate mail from remote POP3 accounts.
3  *
4  * Copyright (c) 2007-2017 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as published
8  * by the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <sysconfig.h>
21
22 #if TIME_WITH_SYS_TIME
23 # include <sys/time.h>
24 # include <time.h>
25 #else
26 # if HAVE_SYS_TIME_H
27 #  include <sys/time.h>
28 # else
29 #  include <time.h>
30 # endif
31 #endif
32
33 #include <ctype.h>
34 #include <string.h>
35 #include <errno.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <libcitadel.h>
39 #include <curl/curl.h>
40 #include "citadel.h"
41 #include "server.h"
42 #include "citserver.h"
43 #include "support.h"
44 #include "config.h"
45 #include "ctdl_module.h"
46 #include "clientsocket.h"
47 #include "msgbase.h"
48 #include "internet_addressing.h"
49 #include "database.h"
50 #include "citadel_dirs.h"
51
52
53 struct CitContext pop3_client_CC;
54 static int doing_pop3client = 0;
55
56
57 //      This is how we form a USETABLE record for pop3 client
58 //
59 //      StrBufPrintf(RecvMsg->CurrMsg->MsgUID,
60 //                   "pop3/%s/%s:%s@%s",
61 //                   ChrPtr(RecvMsg->RoomName),
62 //                   ChrPtr(RecvMsg->CurrMsg->MsgUIDL),
63 //                   RecvMsg->IO.ConnectMe->User,
64 //                   RecvMsg->IO.ConnectMe->Host
65 //      );
66
67
68 /*
69  * Process one mailbox.
70  */
71 void pop3client_one_mailbox(struct ctdlroom *qrbuf, const char *host, const char *user, const char *pass, int keep, long interval)
72 {
73                 syslog(LOG_DEBUG, "\033[33mpop3client: room=<%s> host=<%s> user=<%s> pass=<%s> keep=<%d> interval=<%ld>\033[0m",
74                         qrbuf->QRname, host, user, pass, keep, interval
75                 );
76 }
77
78
79 /*
80  * Scan a room's netconfig to determine whether it requires POP3 aggregation
81  */
82 void pop3client_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *OneRNCFG)
83 {
84         const RoomNetCfgLine *pLine;
85
86         if (server_shutting_down) return;
87
88         pLine = OneRNCFG->NetConfigs[pop3client];
89
90         while (pLine != NULL)
91         {
92                 pop3client_one_mailbox(qrbuf, 
93                         ChrPtr(pLine->Value[0]),
94                         ChrPtr(pLine->Value[1]),
95                         ChrPtr(pLine->Value[2]),
96                         atoi(ChrPtr(pLine->Value[3])),
97                         atol(ChrPtr(pLine->Value[4]))
98                 );
99                 pLine = pLine->next;
100
101         }
102 }
103
104
105 void pop3client_scan(void) {
106         static time_t last_run = 0L;
107         time_t fastest_scan;
108
109         become_session(&pop3_client_CC);
110
111         if (CtdlGetConfigLong("c_pop3_fastest") < CtdlGetConfigLong("c_pop3_fetch")) {
112                 fastest_scan = CtdlGetConfigLong("c_pop3_fastest");
113         }
114         else {
115                 fastest_scan = CtdlGetConfigLong("c_pop3_fetch");
116         }
117
118         /*
119          * Run POP3 aggregation no more frequently than once every n seconds
120          */
121         if ( (time(NULL) - last_run) < fastest_scan ) {
122                 return;
123         }
124
125         /*
126          * This is a simple concurrency check to make sure only one pop3client
127          * run is done at a time.  We could do this with a mutex, but since we
128          * don't really require extremely fine granularity here, we'll do it
129          * with a static variable instead.
130          */
131         if (doing_pop3client) return;
132         doing_pop3client = 1;
133
134         syslog(LOG_DEBUG, "pop3client started");
135         CtdlForEachNetCfgRoom(pop3client_scan_room, NULL);
136         syslog(LOG_DEBUG, "pop3client ended");
137         last_run = time(NULL);
138         doing_pop3client = 0;
139 }
140
141
142 CTDL_MODULE_INIT(pop3client)
143 {
144         if (!threading)
145         {
146                 CtdlFillSystemContext(&pop3_client_CC, "POP3aggr");
147                 CtdlREGISTERRoomCfgType(pop3client, ParseGeneric, 0, 5, SerializeGeneric, DeleteGenericCfgLine);
148                 CtdlRegisterSessionHook(pop3client_scan, EVT_TIMER, PRIO_AGGR + 50);
149         }
150
151         /* return our module id for the log */
152         return "pop3client";
153 }