4ceb75a657d8824be0e2ff83de526471d4c4ec7a
[citadel.git] / citadel / modules / listdeliver / serv_listdeliver.c
1 /*
2  * This module delivers messages to mailing lists.
3  *
4  * Copyright (c) 2002-2021 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  *  
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20 #include <ctype.h>
21 #include <signal.h>
22 #include <pwd.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <dirent.h>
26 #include <time.h>
27 #include <sys/wait.h>
28 #include <string.h>
29 #include <limits.h>
30 #include <libcitadel.h>
31 #include "citadel.h"
32 #include "server.h"
33 #include "citserver.h"
34 #include "support.h"
35 #include "config.h"
36 #include "user_ops.h"
37 #include "database.h"
38 #include "msgbase.h"
39 #include "internet_addressing.h"
40 #include "clientsocket.h"
41 #include "ctdl_module.h"
42
43 int doing_listdeliver = 0;
44
45
46 // data passed back and forth between listdeliver_do_msg() and listdeliver_sweep_room()
47 struct lddata {
48         long msgnum;            // number of most recent message processed
49         char *netconf;          // netconfig for this room (contains the recipients)
50 };
51
52
53
54 void listdeliver_do_msg(long msgnum, void *userdata) {
55         struct lddata *ld = (struct lddata *) userdata;
56         if (!ld) return;
57         char buf[SIZ];
58         char *ch;
59         char bounce_to[256];
60
61         ld->msgnum = msgnum;
62         if (msgnum <= 0) return;
63
64         struct CtdlMessage *TheMessage = CtdlFetchMessage(msgnum, 1);
65         if (!TheMessage) return;
66
67         // If the subject line does not contain the name of the room, add it now.
68         if (!bmstrcasestr(TheMessage->cm_fields[eMsgSubject], CC->room.QRname)) {
69                 snprintf(buf, sizeof buf, "[%s] %s", CC->room.QRname, TheMessage->cm_fields[eMsgSubject]);
70                 CM_SetField(TheMessage, eMsgSubject, buf, strlen(buf));
71         }
72
73         // Reply-to: should be set so that replies come to the list.
74         snprintf(buf, sizeof buf, "room_%s@%s", CC->room.QRname, CtdlGetConfigStr("c_fqdn"));
75         for (ch=buf; *ch; ++ch) {
76                 if (isspace(*ch)) *ch = '_';
77         }
78         CM_SetField(TheMessage, eReplyTo, buf, strlen(buf));
79
80         // With that out of the way, let's figure out who this message needs to be sent to.
81         char *recipients = malloc(strlen(ld->netconf));
82         if (recipients) {
83                 recipients[0] = 0;
84
85                 int config_lines = num_tokens(ld->netconf, '\n');
86                 for (int i=0; i<config_lines; ++i) {
87                         extract_token(buf, ld->netconf, i, '\n', sizeof buf);
88                         if (!strncasecmp(buf, "listrecp|", 9)) {
89                                 if (recipients[0] != 0) {
90                                         strcat(recipients, ",");
91                                 }
92                                 strcat(recipients, &buf[9]);
93                         }
94                         if (!strncasecmp(buf, "digestrecp|", 11)) {
95                                 if (recipients[0] != 0) {
96                                         strcat(recipients, ",");
97                                 }
98                                 strcat(recipients, &buf[11]);
99                         }
100                 }
101
102                 // Where do we want bounces and other noise to be sent?  Certainly not to the list members!
103                 snprintf(bounce_to, sizeof bounce_to, "room_aide@%s", CtdlGetConfigStr("c_fqdn"));
104
105                 // Now submit the message
106                 struct recptypes *valid = validate_recipients(recipients, NULL, 0);
107                 if (valid) {
108                         valid->bounce_to = strdup(bounce_to);
109                         valid->envelope_from = strdup(bounce_to);
110                         CtdlSubmitMsg(TheMessage, valid, "");
111                         free_recipients(valid);
112                 }
113         }
114         CM_Free(TheMessage);
115 }
116
117
118 /*
119  * Sweep through one room looking for mailing list deliveries to do
120  */
121 void listdeliver_sweep_room(char *roomname) {
122         char *netconfig = NULL;
123         char *newnetconfig = NULL;
124         long lastsent = 0;
125         char buf[SIZ];
126         int config_lines;
127         int i;
128         int number_of_messages_processed = 0;
129         int number_of_recipients = 0;
130         struct lddata ld;
131
132         if (CtdlGetRoom(&CC->room, roomname)) {
133                 syslog(LOG_DEBUG, "listdeliver: no room <%s>", roomname);
134                 return;
135         }
136
137         netconfig = LoadRoomNetConfigFile(CC->room.QRnumber);
138         if (!netconfig) {
139                 return;                         // no netconfig, no processing, no problem
140         }
141
142         config_lines = num_tokens(netconfig, '\n');
143         for (i=0; i<config_lines; ++i) {
144                 extract_token(buf, netconfig, i, '\n', sizeof buf);
145
146                 if (!strncasecmp(buf, "lastsent|", 9)) {
147                         lastsent = atol(&buf[9]);
148                 }
149                 else if ( (!strncasecmp(buf, "listrecp|", 9)) || (!strncasecmp(buf, "digestrecp|", 11)) ) {
150                         ++number_of_recipients;
151                 }
152         }
153
154         if (number_of_recipients > 0) {
155                 syslog(LOG_DEBUG, "listdeliver: processing new messages in <%s> for <%d> recipients", CC->room.QRname, number_of_recipients);
156                 ld.netconf = netconfig;
157                 number_of_messages_processed = CtdlForEachMessage(MSGS_GT, lastsent, NULL, NULL, NULL, listdeliver_do_msg, &ld);
158                 syslog(LOG_INFO, "listdeliver: processed <%d> messages in <%s> for <%d> recipients", number_of_messages_processed, CC->room.QRname, number_of_recipients);
159         
160                 if (number_of_messages_processed > 0) {
161                         syslog(LOG_DEBUG, "listdeliver: new lastsent is %ld", ld.msgnum);
162
163                         // Update this room's netconfig with the updated lastsent
164                         netconfig = LoadRoomNetConfigFile(CC->room.QRnumber);
165                         if (!netconfig) {
166                                 netconfig = strdup("");
167                         }
168
169                         // The new netconfig begins with the new lastsent directive
170                         newnetconfig = malloc(strlen(netconfig) + 1024);
171                         sprintf(newnetconfig, "lastsent|%ld\n", ld.msgnum);
172
173                         // And then we append all of the old netconfig, minus the old lastsent.  Also omit blank lines.
174                         config_lines = num_tokens(netconfig, '\n');
175                         for (i=0; i<config_lines; ++i) {
176                                 extract_token(buf, netconfig, i, '\n', sizeof buf);
177                                 if ( (!IsEmptyStr(buf)) && (strncasecmp(buf, "lastsent|", 9)) ) {
178                                         sprintf(&newnetconfig[strlen(newnetconfig)], "%s\n", buf);
179                                 }
180                         }
181
182                         // Write the new netconfig back to disk
183                         SaveRoomNetConfigFile(CC->room.QRnumber, newnetconfig);
184                         free(newnetconfig);     // this was the new netconfig, free it because we're done with it
185                 }
186         }
187         free(netconfig);                        // this was the old netconfig, free it even if we didn't do anything
188 }
189
190
191 /*
192  * Callback for listdeliver_sweep()
193  * Adds one room to the queue
194  */
195 void listdeliver_queue_room(struct ctdlroom *qrbuf, void *data) {
196         Array *roomlistarr = (Array *)data;
197         array_append(roomlistarr, qrbuf->QRname);
198 }
199
200
201 /*
202  * Queue up the list of rooms so we can sweep them for mailing list delivery instructions
203  */
204 void listdeliver_sweep(void) {
205         static time_t last_run = 0L;
206         int i = 0;
207
208         /*
209          * Run mailing list delivery no more frequently than once every 15 minutes (we should make this configurable)
210          */
211         if ( (time(NULL) - last_run) < 900 ) {
212                 return;
213         }
214
215         /*
216          * This is a simple concurrency check to make sure only one listdeliver
217          * run is done at a time.  We could do this with a mutex, but since we
218          * don't really require extremely fine granularity here, we'll do it
219          * with a static variable instead.
220          */
221         if (doing_listdeliver) return;
222         doing_listdeliver = 1;
223
224         /*
225          * Go through each room looking for mailing lists to process
226          */
227         syslog(LOG_DEBUG, "listdeliver: sweep started");
228
229         Array *roomlistarr = array_new(ROOMNAMELEN);                    // we have to queue them
230         CtdlForEachRoom(listdeliver_queue_room, roomlistarr);           // otherwise we get multiple cursors in progress
231
232         for (i=0; i<array_len(roomlistarr); ++i) {
233                 listdeliver_sweep_room((char *)array_get_element_at(roomlistarr, i));
234         }
235
236         array_free(roomlistarr);
237         syslog(LOG_DEBUG, "listdeliver: ended");
238         last_run = time(NULL);
239         doing_listdeliver = 0;
240 }
241
242
243 /*
244  * Module entry point
245  */
246 CTDL_MODULE_INIT(listdeliver)
247 {
248         if (!threading) {
249                 CtdlRegisterSessionHook(listdeliver_sweep, EVT_TIMER, PRIO_AGGR + 50);
250         }
251         
252         /* return our module name for the log */
253         return "listsub";
254 }