sieve.c
19.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
/*
* sieve interpreter
*
* The summary is a hack, I should collect the actions list myself in
* my action callbacks, and log them better.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdarg.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <mailutils/mailbox.h>
#include <mailutils/address.h>
#include <mailutils/registrar.h>
#include "sieve_interface.h"
#include "message.h"
#include "svfield.h"
#ifndef EOK
# define EOK 0
#endif
/** utility wrappers around mailutils functionality **/
int
mu_copy_debug_level (const mailbox_t from, mailbox_t to)
{
mu_debug_t d = 0;
size_t level;
int rc;
if (!from || !to)
return EINVAL;
rc = mailbox_get_debug (from, &d);
if (!rc)
mu_debug_get_level (d, &level);
if (!rc)
rc = mailbox_get_debug (to, &d);
if (!rc)
mu_debug_set_level (d, level);
return 0;
}
int
mu_save_to (const char *toname, message_t mesg,
ticket_t ticket, const char **errmsg)
{
int res = 0;
mailbox_t to = 0;
mailbox_t from = 0;
res = mailbox_create_default (&to, toname);
if (res == ENOENT)
*errmsg = "no handler for this type of mailbox";
if (ticket)
{
folder_t folder = NULL;
authority_t auth = NULL;
if (!res)
{
*errmsg = "mailbox_get_folder";
res = mailbox_get_folder (to, &folder);
}
if (!res)
{
*errmsg = "folder_get_authority";
res = folder_get_authority (folder, &auth);
}
if (!res)
{
*errmsg = "authority_set_ticket";
res = authority_set_ticket (auth, ticket);
}
}
if (!res)
{
if (message_get_mailbox (mesg, &from) == 0)
mu_copy_debug_level (from, to);
}
if (!res)
{
*errmsg = "mailbox_open";
res = mailbox_open (to, MU_STREAM_WRITE | MU_STREAM_CREAT);
}
if (!res)
{
*errmsg = "mailbox_open";
res = mailbox_append_message (to, mesg);
if (!res)
{
*errmsg = "mailbox_close";
res = mailbox_close (to);
}
else
{
mailbox_close (to);
}
}
mailbox_destroy (&to);
if(res == 0)
*errmsg = 0;
return res;
}
int
mu_mark_deleted (message_t msg)
{
attribute_t attr = 0;
int res;
res = message_get_attribute (msg, &attr);
if (!res)
attribute_set_deleted (attr);
return res;
}
static int
sv_errno (int rc)
{
switch (rc)
{
case ENOMEM:
return SIEVE_NOMEM;
case ENOENT:
return SIEVE_FAIL;
case EOK:
return SIEVE_OK;
}
return SIEVE_INTERNAL_ERROR;
}
/** sieve context structures
The object relationship diagram is this, with the names in ""
being the argument name when the context's are provided as
arguments to callback functions.
sieve_execute_script() --> sv_msg_ctx_t, "mc"
|
|
V
sieve_script_t ---> sv_script_ctx_t, "sc"
|
|
V
sieve_interp_t ---> sv_interp_ctx_t, "ic"
*/
typedef struct sv_interp_ctx_t
{
/* cmd line options */
int opt_no_actions;
int opt_verbose;
int opt_no_run;
int opt_watch;
char* opt_mbox;
char* opt_tickets;
char* opt_script;
int print_mask;
FILE* print_stream;
/* Ticket for use by mailbox URLs for implicit authentication. */
ticket_t ticket;
/* mailutils debug handle, we need to destroy it */
mu_debug_t debug;
} sv_interp_ctx_t;
typedef struct sv_script_ctx_t
{
sv_interp_ctx_t* ic;
} sv_script_ctx_t;
typedef struct sv_msg_ctx_t
{
int rc; /* the mailutils return code */
int cache_filled;
sv_field_cache_t cache;
message_t msg;
mailbox_t mbox;
char *summary;
sv_interp_ctx_t* ic;
} sv_msg_ctx_t;
enum /* print level masks */
{
SV_PRN_MU = 0x1,
SV_PRN_ACT = 0x2,
SV_PRN_QRY = 0x4,
SV_PRN_PRS = 0x8,
SV_PRN_NOOP
};
void
sv_printv (sv_interp_ctx_t* ic, int level, const char *fmt, va_list ap)
{
assert(ic);
if(level & ic->print_mask)
vfprintf(ic->print_stream ? ic->print_stream : stdout, fmt, ap);
}
void sv_print (sv_interp_ctx_t* ic, int level, const char* fmt, ...)
{
va_list ap;
va_start(ap, fmt);
sv_printv(ic, level, fmt, ap);
va_end(ap);
}
/* we hook mailutils debug output into our diagnostics using this */
int
sv_mu_debug_print (mu_debug_t d, const char *fmt, va_list ap)
{
sv_printv(mu_debug_get_owner(d), SV_PRN_MU, fmt, ap);
return 0;
}
/** message query callbacks **/
int
sv_getsize (void *mc, int *size)
{
sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
size_t sz = 0;
message_size (m->msg, &sz);
*size = sz;
sv_print (m->ic, SV_PRN_QRY, "getsize -> %d\n", *size);
return SIEVE_OK;
}
/*
A given header can occur multiple times, so we return a pointer
to a null terminated array of pointers to the values found for
the named header.
*/
int
sv_getheader (void *mc, const char *name, const char ***body)
{
sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
m->rc = 0;
if (!m->cache_filled)
{
header_t h = 0;
size_t i = 0;
char *fn = 0;
char *fv = 0;
m->cache_filled = 1;
message_get_header (m->msg, &h);
header_get_field_count (h, &i);
sv_print (m->ic, SV_PRN_QRY, "getheader, filling cache with %d fields\n", i);
for (; i > 0; i--)
{
m->rc = header_aget_field_name (h, i, &fn);
if (m->rc)
break;
m->rc = header_aget_field_value (h, i, &fv);
if (m->rc)
break;
sv_print (m->ic, SV_PRN_QRY, "getheader, cacheing %s=%s\n", fn, fv);
m->rc = sv_field_cache_add (&m->cache, fn, fv);
if (m->rc == 0)
{
fv = 0; /* owned by the cache */
}
if (m->rc)
break;
/* the cache doesn't want it, and we don't need it */
free (fn);
fn = 0;
}
free (fn);
free (fv);
}
if (!m->rc)
{
m->rc = sv_field_cache_get (&m->cache, name, body);
}
if (m->rc)
{
sv_print (m->ic, SV_PRN_QRY, "getheader %s, failed %s\n", name, strerror (m->rc));
}
else
{
const char **b = *body;
int i = 1;
sv_print (m->ic, SV_PRN_QRY, "getheader, %s=%s", name, b[0]);
while (b[0] && b[i])
{
sv_print (m->ic, SV_PRN_QRY, ", %s", b[i]);
i++;
}
sv_print (m->ic, SV_PRN_QRY, "\n");
}
return sv_errno (m->rc);
}
/*
name will always be "to" or "from"
envelope_t doesn't seem to allow "to" to be gotten, just "from".
What's up?
int getenvelope(void *mc, const char *name, const char ***body)
{
static const char *buf[2];
if (buf[0] == NULL) { buf[0] = malloc(sizeof(char) * 256); buf[1] = NULL; }
printf("Envelope body of '%s'? ", head);
scanf("%s", buf[0]);
*body = buf;
return SIEVE_OK;
}
*/
/* message action callbacks */
/*
The actions arguments are mostly callback data provided during the
setup of the intepreter object, script object, and the execution of
a script.
The args are:
void* ac; // action context, the member of the union Action.u associated
// with this kind of action.
void* ic, // from sieve_interp_alloc(, ic);
void* sc, // from sieve_script_parse(, , sc, );
void* mc, // from sieve_execute_script(, mc);
const char** errmsg // fill it in if you return failure
*/
const char *
str_action (action_t a)
{
switch (a)
{
case ACTION_NONE:
return "NONE";
case ACTION_REJECT:
return "REJECT";
case ACTION_FILEINTO:
return "FILEINTO";
case ACTION_KEEP:
return "KEEP";
case ACTION_REDIRECT:
return "REDIRECT";
case ACTION_DISCARD:
return "DISCARD";
case ACTION_VACATION:
return "VACATION";
case ACTION_SETFLAG:
return "SETFLAG";
case ACTION_ADDFLAG:
return "ADDFLAG";
case ACTION_REMOVEFLAG:
return "REMOVEFLAG";
case ACTION_MARK:
return "MARK";
case ACTION_UNMARK:
return "UNMARK";
case ACTION_NOTIFY:
return "NOTIFY";
case ACTION_DENOTIFY:
return "DENOTIFY";
}
return "UNKNOWN";
}
const char *
str_sieve_error (int e)
{
switch (e)
{
case SIEVE_FAIL:
return "SIEVE_FAIL";
case SIEVE_NOT_FINALIZED:
return "SIEVE_NOT_FINALIZED";
case SIEVE_PARSE_ERROR:
return "SIEVE_PARSE_ERROR";
case SIEVE_RUN_ERROR:
return "SIEVE_RUN_ERROR";
case SIEVE_INTERNAL_ERROR:
return "SIEVE_INTERNAL_ERROR";
case SIEVE_NOMEM:
return "SIEVE_NOMEM";
case SIEVE_DONE:
return "SIEVE_DONE";
}
return "UNKNOWN";
}
void
sv_print_action (action_t a, void *ac, void *ic, void *sc, void *mc)
{
//sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
sv_print (ic, SV_PRN_ACT, "action => %s\n", str_action (a));
}
int
sv_keep (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
//sv_msg_ctx_t * m = (sv_msg_ctx_t *) mc;
//sieve_keep_context_t * a = (sieve_keep_context_t *) ac;
sv_print_action (ACTION_KEEP, ac, ic, sc, mc);
return SIEVE_OK;
}
int
sv_fileinto (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
sieve_fileinto_context_t *a = (sieve_fileinto_context_t *) ac;
sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
sv_interp_ctx_t *i = (sv_interp_ctx_t *) ic;
int res = 0;
sv_print_action (ACTION_FILEINTO, ac, ic, sc, mc);
sv_print (i, SV_PRN_ACT, " into <%s>\n", a->mailbox);
if (!i->opt_no_actions)
{
res = mu_save_to (a->mailbox, m->msg, i->ticket, errmsg);
}
if (res && !errmsg)
*errmsg = strerror (res);
if (res)
sv_print (i, SV_PRN_ACT, " fail with [%d] %s\n", res, *errmsg);
return res ? SIEVE_FAIL : SIEVE_OK;
}
int
sv_redirect (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
sv_print_action (ACTION_REDIRECT, ac, ic, sc, mc);
return SIEVE_OK;
}
int
sv_discard (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
sv_interp_ctx_t *i = (sv_interp_ctx_t *) ic;
int res = 0;
sv_print_action (ACTION_DISCARD, ac, ic, sc, mc);
if (!i->opt_no_actions)
{
res = mu_mark_deleted (m->msg);
}
if (res)
*errmsg = strerror (res);
return SIEVE_OK;
}
int
sv_reject (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
sv_print_action (ACTION_REJECT, ac, ic, sc, mc);
return SIEVE_OK;
}
/*
int sv_notify(void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
sv_print_action(ACTION_NOTIFY, ac, ic, sc, mc);
return SIEVE_OK;
}
*/
int
sv_autorespond (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
return SIEVE_FAIL;
}
int
sv_send_response (void *ac, void *ic, void *sc, void *mc, const char **errmsg)
{
return SIEVE_FAIL;
}
#if 0
sieve_vacation_t vacation = {
0, /* min response */
0, /* max response */
&sv_autorespond, /* autorespond() */
&sv_send_response /* send_response() */
};
char *markflags[] = { "\\flagged" };
sieve_imapflags_t mark = { markflags, 1 };
#endif
int
sv_parse_error (int lineno, const char *msg, void *ic, void *sc)
{
sv_interp_ctx_t* i = (sv_interp_ctx_t*) ic;
sv_print (i, SV_PRN_PRS, "%s:%d: %s\n", i->opt_script, lineno, msg);
return SIEVE_OK;
}
int
sv_execute_error (const char *msg, void *ic, void *sc, void *mc)
{
fprintf (stderr, "runtime error: %s\n", msg);
return SIEVE_OK;
}
int
sv_summary (const char *msg, void *ic, void *sc, void *mc)
{
sv_msg_ctx_t *m = (sv_msg_ctx_t *) mc;
m->summary = strdup (msg);
return SIEVE_OK;
}
int
sieve_register_mailutils (sieve_interp_t * i)
{
int res;
res = sieve_register_size (i, &sv_getsize);
if (res != SIEVE_OK)
{
printf ("sieve_register_size() returns %d\n", res);
exit (1);
}
res = sieve_register_header (i, &sv_getheader);
if (res != SIEVE_OK)
{
printf ("sieve_register_header() returns %d\n", res);
exit (1);
}
res = sieve_register_redirect (i, &sv_redirect);
if (res != SIEVE_OK)
{
printf ("sieve_register_redirect() returns %d\n", res);
exit (1);
}
res = sieve_register_keep (i, &sv_keep);
if (res != SIEVE_OK)
{
printf ("sieve_register_keep() returns %d\n", res);
exit (1);
}
#if 0
res = sieve_register_envelope (i, &sv_getenvelope);
if (res != SIEVE_OK)
{
printf ("sieve_register_envelope() returns %d\n", res);
exit (1);
}
#endif
res = sieve_register_discard (i, &sv_discard);
if (res != SIEVE_OK)
{
printf ("sieve_register_discard() returns %d\n", res);
exit (1);
}
res = sieve_register_reject (i, &sv_reject);
if (res != SIEVE_OK)
{
printf ("sieve_register_reject() returns %d\n", res);
exit (1);
}
res = sieve_register_fileinto (i, &sv_fileinto);
if (res != SIEVE_OK)
{
printf ("sieve_register_fileinto() returns %d\n", res);
exit (1);
}
#if 0
res = sieve_register_vacation (i, &sv_vacation);
if (res != SIEVE_OK)
{
printf ("sieve_register_vacation() returns %d\n", res);
exit (1);
}
res = sieve_register_imapflags (i, &mark);
if (res != SIEVE_OK)
{
printf ("sieve_register_imapflags() returns %d\n", res);
exit (1);
}
#endif
#if 0
res = sieve_register_notify (i, &sv_notify);
if (res != SIEVE_OK)
{
printf ("sieve_register_notify() returns %d\n", res);
exit (1);
}
#endif
res = sieve_register_parse_error (i, &sv_parse_error);
if (res != SIEVE_OK)
{
printf ("sieve_register_parse_error() returns %d\n", res);
exit (1);
}
res = sieve_register_execute_error (i, &sv_execute_error);
if (res != SIEVE_OK)
{
printf ("sieve_register_execute_error() returns %d\n", res);
exit (1);
}
res = sieve_register_summary (i, &sv_summary);
if (res != SIEVE_OK)
{
printf ("sieve_register_summary() returns %d\n", res);
exit (1);
}
return res;
}
const char USAGE[] =
"usage: sieve [-hnvcd] [-D mask] [-f mbox] [-t tickets] script\n";
const char HELP[] =
" -h print this helpful message and exit.\n"
" -n no actions taken, implies -v.\n"
" -v verbose, print actions taken, more v's, more verbose.\n"
" -c compile script but don't run it against an mbox.\n"
" -f the mbox to sieve, defaults to the users spool file.\n"
" -t a ticket file to use for authentication to mailboxes.\n"
" -d daemon mode, sieve mbox, then go into background and sieve.\n"
" new message as they are delivered to mbox.\n"
" -D debug mask, see source for meaning (sorry).\n"
;
int
main (int argc, char *argv[])
{
list_t bookie = 0;
mailbox_t mbox = 0;
wicket_t wicket = 0;
sieve_interp_t *interp = 0;
sieve_script_t *script = 0;
sv_interp_ctx_t ic = { 0, };
sv_script_ctx_t sc = { 0, };
size_t count = 0;
int i = 0;
int res = 0;
FILE *f = 0;
int opt;
while ((opt = getopt (argc, argv, "hnvcf:t:dD:")) != -1)
{
switch (opt)
{
case 'h':
printf ("%s\n%s", USAGE, HELP);
return 0;
case 'n':
ic.opt_no_actions = 1;
/* and increase verbosity... */
case 'v':
ic.opt_verbose++;
break;
case 'c':
ic.opt_no_run = 1;
break;
case 'f':
ic.opt_mbox = optarg;
break;
case 't':
ic.opt_tickets = optarg;
break;
case 'd':
ic.opt_watch = 1;
break;
case 'D':
ic.print_mask |= strtoul(optarg, 0, 0);
break;
default:
fprintf (stderr, "%s", USAGE);
return 1;
}
}
if (!argv[optind])
{
fprintf (stderr, "%s", USAGE);
return 1;
}
ic.opt_script = argv[optind];
switch(ic.opt_verbose)
{
case 0: break;
case 1: break;
case 2: ic.print_mask |= SV_PRN_ACT; break;
default: ic.print_mask = ~0; break;
}
if (ic.opt_tickets)
{
if ((res = wicket_create (&wicket, ic.opt_tickets)) != 0)
{
fprintf (stderr, "wicket create <%s> failed: %s\n",
ic.opt_tickets, strerror (res));
return 1;
}
if ((res = wicket_get_ticket (wicket, &ic.ticket, 0, 0)) != 0)
{
fprintf (stderr, "ticket get failed: %s\n", strerror (res));
return 1;
}
}
registrar_get_list (&bookie);
list_append (bookie, path_record);
list_append (bookie, file_record);
list_append (bookie, mbox_record);
list_append (bookie, pop_record);
list_append (bookie, imap_record);
if (!ic.opt_no_run && (res = mailbox_create_default (&mbox, ic.opt_mbox)) != 0)
{
fprintf (stderr, "mailbox create <%s> failed: %s\n",
ic.opt_mbox ? ic.opt_mbox : "default", strerror (res));
return 1;
}
if (ic.print_mask & SV_PRN_MU)
{
if ((res = mu_debug_create(&ic.debug, &ic)))
{
fprintf (stderr, "mu_debug_create failed: %s\n", strerror(res));
return 1;
}
if ((res = mu_debug_set_level (ic.debug, MU_DEBUG_TRACE | MU_DEBUG_PROT)))
{
fprintf (stderr, "mu_debug_set_level failed: %s\n", strerror(res));
return 1;
}
if ((res = mu_debug_set_print (ic.debug, sv_mu_debug_print, &ic)))
{
fprintf (stderr, "mu_debug_set_print failed: %s\n", strerror(res));
return 1;
}
mailbox_set_debug (mbox, ic.debug);
}
if (ic.ticket)
{
folder_t folder = NULL;
authority_t auth = NULL;
if ((res = mailbox_get_folder (mbox, &folder)))
{
fprintf (stderr, "mailbox_get_folder failed: %s", strerror(res));
return 1;
}
if ((res = folder_get_authority (folder, &auth)))
{
fprintf (stderr, "folder_get_authority failed: %s", strerror(res));
return 1;
}
if ((res = authority_set_ticket (auth, ic.ticket)))
{
fprintf (stderr, "authority_set_ticket failed: %s", strerror(res));
return 1;
}
}
if (ic.opt_no_actions)
res = mailbox_open (mbox, MU_STREAM_READ);
else
res = mailbox_open (mbox, MU_STREAM_RDWR);
if (res != 0)
{
fprintf (stderr, "mailbox open <%s> failed: %s\n",
ic.opt_mbox ? ic.opt_mbox : "default", strerror (res));
exit (1);
}
res = sieve_interp_alloc (&interp, &ic);
if (res != SIEVE_OK)
{
fprintf (stderr, "sieve_interp_alloc() returns %d\n", res);
return 1;
}
res = sieve_register_mailutils (interp);
f = fopen (ic.opt_script, "r");
if (!f)
{
printf ("fopen %s failed: %s\n", ic.opt_script, strerror (errno));
return 1;
}
res = sieve_script_parse (interp, f, &sc, &script);
if (res != SIEVE_OK)
{
printf ("script parse failed: %s\n", str_sieve_error (res));
return 1;
}
fclose (f);
if (ic.opt_no_run)
return 0;
mailbox_messages_count (mbox, &count);
if (ic.opt_verbose)
{
fprintf (stderr, "mbox has %d messages...\n", count);
}
for (i = 1; i <= count; ++i)
{
sv_msg_ctx_t mc = { 0, };
mc.mbox = mbox;
if ((res = mailbox_get_message (mbox, i, &mc.msg)) != 0)
{
fprintf (stderr, "mailbox_get_message(%d): %s\n", i,
strerror (res));
exit (1);
}
sv_print (&ic, SV_PRN_ACT, "For message %d:\n", i);
res = sieve_execute_script (script, &mc);
if (res != SIEVE_OK)
{
printf ("sieve_execute_script(%d): sieve %d rc %s\n",
i, res, strerror (mc.rc));
exit (1);
}
sv_field_cache_release (&mc.cache);
free (mc.summary);
}
res = sieve_script_free (&script);
if (res != SIEVE_OK)
{
printf ("sieve_script_free() returns %d\n", res);
exit (1);
}
res = sieve_interp_free (&interp);
if (res != SIEVE_OK)
{
printf ("sieve_interp_free() returns %d\n", res);
exit (1);
}
if (!ic.opt_no_actions)
res = mailbox_expunge (mbox);
if (res != 0)
{
printf ("mailbox_expunge failed: %s\n", strerror (res));
exit (1);
}
if (res == 0)
mailbox_close (mbox);
mailbox_destroy (&mbox);
return 0;
}
void
fatal (char *message, int rc)
{
fprintf (stderr, "fatal error: %s\n", message);
exit (rc);
}