aboutsummaryrefslogtreecommitdiffstats
path: root/filter/ChangeLog
blob: e475866297d45298781fc17fe58a22676e48def3 (plain) (blame)
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
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
2001-02-06  Dan Winship  <danw@ximian.com>

    * filter-option.c (get_widget): Translate the option title.
    (Noticed by Kjartan).

2001-02-05  Kjartan Maraas  <kmaraas@gnome.org>

    * filter-code.c, filter-colour.c, filter-context.c,
    filter-element.c, filter-input.c, filter-score.c,
    filter-system-flag.c, filter-url.c: Add #include <config.h>
    and mark some strings for translation.
    
2001-01-22  Not Zed  <NotZed@Ximian.com>

    * filter-message-search.[ch]: Removed, now lives in
    camel-filter-search.*

    * Makefile.am (libfilter_la_SOURCES): Removed filter-driver.[ch]
    and filter-message-search.[ch].

    * filter-driver.[ch]: Removed.  now lives in camel-filter-driver.*

2001-01-19  Jeffrey Stedfast  <fejj@ximian.com>

    * filter-driver.c (filter_driver_filter_message): Set the delete
    bit *before* copying to the default folder.

2001-01-18  Jeffrey Stedfast  <fejj@ximian.com>

    * filter-filter.c (less_parts): Er, don't set the button
    insensitive if there is *1* action, set it insensitive if there
    are less than or equal to *1* actions. Doh!
    (more_parts): Only set the remove button sensitive if there is
    more than 1 action.
    (get_widget): Here too.

2001-01-16  Jason Leach  <jasonleach@usa.net>

    * e-search-bar.[ch]: Moved ESearchBar to $(toplevel)/widgets/misc,
    a more appropriate home.  Bug #1060.

2001-01-13  Jeffrey Stedfast  <fejj@ximian.com>

    * filter-driver.c (do_copy): Moved p->copied to the inner part of
    the loop so that in the case of a folder not existing, it doesn't
    think that the message was already copied to some place and thus
    not save it to the Inbox.
    (do_move): Same.

2001-01-10  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Changed Priority to Score.

    * filter-option.c (get_widget): Attach to the "activate" signal -
    this should now make it so that a filter-option will "remember"
    what a user changed.

    * filter-system-flag.c (get_widget): Don't reset fsf->value to the
    first system flag, this should already be defaulted to the
    appropriate flag. This should fix the problem of always defaulting
    to the first menu option and thus "forgetting" the user's settings.

2001-01-04  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-system-flag.c: comment out some of the system flags as we
    don't want to use them.
    (xml_encode): Update the printf
    (get_widget): Use strcmp instead of g_strcasecmp.

2001-01-02  Lauris Kaplinski  <lauris@helixcode.com>

    * filter-input.c (xml_encode): Encode utf8
    (xml_decode): Decode utf8

    * filter-option.c (xml_create): Decode utf8

    * filter-part.c (filter_part_xml_create): Decode utf8

    * filter_rule.c (xml_encode): Encode utf8
    (xml_decode): Decode utf8
    
2001-01-02  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (do_flag): Set the 'dirty' flag - this should
    fix the problem of flags not being set (or, more precisely,
    synced).
    (filter_driver_filter_message): Here too.

2000-12-21  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-message-search.c (header_contains): Use
    e_utf8_strstrcase() instead of just strstr().
    (header_starts_with): Make sure that the header contents are
    longer than the starts-with string.

    * vfoldertypes.xml: Don't send \"Subject\" to body-contains.
    Also added matches, starts-with, and ends-with xml stuff.

2000-12-28  Dan Winship  <danw@helixcode.com>

    * filter-message-search.c (handle_multipart, body_contains,
    body_regex): Use CamelContentType rather than GMimeContentField.

2000-12-24  Not Zed  <NotZed@HelixCode.com>

    * Merge from camel-mt-branch.

2000-12-21  Not Zed  <NotZed@HelixCode.com>

    * filter-message-search.c (filter_message_search): And here too.

    * filter-driver.c (filter_driver_finalise): Kind of revert an
    accidentally commited patch for e_sexp_unref.

2000-12-20  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): Oops, slight
    logic error. We want to copy the message to the default folder if
    the message hasn't been Moved (which is the same as Copied &&
    Deleted). This fixes bug #1007.

    * filter-rule.c (more_parts): Make sure we have more than 1 part
    before we sensitize the "remove" button.

2000-12-20  Not Zed  <NotZed@HelixCode.com>

    * filter-message-search.c (filter_message_search): Oops, missed a
    gtk unref of the now-no-longer gtk e_sexp.

    * filter-driver.c: Remove mail_tool_lock stuff.
    (filter_driver_finalise): unref e_sexp properly.

2000-12-12  Christopher James Lahey  <clahey@helixcode.com>

    * e-search-bar.c (esb_pack_menubar): Fixed some warnings.

2000-12-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-folder.c (button_clicked): Added a kludge, 'is_active'
    which is a static variable that holds whether or not there is an
    active shell folder dialog up or not.

    * vfolder-editor.c (rule_delete): Autoselect the rule that ends up
    in the same position (or the one above it if the list is shorter
    than the position).

2000-12-08  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-rule.c (get_widget): Don't highlight the title if it's
    "Untitled" because switching widget focus doesn't cause this
    selection to go away.

2000-12-06  Kjartan Maraas  <kmaraas@gnome.org>

    * filter-editor.c: Mark some strings for translation.
    
2000-12-01  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-element.c (filter_element_new_type_name): Added support
    for the system-flag type.

    * Makefile.am: Added filter-system-flag.[c,h].

    * filter-system-flag.[c,h]: New type for system flags.

    * filtertypes.xml: Oops, looks like we were still using integers
    as arguments to set-flag. Change over to using strings which are
    safer and also change the name to set-system-flag.

    * filter-driver.c (do_flag): Use strings instead of integers.
    Instead of set-flag, the callback is now set-system-flag for less
    confusion. Sorry Ettore, but you'll have to change your filters.

    * filtertypes.xml: Added system-flags stuff.

    * vfoldertypes.xml: And here too.

    * filter-message-search.c (system_flag): New ESExp callback for
    filtering on system flags.

2000-11-30  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): Use
    camel_message_info_free() instead of freeing everything by hand -
    is this a new function? I don't ever recall seeing this
    before. Also use my new function,
    camel_message_info_new_from_header - ahhh... this code is now so
    beatiful. Okay, I'm done.

2000-11-30  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): Update to use
    EStrv in appropriate places (wrapped with #ifdef DOESTRV for the
    moment).

2000-11-27  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Moved the regex filter rule around - we've
    changed the format a bit.

    * filter-option.c (option_activate): Removed.
    (get_widget): Don't connect the activate signal.

    * filter-folder.c (validate): Updated.

    * filter-datespec.c (validate): Updated.

    * filter-part.c (filter_part_validate): Updated.

    * filter-input.c (validate): Check the filter-input type - if it's
    of type "regex", then check for regex validity.

    * filter-element.c (filter_element_validate): No longer takes a
    gpointer argument.
    (filter_element_new_type_name): Allow type "regex" and create a
    new filter-input with type "regex".

2000-11-24  Michael Meeks  <michael@helixcode.com>

    * filter-message-search.c (get_full_header): impl.
    (header_full_regex): use it.

2000-11-23  Michael Meeks  <michael@helixcode.com>

    * filter-message-search.c (header_full_regex): impl.

2000-11-21  Jeffrey Stedfast  <fejj@helixcode.com>
    
    * filter-message-search.c: took out some no longer needed
    printfs.

2000-11-15  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_folder): Sync here
    instead.
    (filter_driver_filter_mbox): And here too.
    (filter_driver_finalise): Don't sync here afterall - it's more
    preferable to sync right after processing.

2000-11-15  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_finalise): Sync the
    defaultfolder.
    (filter_driver_filter_folder): Sync here instead.
    (filter_driver_filter_mbox): And here too.

2000-11-13  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-message-search.c (header_matches): Neglect any leading
    whitespace in the header contents.
    (header_starts_with): Same.
    (header_ends_with): Same.
    (header_soundex): Same.

2000-11-12  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): If there is a
    default folder and the message hasn't been deleted then... should
    be: If there is a default folder and the message hasn't been
    copied to another folder and the message hasn't been deleted...
    (filter_driver_filter_message): Make it so that the FILTER_LOG_END
    is only called if filtered were applied to the message so we don't
    get huge gaps of whitespace in the log file.
    (filter_driver_filter_message): 

2000-11-10  Christopher James Lahey  <clahey@helixcode.com>

    * e-search-bar.c: Made the underline show up properly in the main
    menu bar.

2000-11-10  Christopher James Lahey  <clahey@helixcode.com>

    * e-search-bar.c: Switched from using gtk_menu_item_new_with_label
    for the menu header to using gnome_stock_menu_item.

2000-11-08  Anna Marie Dirks  <anna@helixcode.com>
    * e-search-bar.c: Fixed two spacing problems: first, changed
    the spacing around the end of the text-entry widget so that 
    the text entry is always aligned with the beginning of the scrollbar;
    second, trimmed down the space between the widgets in the search bar.


2000-11-06  Not Zed  <NotZed@HelixCode.com>

    * filter-driver.c (do_flag): you shouldn't use an integer to
    set the flag.  You should use a string, and look it up, because
    the flag bits might change.
    (filter_driver_filter_message): Can som e one PLEASE STOP
    INDENTING THE CODE.  Even if i have to come over the and
    beat it into you.  YOU DONT INDENT CODE ONCE ITS BEEN CHECKED IN
    TO CVS, otherwise you SCREW UP THE DIFF's.  Can't you please
    please learn this?
    (filter_driver_log): Fixes for api changes to mime_message.

2000-11-05  Not Zed  <NotZed@HelixCode.com>

    * filter-message-search.c (get_sent_date): Fix for date change
    api.  No longer need to encode/decode the date, after its been
    encoded/ecoded already.
    (get_received_date): Likewise.

2000-11-06  Christopher James Lahey  <clahey@helixcode.com>

    * e-search-bar.h: Fixed the argument comment.  Removed an old enum
    that's not used here.

2000-11-06  Christopher James Lahey  <clahey@helixcode.com>

    * Makefile.am: Added e-search-bar.c and e-search-bar.h.

    * e-search-bar.c, e-search-bar.h: Moved this from
    e-addressbook-search.

2000-11-02  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_log): Fix for when 'desc' is
    NULL.
    (filter_driver_filter_message): Use a more user-friendly filter
    name in the log file.

2000-11-01  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): Use
    filter_driver_log() where appropriate.
    (do_copy): Use the service url for the path rather than the
    folder->full_name because that'll only get you a "/mbox" which is
    entirely useless. Replace occurences of report_status with
    filter_driver_log.
    (do_move): Same.
    (report_status): Don't use this for logging anymore, use only for
    reporting the status back to the caller.
    (filter_driver_log): Renamed from filter_driver_status_log. Now
    ONLY handles file logging and is for INTERNAL USE ONLY.
    (do_flag): Replace occurences of report_status with
    filter_driver_log.
    (do_score): Same.
    (do_colour): Same.
    (do_stop): Same.

2000-11-01  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-datespec.c (validate): Check to make sure the user has
    entered a valid date.

2000-10-31  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Updated to allow the user to select "sounds
    like" or "does not sound like" (uses header-soundex).

    * filter-message-search.c (header_matches): Oops. Should be using
    !g_strncasecmp. This should fix it so this filter match works
    right.
    (header_starts_with): Same.
    (header_ends_with): Same.
    (header_soundex): New filter callback for soundex matching (yes,
    it's probably a bloated feature but hey, it was fun to code)

2000-10-31  Jeffrey Stedfast  <fejj@helixcode.com>
    
    * filter-folder.c (validate): Override the default validate
    function to only return TRUE if a folder has been selected.

    * filter-editor.c (rule_add): Validate that all the rule parts and
    action parts are correctly filled in.
    (rule_edit): Same.

2000-10-31  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Updated to add an action to set message flags.

    * filter-driver.c (do_flag): New callback to set message info
    flags.

    * filter-element.c (filter_element_set_data): New convenience
    function to set the data on a FilterElement.

    * filter-url.c (get_widget): Set the sources list to point to the
    FilterElement data.

2000-10-31  Federico Mena Quintero  <federico@helixcode.com>

    * filter-rule.c (get_widget): Do not pad around the Name hbox;
    its parent already has spacing.  
    Do not pad around the inframe's children; the inframe already has
    spacing.

2000-10-30  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-option.c (option_activate): If a regex option is
    selected, change the FilterElement data to TRUE else set to FALSE.

    * filter-rule.c (more_parts): Validate the previously entered
    FilterPart before allowing the user to add a new FilterPart.

    * filter-part.c (filter_part_validate): New convenience function
    to validate an entire FilterPart expression.

    * filter-input.c (validate): Validate the entry text if it
    contains a regular expression.

    * filter-element.[c,h]: New virtual function to validate the
    contents of the FilterElement (useful for regex and sexp).
    (filter_element_validate): You get the idea...  

2000-10-30  Jeffrey Stedfast  <fejj@helixcode.com>
    
    * filter-input.c: 
    * filter-option.c: 
    * filter-part.c: Pure formatting changes, no actual code
    changes. Since I know I'm going to get flamed for this, I'm sorry
    but I'll probably have to modify code in these files and it's
    easier if the code is quickly readable by me.

    * filter-rule.c (get_widget): Set the "remove" button insensitive
    for <= 1 instead of == 1.

2000-10-28  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_message): Copy the message
    to the default folder if it wasn't marked as deleted.

2000-10-27  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Added header-starts-with, header-ends-with, and
    header-exists menu items.

    * filter-message-search.c (header_starts_with): New callback to
    match the beginnings of headers.
    (header_ends_with): New callback to match the ends of headers.
    (header_exists): New callback to determine if a header exists
    which is useful when filtering out all those pesky bug-buddy
    emails!

2000-10-27  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Add header-matches expressions ("is" / "is not").

    * filter-message-search.c (header_matches): New callback to match
    headers exactly (aka strcmp rather than strstr).

2000-10-27  Jacob "Ulysses" Berkman  <jacob@helixcode.com>

    * filter-driver.c (filter_driver_filter_mbox): divide before
    multiple so that we don't overflow.

2000-10-27  Christopher James Lahey  <clahey@helixcode.com>

    * Makefile.am: Fixed this to include EXTRA_GNOME_CFLAGS.

2000-10-27  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (do_move): Don't mark as deleted here, otherwise
    the message will have the DELETED flag set in the folder it's
    being moved to.
    (do_delete): Don't set the DELETED flag here either...we'll only
    set it at the very end of the filtering process.
    (filter_driver_filter_message): Set the DELETED flag after all
    processing is completed.

2000-10-26  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Readded Source url stuff.

    * filter-element.c (filter_element_new_type_name): Added url stuff
    back in.

    * filter-url.[c,h]: Back from the dead...

    * Makefile.am: Re-added filter-url.[c,h].

2000-10-25  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Added option menu items to allow searching
    based on regular expressions.

    * filter-message-search.c (body_regex): New callback to match text
    in the body using regex.
    (body_contains): Modified to only match using strstr.
    (header_regex): New callback to match headers using regex.
    (header_contains): Modified to only match using strstr.

2000-10-24  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Take out the reference to "Source".

    * filter-element.c (filter_element_new_type_name): Remove
    filter-url code.

    * filter-url.[c,h]: What was I smoking? There's no good reason to
    filter on source urls as there are other ways to get the same
    effect. Thanks to both Zucchi and Miguel for helping me see this
    :-)

2000-10-24  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c: Fixed NULL in fprintf.

2000-10-24  Dan Winship  <danw@helixcode.com>

    * Makefile.am (libfilter-i18n.h): Build a fake header file with
    the titles from the xml files, for translation purposes.

    * filter-rule.c (get_rule_part_widget): Call _() on the rule's
    title.

    * filter-option.c (get_widget): Call _() on the option's title.

    * filter.glade: Turn on translatable strings.

    * libfilter-i18n.h, filter.glade.h: Translatable string files.

    * add #include <config.h> to a bunch of C files so that _()
    actually does anything. Undo some UTF8 frobs since we're now
    dealing in localized strings.

2000-10-23  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-filter.c (less_parts): Set the remove button insensitive
    if there is only 1 action left.
    (more_parts): Set the remove button sensitive (since we now have 2
    or more actions).
    (get_widget): If there is only 1 action, disable the remove
    button.

    * filter-rule.c (xml_encode): If there is a defined source, don't
    set it to "incoming", set it to whatever the source is!
    (less_parts): Set the remove button insensitive if there is only 1
    criterion left.
    (more_parts): Set the remove button sensitive (since we now have 2
    or more criterion).
    (get_widget): If there is no name for the filter then set it to
    "Untitled", highlight it, and grab the focus. If there is only 1
    criterion, disable the remove button.

    * filter-editor.c, vfolder-editor.c: GUI fixes here and there as
    well as some consistancy fixes between them.

    * filter-driver.c (filter_driver_filter_mbox): Updated to send the
    source url to filter_driver_filter_message()
    (filter_driver_filter_folder): Updated to send the source url of
    the folder to filter_driver_filter_message()
    (filter_driver_filter_message): Now takes a source_url argument
    that represents the url of the folder the message is coming from
    (so that we may filter based upon that information).

2000-10-23  Christopher James Lahey  <clahey@helixcode.com>

    * filter.glade: Fixed these widgets to resize properly.

2000-10-23  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-editor.c: Remove the "demand" source from the list.

    * filter.glade: Remove the "On Demand" option and replace it with
    an "Outgoing" option.

2000-10-23  Christopher James Lahey  <clahey@helixcode.com>

    * filter-editor.c, filter-filter.c, filter-folder.c,
    filter-part.c, filter-rule.c, rule-context.c, score-editor.c,
    vfolder-editor.c: Fixed these widgets to resize properly.

2000-10-20  Jeffrey Stedfast  <fejj@helixcode.com>

    * Makefile.am: Added filter-url.[c,h].

    * filter-message-search.c (get_source): New callback to get the
    source url of the message being filtered.
    (filter_message_search): Now takes a source argument.

    * filter-element.c (filter_element_new_type_name): Added code to
    handle URL types.

    * filter-url.[c,h]: New filter object to handle URLs (ie in the
    case of filtering on source url). FIXME: find a way to populate
    the source combo box (including mail-config.h breaks the build in
    the addressbook - how does including mail-tools.h not break the
    build???)

    * filtertypes.xml: Added the source filter type and added the
    move-to action.

    * filter-driver.c (do_move): New callback, a "Copy" action should
    just copy the message to another location while a Move should both
    copy the message to a new location and delete it from the source
    location.
    (do_delete): Set the deleted flag on the message info.
    (filter_driver_filter_message): Now returns void as we don't care
    if it was copied or not in the caller functions. Also check the
    CamelMessageInfo being passed in - if the message has been marked
    as deleted prior to being filtered, then return immediately as we
    don't want to apply filter actions to deleted messages.

2000-10-19  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_filter_folder): Start fetching at
    1, not 0.

2000-10-11  Not Zed  <NotZed@HelixCode.com>

    * filter-driver.c (filter_driver_filter_mbox): Report the
    percentage of file complete for the filter.

2000-10-10  Not Zed  <NotZed@HelixCode.com>

    * filter-driver.c (filter_driver_run): Why on earth does this code
    ref all these objects for?  This is not right at all.
    (filter_driver_run): Changed source type to a string.
    (filter_driver_run): REmove the very weird exception copying
    stuff - just ref it instead.
    (do_score): 
    (do_colour): 
    (do_stop): 
    (do_copy): 
    (mark_forward): 
    (do_delete): Removed bogus 'terminated' testing.  This is NOT
    NEEDED HERE.  It is tested after every rule/action, and
    termination only makes sense at that point.
    (filter_driver_filter_message): new funciton (renamed), filter
    only a message.
    (filter_driver_filter_mbox): Filter a whole mbox.
    (filter_driver_run): If we aren't given an info, create a simple
    one based on the message headers.
    (filter_driver_filter_message): Renamed from filter_driver_run().
    (filter_driver_set_status_func): Set the status callback function.
    (filter_driver_set_default_folder): Set the default folder for
    filtering.
    (report_status): Internal function to report the status of a given
    event.
    (do_copy): Removed a pointless cache lookup - duh, we do it in
    open_folder anyway (infact, we do it in camel too!!).
    (filter_driver_filter_message): Removed pointless re-refing of
    arguments.  Why would anyone think this could be any use at all?
    (filter_driver_filter_folder): New function to filter a whole
    folder.

    * filter-editor.c (rule_add): api fixes.
    (rule_edit): 
    (rule_up): 
    (rule_down): 
    (set_sensitive): This didn't take into account the source, now it
    does.
    (select_source): Fix for api changes.  Changed the rather generic
    'number' argument to be 'source', and a string.
    (filter_editor_construct): Changed the 'number' to 'source', and
    set the string appropriately.  Added a warning for one case where
    the glade file is out of sync.

    * score-editor.c (score_editor_construct): 
    (rule_edit): 
    (rule_delete): 
    (rule_up): 
    (rule_down): 
    (set_sensitive): api fixes.

    * vfolder-editor.c (set_sensitive): Api fixes.
    (vfolder_editor_construct): 
    (rule_edit): 
    (vfolder_editor_construct): 

    * rule-context.h (RCNextRuleFunc): Added a source argument.

    * rule-context.c (rule_context_next_rule): Added source argument.
    (rule_context_find_rule): Added source argument.
    (rule_context_get_rank_rule): Added source argument.
    (rule_context_get_rank_rule_with_source): Removed.
    (save): Fixed for changes to RCNextRuleFunc prototype.

    * filter-rule.h: Changed the source to be a string, removed the
    filter_source_t type.

    * filter-rule.c (filter_rule_set_source): New function to set the
    source of a rule.  What idiot ran this code through indent?
    (filter_rule_find_list): Added a source argument.
    (filter_rule_next_list): Added a source argument.
    (get_widget): Fixed the wording.  You dont remove search parts,
    you can only remove the last one.  Why you even need to mention
    they are search 'criteria' is beyond me.  Whoever added the
    scrolled window needs to be shot, its the single most awful GUI
    feature ever invented (ranks with the close button next to
    maximise).
    (xml_encode): Save source as a string (if present).
    (xml_decode): Likewise for loading & fixed a small memleak.
    (filter_rule_finalise): Free source.

2000-10-06  Not Zed  <NotZed@HelixCode.com>

    * rule-context.c (load): Remove the stupid on-demand cb shit.
    (rule_context_load): And here too.

2000-09-27  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Now takes an argument to
    specify the log file (or NULL if logging is not to be performed).

2000-09-19  Dan Winship  <danw@helixcode.com>

    * Makefile.am (gladedir, filterdir): Use $(datadir), not
    $(prefix)/share.

2000-09-18  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Modified to use more intuitive naming

    * score-rule.c (xml_decode): Make sure the score is within our
    range
    (get_widget): Changed range to -3 to +3

    * filter-score.c (get_widget): Changed range to -3 to +3
    (xml_decode): Make sure the score is within our range

    * filter-rule.c (get_widget): Rearranged widgets.

    * filter-filter.c (get_widget): Rearranged widgets.

    * filter-editor.c (filter_editor_construct): Updated to allow for
    double-clicking on a rule to edit it.

2000-09-18  Christopher James Lahey  <clahey@helixcode.com>

    * filter-editor.c, filter-filter.c, filter-folder.c,
    filter-input.c, filter-message-search.c, filter-option.c,
    filter-rule.c, score-editor.c, vfolder-editor.c, vfolder-rule.c:
    Fixed the #include lines to deal properly with gal.

2000-09-13  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-message-search.c (body_contains): Modified to only match
    text MIME parts in the message rather than the entire MIME message
    (header_contains): Added regex matching

2000-09-12  Dan Winship  <danw@helixcode.com>

    * rule-context.c (d): 
    * filter-datespec.c (d): Turn off debugging output.

2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c: We now use a "copied" variable to record
    whether a message was marked as copied or not instead of trying to
    "guess" by looking at the folders hash table as that won't work at
    all anymore.
    (do_copy): Renamed as this is more appropriate now that it
    actually copies the message rather than marking it for copying
    later. Also fixed a logic error which prevented a message from
    being dumped into a folder if the fodler had been previously
    opened.

2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): No longer takes a
    self_destruct argument.

2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Don't freeze/thaw the
    default inbox here, let the caller freeze/thaw it. Don't destroy
    the folders hash table here, it's faster if we wait till the
    filter-driver is destroyed.
    (filter_driver_finalise): Destroy the folders hash table here
    (filter_driver_init): Initialize the folders hash table here

2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Changed "Header" to be "Message header" so it's
    not quite as confusing (??)

2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Updated to allow the user to specify arbitrary
    headers.

2000-09-09  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Fixed a logic error. Only
    mark filtered as TRUE if it was successfully copied to another
    folder, this means don't mark true if the default inbox is NULL.

2000-09-09  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Erm, okay I misunderstood
    what camel_folder_[un]hook_event() did - we don't even need this
    crap in the filter driver so lets take it completely out and let
    the caller handle this junk.

2000-09-09  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Updated to not emit the
    folder_changed signal when a message is appended to the default
    mailbox - lets leave that up to the caller so we don't queue up a
    bunch of these emits if the caller is downloading messages for
    example.

2000-09-08  Jeffrey Stedfast  <fejj@helixcode.com>

    * filtertypes.xml: Added scoring xml stuffs
    
    * Makefile.am: added filter-score.[c,h]
    
    * filter-score.[c,h]: New functions to handle the "score" filter
    type.
    
    * filter-element.c (filter_element_new_type_name): Added support
    for "score" type.
    
    * filter-driver.c (do_score): New ESExp callback for filter
    actions to set the score on a message.
    
    * filter-message-search.c (get_score): New ESExp callback for
    getting the score tag as an integer value.

2000-09-07  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Now takes a
    CamelMessageInfo argument in preparation for handling scoring

2000-09-07  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Modified to return a
    boolean value specifying whether or not the message was filtered
    into a folder other than the default. The default mailbox can now
    also be specified as NULL if the message shouldn't be appended to
    it in the case that it's not filtered into some other folder.

2000-09-07  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Rewrote - this shouldn't
    need to be an async function

    * filter-message-search.c (match_all): Modified to look at the
    boolean value being fed to it and just to return that instead of
    always returning TRUE

2000-09-07  Lauris Kaplinski  <lauris@helixcode.com>

    * filter-editor.c, filter-filter.c, filter-folder.c, filter-option.c:
    * filter-rule.c, score-editor.c, vfolder-editor.c, vfolder-rule.c:
    More UTF-8 wrapping

2000-09-06  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Totally rewritten to filter
    a single message at a time instead of filtering a folder.

    * filter-message-search.c (filter_message_search): New convenience
    function for searching a message.

2000-08-24  Lauris Kaplinski  <lauris@helixcode.com>

    * filter-folder.c: Use e_utf8 wrappers

    * filter-input.c: Use e_utf8 wrappers

    * filter-rule.c: Use e_utf8 wrappers
    
2000-08-23  Dan Winship  <danw@helixcode.com>

    * filter-datespec.c (cal_day_selected): Set seltime.tm_isdst to
    -1, not daylight, because the current dst value is not relevant to
    the selected date.

2000-08-18  Peter Williams  <peterw@helixcode.com>

    * filter-driver.c (do_filter_mail): Unlink a new parameter, path_to_unlink,
    if it is empty once the mail is filtered. Fixes a race in 
    mail_tool_filter_contents_into.

    * filter-driver.h: Update the prototype.

2000-08-14  Ettore Perazzoli  <ettore@helixcode.com>

    * vfolder-editor.c (rule_add): Add translation marks and use stock
    buttons.
    (rule_edit): Likewise.

    * score-editor.c (rule_add): Add translation marks and use stock
    buttons.
    (rule_edit): Likewise.

    * rule-context.c (rule_context_add_rule_gui): Add translation
    marks and use stock buttons.

    * filter-part.c (main): Add translation marks and use
    stock buttons.

    * filter-folder.c (button_clicked): Add translation marks and use
    stock buttons.

    * filter-editor.c (rule_add): Add translation marks and use stock
    buttons.
    (rule_edit): Likewise.

    * filter-rule.c (get_widget): Add translation marks.

    * filter-filter.c (get_widget): Add translation marks.  Add
    padding to make it look like the buttons in `filter-rule.c'.

2000-08-17  Peter Williams  <peterw@helixcode.com>

    Implement filtering on demand.

    * rule-context.h: Add a new callback to rule_context_load
    that allows the caller to hook on-demand rules into its UI.

    * rule-context.c (rule_context_load): Changed to pass the
    extra parameters to load().
    (load): If the rule is successfully loaded, call the provided
    callback so that the UI can be updated.

    * filter-editor.c (rule_add): Set the source of the new filter.
    (rule_edit): Use the new rule_context_get_rank_rule_with_source()
    so that we don't get a bad index into the GtkList.
    (rule_delete): Same as above.
    (rule_up): Same as above.
    (rule_down): Same as above.
    (select_source): New function. When the user changes the 
    dropdown list to select a new source type, repopulate the
    list with rules of the appropriate type.
    (filter_editor_construct): Code moved from here into
    select_source(). Hook up all the elements of the source optionmenu
    to callbacks to select_source().

    * filter-rule.c (xml_encode): Save the rule's source type.
    (xml_decode): Load it. Default to 'incoming' if unspecified.

    * filter-rule.h: New enumeration, _filter_source_t, the
    specifies the rule's source. Add it to struct _FilterRule.
    
    * filter-driver.c (filter_driver_run): Add a new input,
    sourcetype, that specifies which rules to run (only ones
    with the same source will be run). struct filter_mail_input_t
    changed to accomodate.
    (do_filter_mail): Skip rules if they're not the specified source.
    If source and dest are the same, don't delete the messages or
    copy unnecessarily.

    * filter.glade: Make the optionmenu sensitive. Change "Outgoing"
    to "On Demand" (outgoing should be added later).
    
2000-08-15  Peter Williams  <peterw@curious-george.helixcode.com>

    * vfoldertype.xml, filtertypes.xml: Add entries defining the
    date-based message filtering and vfoldering.

    * filter-datespec.{c,h}: New files implementing the UI for
    date-based filtering and vfoldering -- specifically, choosing
    what to compare the message to.

    * filter-element,c: Hook up to create a datespec filter if
    that's what's called for.

    * Makefile.am: Build the new -datespec files.

2000-08-13  Dan Winship  <danw@helixcode.com>

    * Makefile.am (EXTRA_DIST): remove blank.xpm and check.xpm which
    no longer exist. Add filter.glade.

2000-08-12  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (describe_filter_mail): Use
    mail_tool_get_folder_name here too. (Hm... this directory really
    shouldn't depend on stuff in mail/, but it already did. We'll have
    to sort this out later.)

2000-08-11  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (do_filter_mail): Remove an '#if 0' that must
    have been left in accidentally, so that messages which are copied
    to other folders will not also be copied into the Inbox. Also,
    #ifdef out the line that printfs the rule, because the rules are
    often very large.

2000-08-11  Not Zed  <NotZed@HelixCode.com>

    * filter-driver.c (do_colour): Use proper accessor function
    instead of poking the structure.

2000-08-10  Christopher James Lahey  <clahey@helixcode.com>

    * filter-driver.c, filter-folder.c, rule-context.c,
    vfolder-editor.c: Fixed some warnings.

2000-08-10  Peter Williams  <peterw@helixcode.com>

    * filter-driver.c (do_filter_mail): Fix the infinite fetchmail.

2000-08-10  Not Zed  <NotZed@HelixCode.com>

    * filter-driver.c (filter_driver_run): Save the results of
    searches till we're done.  So we dont have to go strduping strings
    agian and again and again and again ...  Remove all the unecessary
    strdups.
    (do_colour): Implement.
    (filter_driver_run): Change for append api change.
    (free_key): Removed.

2000-08-09  Not Zed  <NotZed@HelixCode.com>

    * rule-context.c (rule_context_add_rule_gui): Helper function to
    add a rule, but present a gui first, asking for confirmation/allow
    editing.
    (rule_context_add_rule_gui): Keep track of context so it isn't freed under us.

    * filter-context.c (filter_context_create_action): Implement,
    helper to aid filter generation.

2000-08-08  Peter Williams  <peterw@helixcode.com>

    * filter-driver.c (close_folder): Fix an accidental GTK unref
    of a CamelObject.

2000-08-03  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-folder.c (button_clicked): Use the base name of the
    Evoluton URI for the button's label.
    (get_widget): Likewise.

2000-08-03  Peter Williams  <peterw@helixcode.com>

    * filter-driver.c (op_filter_mail): Conform to the new mail-threads
    interface.

2000-08-01  Not Zed  <NotZed@HelixCode.com>

    * vfolder-editor.c (rule_add): Oops, create a vfolder_rule when we
    add a new one.

    * rule-context.c (load): If there are no user rules, dont bomb
    out.

2000-07-31  Not Zed  <NotZed@HelixCode.com>

    * filter-input.c (filter_input_set_value): Set value of a simple
    type to a new string.

    * filter-option.c (filter_option_set_current): New function to set
    the current value of an option.

    * filter-rule.c (filter_rule_find_list): New function to find a
    rule in a list, by name.
    (filter_rule_set_name): Let you set the name of a rule.

    * rule-context.c (rule_context_find_rule): Find a rule by name.
    (rule_context_create_part): Helper to find and clone a part by
    name.

    * filter-folder.c (button_clicked): Fix warning.

    * filter.glade: Add new widgets for vfolder rule editor.
    
    * vfolder-context.c (vfolder_context_init): Changed to use vfolder
    rule as the rule type.

    * vfolder-rule.c: New class to encode extra information required
    for vfolder rules.

2000-07-30  Not Zed  <NotZed@HelixCode.com>

    **  Almost a total rewrite of every file, except for filter-driver
    which just had minor updates.

    The rule format has changed.

2000-07-24  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (do_delete, filter_driver_run): Update for
    CamelFolder API changes. (delete_message and get_uids don't take
    exceptions any more.)

2000-07-21  Peter Williams  <peterw@helixcode.com>

    * filter-driver.c (cleanup_filter_mail): Use the exception
    provided to us by the async manager instead of allocating
    our own; use mail_tool_camel_lock_{up,down} around camel
    operations.
    (filter_driver_run): Make it return void.

2000-07-20  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c: Update to make "async".

2000-07-11  Dan Winship  <danw@helixcode.com>

    * filter-driver.c: Update for CamelFolder API changes

2000-07-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c (filter_driver_run): Updated to reflect changes to
    camel_folder_append_message ()

2000-07-09  Dan Winship  <danw@helixcode.com>

    * filter-xml.[ch]: add a "string" type

    * filtertype.xml, vfoldertypes.xml: Use type="string" rather than
    "folder" for subject/body matching.

    * filter-arg-types.c: Update some strings for "text" input. Fix
    some warnings (including one that pointed out a real bug).

    * filter-arg.c, filter-druid.c, filter-format.c: fix warnings

2000-07-07  Dan Winship  <danw@helixcode.com>

    * filter-driver.c: Update for camel_folder_search_by_expression
    change (GList -> GPtrArray).

    * vfoldertypes.xml: sync this to filtertypes.xml (to/cc thing)

2000-07-05  Dan Winship  <danw@helixcode.com>

    * remove some non-error case debugging messages.

    * filtertypes.xml: Fix typos and update the "to-address" rule to
    match To or Cc.
    * vfoldertypes.xml: Fix typos.

    * filter-driver.c (do_delete, do_copy, do_stop,
    filter_driver_run): Add uids to the "processed" list only after
    succesfully doing something with them. Fixes the problem where
    copying a message to a folder that didn't exist would result in it
    disapearing.

2000-07-02  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-driver.c (filter_driver_new): Don't free the ruleset nor
    the xmlDoc.  This will make us leak [I think], but at least
    filters work.

2000-07-02  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (open_folder): freeze the folder to avoid
    multiple folder_changed's
    (close_folder): and thaw it.
    
2000-07-02  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (filter_driver_new): kill
    filter_driver_set_session and filter_driver_set_rules and instead
    make filter_driver_new take the rules and a callback function it
    can use to turn URIs into folders.
    (open_folder): Use the callback function rather than calling camel
    directly: some URIs need special handling to turn them into stores
    and folders correctly, so let the mailer do that.

2000-07-01  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-arg-types.c (arg_folder_edit_value): Only allow type
    "mail" when selecting a folder for the filter.

2000-07-01  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-driver.c: Updated to reflect changes made to 
    camel-folder.

2000-06-30  Peter Williams  <peterw@curious-george.helixcode.com>

    * filter-xml.c (filter_load_optionset_file): Check for failure
    when loading the filter doc.

    * filter-driver.c (filter_driver_set_rules): Ditto.

    * filter-editor.c (filter_editor_set_rule_files): Ditto.

2000-06-29  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-arg-types.c: Replaced `global_shell_interface' with
    `global_shell_client'.
    (arg_folder_edit_value): Use
    `evolution_shell_client_user_select_folder()'.
    (create_listener): Removed.
    (impl_FolderSelectionListener_selected): Removed, together with
    all the ::Listener stuff.

2000-06-29  Arik Devens  <arik@helixcode.com>

    * vfoldertypes.xml (ruleset type="match"): Changed Cc to CC to be
    the same as the other CC rule. None of this works however, cause
    the CC code is not hooked up to camel... oh well ;-(
    
2000-06-29  Arik Devens  <arik@helixcode.com>
    
    * vfoldertypes.xml (ruleset type="match"): Added a Cc rule to
    vfolders. Works like To except on the Cc of a message ;-)
    
2000-06-28  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-arg-types.c (arg_string_edit_value): Changed "Filter name"
    to "Option value" as "Filter name" made no sense in the dialog
    (arg_address_edit_value): Same
    (arg_folder_edit_value): What do we want to return??

2000-06-27  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-xml.c (load_desc): Strdup content before assigning the
    value.  Also, no need to check for NULL when g_strdup()ing as
    g_strdup() returns NULL for a NULL arg.

2000-06-27  Ettore Perazzoli  <ettore@helixcode.com>

    * Makefile.am (INCLUDES): `-I$(top_builddir)/shell' so that it
    works with builddir != srcdir.  [We need to #include
    "Evolution.h".]

2000-06-27  Michael Zucchi  <zucchi@zedzone.mmc.com.au>

    * Makefile.am (INCLUDES): Add the shell dir for includes (for
    corba interfaces).

    * filter-arg-types.c (impl_FolderSelectionListener_selected):
    Listener for folder query.  Sigh.
    (create_listener): Create the listener object for the folder
    dialogue query.  Uses a global for linkage to the shell object,
    via the mail component.
    (arg_folder_edit_value): Call the folder selection dialogue to
    edit the value, rather than a simple text widget.

2000-06-26  Jeffrey Stedfast  <fejj@helixcode.com>

    * filter-editor.c: Added a #include <gnome-xml/parser.h> as this
    was needed (since we used the xml parser...)
    (druid_dialogue_clicked): Do we want to use struct filter_option
    or do we instead want to use struct filter_optionrule as we had before?
    Since the function we pass the data to expects filter_option, I suspect 
    that that is what we want.

    * filter-format.h (filter_description_html_write): Renamed from
    description_html_write in order to match function name in
    filter-format.c

    * filter-druid.c (option_name_changed): Fixed a memory leak (Free'd
    a filter description list).

    * filter-arg-types.c (arg_folder_edit_values): Free'd GList data in
    argin->values.

    * filter-driver.c (filter_driver_set_rules): Added code to free an
    xmlDoc and some other data.

    * filter-arg.h: Add prototypes for filter_arg_write_html() and 
    filter_arg_write_text();

    * filter-arg-types.c: Lets see if we can't get rid of some of these 
    warnings... (use some casts to make warnings go away)
    (arg_address_edit_value): Lets make sure that ad exists before looking
    at member data.

2000-06-16  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (do_delete, filter_driver_run): Update for Camel
    flag handling changes.

2000-06-15  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (open_folder, close_folder): Update for
    CamelFolder changes.

2000-06-09  Jacob Berkman  <jacob@helixcode.com>

    * filter-editor.c (add_or_edit): use stock pixmap buttons

    * filter-druid.c (build_druid): remove the border on the notebook,
    put the html widget in a scroll frame, and add some padding

2000-06-06  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (open_folder): Update for folder
    existence/creation changes.

2000-06-02  Christopher James Lahey  <clahey@helixcode.com>

    * filter-driver.c: Free the exception and the priv struct.

2000-06-01  Christopher James Lahey  <clahey@helixcode.com>

    * filter-arg-types.c (arg_address_edit_value): Search for ad in
    arg->values instead of text since it's a list of
    filter_arg_adresses.  Also, free the old value in the list.

2000-05-30  Not Zed  <NotZed@HelixCode.com>

    * filtertypes.xml: And here too.

    * vfoldertypes.xml: Add body-contains and not-body-contains
    types.

2000-05-27  Not Zed  <NotZed@HelixCode.com>

    * vfoldertypes.xml: New file - lists rules appropriate for
    vfolders (no actions, etc).

    * Makefile.am (EXTRA_DIST): Add vfoldertypes.xml

    * filter-driver.c (filter_driver_expand_option): Made public from
    expand_filter_option.
    (filter_driver_rule_count): find out how many user rules are
    defined.
    (filter_driver_rule_get): Get a user rule by index.

2000-05-21  Ettore Perazzoli  <ettore@helixcode.com>

    * filter-druid.c: Don't pass an empty URL to `gtk_html_begin()'
    anymore.

    * filter-arg-types.c: Updated for the new GtkHTML API which uses
    `GtkHTMLStream *' instead of `GtkHTMLStreamHandle'.
    * filter-arg.c: Likewise.
    * filter-arg.h: Likewise.
    * filter-druid.c: Likewise.

    * filter-format.c: Likewise.
    * filter-format.h: Likewise.

2000-05-18  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (filter_driver_run): update for
    camel_folder_get_uids change

2000-05-17  NotZed  <NotZed@HelixCode.com>

    * filter-druid.c: Fix some html formatting.

2000-05-16  NotZed  <NotZed@HelixCode.com>

    * filter-driver.c (filter_driver_run): Delete all processed
    messages.  This is probably going to slow it down a bit.
    (filter_driver_run): Close folders before destroying them *sigh*.
    (open_folder): Actually open the folder. Doh.

    * filtertypes.xml: Initial filter rules.

    * filter-xml.c (filter_write_optionset): Save the description
    also.
    (write_description): Routine to save description - only saves 1
    node of description.

    * filter-arg.c (filter_arg_edit_clicked): Dont free edata here,
    let the destroy do it(?)

    * filter-editor.c (main): Simple driver program for testing, so i
    can fix all this really broken code *sigh*

2000-05-15  NotZed  <NotZed@HelixCode.com>

    * filter-editor.c (filter_editor_set_rule_files): filename based
    interface.
    (filter_editor_save_rules): Interface to save the options to a
    filename.

    * filter-xml.[ch]: Bunch of cleanup.

    * filter-xml.c (filter_*_file): New interfaces to read/write files
    directly, rather than messing with xmldoc crap.

    * Makefile.am: Removed filter-driver test program, now just part
    of libfilter.

    * filter-driver.c: Made an object, with an api and everything, can
    apply a filter to a given mailbox.

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

    * filter-arg.h: Changed tree.h to gnome-xml/tree.h.

    * Makefile.am: Added filter-arg-types.h, filter-arg.h,
    filter-xml.h, filter-format.h, filter-druid.h, filter-editor.h.

2000-05-02  Matt Loper  <matt@helixcode.com>

    * Makefile.am: set G_LOG_DOMAIN.

2000-05-01  NotZed  <NotZed@HelixCode.com>

    * filter-driver.c (main): Fix for api.

2000-04-30  Dan Winship  <danw@helixcode.com>

    * filter-driver.c (start): Remove no-longer-necessary call to
    camel_provider_register_as_module.

2000-04-25  Ettore Perazzoli  <ettore@helixcode.com>

    * Makefile.am (INCLUDES): Use `$(GTKHTML_CFLAGS)'.

2000-04-20  NotZed  <NotZed@HelixCode.com>

    * filter-driver.c: Removed a bunch of crappy unrequired headers.

    * Makefile.am (filter_driver_LDADD): Added libibex back again.

2000-04-18  Dan Winship  <danw@helixcode.com>

    * filter-driver.c: remove unused camel-log.h include

2000-04-12  Matt Loper  <matt@helixcode.com>

    * filter-arg.c (filter_arg_edit_value): Return a value.

2000-03-27  NotZed  <NotZed@HelixCode.com>

    * filter-xml.c (tokenise_xmlfreeprop): Free a prop after
    tokenising it.
    (find_node_attr): Free the prop after using it.
    (load_desc): Ditto.   I use free() because xmlFree() is nowhere to
    be found.
    (filter_load_optionset): Ditto.

    * filter-arg-types.c (arg_address_values_add_xml): free() xml
    stuff, plugs a leak.
    (arg_folder_values_add_xml): Ditto.

2000-03-22  NotZed  <NotZed@HelixCode.com>

    * filter-driver.c (main): Changed to use async search api.

2000-03-04  NotZed  <NotZed@HelixCode.com>

    * filter-druid.c (html_write_options): Output 'and' bits between
    the rules.

    * filter-driver.c (main): Actually implement filtering, at least,
    from Inbox.  Copy messages to folder (in the same store only, so
    far), delete, and stop processing are implemented, and the logic
    to handle default processing.

    * filter-xml.c (load_optionvalue): Fix up a bug where we lost the
    name of the arg (ouch).
    * filter-xml.c: Wrapped printf's in debug macros.

2000-03-02  NotZed  <NotZed@HelixCode.com>

    * filter-druid.c (object_destroy): Disconnect the list signal, so
    we dont get spurious emits during destroy.
    (arg_changed): Callback to update filter arg asynchronously.
    (arg_link_clicked): Edit the value non-modally.

    * filter-arg.c (filter_arg_edit_values_1): Changed to use
    non-modal interface.

2000-03-01  Ettore Perazzoli  <ettore@helixcode.com>

    * Makefile.am: New file.

    * Makefile: Removed.  I wonder why we are using plain Makefiles
    instead of automake Makefiles at all.

2000-02-29  NotZed  <NotZed@HelixCode.com>

    * filter-driver.c (main): Remove gui code, this will be actual
    filtering code.

    * Makefile: Added filter-editor to the library.

    * filter-editor.c (main): Comment out, make it a proper library.

2000-02-28  NotZed  <NotZed@HelixCode.com>

    * filter-druid.c: Removed unused header.

    * Makefile: Removed references to filter-sexp.[ch].

    * filter-sexp.[ch]: Removed some unecessary includes.  Moved to
    e-util.  Renamed callers.

2000-02-24  NotZed  <NotZed@HelixCode.com>

    * filter-xml.c (filter_description_free): 
    (filter_load_ruleset_free): 
    (filter_load_optionset_free): Functions for memory management.

    * filter-arg.c (filter_arg_copy): Copy the values of one arg into
    another.

    * filter-editor.c: New widget, a dialogue which uses filter-druid
    to present the various editing views.
    (druid_dialogue_clicked): On finish, save the user's new filter
    definition where it came from.

    * filter-druid.c: Changed to just being a notebook with no tabs,
    rather than a full druid (no next/prev/etc buttons).
    (option_name_changed): Update the option's description as the user
    enters it in.

2000-02-22  NotZed  <NotZed@HelixCode.com>

    * filter-xml.c (filter_clone_optionrule):
    (filter_clone_optionrule_free): 
    (filter_optionrule_new_from_rule): New utility functions for
    working with the internal rule format.

    * filter-arg.[ch]: Added new callbacks for editing a single value,
    and a new editor which shows all items in a list, and allows you
    to edit them via the single-edit method.  This needs some cleanup
    for some unused/unusable virtual methods (edit_values,
    write_html?).

    * Makefile: Add the druid for build.

    * filter-druid.c: A 'druid' widget for editing a single filter
    rule.

2000-02-21  Matt Loper  <matt@helixcode.com>

    * .cvsignore: New file.

2000-02-18  NotZed  <NotZed@HelixCode.com>

    * blank/check.xpm: Added forgotten files.

    * Uh, more changes, lots, its still work in progress.

2000-02-14  NotZed  <notzed@helixcode.com>

    * Initial import.