VACATION and REJECT messages now appear to come from
[citadel.git] / citadel / serv_sieve.c
1 /*
2  * $Id: serv_sieve.c 3850 2005-09-13 14:00:24Z ajc $
3  *
4  * This module glues libSieve to the Citadel server in order to implement
5  * the Sieve mailbox filtering language (RFC 3028).
6  *
7  * This code is released under the terms of the GNU General Public License. 
8  */
9
10 #include "sysdep.h"
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <stdio.h>
14 #include <fcntl.h>
15 #include <signal.h>
16 #include <pwd.h>
17 #include <errno.h>
18 #include <sys/types.h>
19
20 #if TIME_WITH_SYS_TIME
21 # include <sys/time.h>
22 # include <time.h>
23 #else
24 # if HAVE_SYS_TIME_H
25 #  include <sys/time.h>
26 # else
27 #  include <time.h>
28 # endif
29 #endif
30
31 #include <sys/wait.h>
32 #include <string.h>
33 #include <limits.h>
34 #include "citadel.h"
35 #include "server.h"
36 #include "sysdep_decls.h"
37 #include "citserver.h"
38 #include "support.h"
39 #include "config.h"
40 #include "serv_extensions.h"
41 #include "room_ops.h"
42 #include "policy.h"
43 #include "database.h"
44 #include "msgbase.h"
45 #include "internet_addressing.h"
46 #include "tools.h"
47
48 #ifdef HAVE_LIBSIEVE
49
50 #include "serv_sieve.h"
51
52 struct RoomProcList *sieve_list = NULL;
53 char *msiv_extensions = NULL;
54
55
56 /*
57  * Callback function to send libSieve trace messages to Citadel log facility
58  * Set ctdl_libsieve_debug=1 to see extremely verbose libSieve trace
59  */
60 int ctdl_debug(sieve2_context_t *s, void *my)
61 {
62         static int ctdl_libsieve_debug = 0;
63
64         if (ctdl_libsieve_debug) {
65 /*
66                 lprintf(CTDL_DEBUG, "Sieve: level [%d] module [%s] file [%s] function [%s]\n",
67                         sieve2_getvalue_int(s, "level"),
68                         sieve2_getvalue_string(s, "module"),
69                         sieve2_getvalue_string(s, "file"),
70                         sieve2_getvalue_string(s, "function"));
71  */
72                 lprintf(CTDL_DEBUG, "Sieve: %s\n",
73                         sieve2_getvalue_string(s, "message"));
74         }
75         return SIEVE2_OK;
76 }
77
78
79 /*
80  * Callback function to log script parsing errors
81  */
82 int ctdl_errparse(sieve2_context_t *s, void *my)
83 {
84         lprintf(CTDL_WARNING, "Error in script, line %d: %s\n",
85                 sieve2_getvalue_int(s, "lineno"),
86                 sieve2_getvalue_string(s, "message")
87         );
88         return SIEVE2_OK;
89 }
90
91
92 /*
93  * Callback function to log script execution errors
94  */
95 int ctdl_errexec(sieve2_context_t *s, void *my)
96 {
97         lprintf(CTDL_WARNING, "Error executing script: %s\n",
98                 sieve2_getvalue_string(s, "message")
99         );
100         return SIEVE2_OK;
101 }
102
103
104 /*
105  * Callback function to redirect a message to a different folder
106  */
107 int ctdl_redirect(sieve2_context_t *s, void *my)
108 {
109         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
110         struct CtdlMessage *msg = NULL;
111         struct recptypes *valid = NULL;
112         char recp[256];
113
114         safestrncpy(recp, sieve2_getvalue_string(s, "address"), sizeof recp);
115
116         lprintf(CTDL_DEBUG, "Action is REDIRECT, recipient <%s>\n", recp);
117
118         valid = validate_recipients(recp);
119         if (valid == NULL) {
120                 lprintf(CTDL_WARNING, "REDIRECT failed: bad recipient <%s>\n", recp);
121                 return SIEVE2_ERROR_BADARGS;
122         }
123         if (valid->num_error > 0) {
124                 lprintf(CTDL_WARNING, "REDIRECT failed: bad recipient <%s>\n", recp);
125                 free(valid);
126                 return SIEVE2_ERROR_BADARGS;
127         }
128
129         msg = CtdlFetchMessage(cs->msgnum, 1);
130         if (msg == NULL) {
131                 lprintf(CTDL_WARNING, "REDIRECT failed: unable to fetch msg %ld\n", cs->msgnum);
132                 free(valid);
133                 return SIEVE2_ERROR_BADARGS;
134         }
135
136         CtdlSubmitMsg(msg, valid, NULL);
137         cs->cancel_implicit_keep = 1;
138         free(valid);
139         CtdlFreeMessage(msg);
140         return SIEVE2_OK;
141 }
142
143
144 /*
145  * Callback function to indicate that a message *will* be kept in the inbox
146  */
147 int ctdl_keep(sieve2_context_t *s, void *my)
148 {
149         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
150         
151         lprintf(CTDL_DEBUG, "Action is KEEP\n");
152
153         cs->keep = 1;
154         cs->cancel_implicit_keep = 1;
155         return SIEVE2_OK;
156 }
157
158
159 /*
160  * Callback function to file a message into a different mailbox
161  */
162 int ctdl_fileinto(sieve2_context_t *s, void *my)
163 {
164         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
165         const char *dest_folder = sieve2_getvalue_string(s, "mailbox");
166         int c;
167         char foldername[256];
168         char original_room_name[ROOMNAMELEN];
169
170         lprintf(CTDL_DEBUG, "Action is FILEINTO, destination is <%s>\n", dest_folder);
171
172         /* FILEINTO 'INBOX' is the same thing as KEEP */
173         if ( (!strcasecmp(dest_folder, "INBOX")) || (!strcasecmp(dest_folder, MAILROOM)) ) {
174                 cs->keep = 1;
175                 cs->cancel_implicit_keep = 1;
176                 return SIEVE2_OK;
177         }
178
179         /* Remember what room we came from */
180         safestrncpy(original_room_name, CC->room.QRname, sizeof original_room_name);
181
182         /* First try a mailbox name match (check personal mail folders first) */
183         snprintf(foldername, sizeof foldername, "%010ld.%s", cs->usernum, dest_folder);
184         c = getroom(&CC->room, foldername);
185
186         /* Then a regular room name match (public and private rooms) */
187         if (c < 0) {
188                 safestrncpy(foldername, dest_folder, sizeof foldername);
189                 c = getroom(&CC->room, foldername);
190         }
191
192         if (c < 0) {
193                 lprintf(CTDL_WARNING, "FILEINTO failed: target <%s> does not exist\n", dest_folder);
194                 return SIEVE2_ERROR_BADARGS;
195         }
196
197         /* Yes, we actually have to go there */
198         usergoto(NULL, 0, 0, NULL, NULL);
199
200         c = CtdlSaveMsgPointersInRoom(NULL, &cs->msgnum, 1, 0, NULL);
201
202         /* Go back to the room we came from */
203         if (strcasecmp(original_room_name, CC->room.QRname)) {
204                 usergoto(original_room_name, 0, 0, NULL, NULL);
205         }
206
207         if (c == 0) {
208                 cs->cancel_implicit_keep = 1;
209                 return SIEVE2_OK;
210         }
211         else {
212                 return SIEVE2_ERROR_BADARGS;
213         }
214 }
215
216
217 /*
218  * Callback function to indicate that a message should be discarded.
219  */
220 int ctdl_discard(sieve2_context_t *s, void *my)
221 {
222         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
223
224         lprintf(CTDL_DEBUG, "Action is DISCARD\n");
225
226         /* Cancel the implicit keep.  That's all there is to it. */
227         cs->cancel_implicit_keep = 1;
228         return SIEVE2_OK;
229 }
230
231
232
233 /*
234  * Callback function to indicate that a message should be rejected
235  */
236 int ctdl_reject(sieve2_context_t *s, void *my)
237 {
238         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
239         char *reject_text = NULL;
240
241         lprintf(CTDL_DEBUG, "Action is REJECT\n");
242
243         /* If we don't know who sent the message, do a DISCARD instead. */
244         if (strlen(cs->sender) == 0) {
245                 lprintf(CTDL_INFO, "Unknown sender.  Doing DISCARD instead of REJECT.\n");
246                 return ctdl_discard(s, my);
247         }
248
249         /* Assemble the reject message. */
250         reject_text = malloc(strlen(sieve2_getvalue_string(s, "message")) + 1024);
251         if (reject_text == NULL) {
252                 return SIEVE2_ERROR_FAIL;
253         }
254
255         sprintf(reject_text, 
256                 "Content-type: text/plain\n"
257                 "\n"
258                 "The message was refused by the recipient's mail filtering program.\n"
259                 "The reason given was as follows:\n"
260                 "\n"
261                 "%s\n"
262                 "\n"
263         ,
264                 sieve2_getvalue_string(s, "message")
265         );
266
267         quickie_message(        /* This delivers the message */
268                 NULL,
269                 cs->envelope_to,
270                 cs->sender,
271                 NULL,
272                 reject_text,
273                 FMT_RFC822,
274                 "Delivery status notification"
275         );
276
277         free(reject_text);
278         cs->cancel_implicit_keep = 1;
279         return SIEVE2_OK;
280 }
281
282
283
284 /*
285  * Callback function to indicate that a vacation message should be generated
286  */
287 int ctdl_vacation(sieve2_context_t *s, void *my)
288 {
289         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
290         struct sdm_vacation *vptr;
291         int days = 1;
292         const char *message;
293         char *vacamsg_text = NULL;
294         char vacamsg_subject[1024];
295
296         lprintf(CTDL_DEBUG, "Action is VACATION\n");
297
298         message = sieve2_getvalue_string(s, "message");
299         if (message == NULL) return SIEVE2_ERROR_BADARGS;
300
301         if (sieve2_getvalue_string(s, "subject") != NULL) {
302                 safestrncpy(vacamsg_subject, sieve2_getvalue_string(s, "subject"), sizeof vacamsg_subject);
303         }
304         else {
305                 snprintf(vacamsg_subject, sizeof vacamsg_subject, "Re: %s", cs->subject);
306         }
307
308         days = sieve2_getvalue_int(s, "days");
309         if (days < 1) days = 1;
310         if (days > MAX_VACATION) days = MAX_VACATION;
311
312         /* Check to see whether we've already alerted this sender that we're on vacation. */
313         for (vptr = cs->u->first_vacation; vptr != NULL; vptr = vptr->next) {
314                 if (!strcasecmp(vptr->fromaddr, cs->sender)) {
315                         if ( (time(NULL) - vptr->timestamp) < (days * 86400) ) {
316                                 lprintf(CTDL_DEBUG, "Already alerted <%s> recently.\n", cs->sender);
317                                 return SIEVE2_OK;
318                         }
319                 }
320         }
321
322         /* Assemble the reject message. */
323         vacamsg_text = malloc(strlen(message) + 1024);
324         if (vacamsg_text == NULL) {
325                 return SIEVE2_ERROR_FAIL;
326         }
327
328         sprintf(vacamsg_text, 
329                 "Content-type: text/plain\n"
330                 "\n"
331                 "%s\n"
332                 "\n"
333         ,
334                 message
335         );
336
337         quickie_message(        /* This delivers the message */
338                 NULL,
339                 cs->envelope_to,
340                 cs->sender,
341                 NULL,
342                 vacamsg_text,
343                 FMT_RFC822,
344                 vacamsg_subject
345         );
346
347         free(vacamsg_text);
348
349         /* Now update the list to reflect the fact that we've alerted this sender.
350          * If they're already in the list, just update the timestamp.
351          */
352         for (vptr = cs->u->first_vacation; vptr != NULL; vptr = vptr->next) {
353                 if (!strcasecmp(vptr->fromaddr, cs->sender)) {
354                         vptr->timestamp = time(NULL);
355                         return SIEVE2_OK;
356                 }
357         }
358
359         /* If we get to this point, create a new record.
360          */
361         vptr = malloc(sizeof(struct sdm_vacation));
362         vptr->timestamp = time(NULL);
363         safestrncpy(vptr->fromaddr, cs->sender, sizeof vptr->fromaddr);
364         vptr->next = cs->u->first_vacation;
365         cs->u->first_vacation = vptr;
366
367         return SIEVE2_OK;
368 }
369
370
371 /*
372  * Callback function to parse addresses per local system convention
373  * It is disabled because we don't support subaddresses.
374  */
375 #if 0
376 int ctdl_getsubaddress(sieve2_context_t *s, void *my)
377 {
378         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
379
380         /* libSieve does not take ownership of the memory used here.  But, since we
381          * are just pointing to locations inside a struct which we are going to free
382          * later, we're ok.
383          */
384         sieve2_setvalue_string(s, "user", cs->recp_user);
385         sieve2_setvalue_string(s, "detail", "");
386         sieve2_setvalue_string(s, "localpart", cs->recp_user);
387         sieve2_setvalue_string(s, "domain", cs->recp_node);
388         return SIEVE2_OK;
389 }
390 #endif
391
392
393 /*
394  * Callback function to parse message envelope
395  */
396 int ctdl_getenvelope(sieve2_context_t *s, void *my)
397 {
398         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
399
400         lprintf(CTDL_DEBUG, "Action is GETENVELOPE\n");
401         sieve2_setvalue_string(s, "to", cs->envelope_to);
402         sieve2_setvalue_string(s, "from", cs->envelope_from);
403         return SIEVE2_OK;
404 }
405
406
407 /*
408  * Callback function to fetch message body
409  * (Uncomment the code if we implement this extension)
410  *
411 int ctdl_getbody(sieve2_context_t *s, void *my)
412 {
413         return SIEVE2_ERROR_UNSUPPORTED;
414 }
415  *
416  */
417
418
419 /*
420  * Callback function to fetch message size
421  */
422 int ctdl_getsize(sieve2_context_t *s, void *my)
423 {
424         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
425         struct MetaData smi;
426
427         GetMetaData(&smi, cs->msgnum);
428         
429         if (smi.meta_rfc822_length > 0L) {
430                 sieve2_setvalue_int(s, "size", (int)smi.meta_rfc822_length);
431                 return SIEVE2_OK;
432         }
433
434         return SIEVE2_ERROR_UNSUPPORTED;
435 }
436
437
438 /*
439  * Callback function to retrieve the sieve script
440  */
441 int ctdl_getscript(sieve2_context_t *s, void *my) {
442         struct sdm_script *sptr;
443         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
444
445         for (sptr=cs->u->first_script; sptr!=NULL; sptr=sptr->next) {
446                 if (sptr->script_active > 0) {
447                         lprintf(CTDL_DEBUG, "ctdl_getscript() is using script '%s'\n", sptr->script_name);
448                         sieve2_setvalue_string(s, "script", sptr->script_content);
449                         return SIEVE2_OK;
450                 }
451         }
452                 
453         lprintf(CTDL_DEBUG, "ctdl_getscript() found no active script\n");
454         return SIEVE2_ERROR_GETSCRIPT;
455 }
456
457 /*
458  * Callback function to retrieve message headers
459  */
460 int ctdl_getheaders(sieve2_context_t *s, void *my) {
461
462         struct ctdl_sieve *cs = (struct ctdl_sieve *)my;
463
464         lprintf(CTDL_DEBUG, "ctdl_getheaders() was called\n");
465
466         sieve2_setvalue_string(s, "allheaders", cs->rfc822headers);
467         return SIEVE2_OK;
468 }
469
470
471
472 /*
473  * Add a room to the list of those rooms which potentially require sieve processing
474  */
475 void sieve_queue_room(struct ctdlroom *which_room) {
476         struct RoomProcList *ptr;
477
478         ptr = (struct RoomProcList *) malloc(sizeof (struct RoomProcList));
479         if (ptr == NULL) return;
480
481         safestrncpy(ptr->name, which_room->QRname, sizeof ptr->name);
482         begin_critical_section(S_SIEVELIST);
483         ptr->next = sieve_list;
484         sieve_list = ptr;
485         end_critical_section(S_SIEVELIST);
486 }
487
488
489
490 /*
491  * Perform sieve processing for one message (called by sieve_do_room() for each message)
492  */
493 void sieve_do_msg(long msgnum, void *userdata) {
494         struct sdm_userdata *u = (struct sdm_userdata *) userdata;
495         sieve2_context_t *sieve2_context = u->sieve2_context;
496         struct ctdl_sieve my;
497         int res;
498         struct CtdlMessage *msg;
499
500         lprintf(CTDL_DEBUG, "Performing sieve processing on msg <%ld>\n", msgnum);
501
502         msg = CtdlFetchMessage(msgnum, 0);
503         if (msg == NULL) return;
504
505         CC->redirect_buffer = malloc(SIZ);
506         CC->redirect_len = 0;
507         CC->redirect_alloc = SIZ;
508         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ONLY, 0, 1);
509         my.rfc822headers = CC->redirect_buffer;
510         CC->redirect_buffer = NULL;
511         CC->redirect_len = 0;
512         CC->redirect_alloc = 0;
513
514         my.keep = 0;                            /* Set to 1 to declare an *explicit* keep */
515         my.cancel_implicit_keep = 0;            /* Some actions will cancel the implicit keep */
516         my.usernum = atol(CC->room.QRname);     /* Keep track of the owner of the room's namespace */
517         my.msgnum = msgnum;                     /* Keep track of the message number in our local store */
518         my.u = u;                               /* Hand off a pointer to the rest of this info */
519
520         /* Keep track of the recipient so we can do handling based on it later */
521         process_rfc822_addr(msg->cm_fields['R'], my.recp_user, my.recp_node, my.recp_name);
522
523         /* Keep track of the sender so we can use it for REJECT and VACATION responses */
524         if (msg->cm_fields['F'] != NULL) {
525                 safestrncpy(my.sender, msg->cm_fields['F'], sizeof my.sender);
526         }
527         else if ( (msg->cm_fields['A'] != NULL) && (msg->cm_fields['N'] != NULL) ) {
528                 snprintf(my.sender, sizeof my.sender, "%s@%s", msg->cm_fields['A'], msg->cm_fields['N']);
529         }
530         else if (msg->cm_fields['A'] != NULL) {
531                 safestrncpy(my.sender, msg->cm_fields['A'], sizeof my.sender);
532         }
533         else {
534                 strcpy(my.sender, "");
535         }
536
537         /* Keep track of the subject so we can use it for VACATION responses */
538         if (msg->cm_fields['U'] != NULL) {
539                 safestrncpy(my.subject, msg->cm_fields['U'], sizeof my.subject);
540         }
541         else {
542                 strcpy(my.subject, "");
543         }
544
545         /* Keep track of the envelope-from address (use body-from if not found) */
546         if (msg->cm_fields['P'] != NULL) {
547                 safestrncpy(my.envelope_from, msg->cm_fields['P'], sizeof my.envelope_from);
548         }
549         else if (msg->cm_fields['F'] != NULL) {
550                 safestrncpy(my.envelope_from, msg->cm_fields['F'], sizeof my.envelope_from);
551         }
552         else {
553                 strcpy(my.envelope_from, "");
554         }
555
556         /* Keep track of the envelope-to address */
557         if (msg->cm_fields['V'] != NULL) {
558                 safestrncpy(my.envelope_to, msg->cm_fields['V'], sizeof my.envelope_to);
559         }
560         else {
561                 strcpy(my.envelope_to, "");
562         }
563
564         free(msg);
565
566         sieve2_setvalue_string(sieve2_context, "allheaders", my.rfc822headers);
567         
568         lprintf(CTDL_DEBUG, "Calling sieve2_execute()\n");
569         res = sieve2_execute(sieve2_context, &my);
570         if (res != SIEVE2_OK) {
571                 lprintf(CTDL_CRIT, "sieve2_execute() returned %d: %s\n", res, sieve2_errstr(res));
572         }
573
574         free(my.rfc822headers);
575         my.rfc822headers = NULL;
576
577         /*
578          * Delete the message from the inbox unless either we were told not to, or
579          * if no other action was successfully taken.
580          */
581         if ( (!my.keep) && (my.cancel_implicit_keep) ) {
582                 lprintf(CTDL_DEBUG, "keep is 0 -- deleting message from inbox\n");
583                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "", 0);
584         }
585
586         lprintf(CTDL_DEBUG, "Completed sieve processing on msg <%ld>\n", msgnum);
587         u->lastproc = msgnum;
588
589         return;
590 }
591
592
593
594 /*
595  * Given the on-disk representation of our Sieve config, load
596  * it into an in-memory data structure.
597  */
598 void parse_sieve_config(char *conf, struct sdm_userdata *u) {
599         char *ptr;
600         char *c, *vacrec;
601         char keyword[256];
602         struct sdm_script *sptr;
603         struct sdm_vacation *vptr;
604
605         ptr = conf;
606         while (c = ptr, ptr = bmstrcasestr(ptr, CTDLSIEVECONFIGSEPARATOR), ptr != NULL) {
607                 *ptr = 0;
608                 ptr += strlen(CTDLSIEVECONFIGSEPARATOR);
609
610                 extract_token(keyword, c, 0, '|', sizeof keyword);
611
612                 if (!strcasecmp(keyword, "lastproc")) {
613                         u->lastproc = extract_long(c, 1);
614                 }
615
616                 else if (!strcasecmp(keyword, "script")) {
617                         sptr = malloc(sizeof(struct sdm_script));
618                         extract_token(sptr->script_name, c, 1, '|', sizeof sptr->script_name);
619                         sptr->script_active = extract_int(c, 2);
620                         remove_token(c, 0, '|');
621                         remove_token(c, 0, '|');
622                         remove_token(c, 0, '|');
623                         sptr->script_content = strdup(c);
624                         sptr->next = u->first_script;
625                         u->first_script = sptr;
626                 }
627
628                 else if (!strcasecmp(keyword, "vacation")) {
629
630                         if (c != NULL) while (vacrec=c, c=strchr(c, '\n'), (c != NULL)) {
631
632                                 *c = 0;
633                                 ++c;
634
635                                 if (strncasecmp(vacrec, "vacation|", 9)) {
636                                         vptr = malloc(sizeof(struct sdm_vacation));
637                                         extract_token(vptr->fromaddr, vacrec, 0, '|', sizeof vptr->fromaddr);
638                                         vptr->timestamp = extract_long(vacrec, 1);
639                                         vptr->next = u->first_vacation;
640                                         u->first_vacation = vptr;
641                                 }
642                         }
643                 }
644
645                 /* ignore unknown keywords */
646         }
647 }
648
649 /*
650  * We found the Sieve configuration for this user.
651  * Now do something with it.
652  */
653 void get_sieve_config_backend(long msgnum, void *userdata) {
654         struct sdm_userdata *u = (struct sdm_userdata *) userdata;
655         struct CtdlMessage *msg;
656         char *conf;
657
658         u->config_msgnum = msgnum;
659         msg = CtdlFetchMessage(msgnum, 1);
660         if (msg == NULL) {
661                 u->config_msgnum = (-1) ;
662                 return;
663         }
664
665         conf = msg->cm_fields['M'];
666         msg->cm_fields['M'] = NULL;
667         CtdlFreeMessage(msg);
668
669         if (conf != NULL) {
670                 parse_sieve_config(conf, u);
671                 free(conf);
672         }
673
674 }
675
676
677 /* 
678  * Write our citadel sieve config back to disk
679  */
680 void rewrite_ctdl_sieve_config(struct sdm_userdata *u) {
681         char *text;
682         struct sdm_script *sptr;
683         struct sdm_vacation *vptr;
684
685
686         text = malloc(1024);
687         snprintf(text, 1024,
688                 "Content-type: application/x-citadel-sieve-config\n"
689                 "\n"
690                 CTDLSIEVECONFIGSEPARATOR
691                 "lastproc|%ld"
692                 CTDLSIEVECONFIGSEPARATOR
693         ,
694                 u->lastproc
695         );
696
697         while (u->first_script != NULL) {
698                 text = realloc(text, strlen(text) + strlen(u->first_script->script_content) + 256);
699                 sprintf(&text[strlen(text)], "script|%s|%d|%s" CTDLSIEVECONFIGSEPARATOR,
700                         u->first_script->script_name,
701                         u->first_script->script_active,
702                         u->first_script->script_content
703                 );
704                 sptr = u->first_script;
705                 u->first_script = u->first_script->next;
706                 free(sptr->script_content);
707                 free(sptr);
708         }
709
710         if (u->first_vacation != NULL) {
711
712                 size_t realloc_len = strlen(text) + 256;
713                 for (vptr = u->first_vacation; vptr != NULL; vptr = vptr->next) {
714                         realloc_len += strlen(vptr->fromaddr + 32);
715                 }
716                 text = realloc(text, realloc_len);
717
718                 sprintf(&text[strlen(text)], "vacation|\n");
719                 while (u->first_vacation != NULL) {
720                         if ( (time(NULL) - u->first_vacation->timestamp) < (MAX_VACATION * 86400)) {
721                                 sprintf(&text[strlen(text)], "%s|%ld\n",
722                                         u->first_vacation->fromaddr,
723                                         u->first_vacation->timestamp
724                                 );
725                         }
726                         vptr = u->first_vacation;
727                         u->first_vacation = u->first_vacation->next;
728                         free(vptr);
729                 }
730                 sprintf(&text[strlen(text)], CTDLSIEVECONFIGSEPARATOR);
731         }
732
733         /* Save the config */
734         quickie_message("Citadel", NULL, NULL, u->config_roomname,
735                         text,
736                         4,
737                         "Sieve configuration"
738         );
739
740         /* And delete the old one */
741         if (u->config_msgnum > 0) {
742                 CtdlDeleteMessages(u->config_roomname, &u->config_msgnum, 1, "", 0);
743         }
744
745 }
746
747
748 /*
749  * This is our callback registration table for libSieve.
750  */
751 sieve2_callback_t ctdl_sieve_callbacks[] = {
752         { SIEVE2_ACTION_REJECT,         ctdl_reject             },
753         { SIEVE2_ACTION_VACATION,       ctdl_vacation           },
754         { SIEVE2_ERRCALL_PARSE,         ctdl_errparse           },
755         { SIEVE2_ERRCALL_RUNTIME,       ctdl_errexec            },
756         { SIEVE2_ACTION_FILEINTO,       ctdl_fileinto           },
757         { SIEVE2_ACTION_REDIRECT,       ctdl_redirect           },
758         { SIEVE2_ACTION_DISCARD,        ctdl_discard            },
759         { SIEVE2_ACTION_KEEP,           ctdl_keep               },
760         { SIEVE2_SCRIPT_GETSCRIPT,      ctdl_getscript          },
761         { SIEVE2_DEBUG_TRACE,           ctdl_debug              },
762         { SIEVE2_MESSAGE_GETALLHEADERS, ctdl_getheaders         },
763         { SIEVE2_MESSAGE_GETSIZE,       ctdl_getsize            },
764         { SIEVE2_MESSAGE_GETENVELOPE,   ctdl_getenvelope        },
765 /*
766  * These actions are unsupported by Citadel so we don't declare them.
767  *
768         { SIEVE2_ACTION_NOTIFY,         ctdl_notify             },
769         { SIEVE2_MESSAGE_GETSUBADDRESS, ctdl_getsubaddress      },
770         { SIEVE2_MESSAGE_GETBODY,       ctdl_getbody            },
771  *
772  */
773         { 0 }
774 };
775
776
777 /*
778  * Perform sieve processing for a single room
779  */
780 void sieve_do_room(char *roomname) {
781         
782         struct sdm_userdata u;
783         sieve2_context_t *sieve2_context = NULL;        /* Context for sieve parser */
784         int res;                                        /* Return code from libsieve calls */
785         long orig_lastproc = 0;
786
787         memset(&u, 0, sizeof u);
788
789         /* See if the user who owns this 'mailbox' has any Sieve scripts that
790          * require execution.
791          */
792         snprintf(u.config_roomname, sizeof u.config_roomname, "%010ld.%s", atol(roomname), USERCONFIGROOM);
793         if (getroom(&CC->room, u.config_roomname) != 0) {
794                 lprintf(CTDL_DEBUG, "<%s> does not exist.  No processing is required.\n", u.config_roomname);
795                 return;
796         }
797
798         /*
799          * Find the sieve scripts and control record and do something
800          */
801         u.config_msgnum = (-1);
802         CtdlForEachMessage(MSGS_LAST, 1, NULL, SIEVECONFIG, NULL,
803                 get_sieve_config_backend, (void *)&u );
804
805         if (u.config_msgnum < 0) {
806                 lprintf(CTDL_DEBUG, "No Sieve rules exist.  No processing is required.\n");
807                 return;
808         }
809
810         lprintf(CTDL_DEBUG, "Rules found.  Performing Sieve processing for <%s>\n", roomname);
811
812         if (getroom(&CC->room, roomname) != 0) {
813                 lprintf(CTDL_CRIT, "ERROR: cannot load <%s>\n", roomname);
814                 return;
815         }
816
817         /* Initialize the Sieve parser */
818         
819         res = sieve2_alloc(&sieve2_context);
820         if (res != SIEVE2_OK) {
821                 lprintf(CTDL_CRIT, "sieve2_alloc() returned %d: %s\n", res, sieve2_errstr(res));
822                 return;
823         }
824
825         res = sieve2_callbacks(sieve2_context, ctdl_sieve_callbacks);
826         if (res != SIEVE2_OK) {
827                 lprintf(CTDL_CRIT, "sieve2_callbacks() returned %d: %s\n", res, sieve2_errstr(res));
828                 goto BAIL;
829         }
830
831         /* Validate the script */
832
833         struct ctdl_sieve my;           /* dummy ctdl_sieve struct just to pass "u" slong */
834         memset(&my, 0, sizeof my);
835         my.u = &u;
836         res = sieve2_validate(sieve2_context, &my);
837         if (res != SIEVE2_OK) {
838                 lprintf(CTDL_CRIT, "sieve2_validate() returned %d: %s\n", res, sieve2_errstr(res));
839                 goto BAIL;
840         }
841
842         /* Do something useful */
843         u.sieve2_context = sieve2_context;
844         orig_lastproc = u.lastproc;
845         CtdlForEachMessage(MSGS_GT, u.lastproc, NULL, NULL, NULL,
846                 sieve_do_msg,
847                 (void *) &u
848         );
849
850 BAIL:
851         res = sieve2_free(&sieve2_context);
852         if (res != SIEVE2_OK) {
853                 lprintf(CTDL_CRIT, "sieve2_free() returned %d: %s\n", res, sieve2_errstr(res));
854         }
855
856         /* Rewrite the config if we have to */
857         if (u.lastproc > orig_lastproc) {
858                 rewrite_ctdl_sieve_config(&u);
859         }
860 }
861
862
863 /*
864  * Perform sieve processing for all rooms which require it
865  */
866 void perform_sieve_processing(void) {
867         struct RoomProcList *ptr = NULL;
868
869         if (sieve_list != NULL) {
870                 lprintf(CTDL_DEBUG, "Begin Sieve processing\n");
871                 while (sieve_list != NULL) {
872                         char spoolroomname[ROOMNAMELEN];
873                         safestrncpy(spoolroomname, sieve_list->name, sizeof spoolroomname);
874                         begin_critical_section(S_SIEVELIST);
875
876                         /* pop this record off the list */
877                         ptr = sieve_list;
878                         sieve_list = sieve_list->next;
879                         free(ptr);
880
881                         /* invalidate any duplicate entries to prevent double processing */
882                         for (ptr=sieve_list; ptr!=NULL; ptr=ptr->next) {
883                                 if (!strcasecmp(ptr->name, spoolroomname)) {
884                                         ptr->name[0] = 0;
885                                 }
886                         }
887
888                         end_critical_section(S_SIEVELIST);
889                         if (spoolroomname[0] != 0) {
890                                 sieve_do_room(spoolroomname);
891                         }
892                 }
893         }
894 }
895
896
897 void msiv_load(struct sdm_userdata *u) {
898         char hold_rm[ROOMNAMELEN];
899
900         strcpy(hold_rm, CC->room.QRname);       /* save current room */
901
902         /* Take a spin through the user's personal address book */
903         if (getroom(&CC->room, USERCONFIGROOM) == 0) {
904         
905                 u->config_msgnum = (-1);
906                 strcpy(u->config_roomname, CC->room.QRname);
907                 CtdlForEachMessage(MSGS_LAST, 1, NULL, SIEVECONFIG, NULL,
908                         get_sieve_config_backend, (void *)u );
909
910         }
911
912         if (strcmp(CC->room.QRname, hold_rm)) {
913                 getroom(&CC->room, hold_rm);    /* return to saved room */
914         }
915 }
916
917 void msiv_store(struct sdm_userdata *u) {
918         rewrite_ctdl_sieve_config(u);
919 }
920
921
922 /*
923  * Select the active script.
924  * (Set script_name to an empty string to disable all scripts)
925  * 
926  * Returns 0 on success or nonzero for error.
927  */
928 int msiv_setactive(struct sdm_userdata *u, char *script_name) {
929         int ok = 0;
930         struct sdm_script *s;
931
932         /* First see if the supplied value is ok */
933
934         if (strlen(script_name) == 0) {
935                 ok = 1;
936         }
937         else {
938                 for (s=u->first_script; s!=NULL; s=s->next) {
939                         if (!strcasecmp(s->script_name, script_name)) {
940                                 ok = 1;
941                         }
942                 }
943         }
944
945         if (!ok) return(-1);
946
947         /* Now set the active script */
948         for (s=u->first_script; s!=NULL; s=s->next) {
949                 if (!strcasecmp(s->script_name, script_name)) {
950                         s->script_active = 1;
951                 }
952                 else {
953                         s->script_active = 0;
954                 }
955         }
956         
957         return(0);
958 }
959
960
961 /*
962  * Fetch a script by name.
963  *
964  * Returns NULL if the named script was not found, or a pointer to the script
965  * if it was found.   NOTE: the caller does *not* own the memory returned by
966  * this function.  Copy it if you need to keep it.
967  */
968 char *msiv_getscript(struct sdm_userdata *u, char *script_name) {
969         struct sdm_script *s;
970
971         for (s=u->first_script; s!=NULL; s=s->next) {
972                 if (!strcasecmp(s->script_name, script_name)) {
973                         if (s->script_content != NULL) {
974                                 return (s->script_content);
975                         }
976                 }
977         }
978
979         return(NULL);
980 }
981
982
983 /*
984  * Delete a script by name.
985  *
986  * Returns 0 if the script was deleted.
987  *       1 if the script was not found.
988  *       2 if the script cannot be deleted because it is active.
989  */
990 int msiv_deletescript(struct sdm_userdata *u, char *script_name) {
991         struct sdm_script *s = NULL;
992         struct sdm_script *script_to_delete = NULL;
993
994         for (s=u->first_script; s!=NULL; s=s->next) {
995                 if (!strcasecmp(s->script_name, script_name)) {
996                         script_to_delete = s;
997                         if (s->script_active) {
998                                 return(2);
999                         }
1000                 }
1001         }
1002
1003         if (script_to_delete == NULL) return(1);
1004
1005         if (u->first_script == script_to_delete) {
1006                 u->first_script = u->first_script->next;
1007         }
1008         else for (s=u->first_script; s!=NULL; s=s->next) {
1009                 if (s->next == script_to_delete) {
1010                         s->next = s->next->next;
1011                 }
1012         }
1013
1014         free(script_to_delete->script_content);
1015         free(script_to_delete);
1016         return(0);
1017 }
1018
1019
1020 /*
1021  * Add or replace a new script.  
1022  * NOTE: after this function returns, "u" owns the memory that "script_content"
1023  * was pointing to.
1024  */
1025 void msiv_putscript(struct sdm_userdata *u, char *script_name, char *script_content) {
1026         int replaced = 0;
1027         struct sdm_script *s, *sptr;
1028
1029         for (s=u->first_script; s!=NULL; s=s->next) {
1030                 if (!strcasecmp(s->script_name, script_name)) {
1031                         if (s->script_content != NULL) {
1032                                 free(s->script_content);
1033                         }
1034                         s->script_content = script_content;
1035                         replaced = 1;
1036                 }
1037         }
1038
1039         if (replaced == 0) {
1040                 sptr = malloc(sizeof(struct sdm_script));
1041                 safestrncpy(sptr->script_name, script_name, sizeof sptr->script_name);
1042                 sptr->script_content = script_content;
1043                 sptr->script_active = 0;
1044                 sptr->next = u->first_script;
1045                 u->first_script = sptr;
1046         }
1047 }
1048
1049
1050
1051 /*
1052  * Citadel protocol to manage sieve scripts.
1053  * This is basically a simplified (read: doesn't resemble IMAP) version
1054  * of the 'managesieve' protocol.
1055  */
1056 void cmd_msiv(char *argbuf) {
1057         char subcmd[256];
1058         struct sdm_userdata u;
1059         char script_name[256];
1060         char *script_content = NULL;
1061         struct sdm_script *s;
1062         int i;
1063
1064         memset(&u, 0, sizeof(struct sdm_userdata));
1065
1066         if (CtdlAccessCheck(ac_logged_in)) return;
1067         extract_token(subcmd, argbuf, 0, '|', sizeof subcmd);
1068         msiv_load(&u);
1069
1070         if (!strcasecmp(subcmd, "putscript")) {
1071                 extract_token(script_name, argbuf, 1, '|', sizeof script_name);
1072                 if (strlen(script_name) > 0) {
1073                         cprintf("%d Transmit script now\n", SEND_LISTING);
1074                         script_content = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0);
1075                         msiv_putscript(&u, script_name, script_content);
1076                 }
1077                 else {
1078                         cprintf("%d Invalid script name.\n", ERROR + ILLEGAL_VALUE);
1079                 }
1080         }       
1081         
1082         else if (!strcasecmp(subcmd, "listscripts")) {
1083                 cprintf("%d Scripts:\n", LISTING_FOLLOWS);
1084                 for (s=u.first_script; s!=NULL; s=s->next) {
1085                         if (s->script_content != NULL) {
1086                                 cprintf("%s|%d|\n", s->script_name, s->script_active);
1087                         }
1088                 }
1089                 cprintf("000\n");
1090         }
1091
1092         else if (!strcasecmp(subcmd, "setactive")) {
1093                 extract_token(script_name, argbuf, 1, '|', sizeof script_name);
1094                 if (msiv_setactive(&u, script_name) == 0) {
1095                         cprintf("%d ok\n", CIT_OK);
1096                 }
1097                 else {
1098                         cprintf("%d Script '%s' does not exist.\n",
1099                                 ERROR + ILLEGAL_VALUE,
1100                                 script_name
1101                         );
1102                 }
1103         }
1104
1105         else if (!strcasecmp(subcmd, "getscript")) {
1106                 extract_token(script_name, argbuf, 1, '|', sizeof script_name);
1107                 script_content = msiv_getscript(&u, script_name);
1108                 if (script_content != NULL) {
1109                         cprintf("%d Script:\n", LISTING_FOLLOWS);
1110                         cprintf("%s000\n", script_content);
1111                 }
1112                 else {
1113                         cprintf("%d Invalid script name.\n", ERROR + ILLEGAL_VALUE);
1114                 }
1115         }
1116
1117         else if (!strcasecmp(subcmd, "deletescript")) {
1118                 extract_token(script_name, argbuf, 1, '|', sizeof script_name);
1119                 i = msiv_deletescript(&u, script_name);
1120                 if (i == 0) {
1121                         cprintf("%d ok\n", CIT_OK);
1122                 }
1123                 else if (i == 1) {
1124                         cprintf("%d Script '%s' does not exist.\n",
1125                                 ERROR + ILLEGAL_VALUE,
1126                                 script_name
1127                         );
1128                 }
1129                 else if (i == 2) {
1130                         cprintf("%d Script '%s' is active and cannot be deleted.\n",
1131                                 ERROR + ILLEGAL_VALUE,
1132                                 script_name
1133                         );
1134                 }
1135                 else {
1136                         cprintf("%d unknown error\n", ERROR);
1137                 }
1138         }
1139
1140         else {
1141                 cprintf("%d Invalid subcommand\n", ERROR + CMD_NOT_SUPPORTED);
1142         }
1143
1144         msiv_store(&u);
1145 }
1146
1147
1148
1149 void ctdl_sieve_init(void) {
1150         char *cred = NULL;
1151         sieve2_context_t *sieve2_context = NULL;
1152         int res;
1153
1154         /*
1155          *      We don't really care about dumping the entire credits to the log
1156          *      every time the server is initialized.  The documentation will suffice
1157          *      for that purpose.  We are making a call to sieve2_credits() in order
1158          *      to demonstrate that we have successfully linked in to libsieve.
1159          */
1160         cred = strdup(sieve2_credits());
1161         if (cred == NULL) return;
1162
1163         if (strlen(cred) > 60) {
1164                 strcpy(&cred[55], "...");
1165         }
1166
1167         lprintf(CTDL_INFO, "%s\n",cred);
1168         free(cred);
1169
1170         /* Briefly initialize a Sieve parser instance just so we can list the
1171          * extensions that are available.
1172          */
1173         res = sieve2_alloc(&sieve2_context);
1174         if (res != SIEVE2_OK) {
1175                 lprintf(CTDL_CRIT, "sieve2_alloc() returned %d: %s\n", res, sieve2_errstr(res));
1176                 return;
1177         }
1178
1179         res = sieve2_callbacks(sieve2_context, ctdl_sieve_callbacks);
1180         if (res != SIEVE2_OK) {
1181                 lprintf(CTDL_CRIT, "sieve2_callbacks() returned %d: %s\n", res, sieve2_errstr(res));
1182                 goto BAIL;
1183         }
1184
1185         msiv_extensions = strdup(sieve2_listextensions(sieve2_context));
1186         lprintf(CTDL_INFO, "Extensions: %s\n", msiv_extensions);
1187
1188 BAIL:   res = sieve2_free(&sieve2_context);
1189         if (res != SIEVE2_OK) {
1190                 lprintf(CTDL_CRIT, "sieve2_free() returned %d: %s\n", res, sieve2_errstr(res));
1191         }
1192
1193 }
1194
1195
1196
1197 char *serv_sieve_init(void)
1198 {
1199         ctdl_sieve_init();
1200         CtdlRegisterProtoHook(cmd_msiv, "MSIV", "Manage Sieve scripts");
1201         return "$Id: serv_sieve.c 3850 2005-09-13 14:00:24Z ajc $";
1202 }
1203
1204 #else   /* HAVE_LIBSIEVE */
1205
1206 char *serv_sieve_init(void)
1207 {
1208         lprintf(CTDL_INFO, "This server is missing libsieve.  Mailbox filtering will be disabled.\n");
1209         return "$Id: serv_sieve.c 3850 2005-09-13 14:00:24Z ajc $";
1210 }
1211
1212 #endif  /* HAVE_LIBSIEVE */