antiexpire 0 for pop3
[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 struct p3cq {                           // module-local queue of pop3 client work that needs processing
53         struct p3cq *next;
54         char *room;
55         char *host;
56         char *user;
57         char *pass;
58         int keep;
59         long interval;
60 };
61
62 struct CitContext pop3_client_CC;
63 static int doing_pop3client = 0;
64 struct p3cq *p3cq = NULL;
65
66 /*
67  * Process one mailbox.
68  */
69 void pop3client_one_mailbox(char *room, const char *host, const char *user, const char *pass, int keep, long interval)
70 {
71         syslog(LOG_DEBUG, "pop3client: room=<%s> host=<%s> user=<%s> keep=<%d> interval=<%ld>", room, host, user, keep, interval);
72
73         char url[SIZ];
74         CURL *curl;
75         CURLcode res = CURLE_OK;
76         StrBuf *Uidls = NULL;
77         int i;
78
79         curl = curl_easy_init();
80         if (!curl) {
81                 return;
82         }
83
84         Uidls = NewStrBuf();
85
86         curl_easy_setopt(curl, CURLOPT_USERNAME, user);
87         curl_easy_setopt(curl, CURLOPT_PASSWORD, pass);
88         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
89         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
90         curl_easy_setopt(curl, CURLOPT_TIMEOUT, 15);
91         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, CurlFillStrBuf_callback); // What to do with downloaded data
92         curl_easy_setopt(curl, CURLOPT_WRITEDATA, Uidls);                       // Give it our StrBuf to work with
93         curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "UIDL");
94
95         /* Try POP3S (SSL encrypted) first */
96         snprintf(url, sizeof url, "pop3s://%s", host);
97         curl_easy_setopt(curl, CURLOPT_URL, url);
98         res = curl_easy_perform(curl);
99         if (res == CURLE_OK) {
100         } else {
101                 syslog(LOG_DEBUG, "POP3S client failed: %s , trying POP3 next", curl_easy_strerror(res));
102                 snprintf(url, sizeof url, "pop3://%s", host);                   // try unencrypted next
103                 curl_easy_setopt(curl, CURLOPT_URL, url);
104                 FlushStrBuf(Uidls);
105                 res = curl_easy_perform(curl);
106         }
107
108         if (res != CURLE_OK) {
109                 syslog(LOG_DEBUG, "pop3 client failed: %s", curl_easy_strerror(res));
110                 curl_easy_cleanup(curl);
111                 FreeStrBuf(&Uidls);
112                 return;
113         }
114
115         // If we got this far, a connection was established, we know whether it's pop3s or pop3, and UIDL is supported.
116         // Now go through the UIDL list and look for messages.
117
118         int num_msgs = num_tokens(ChrPtr(Uidls), '\n');
119         syslog(LOG_DEBUG, "There are %d messages.", num_msgs);
120         for (i=0; i<num_msgs; ++i) {
121                 char oneuidl[1024];
122                 extract_token(oneuidl, ChrPtr(Uidls), i, '\n', sizeof oneuidl);
123                 if (strlen(oneuidl) > 2) {
124                         if (oneuidl[strlen(oneuidl)-1] == '\r') {
125                                 oneuidl[strlen(oneuidl)-1] = 0;
126                         }
127                         int this_msg = atoi(oneuidl);
128                         char *c = strchr(oneuidl, ' ');
129                         if (c) strcpy(oneuidl, ++c);
130
131                         syslog(LOG_DEBUG, "<\033[34m%d\033[0m> <\033[34m%s\033[0m>", this_msg, oneuidl);
132
133                         // Make up the Use Table record so we can check if we've already seen this message.
134                         StrBuf *UT = NewStrBuf();
135                         StrBufPrintf(UT, "pop3/%s/%s:%s@%s", room, oneuidl, user, host);
136                         time_t already_seen = CheckIfAlreadySeen(UT, time(NULL), 0, eUpdate);
137                         syslog(LOG_DEBUG, "%s seen? \033[32m%ld\033[0m", ChrPtr(UT), already_seen);
138                         FreeStrBuf(&UT);
139
140                 }
141         }
142
143         curl_easy_cleanup(curl);
144         FreeStrBuf(&Uidls);
145         return;
146 }
147
148
149 /*
150  * Scan a room's netconfig to determine whether it requires POP3 aggregation
151  */
152 void pop3client_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *OneRNCFG)
153 {
154         const RoomNetCfgLine *pLine;
155         struct p3cq *pptr = NULL;
156
157         if (server_shutting_down) return;
158
159         pLine = OneRNCFG->NetConfigs[pop3client];
160
161         while (pLine != NULL)
162         {
163                 pptr = malloc(sizeof(struct p3cq));
164                 pptr->next = p3cq;
165                 p3cq = pptr;
166                 pptr->room = strdup(qrbuf->QRname);
167                 pptr->host = strdup(ChrPtr(pLine->Value[0]));
168                 pptr->user = strdup(ChrPtr(pLine->Value[1]));
169                 pptr->pass = strdup(ChrPtr(pLine->Value[2]));
170                 pptr->keep = atoi(ChrPtr(pLine->Value[3]));
171                 pptr->interval = atol(ChrPtr(pLine->Value[4]));
172         
173                 pLine = pLine->next;
174         }
175 }
176
177
178 void pop3client_scan(void) {
179         static time_t last_run = 0L;
180         time_t fastest_scan;
181         struct p3cq *pptr = NULL;
182
183         become_session(&pop3_client_CC);
184
185         if (CtdlGetConfigLong("c_pop3_fastest") < CtdlGetConfigLong("c_pop3_fetch")) {
186                 fastest_scan = CtdlGetConfigLong("c_pop3_fastest");
187         }
188         else {
189                 fastest_scan = CtdlGetConfigLong("c_pop3_fetch");
190         }
191
192         /*
193          * Run POP3 aggregation no more frequently than once every n seconds
194          */
195         if ( (time(NULL) - last_run) < fastest_scan ) {
196                 return;
197         }
198
199         /*
200          * This is a simple concurrency check to make sure only one pop3client
201          * run is done at a time.  We could do this with a mutex, but since we
202          * don't really require extremely fine granularity here, we'll do it
203          * with a static variable instead.
204          */
205         if (doing_pop3client) return;
206         doing_pop3client = 1;
207
208         syslog(LOG_DEBUG, "pop3client scan started");
209         CtdlForEachNetCfgRoom(pop3client_scan_room, NULL);
210
211         /*
212          * We have to queue and process in separate phases, otherwise we leave a cursor open
213          */
214         syslog(LOG_DEBUG, "pop3client processing started");
215         while (p3cq != NULL) {
216                 pptr = p3cq;
217                 p3cq = p3cq->next;
218
219                 pop3client_one_mailbox(pptr->room, pptr->host, pptr->user, pptr->pass, pptr->keep, pptr->interval);
220
221                 free(pptr->room);
222                 free(pptr->host);
223                 free(pptr->user);
224                 free(pptr->pass);
225                 free(pptr);
226         }
227
228         syslog(LOG_DEBUG, "pop3client ended");
229         last_run = time(NULL);
230         doing_pop3client = 0;
231 }
232
233
234 CTDL_MODULE_INIT(pop3client)
235 {
236         if (!threading)
237         {
238                 CtdlFillSystemContext(&pop3_client_CC, "POP3aggr");
239                 CtdlREGISTERRoomCfgType(pop3client, ParseGeneric, 0, 5, SerializeGeneric, DeleteGenericCfgLine);
240                 CtdlRegisterSessionHook(pop3client_scan, EVT_TIMER, PRIO_AGGR + 50);
241         }
242
243         /* return our module id for the log */
244         return "pop3client";
245 }