getmx() now uses our array class
[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                         begin_critical_section(S_NETCONFIGS);
165                         netconfig = LoadRoomNetConfigFile(CC->room.QRnumber);
166                         if (!netconfig) {
167                                 netconfig = strdup("");
168                         }
169
170                         // The new netconfig begins with the new lastsent directive
171                         newnetconfig = malloc(strlen(netconfig) + 1024);
172                         sprintf(newnetconfig, "lastsent|%ld\n", ld.msgnum);
173
174                         // And then we append all of the old netconfig, minus the old lastsent.  Also omit blank lines.
175                         config_lines = num_tokens(netconfig, '\n');
176                         for (i=0; i<config_lines; ++i) {
177                                 extract_token(buf, netconfig, i, '\n', sizeof buf);
178                                 if ( (!IsEmptyStr(buf)) && (strncasecmp(buf, "lastsent|", 9)) ) {
179                                         sprintf(&newnetconfig[strlen(newnetconfig)], "%s\n", buf);
180                                 }
181                         }
182
183                         // Write the new netconfig back to disk
184                         SaveRoomNetConfigFile(CC->room.QRnumber, newnetconfig);
185                         end_critical_section(S_NETCONFIGS);
186                         free(newnetconfig);     // this was the new netconfig, free it because we're done with it
187                 }
188         }
189         free(netconfig);                        // this was the old netconfig, free it even if we didn't do anything
190 }
191
192
193 /*
194  * Callback for listdeliver_sweep()
195  * Adds one room to the queue
196  */
197 void listdeliver_queue_room(struct ctdlroom *qrbuf, void *data) {
198         Array *roomlistarr = (Array *)data;
199         array_append(roomlistarr, qrbuf->QRname);
200 }
201
202
203 /*
204  * Queue up the list of rooms so we can sweep them for mailing list delivery instructions
205  */
206 void listdeliver_sweep(void) {
207         static time_t last_run = 0L;
208         int i = 0;
209
210         /*
211          * Run mailing list delivery no more frequently than once every 15 minutes (we should make this configurable)
212          */
213         if ( (time(NULL) - last_run) < 900 ) {
214                 return;
215         }
216
217         /*
218          * This is a simple concurrency check to make sure only one listdeliver
219          * run is done at a time.  We could do this with a mutex, but since we
220          * don't really require extremely fine granularity here, we'll do it
221          * with a static variable instead.
222          */
223         if (doing_listdeliver) return;
224         doing_listdeliver = 1;
225
226         /*
227          * Go through each room looking for mailing lists to process
228          */
229         syslog(LOG_DEBUG, "listdeliver: sweep started");
230
231         Array *roomlistarr = array_new(ROOMNAMELEN);                    // we have to queue them
232         CtdlForEachRoom(listdeliver_queue_room, roomlistarr);           // otherwise we get multiple cursors in progress
233
234         for (i=0; i<array_len(roomlistarr); ++i) {
235                 listdeliver_sweep_room((char *)array_get_element_at(roomlistarr, i));
236         }
237
238         array_free(roomlistarr);
239         syslog(LOG_DEBUG, "listdeliver: ended");
240         last_run = time(NULL);
241         doing_listdeliver = 0;
242 }
243
244
245 /*
246  * Module entry point
247  */
248 CTDL_MODULE_INIT(listdeliver)
249 {
250         if (!threading) {
251                 CtdlRegisterSessionHook(listdeliver_sweep, EVT_TIMER, PRIO_AGGR + 50);
252         }
253         
254         /* return our module name for the log */
255         return "listsub";
256 }