Implemented the 'vacation' action
[citadel.git] / citadel / modules / inboxrules / serv_inboxrules.c
1 /*
2  * Inbox handling rules
3  *
4  * Copyright (c) 1987-2020 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 <pwd.h>
22 #include <errno.h>
23 #include <sys/types.h>
24
25 #if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
27 # include <time.h>
28 #else
29 # if HAVE_SYS_TIME_H
30 #  include <sys/time.h>
31 # else
32 #  include <time.h>
33 # endif
34 #endif
35
36 #include <sys/wait.h>
37 #include <string.h>
38 #include <limits.h>
39 #include <libcitadel.h>
40 #include "citadel.h"
41 #include "server.h"
42 #include "citserver.h"
43 #include "support.h"
44 #include "config.h"
45 #include "database.h"
46 #include "msgbase.h"
47 #include "internet_addressing.h"
48 #include "ctdl_module.h"
49
50
51 /*
52  * The next sections are enums and keys that drive the serialize/deserialize functions for the inbox rules/state configuration.
53  */
54
55 // Fields to be compared
56 enum {
57         field_from,             
58         field_tocc,             
59         field_subject,  
60         field_replyto,  
61         field_sender,   
62         field_resentfrom,       
63         field_resentto, 
64         field_envfrom,  
65         field_envto,    
66         field_xmailer,  
67         field_xspamflag,        
68         field_xspamstatus,      
69         field_listid,   
70         field_size,             
71         field_all
72 };
73 char *field_keys[] = {
74         "from",
75         "tocc",
76         "subject",
77         "replyto",
78         "sender",
79         "resentfrom",
80         "resentto",
81         "envfrom",
82         "envto",
83         "xmailer",
84         "xspamflag",
85         "xspamstatus",
86         "listid",
87         "size",
88         "all"
89 };
90
91 // Field comparison operators
92 enum {
93         fcomp_contains,
94         fcomp_notcontains,
95         fcomp_is,
96         fcomp_isnot,
97         fcomp_matches,
98         fcomp_notmatches
99 };
100 char *fcomp_keys[] = {
101         "contains",
102         "notcontains",
103         "is",
104         "isnot",
105         "matches",
106         "notmatches"
107 };
108
109 // Actions
110 enum {
111         action_keep,
112         action_discard,
113         action_reject,
114         action_fileinto,
115         action_redirect,
116         action_vacation
117 };
118 char *action_keys[] = {
119         "keep",
120         "discard",
121         "reject",
122         "fileinto",
123         "redirect",
124         "vacation"
125 };
126
127 // Size comparison operators
128 enum {
129         scomp_larger,
130         scomp_smaller
131 };
132 char *scomp_keys[] = {
133         "larger",
134         "smaller"
135 };
136
137 // Final actions
138 enum {
139         final_continue,
140         final_stop
141 };
142 char *final_keys[] = {
143         "continue",
144         "stop"
145 };
146
147 // This data structure represents ONE inbox rule within the configuration.
148 struct irule {
149         int compared_field;
150         int field_compare_op;
151         char compared_value[128];
152         int size_compare_op;
153         long compared_size;
154         int action;
155         char file_into[ROOMNAMELEN];
156         char redirect_to[1024];
157         char autoreply_message[SIZ];
158         int final_action;
159 };
160
161 // This data structure represents the entire inbox rules configuration AND current state for a single user.
162 struct inboxrules {
163         long lastproc;
164         int num_rules;
165         struct irule *rules;
166 };
167
168
169 // Destructor for 'struct inboxrules'
170 void free_inbox_rules(struct inboxrules *ibr) {
171         free(ibr->rules);
172         free(ibr);
173 }
174
175
176 // Constructor for 'struct inboxrules' that deserializes the configuration from text input.
177 struct inboxrules *deserialize_inbox_rules(char *serialized_rules) {
178         int i;
179
180         if (!serialized_rules) {
181                 return NULL;
182         }
183
184         /* Make a copy of the supplied buffer because we're going to shit all over it with strtok_r() */
185         char *sr = strdup(serialized_rules);
186         if (!sr) {
187                 return NULL;
188         }
189
190         struct inboxrules *ibr = malloc(sizeof(struct inboxrules));
191         if (ibr == NULL) {
192                 return NULL;
193         }
194         memset(ibr, 0, sizeof(struct inboxrules));
195
196         char *token; 
197         char *rest = sr;
198         while ((token = strtok_r(rest, "\n", &rest))) {
199
200                 // For backwards compatibility, "# WEBCIT_RULE" is an alias for "rule".
201                 // Prior to version 930, WebCit converted its rules to Sieve scripts, but saved the rules as comments for later re-editing.
202                 // Now, the rules hidden in the comments become the real rules.
203                 if (!strncasecmp(token, "# WEBCIT_RULE|", 14)) {
204                         strcpy(token, "rule|"); 
205                         strcpy(&token[5], &token[14]);
206                 }
207
208                 // Lines containing actual rules are double-serialized with Base64.  It seemed like a good idea at the time :(
209                 if (!strncasecmp(token, "rule|", 5)) {
210                         remove_token(&token[5], 0, '|');
211                         char *decoded_rule = malloc(strlen(token));
212                         CtdlDecodeBase64(decoded_rule, &token[5], strlen(&token[5]));
213                         ibr->num_rules++;
214                         ibr->rules = realloc(ibr->rules, (sizeof(struct irule) * ibr->num_rules));
215                         struct irule *new_rule = &ibr->rules[ibr->num_rules - 1];
216                         memset(new_rule, 0, sizeof(struct irule));
217
218                         // We have a rule , now parse it
219                         char rtoken[SIZ];
220                         int nt = num_tokens(decoded_rule, '|');
221                         for (int t=0; t<nt; ++t) {
222                                 extract_token(rtoken, decoded_rule, t, '|', sizeof(rtoken));
223                                 striplt(rtoken);
224                                 switch(t) {
225                                         case 1:                                                         // field to compare
226                                                 for (i=0; i<=field_all; ++i) {
227                                                         if (!strcasecmp(rtoken, field_keys[i])) {
228                                                                 new_rule->compared_field = i;
229                                                         }
230                                                 }
231                                                 break;
232                                         case 2:                                                         // field comparison operation
233                                                 for (i=0; i<=fcomp_notmatches; ++i) {
234                                                         if (!strcasecmp(rtoken, fcomp_keys[i])) {
235                                                                 new_rule->field_compare_op = i;
236                                                         }
237                                                 }
238                                                 break;
239                                         case 3:                                                         // field comparison value
240                                                 safestrncpy(new_rule->compared_value, rtoken, sizeof(new_rule->compared_value));
241                                                 break;
242                                         case 4:                                                         // size comparison operation
243                                                 for (i=0; i<=scomp_smaller; ++i) {
244                                                         if (!strcasecmp(rtoken, scomp_keys[i])) {
245                                                                 new_rule->size_compare_op = i;
246                                                         }
247                                                 }
248                                                 break;
249                                         case 5:                                                         // size comparison value
250                                                 new_rule->compared_size = atol(rtoken);
251                                                 break;
252                                         case 6:                                                         // action
253                                                 for (i=0; i<=action_vacation; ++i) {
254                                                         if (!strcasecmp(rtoken, action_keys[i])) {
255                                                                 new_rule->action = i;
256                                                         }
257                                                 }
258                                                 break;
259                                         case 7:                                                         // file into (target room)
260                                                 safestrncpy(new_rule->file_into, rtoken, sizeof(new_rule->file_into));
261                                                 break;
262                                         case 8:                                                         // redirect to (target address)
263                                                 safestrncpy(new_rule->redirect_to, rtoken, sizeof(new_rule->redirect_to));
264                                                 break;
265                                         case 9:                                                         // autoreply message
266                                                 safestrncpy(new_rule->autoreply_message, rtoken, sizeof(new_rule->autoreply_message));
267                                                 break;
268                                         case 10:                                                        // final_action;
269                                                 for (i=0; i<=final_stop; ++i) {
270                                                         if (!strcasecmp(rtoken, final_keys[i])) {
271                                                                 new_rule->final_action = i;
272                                                         }
273                                                 }
274                                                 break;
275                                         default:
276                                                 break;
277                                 }
278                         }
279                         free(decoded_rule);
280                 }
281
282                 // "lastproc" indicates the newest message number in the inbox that was previously processed by our inbox rules.
283                 // This is a legacy location for this value and will only be used if it's the only one present.
284                 else if (!strncasecmp(token, "lastproc|", 5)) {
285                         ibr->lastproc = atol(&token[9]);
286                 }
287
288                 // Lines which do not contain a recognizable token must be IGNORED.  These lines may be left over
289                 // from a previous version and will disappear when we rewrite the config.
290
291         }
292
293         free(sr);               // free our copy of the source buffer that has now been trashed with null bytes...
294         return(ibr);            // and return our complex data type to the caller.
295 }
296
297
298 // Perform the "fileinto" action (save the message in another room)
299 // Returns: 1 or 0 to tell the caller to keep (1) or delete (0) the inbox copy of the message.
300 //
301 int inbox_do_fileinto(struct irule *rule, long msgnum) {
302         char *dest_folder = rule->file_into;
303         char original_room_name[ROOMNAMELEN];
304         char foldername[ROOMNAMELEN];
305         int c;
306
307         // Situations where we want to just keep the message in the inbox:
308         if (
309                 (IsEmptyStr(dest_folder))                       // no destination room was specified
310                 || (!strcasecmp(dest_folder, "INBOX"))          // fileinto inbox is the same as keep
311                 || (!strcasecmp(dest_folder, MAILROOM))         // fileinto "Mail" is the same as keep
312         ) {
313                 return(1);                                      // don't delete the inbox copy if this failed
314         }
315
316         // Remember what room we came from
317         safestrncpy(original_room_name, CC->room.QRname, sizeof original_room_name);
318
319         // First try a mailbox name match (check personal mail folders first)
320         strcpy(foldername, original_room_name);                                 // This keeps the user namespace of the inbox
321         snprintf(&foldername[10], sizeof(foldername)-10, ".%s", dest_folder);   // And this tacks on the target room name
322         c = CtdlGetRoom(&CC->room, foldername);
323
324         // Then a regular room name match (public and private rooms)
325         if (c != 0) {
326                 safestrncpy(foldername, dest_folder, sizeof foldername);
327                 c = CtdlGetRoom(&CC->room, foldername);
328         }
329
330         if (c != 0) {
331                 syslog(LOG_WARNING, "inboxrules: target <%s> does not exist", dest_folder);
332                 return(1);                                      // don't delete the inbox copy if this failed
333         }
334
335         // Yes, we actually have to go there
336         CtdlUserGoto(NULL, 0, 0, NULL, NULL, NULL, NULL);
337
338         c = CtdlSaveMsgPointersInRoom(NULL, &msgnum, 1, 0, NULL, 0);
339
340         // Go back to the room we came from
341         if (strcasecmp(original_room_name, CC->room.QRname)) {
342                 CtdlUserGoto(original_room_name, 0, 0, NULL, NULL, NULL, NULL);
343         }
344
345         return(0);                                              // delete the inbox copy
346 }
347
348
349 // Perform the "redirect" action (divert the message to another email address)
350 // Returns: 1 or 0 to tell the caller to keep (1) or delete (0) the inbox copy of the message.
351 //
352 int inbox_do_redirect(struct irule *rule, long msgnum) {
353         if (IsEmptyStr(rule->redirect_to)) {
354                 syslog(LOG_WARNING, "inboxrules: inbox_do_redirect() invalid recipient <%s>", rule->redirect_to);
355                 return(1);                                      // don't delete the inbox copy if this failed
356         }
357
358         recptypes *valid = validate_recipients(rule->redirect_to, NULL, 0);
359         if (valid == NULL) {
360                 syslog(LOG_WARNING, "inboxrules: inbox_do_redirect() invalid recipient <%s>", rule->redirect_to);
361                 return(1);                                      // don't delete the inbox copy if this failed
362         }
363         if (valid->num_error > 0) {
364                 free_recipients(valid);
365                 syslog(LOG_WARNING, "inboxrules: inbox_do_redirect() invalid recipient <%s>", rule->redirect_to);
366                 return(1);                                      // don't delete the inbox copy if this failed
367         }
368
369         struct CtdlMessage *msg = CtdlFetchMessage(msgnum, 1);
370         if (msg == NULL) {
371                 free_recipients(valid);
372                 syslog(LOG_WARNING, "inboxrules: cannot reload message %ld for forwarding", msgnum);
373                 return(1);                                      // don't delete the inbox copy if this failed
374         }
375
376         CtdlSubmitMsg(msg, valid, NULL, 0);                     // send the message to the new recipient
377         free_recipients(valid);
378         CM_Free(msg);
379         return(0);                                              // delete the inbox copy
380 }
381
382
383 /*
384  * Perform the "reject" action (delete the message, and tell the sender we deleted it)
385  */
386 void inbox_do_reject(struct irule *rule, struct CtdlMessage *msg) {
387         syslog(LOG_DEBUG, "inbox_do_reject: sender: <%s>, reject message: <%s>",
388                 msg->cm_fields[erFc822Addr],
389                 rule->autoreply_message
390         );
391
392         // If we can't determine who sent the message, reject silently.
393         char *sender;
394         if (!IsEmptyStr(msg->cm_fields[eMessagePath])) {
395                 sender = msg->cm_fields[eMessagePath];
396         }
397         else if (!IsEmptyStr(msg->cm_fields[erFc822Addr])) {
398                 sender = msg->cm_fields[erFc822Addr];
399         }
400         else {
401                 return;
402         }
403
404         // Assemble the reject message.
405         char *reject_text = malloc(strlen(rule->autoreply_message) + 1024);
406         if (reject_text == NULL) {
407                 return;
408         }
409         sprintf(reject_text, 
410                 "Content-type: text/plain\n"
411                 "\n"
412                 "The message was refused by the recipient's mail filtering program.\n"
413                 "The reason given was as follows:\n"
414                 "\n"
415                 "%s\n"
416                 "\n"
417         ,
418                 rule->autoreply_message
419         );
420
421         // Deliver the message
422         quickie_message(
423                 NULL,
424                 msg->cm_fields[eenVelopeTo],
425                 sender,
426                 NULL,
427                 reject_text,
428                 FMT_RFC822,
429                 "Delivery status notification"
430         );
431         free(reject_text);
432 }
433
434
435 /*
436  * Perform the "vacation" action (send an automatic response)
437  */
438 void inbox_do_vacation(struct irule *rule, struct CtdlMessage *msg) {
439         syslog(LOG_DEBUG, "inbox_do_vacation: sender: <%s>, vacation message: <%s>",
440                 msg->cm_fields[erFc822Addr],
441                 rule->autoreply_message
442         );
443
444         // If we can't determine who sent the message, reject silently.
445         char *sender;
446         if (!IsEmptyStr(msg->cm_fields[eMessagePath])) {
447                 sender = msg->cm_fields[eMessagePath];
448         }
449         else if (!IsEmptyStr(msg->cm_fields[erFc822Addr])) {
450                 sender = msg->cm_fields[erFc822Addr];
451         }
452         else {
453                 return;
454         }
455
456
457
458         // FIXME use the S_USETABLE to avoid sending the same correspondent a vacation message repeatedly.
459
460
461
462
463         // Assemble the reject message.
464         char *reject_text = malloc(strlen(rule->autoreply_message) + 1024);
465         if (reject_text == NULL) {
466                 return;
467         }
468         sprintf(reject_text, 
469                 "Content-type: text/plain\n"
470                 "\n"
471                 "%s\n"
472                 "\n"
473         ,
474                 rule->autoreply_message
475         );
476
477         // Deliver the message
478         quickie_message(
479                 NULL,
480                 msg->cm_fields[eenVelopeTo],
481                 sender,
482                 NULL,
483                 reject_text,
484                 FMT_RFC822,
485                 "Delivery status notification"
486         );
487         free(reject_text);
488 }
489
490
491 /*
492  * Process a single message.  We know the room, the user, the rules, the message number, etc.
493  */
494 void inbox_do_msg(long msgnum, void *userdata) {
495         struct inboxrules *ii = (struct inboxrules *) userdata;
496         struct CtdlMessage *msg = NULL;         // If we are loading a message to process, put it here.
497         int headers_loaded = 0;                 // Did we load the headers yet?  Do it only once.
498         int body_loaded = 0;                    // Did we load the message body yet?  Do it only once.
499         int metadata_loaded = 0;                // Did we load the metadata yet?  Do it only once.
500         struct MetaData smi;                    // If we are loading the metadata to compare, put it here.
501         int rule_activated = 0;                 // On each rule, this is set if the compare succeeds and the rule activates.
502         char compare_me[SIZ];                   // On each rule, we will store the field to be compared here.
503         int keep_message = 1;                   // Nonzero to keep the message in the inbox after processing, 0 to delete it.
504         int i;
505
506         syslog(LOG_DEBUG, "inboxrules: processing message #%ld which is higher than %ld, we are in %s", msgnum, ii->lastproc, CC->room.QRname);
507
508         if (ii->num_rules <= 0) {
509                 syslog(LOG_DEBUG, "inboxrules: rule set is empty");
510                 return;
511         }
512
513         for (i=0; i<ii->num_rules; ++i) {
514                 syslog(LOG_DEBUG, "inboxrules: processing rule %d is %s", i, field_keys[ ii->rules[i].compared_field ]);
515                 rule_activated = 0;
516
517                 // Before doing a field compare, check to see if we have the correct parts of the message in memory.
518
519                 switch(ii->rules[i].compared_field) {
520                         // These fields require loading only the top-level headers
521                         case field_from:                // From:
522                         case field_tocc:                // To: or Cc:
523                         case field_subject:             // Subject:
524                         case field_replyto:             // Reply-to:
525                         case field_listid:              // List-ID:
526                         case field_envto:               // Envelope-to:
527                         case field_envfrom:             // Return-path:
528                                 if (!headers_loaded) {
529                                         syslog(LOG_DEBUG, "inboxrules: loading headers for message %ld", msgnum);
530                                         msg = CtdlFetchMessage(msgnum, 0);
531                                         if (!msg) {
532                                                 return;
533                                         }
534                                         headers_loaded = 1;
535                                 }
536                                 break;
537                         // These fields are not stored as Citadel headers, and therefore require a full message load.
538                         case field_sender:
539                         case field_resentfrom:
540                         case field_resentto:
541                         case field_xmailer:
542                         case field_xspamflag:
543                         case field_xspamstatus:
544                                 if (!body_loaded) {
545                                         syslog(LOG_DEBUG, "inboxrules: loading all of message %ld", msgnum);
546                                         if (msg != NULL) {
547                                                 CM_Free(msg);
548                                         }
549                                         msg = CtdlFetchMessage(msgnum, 1);
550                                         if (!msg) {
551                                                 return;
552                                         }
553                                         headers_loaded = 1;
554                                         body_loaded = 1;
555                                 }
556                                 break;
557                         case field_size:
558                                 if (!metadata_loaded) {
559                                         syslog(LOG_DEBUG, "inboxrules: loading metadata for message %ld", msgnum);
560                                         GetMetaData(&smi, msgnum);
561                                         metadata_loaded = 1;
562                                 }
563                                 break;
564                         case field_all:
565                                 syslog(LOG_DEBUG, "inboxrules: this is an always-on rule");
566                                 break;
567                         default:
568                                 syslog(LOG_DEBUG, "inboxrules: unknown rule key");
569                 }
570
571                 // If the rule involves a field comparison, load the field to be compared.
572                 compare_me[0] = 0;
573                 switch(ii->rules[i].compared_field) {
574
575                         case field_from:                // From:
576                                 if (!IsEmptyStr(msg->cm_fields[erFc822Addr])) {
577                                         safestrncpy(compare_me, msg->cm_fields[erFc822Addr], sizeof compare_me);
578                                 }
579                                 break;
580                         case field_tocc:                // To: or Cc:
581                                 if (!IsEmptyStr(msg->cm_fields[eRecipient])) {
582                                         safestrncpy(compare_me, msg->cm_fields[eRecipient], sizeof compare_me);
583                                 }
584                                 if (!IsEmptyStr(msg->cm_fields[eCarbonCopY])) {
585                                         if (!IsEmptyStr(compare_me)) {
586                                                 strcat(compare_me, ",");
587                                         }
588                                         safestrncpy(&compare_me[strlen(compare_me)], msg->cm_fields[eCarbonCopY], (sizeof compare_me - strlen(compare_me)));
589                                 }
590                                 break;
591                         case field_subject:             // Subject:
592                                 if (!IsEmptyStr(msg->cm_fields[eMsgSubject])) {
593                                         safestrncpy(compare_me, msg->cm_fields[eMsgSubject], sizeof compare_me);
594                                 }
595                                 break;
596                         case field_replyto:             // Reply-to:
597                                 if (!IsEmptyStr(msg->cm_fields[eReplyTo])) {
598                                         safestrncpy(compare_me, msg->cm_fields[eReplyTo], sizeof compare_me);
599                                 }
600                                 break;
601                         case field_listid:              // List-ID:
602                                 if (!IsEmptyStr(msg->cm_fields[eListID])) {
603                                         safestrncpy(compare_me, msg->cm_fields[eListID], sizeof compare_me);
604                                 }
605                                 break;
606                         case field_envto:               // Envelope-to:
607                                 if (!IsEmptyStr(msg->cm_fields[eenVelopeTo])) {
608                                         safestrncpy(compare_me, msg->cm_fields[eenVelopeTo], sizeof compare_me);
609                                 }
610                                 break;
611                         case field_envfrom:             // Return-path:
612                                 if (!IsEmptyStr(msg->cm_fields[eMessagePath])) {
613                                         safestrncpy(compare_me, msg->cm_fields[eMessagePath], sizeof compare_me);
614                                 }
615                                 break;
616
617                         case field_sender:
618                         case field_resentfrom:
619                         case field_resentto:
620                         case field_xmailer:
621                         case field_xspamflag:
622                         case field_xspamstatus:
623
624                         default:
625                                 break;
626                 }
627
628                 // Message data to compare is loaded, now do something.
629                 switch(ii->rules[i].compared_field) {
630                         case field_from:                // From:
631                         case field_tocc:                // To: or Cc:
632                         case field_subject:             // Subject:
633                         case field_replyto:             // Reply-to:
634                         case field_listid:              // List-ID:
635                         case field_envto:               // Envelope-to:
636                         case field_envfrom:             // Return-path:
637                         case field_sender:
638                         case field_resentfrom:
639                         case field_resentto:
640                         case field_xmailer:
641                         case field_xspamflag:
642                         case field_xspamstatus:
643
644                                 // For all of the above fields, we can compare the field we've loaded into the buffer.
645                                 syslog(LOG_DEBUG, "Value of field to compare is: <%s>", compare_me);
646                                 switch(ii->rules[i].field_compare_op) {
647                                         case fcomp_contains:
648                                         case fcomp_matches:
649                                                 rule_activated = (bmstrcasestr(compare_me, ii->rules[i].compared_value) ? 1 : 0);
650                                                 syslog(LOG_DEBUG, "Does %s contain %s? %s", compare_me, ii->rules[i].compared_value, rule_activated?"yes":"no");
651                                                 break;
652                                         case fcomp_notcontains:
653                                         case fcomp_notmatches:
654                                                 rule_activated = (bmstrcasestr(compare_me, ii->rules[i].compared_value) ? 0 : 1);
655                                                 syslog(LOG_DEBUG, "Does %s contain %s? %s", compare_me, ii->rules[i].compared_value, rule_activated?"yes":"no");
656                                                 break;
657                                         case fcomp_is:
658                                                 rule_activated = (strcasecmp(compare_me, ii->rules[i].compared_value) ? 0 : 1);
659                                                 syslog(LOG_DEBUG, "Does %s equal %s? %s", compare_me, ii->rules[i].compared_value, rule_activated?"yes":"no");
660                                                 break;
661                                         case fcomp_isnot:
662                                                 rule_activated = (strcasecmp(compare_me, ii->rules[i].compared_value) ? 1 : 0);
663                                                 syslog(LOG_DEBUG, "Does %s equal %s? %s", compare_me, ii->rules[i].compared_value, rule_activated?"yes":"no");
664                                                 break;
665                                 }
666                                 break;
667
668                         case field_size:
669                                 rule_activated = 0;
670                                 syslog(LOG_DEBUG, "comparing actual message size %ld to rule message size %ld", smi.meta_rfc822_length, ii->rules[i].compared_size);
671                                 switch(ii->rules[i].field_compare_op) {
672                                         case scomp_larger:
673                                                 rule_activated = ((smi.meta_rfc822_length > ii->rules[i].compared_size) ? 1 : 0);
674                                                 syslog(LOG_DEBUG, "Is %ld larger than %ld? %s", smi.meta_rfc822_length, ii->rules[i].compared_size, (smi.meta_rfc822_length > ii->rules[i].compared_size) ? "yes":"no");
675                                                 break;
676                                         case scomp_smaller:
677                                                 rule_activated = ((smi.meta_rfc822_length < ii->rules[i].compared_size) ? 1 : 0);
678                                                 syslog(LOG_DEBUG, "Is %ld smaller than %ld? %s", smi.meta_rfc822_length, ii->rules[i].compared_size, (smi.meta_rfc822_length < ii->rules[i].compared_size) ? "yes":"no");
679                                                 break;
680                                 }
681                                 break;
682                         case field_all:                 // The "all messages" rule ALWAYS triggers
683                                 rule_activated = 1;
684                                 break;
685                         default:                        // no matches, fall through and do nothing
686                                 syslog(LOG_DEBUG, "inboxrules: an unknown field comparison was encountered");
687                                 rule_activated = 0;
688                                 break;
689                 }
690
691                 // If the rule matched, perform the requested action.
692                 if (rule_activated) {
693                         syslog(LOG_DEBUG, "inboxrules: rule activated");
694
695                         // Perform the requested action
696                         switch(ii->rules[i].action) {
697                                 case action_keep:
698                                         keep_message = 1;
699                                         break;
700                                 case action_discard:
701                                         keep_message = 0;
702                                         break;
703                                 case action_reject:
704                                         inbox_do_reject(&ii->rules[i], msg);
705                                         keep_message = 0;
706                                         break;
707                                 case action_fileinto:
708                                         keep_message = inbox_do_fileinto(&ii->rules[i], msgnum);
709                                         break;
710                                 case action_redirect:
711                                         keep_message = inbox_do_redirect(&ii->rules[i], msgnum);
712                                         break;
713                                 case action_vacation:
714                                         inbox_do_vacation(&ii->rules[i], msg);
715                                         keep_message = 1;
716                                         break;
717                         }
718
719                         // Now perform the "final" action (anything other than "stop" means continue)
720                         if (ii->rules[i].final_action == final_stop) {
721                                 syslog(LOG_DEBUG, "inboxrules: stop processing");
722                                 i = ii->num_rules + 1;                                  // throw us out of scope to stop
723                         }
724
725
726                 }
727                 else {
728                         syslog(LOG_DEBUG, "inboxrules: rule not activated");
729                 }
730         }
731
732         if (msg != NULL) {              // Delete the copy of the message that is currently in memory.  We don't need it anymore.
733                 CM_Free(msg);
734         }
735
736         if (!keep_message) {            // Delete the copy of the message that is currently in the inbox, if rules dictated that.
737                 syslog(LOG_DEBUG, "inboxrules: delete %ld from inbox", msgnum);
738                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");                    // we're in the inbox already
739         }
740
741         ii->lastproc = msgnum;          // make note of the last message we processed, so we don't scan the whole inbox again
742 }
743
744
745 /*
746  * A user account is identified as requring inbox processing.
747  * Do it.
748  */
749 void do_inbox_processing_for_user(long usernum) {
750         struct CtdlMessage *msg;
751         struct inboxrules *ii;
752         char roomname[ROOMNAMELEN];
753         char username[64];
754
755         if (CtdlGetUserByNumber(&CC->user, usernum) != 0) {     // grab the user record
756                 return;                                         // and bail out if we were given an invalid user
757         }
758
759         strcpy(username, CC->user.fullname);                    // save the user name so we can fetch it later and lock it
760
761         if (CC->user.msgnum_inboxrules <= 0) {
762                 return;                                         // this user has no inbox rules
763         }
764
765         msg = CtdlFetchMessage(CC->user.msgnum_inboxrules, 1);
766         if (msg == NULL) {
767                 return;                                         // config msgnum is set but that message does not exist
768         }
769
770         ii = deserialize_inbox_rules(msg->cm_fields[eMesageText]);
771         CM_Free(msg);
772
773         if (ii == NULL) {
774                 return;                                         // config message exists but body is null
775         }
776
777
778         syslog(LOG_DEBUG, "ii->lastproc                 %ld", ii->lastproc);
779         syslog(LOG_DEBUG, "CC->user.lastproc_inboxrules %ld", CC->user.lastproc_inboxrules);
780
781         if (ii->lastproc > CC->user.lastproc_inboxrules) {      // There might be a "last message processed" number left over
782                 CC->user.lastproc_inboxrules = ii->lastproc;    // in the ruleset from a previous version.  Use this if it is
783         }                                                       // a higher number.
784         else {
785                 ii->lastproc = CC->user.lastproc_inboxrules;
786         }
787
788         long original_lastproc = ii->lastproc;
789         syslog(LOG_DEBUG, "inboxrules: for %s, messages newer than %ld", CC->user.fullname, original_lastproc);
790
791         // Go to the user's inbox room and process all new messages
792         snprintf(roomname, sizeof roomname, "%010ld.%s", usernum, MAILROOM);
793         if (CtdlGetRoom(&CC->room, roomname) == 0) {
794                 CtdlForEachMessage(MSGS_GT, ii->lastproc, NULL, NULL, NULL, inbox_do_msg, (void *) ii);
795         }
796
797         // Record the number of the last message we processed
798         if (ii->lastproc > original_lastproc) {
799                 CtdlGetUserLock(&CC->user, username);
800                 CC->user.lastproc_inboxrules = ii->lastproc;    // Avoid processing the entire inbox next time
801                 CtdlPutUserLock(&CC->user);
802         }
803
804         // And free the memory.
805         free_inbox_rules(ii);
806 }
807
808
809 /*
810  * Here is an array of users (by number) who have received messages in their inbox and may require processing.
811  */
812 long *users_requiring_inbox_processing = NULL;
813 int num_urip = 0;
814 int num_urip_alloc = 0;
815
816
817 /*
818  * Perform inbox processing for all rooms which require it
819  */
820 void perform_inbox_processing(void) {
821         if (num_urip == 0) {
822                 return;                                                                                 // no action required
823         }
824
825         for (int i=0; i<num_urip; ++i) {
826                 do_inbox_processing_for_user(users_requiring_inbox_processing[i]);
827         }
828
829         free(users_requiring_inbox_processing);
830         users_requiring_inbox_processing = NULL;
831         num_urip = 0;
832         num_urip_alloc = 0;
833 }
834
835
836 /*
837  * This function is called after a message is saved to a room.
838  * If it's someone's inbox, we have to check for inbox rules
839  */
840 int serv_inboxrules_roomhook(struct ctdlroom *room) {
841
842         // Is this someone's inbox?
843         if (!strcasecmp(&room->QRname[11], MAILROOM)) {
844                 long usernum = atol(room->QRname);
845                 if (usernum > 0) {
846
847                         // first check to see if this user is already on the list
848                         if (num_urip > 0) {
849                                 for (int i=0; i<=num_urip; ++i) {
850                                         if (users_requiring_inbox_processing[i] == usernum) {           // already on the list!
851                                                 return(0);
852                                         }
853                                 }
854                         }
855
856                         // make room if we need to
857                         if (num_urip_alloc == 0) {
858                                 num_urip_alloc = 100;
859                                 users_requiring_inbox_processing = malloc(sizeof(long) * num_urip_alloc);
860                         }
861                         else if (num_urip >= num_urip_alloc) {
862                                 num_urip_alloc += 100;
863                                 users_requiring_inbox_processing = realloc(users_requiring_inbox_processing, (sizeof(long) * num_urip_alloc));
864                         }
865                         
866                         // now add the user to the list
867                         users_requiring_inbox_processing[num_urip++] = usernum;
868                 }
869         }
870
871         // No errors are possible from this function.
872         return(0);
873 }
874
875
876
877 /*
878  * Get InBox Rules
879  *
880  * This is a client-facing function which fetches the user's inbox rules -- it omits all lines containing anything other than a rule.
881  * 
882  * hmmmmm ... should we try to rebuild this in terms of deserialize_inbox_rules() instread?
883  */
884 void cmd_gibr(char *argbuf) {
885
886         if (CtdlAccessCheck(ac_logged_in)) return;
887
888         cprintf("%d inbox rules for %s\n", LISTING_FOLLOWS, CC->user.fullname);
889
890         struct CtdlMessage *msg = CtdlFetchMessage(CC->user.msgnum_inboxrules, 1);
891         if (msg != NULL) {
892                 if (!CM_IsEmpty(msg, eMesageText)) {
893                         char *token; 
894                         char *rest = msg->cm_fields[eMesageText];
895                         while ((token = strtok_r(rest, "\n", &rest))) {
896
897                                 // for backwards compatibility, "# WEBCIT_RULE" is an alias for "rule" 
898                                 if (!strncasecmp(token, "# WEBCIT_RULE|", 14)) {
899                                         strcpy(token, "rule|"); 
900                                         strcpy(&token[5], &token[14]);
901                                 }
902
903                                 // Output only lines containing rules.
904                                 if (!strncasecmp(token, "rule|", 5)) {
905                                         cprintf("%s\n", token); 
906                                 }
907                                 else {
908                                         cprintf("# invalid rule found : %s\n", token);
909                                 }
910                         }
911                 }
912                 CM_Free(msg);
913         }
914         cprintf("000\n");
915 }
916
917
918 /*
919  * Rewrite the rule set to disk after it has been modified
920  * Called by cmd_pibr()
921  * Returns the msgnum of the new rules message
922  */
923 void rewrite_rules_to_disk(const char *new_config) {
924         long old_msgnum = CC->user.msgnum_inboxrules;
925         char userconfigroomname[ROOMNAMELEN];
926         CtdlMailboxName(userconfigroomname, sizeof userconfigroomname, &CC->user, USERCONFIGROOM);
927         long new_msgnum = quickie_message("Citadel", NULL, NULL, userconfigroomname, new_config, FMT_RFC822, "inbox rules configuration");
928         CtdlGetUserLock(&CC->user, CC->curr_user);
929         CC->user.msgnum_inboxrules = new_msgnum;                // Now we know where to get the rules next time
930         CC->user.lastproc_inboxrules = new_msgnum;              // Avoid processing the entire inbox next time
931         CtdlPutUserLock(&CC->user);
932         if (old_msgnum > 0) {
933                 syslog(LOG_DEBUG, "Deleting old message %ld from %s", old_msgnum, userconfigroomname);
934                 CtdlDeleteMessages(userconfigroomname, &old_msgnum, 1, "");
935         }
936 }
937
938
939 /*
940  * Put InBox Rules
941  *
942  * User transmits the new inbox rules for the account.  They are inserted into the account, replacing the ones already there.
943  */
944 void cmd_pibr(char *argbuf) {
945         if (CtdlAccessCheck(ac_logged_in)) return;
946
947         unbuffer_output();
948         cprintf("%d send new rules\n", SEND_LISTING);
949         char *newrules = CtdlReadMessageBody(HKEY("000"), CtdlGetConfigLong("c_maxmsglen"), NULL, 0);
950         StrBuf *NewConfig = NewStrBufPlain("Content-type: application/x-citadel-sieve-config; charset=UTF-8\nContent-transfer-encoding: 8bit\n\n", -1);
951
952         char *token; 
953         char *rest = newrules;
954         while ((token = strtok_r(rest, "\n", &rest))) {
955                 // Accept only lines containing rules
956                 if (!strncasecmp(token, "rule|", 5)) {
957                         StrBufAppendBufPlain(NewConfig, token, -1, 0);
958                         StrBufAppendBufPlain(NewConfig, HKEY("\n"), 0);
959                 }
960         }
961         free(newrules);
962         rewrite_rules_to_disk(ChrPtr(NewConfig));
963         FreeStrBuf(&NewConfig);
964 }
965
966
967 CTDL_MODULE_INIT(sieve)
968 {
969         if (!threading)
970         {
971                 CtdlRegisterProtoHook(cmd_gibr, "GIBR", "Get InBox Rules");
972                 CtdlRegisterProtoHook(cmd_pibr, "PIBR", "Put InBox Rules");
973                 CtdlRegisterRoomHook(serv_inboxrules_roomhook);
974                 CtdlRegisterSessionHook(perform_inbox_processing, EVT_HOUSE, PRIO_HOUSE + 10);
975         }
976         
977         /* return our module name for the log */
978         return "inboxrules";
979 }