-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGELOG
7491 lines (4565 loc) · 263 KB
/
CHANGELOG
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
[20120824:2110] tomhendr: fix minor inconsistency in return value of dspam_addattribute
[20120824:2030] tomhendr: Include auto-config.h in 'make install'
[20120824:2005] tomhendr: Removed some references to DSR_ISWHITELISTED which has been removed in 2005
[20120802:2115] sbajic: Update documentation for Exim integration.
[20120628:1000] sbajic: suid binaries in Linux require to be built with -fPIE CFLAGS and -pie LDFLAGS. This allows it to specify them for the configure script. SUID_CFLAGS=-fPIE SUID_LDFLAGS=-pie ./configure ...
[20120510:2300] sbajic: Fix recipient corrpution when releasing a message from quarantine
[20120424:2330] sbajic: Change dspam.conf defaults to use TOE and OSB by default
[20120423:2110] tomhendr: reverted commit 2169b243927712edbb22b51d7f61b97d79de9103 (see changelog at [20111110:1814]) because the code is not portable, needs ./configure checks for iconv functionality (and code for equivalents on platforms that don't have iconv).
Version 3.10.2
--------------
[20120402:2022] tomhendr: Make group file location configurable in dspam.conf
[20120209:2215] sbajic: Fix bug in RSET handling during LHLO phase (daemon mode).
[20111116:0020] sbajic: csscompress: preserve ownership and permissions as in cssclean
[20111116:0015] sbajic: document that dspam_clean does nothing with hash driver
[20111110:2112] tomhendr: Make some perl stuff for mime decoding optional depedencies.
[20111110:1950] tomhendr: Removed all meta tag charset definitions from webui templates.
[20111110:1814] tomhendr: Fix issue with malformed characters in webui: convert everything to utf-8.
[20111110:0020] tomhendr: Renamed NotificationsDirectory to TxtDirectory, added documentation on the new parameter.
[20111103:1200] sbajic: Fix bugs in dspam_notify: add new line between header and body, do proper parsing of dates where the day is one single digit or the weekday is a Thursday, add From header entry.
[20111030:1245] sbajic: Make notification directory configurable in dspam.conf
[20111001:1200] sbajic: Fix typo and formatting issues in dspam.conf
[20111001:1030] sbajic: Fix compiler warnings (unused function) in MySQL driver
[20110930:2055] sbajic: Remove support for PostgreSQL < 8.1.0 (EOL)
[20110915:2230] tomhendr: Fix issue where the files under the group name in DSPAM_HOME were updated in stead of the actual users' files, when retrainig and using shared groups.
[20110903:1330] sbajic: Fix potential memory leak in _ds_decode_headers()
[20110831:2300] tomhendr: Fix message parsing with CRLF line breaks
[20110828:1230] sbajic: Fix potential memory leak and a strcmp() call that reads uninitialized bytes
[20110822:2250] tomhendr: added dspam_alias_retraining to release tarball
[20110817:0936] jvalroff: updated webui fr templates to validate on w3c validator
[20110817:0014] tomhendr: updated webui en templates to validate on w3c validator
[20110816:2226] tomhendr: replace ctime.pl usage with POSIX::ctime in webui, since it is marked as deprecated
[20110815:1825] tomhendr: replace random example domains like domain.com/yourdomain.com/configureme.com with example.org
[20110811:2220] sbajic: Adding license note to dspam-retrain-forward.pl
Version 3.10.1
--------------
[20110810:1420] sbajic: Do not use (for now) static functions/variables when computing/reading virtual_table, virtual_uid, virtual_username and MySQLUIDInSignature
[20110802:1151] tomhendr: add cssclean.txt to doc/Makefile.am
Version 3.10.0
--------------
[20110801:1024] tomhendr: Update version to 3.10.0 after discussion between projectadmins.
[20110726:2324] tomhendr: Updated MySQL documentation, added emphasis on usage of *-4.1.sql files, removed MySQL <4.1 specific notes
[20110716:1520] sbajic: Fix build error (when selecting MySQL driver) on older autoconf/automake versions
[20110713:0100] sbajic: Code cleanup in dspam_process()/_ds_operate() and minor improvements (no functional change)
[20110713:0045] sbajic: Remove redundant code in process_users()
[20110712:2310] sbajic: Fix typo (logical error) from last commit to libdspam
[20110711:2150] sbajic: Restore operating mode and training mode on failure of ds_operate()
[20110711:2345] sbajic: rename doc/README.cssclean to doc/cssclean.txt
[20110711:2224] pcockings: move README.cssclean to /doc and update README Section 1.4 to note that cssclean should be used with the hash driver
[20110711:2230] sbajic: Updating README to reflect upcoming macro version
[20110711:2200] sbajic: Fixing typo from last commit
[20110711:2130] sbajic: If the training mode has been specified on the command line, it should not be overruled by the user's (or default) preferences. Remove the DST_DEFAULT constant from the libdspam interface since it has only been (ab)used by the agent and never really belonged to the library in the first place.
[20110710:1215] pcockings: Decision to release as 3.9.2 and update RELEASE.NOTES
[20110709:0000] pcockings: Add note that osb is recommended for new installs
[20110708:2345] pcockings: Documentation changes:
* Add note that sqlite_drv will be removed in future release
* Add note that hash_drv is not 32/64 or big/little endian safe
* Update contact details for commercial licensing
* Small documentation typos
[20110702:1300] sbajic: Prevent password leakage in dspam_maintenance.sh
[20110701:1740] sbajic: Use DSS_NONE and DSR_NONE according to specification (no change in binary code)
[20110627:2330] sbajic: Changing DSPAM license to AGPL v3
[20110627:2320] sbajic: Use DSS_NONE and DSR_NONE according to specification (no change in binary code)
[20110627:2300] sbajic: Change copyright year
[20110627:2245] sbajic: Updated headers with new FSF address
[20110627:2230] sbajic: Added option to HTMLize sender and subject in quarantine view
[20110618:1545] sbajic: Merge two patches from Debian:
1. 011_Document-hash-drv-support-daemon.diff
Description: hash driver support daemon mode since version 3.6rc2 (see upstream CHANGELOG)
Author: Debian DSPAM Maintainers <[email protected]>
2. 012_typo-dspam_maintenance.diff
Description: Fix typo in dspam_maintenance for pgsql backend
Author: Rodolphe Pelloux-Prayer <[email protected]>
[20110520:0915] sbajic: Fix bug with static functions/variables inside MySQL driver
[20110520:0025] sbajic: Remove support for MySQL < 5.0.0 (EOL)
[20110514:0410] sbajic: Fix Lookup feature
[20110513:1425] sbajic: Fix out-of-range and overflow handling in MySQL driver (fixes issue with MySQL >= 5.5.x)
[20110513:0020] sbajic: Remove compile failure when using debug option
[20110509:2305] sbajic: Update SQL files for MySQL to allow table creation for MySQL >=5.5.x
[20110506:2305] sbajic: Fix clang analyzer issues
[20110419:0720] sbajic: Document value 'deliver' in default.prefs for option 'spamAction'
[20110308:0110] sbajic: Fix broken message unlearning
[20110308:0105] sbajic: Speedup up dot stuffing when sending to LMTP/SMTP delivery
[20110308:0100] sbajic: Add dot de-stuffing when reveiving message in deamon mode (aka: DLMTP/LMTP)
[20110209:2120] sbajic: Fix segmentation fault problem in MySQL driver _ds_get_nextuser() when user row is NULL
[20110209:2115] sbajic: Fix autoconf macros for ExtLookup to handle properly OpenLDAP version check
[20101205:0155] sbajic: Fix linker issue with privious patch when compiling DSPAM with static Hash driver
[20101130:0910] sbajic: Remove unused direct dependencies on most of the executables and libraries
[20101113:1510] sbajic: Fixing typo in README
[20101112:1100] sbajic: Fix segmentation fault in cssstat
[20100826:0730] sbajic: Fix compiler warnings
[20100825:2215] sbajic: Fix bug introduced in the last two commits by using static functions instead saving the values in the _mysql_drv_storage struct.
[20100825:2130] sbajic: Do the same small speed improvements in the MySQL driver as in the last commit but when initializing the preference extension in _mysql_drv_init_tools()
[20100824:0045] sbajic: Small speed improvements in the MySQL driver
[20100823:2320] sbajic: Reorder version check in PostgreSQL driver (for slightly speed improvement)
[20100823:1200] sbajic: Properly escape strings in PostgreSQL driver
[20100822:2020] sbajic: Do not allow empty delivery agent if no delivery host is specified
[20100822:1945] sbajic: Change mail recipient for uid-based signatures when processing message
[20100821:1045] sbajic: Don't remove pid file when sending SIGHUP to the daemon
[20100820:2230] sbajic: Fixing file descriptor leak in read_config()
[20100820:1145] sbajic: Fix segmentation fault when using split configuration and running dspam_stats and the running user has no permission to read the files/directories mentioned in the "Include" configuration option.
[20100819:2210] sbajic: Only allow one filesystem layout (large scale, domain scale or home dir)
[20100819:0030] sbajic: Adding missing JavaScript code to the German Web-UI templates
[20100816:2010] sbajic: Speedup HTML stripping and extract uri from invalid tags (aka: uri tags that have no " or ' around the uri)
[20100816:2000] sbajic: Remove undocumented and unsupported spam/ham aliases and correct firstrun.txt to mention correct spam training alias
[20100816:1650] sbajic: Extend SIZE extension detection to support more variants of the extension
[20100814:1640] sbajic: Fixing dot escaping in client/server socket protocol
[20100814:1515] sbajic: Fix client to only send SIZE=n if the LMTP delivery destination has SIZE extension support
[20100814:1330] sbajic: Documenting additional --deliver values
[20100812:0205] sbajic: Do not continue training with dspam_train if calling dspam_stats has failed
[20100812:0155] sbajic: Do not allow --profile option for dspam_stats if trusted user security is active and user is not trusted
[20100810:0135] sbajic: Print errors to stderr when using the helper tools
[20100809:2355] sbajic: Changing error message to ERR_DRV_INIT for the helper tools when there is a problem loading the storage driver
[20100809:2350] sbajic: Fix hang/segmentation fault in dspam_2sql when no StorageDriver is selected AND no storage dirver is statically linked
[20100809:2330] sbajic: Fix hang/segmentation fault when no StorageDriver is selected AND no storage driver is statically linked
[20100806:2340] sbajic: Fix logical error/typo in last commit
[20100806:1900] sbajic: Fix broken appending of message (the old code removed all lines with a single \n from the message) to quarantine (mbox file)
[20100806:0050] sbajic: Exit dspam_admin with proper return code
[20100804:2355] sbajic: Fixing typo from last commit
[20100804:2350] sbajic: Declare signature data to be escaped in PostgreSQL driver
[20100804:2315] sbajic: Setting query buffer size inside functions to be equal with the one used in the PostgreSQL driver
[20100804:1515] sbajic: Remove useless (double) encoding/escaping and one memory allocation issue in PostgreSQL driver
[20100804:1210] sbajic: Fix a crash in the PostgreSQL driver (corrupted double-linked free)
[20100804:0200] sbajic: Use '--defaults-file' instead of '--defaults-extra-file' in maintenance script
[20100804:0200] sbajic: Fixing double encoding of signature data in PostgreSQL driver
[20100803:1300] sbajic: Fixing calculation of performance metric in Web-UI when using groups
[20100802:2045] sbajic: Fixing HTML formatting errors in dspam.cgi
[20100731:1610] sbajic: Fixing two typos in ExtLookup section in dspam.conf
[20100731:1545] sbajic: Fixing two typos in ExtLookup section in dspam.conf
[20100731:1520] sbajic: Adding different (extended) delimiters for advanced tokenizers (aka: SBPH and OSB) that profit from more tokens per message
[20100731:1510] sbajic: Adding more debug output to tokenizer.c
[20100731:1500] sbajic: Unifying _pgsql_drv_getpwnam() to have same logic as _mysql_drv_getpwnam()
[20100731:1445] sbajic: Limiting scope of variables in _mysql_drv_getpwnam()
[20100731:1330] sbajic: Fixing typo in PostgreSQL debug output
[20100731:0140] sbajic: Fixing HTML markup issues in German template
[20100731:0120] sbajic: Fixing some more HTML markup issues in dspam.cgi
[20100731:0010] sbajic: Fixing HTML markup in dspam.cgi
[20100719:2115] sbajic: Adding strings.pl to makefile for HE translation
Version 3.9.1 RC1
-----------------
[20100716:2200] sbajic: Fixing bug m4/Makefile.am regarding removal of libtool_hack.m4
[20100615:2225] sbajic: Fixing bug in _mysql_drv_getpwnam() regarding allocation of space for the username
[20100612:1540] sbajic: Make LLVM clang compiler happy
[20100612:1515] sbajic: Updating documentation for Sendmail MTA using virtual users
[20100612:1000] sbajic: Properly escape/unescape queries/values in _ds_pref_load(), _ds_pref_set() and _ds_pref_del() for PostgreSQL driver
[20100607:1400] sbajic: Adding MTA/MDA retraining script to contrib
[20100525:2330] sbajic: Fixing out-of-bounds reads in various functions
[20100525:2120] sbajic: Do not shutdown libdspam and do not relase locks in daemon_start()
[20100519:2300] sbajic: Fixing varous memory leaks
[20100515:0255] sbajic: Better verbose output when reading configuration
[20100514:1820] sbajic: Fixing compiler warnings in process_parseto()
[20100513:2245] sbajic: Fix potential memory leak in MySQL and PostgreSQL storage driver
[20100513:2240] sbajic: Fix client to read complete result for summary operations and instruct daemon to send final dot also for summary operations
[20100513:2130] sbajic: Fix memory leak in process_users() when using ClamAV
[20100513:2100] sbajic: Fix no substitution in error messages when logging to file
[20100513:1245] sbajic: Fix bug in process_parseto()
[20100509:1215] sbajic: Fix typo in MySQL driver
[20100508:2330] sbajic: Fix bug in _ds_strip_html (invalid read of 1 byte before allocated block)
[20100508:0150] sbajic: Fix various errors/bugs in PostgreSQL driver, speedup SQL queries by omitting write/change to fields that are not changing their value
[20100508:0145] sbajic: Fixing bugs and wrong return values in MySQL driver
[20100507:2130] sbajic: Fixing bug (typo) in MySQL driver
[20100506:2140] sbajic: Enforce domain part in DeliveryHost to be in lowercase when using domain based delivery. Extending DeliveryPort to be domain delivery aware.
[20100506:1850] sbajic: Fixing typos and formatting in README
[20100505:2325] sbajic: Fixing group file processing for inoculation groups and classification groups (global/network)
[20100502:1500] sbajic: Fixing group file parsing and classification network and global group support
[20100502:1400] sbajic: Updating README section 2.1 (Configuring groups)
[20100501:1945] sbajic: Make LLVM clang compiler happy
[20100501:1610] sbajic: Make LLVM clang compiler happy
[20100501:1600] sbajic: Fix bug in dspam.c main()
[20100501:1555] sbajic: Fix dereference of null pointer in log_events()
[20100501:1545] sbajic: Fix pass by value bug in is_blacklisted()
[20100501:1500] sbajic: Fix various errors/bugs in MySQL driver, make the driver more resistant against locking issues and speedup SQL queries by omitting write/change to fields that are not changing their value
[20100430:2100] sbajic: Escape SQL query in _pgsql_drv_get_dbversion() for PostgreSQL driver
[20100430:1820] sbajic: Fix typo in SQL query format in _pgsql_drv_get_dbversion() for PostgreSQL driver
[20100429:1730] sbajic: Fix segmentation fault in libdspam.c introduced with last commit
[20100428:2350] sbajic: Fix double free or corruption in libdspam.c
[20100428:2345] sbajic: Fix SQL query splitting in _ds_setall_spamrecords() for the MySQL driver
[20100427:1925] sbajic: Adding man page (provided by Julien Valroff <[email protected]>) for dspam_maintenance.sh
[20100427:0230] sbajic: Speeding up purging in dspam_maintenance.sh when using SQL based purging in conjunction with dspam_clean.
[20100427:0220] sbajic: Fix handling of single char usernames in Web-UI when using large scale.
[20100426:1015] sbajic: Adding instruction to mysql_drv.txt how and when to use InnoDB with DSPAM.
[20100425:1545] sbajic: Fixing typo in dspam.cgi
[20100424:0200] sbajic: Fixing typo in UPGRADING
[20100422:0120] sbajic: Fixing operation order when escaping and shortening strings in Web-UI history page
[20100421:2200] sbajic: Adding section in UPGRADING (UPGRADING FROM 3.9.0) to explain how to change the character set/collation to latin1 (missed to mention that conversation task for the update to 3.9.0)
[20100421:2115] sbajic: Updating purge-4.1.sql to better handle tables that have mixed character sets and collations
[20100421:1135] sbajic: Fixing bugs in dspam_maintenance.sh and adding parameter --with-sql-autoupdate
[20100421:1130] sbajic: Updating PostgreSQL and SQLite3 purge scripts to have 30 days (default value used in MySQL purge script, SQLite purge script, dspam_clean and dspam.conf) purging value for Hapaxes.
[20100421:0900] sbajic: Fixing bugs in dspam_maintenance.sh
[20100419:2100] sbajic: Fixing bugs in dspam_maintenance.sh
[20100418:0235] sbajic: Fixing bugs in dspam_maintenance.sh
[20100418:0015] sbajic: Fixing bugs in dspam_maintenance.sh
[20100417:1730] sbajic: Fixing bugs in dspam_maintenance.sh
[20100417:1720] sbajic: Fixing bugs in dspam_maintenance.sh
[20100417:1715] sbajic: Fixing bugs in dspam_maintenance.sh
[20100417:1700] sbajic: Fixing bugs in dspam_maintenance.sh
[20100417:1615] sbajic: Removed "ANALYZE TABLE" from dspam_maintenance.sh for MySQL
[20100417:1615] sbajic: Updating dspam_maintenance.sh to work better under Debian Almquist Shell. Adding option to run vacuum/optimize/analyze after purging.
[20100417:1500] sbajic: Adding more debug output to libdspam
[20100417:1445] sbajic: Unifying the format of section headers (aka: # --- MySQL ---, # --- PostgreSQL ---, etc) and adding example for split configuration
[20100417:1245] sbajic: Fixing typo in libdspam when retraining message from signature with zero tokens
[20100417:0025] sbajic: Fixing typos and other errors in the man pages
[20100416:2100] sbajic: Do not attempt to retrain if zero tokens where retrieved from a signature
[20100416:1830] sbajic: Do not treat user names as email addresses when using DLMTP
[20100414:0055] sbajic: Updating dspam_maintenance.sh to use 31 days as default for system log purging. Old value was 15 days and that is way to short since the DSPAM Web-UI by default displays the last 25 days in the Administrative Suite dashboard
[20100414:0050] sbajic: Adding hidden HTML snipplet to user and admin preferences HTML template in the English Web-UI
[20100414:0040] sbajic: Fixing typo in user history page for the English Web-UI template
[20100411:1445] sbajic: Update PostgreSQL driver to be able to parse versions that have non numeric values in major, minor or micro like 'PostgreSQL 9.0alpha4 on i686-pc-linux-gnu, compiled by GCC i686-pc-linux-gnu-gcc (Gentoo 4.5.0_alpha20100401) 4.5.0-alpha20100401 20100401 (experimental), 32-bit'
[20100408:1820] sbajic: Fixed potential security issue with HTML message processing
[20100405:2215] sbajic: Fixing README regarding wrong location of dspam.conf (--sysconfdir)
[20100402:2345] sbajic: Updated UPGRADING regarding the additional lookup_tokens for PostgreSQL
[20100323:0945] sbajic: Removing some unused variables from decode.c
[20100318:0325] sbajic: Fixing reading dailyQuarantineSummary and AllowOverride evaluation in dspam_notify (still need to fix if preferences are overwritten by pref file in user home)
[20100315:2300] sbajic: Added alternating colors for the quarantine notification message
[20100315:1945] sbajic: Fixed issue with empty Message-ID in Web-UI history display
[20100313:2100] sbajic: Fixed a HTML markup error in dspam_notify and extended dspam_notify to list messages in quarantine
[20100313:0235] sbajic: Removed dependency to grep, awk, cut, wc and friends from dspam_notify and fixed a bunch of bugs in dspam_notify.
[20100313:0120] sbajic: Added installation of dspam_notify
[20100224:1815] sbajic: Adding _ds_validate_address() to test recipients for valid email address format (the check is not catching all possible invalid email addresses).
[20100219:1905] sbajic: Adding --nofork switch to prevent DSPAM to switch into background when using --daemon. New default is to fork into background when using --daemon switch. (SF ID #2955089)
[20100219:1215] sbajic: Returning non zero exit code if daemon was not able to bind to ip/port (SF Bug #2947397)
[20100218:2225] sbajic: Fixing dot escaping in LMTP protocol
[20100212:1400] sbajic: Fixing memory leaks in SQLite[2/3] driver
[20100206:0030] sbajic: Adding Russian templates
[20100202:1525] sbajic: Fixing issues with dirname() in cssclean, csscompress and cssconvert
[20100128:2340] hmonteiro: Bumped thunderbird extension version number.
[20100128:2320] hmonteiro: Converted pt-PT localized messages in thunderbird extension to UTF-8
[20100128:0130] sbajic: Removing mapiprop.dll and adding note where to download the dll and source
[20100127:2130] sbajic: Using PQescapeByteaConn instead of PQescapeBytea in PostgreSQL driver when PostgreSQL is >= 7.3
[20100127:1520] sbajic: Fixing unresolved symbols in libdspam
[20100116:1520] sbajic: Don't allow '../' or '..\' in user name
[20100115:2100] sbajic: Updating dspam_maintenance.sh to work better under Fedora
[20100114:0210] sbajic: Change password handling for MySQL/PostgreSQL in dspam_maintenance.sh
[20100111:2035] sbajic: Fixing signal handler under *BSD
[20100107:2320] sbajic: Adding option (--purgescriptdir) to dspam_maintenance.sh allowing the end-user to specify the directory where the purge scripts are located
[20100106:1605] sbajic: Fixing parallel builds
[20100106:1440] sbajic: Enhancing dspam_maintenance.sh to support DSPAM binary that does not print out configuration options when using switch "--version"
[20100106:0110] sbajic: Adding profile support to dspam_maintenance.sh. Restricting purging with dspam_maintenance.sh to only consider currently active driver.
[20100103:1520] sbajic: Changing year in copyright notices from 2009 to 2010 in dspam_maintenance.sh
[20100103:1515] sbajic: Changing year in copyright notices and version output from 2009 to 2010
[20100103:0520] sbajic: Swapping out x labels from graphs to be in strings.pl
[20100103:0415] sbajic: Fixing page direction in Hebrew templates
[20100102:2150] sbajic: Fixing typos in Hebrew template
[20100102:2030] sbajic: Fixing typos in Hebrew template
[20100102:0440] sbajic: Fixing small issue in rtl.css (used in right-to-left page direction templates)
[20100102:0400] sbajic: Fixing the display of Hebrew templates in the Web UI
[20100102:0400] sbajic: Adding TTF font support for legend, x and y labels in Web UI
[20100101:1730] sbajic: Setting 'lang_name' in Hebrew strings.pl to use HTML character entities encoding so that other languages display the language name properly even when not using CP1255/Windows-1255 encoding
[20100101:1730] sbajic: Fixing typo in Czech strings.pl
[20091231:0555] sbajic: Fixing compiler warnings
[20091231:0550] sbajic: Fixing build system for EXT_LOOKUP
[20091231:0410] sbajic: Fixing compiler warnings
[20091231:0330] sbajic: Fixing compiler warnings
[20091230:1750] sbajic: Fixing compiler warnings
[20091230:1740] sbajic: Fixing compiler warnings
[20091230:1505] sbajic: Fixing compiler warnings
[20091230:1350] sbajic: Fixing compiler warnings
[20091230:0135] sbajic: Fixing compiler warnings
[20091230:0130] sbajic: Fixing compiler warnings
[20091230:0110] sbajic: Fixing compiler warnings
[20091229:0120] sbajic: Fix small error/typo in configure.ac regarding daemon mode and hash_drv
[20091228:1100] sbajic: Adding strings.pl to Hebrew Web UI (translated by Dudi Goldenberg)
[20091226:1330] sbajic: Adding language selection drop down in Web UI and fixing some other small and big issues in the Web UI
[20091223:1030] sbajic: Adding information about sub-administrators/domain level admins to README
[20091223:0950] sbajic: Removing NCORE code, m4/libtool_hack.m4 and scripts/train.pl from DSPAM
[20091223:0205] sbajic: Fixing installtion of man pages
[20091222:1250] sbajic: Tagging a bunch of files that did not have any change tags in their header
[20091222:0210] sbajic: Adding verbose debug output to config_shared.c
[20091221:2030] sbajic: Fixing typo/bug in Makefile for the man pages
[20091221:1740] sbajic: Fixing the display of totals in the 'User Statistics' tab for the Administrative Suite of the Web UI
[20091220:2020] sbajic: Added sub-administrator functionality to Web UI
[20091220:1825] sbajic: Added option to Web UI to allow turning on/off (default off) the transformation (sender and subject) of special characters into HTML character entries
[20091220:0130] sbajic: Fixed typoe in strings.pl for German Web UI
[20091220:0045] sbajic: Removed double configuration option in configure.pl
[20091219:2215] sbajic: Fixing bug regarding "broken returnCodes" (bug was introduced in 3.9.0)
[20091219:2210] sbajic: Adding man for dspam_admin, dspam_crc and dspam_logrotate
[20091219:1830] sbajic: Updated contrib/dspam_maintenance/dspam_maintenance.sh to handle correctly split config
[20091219:1810] sbajic: Updated purge-4.1.sql SQL script for MySQL
[20091219:1650] sbajic: Updated purge.sql SQL script for MySQL
[20091219:1650] sbajic: Updated purge-4.1.sql SQL script for MySQL
[20091219:1505] sbajic: Do not log virus infected files separately if "TrackSources virus" is activated
[20091219:0540] sbajic: Updating syntax/help output for dspam_stats
[20091219:0115] sbajic: Added option "notifications" as an user preference. Works the same way as "Notifications" in dspam.conf
[20091218:2345] sbajic: Adding description to dspam.conf for option PlusedUserLowercase.
[20091218:2340] sbajic: Adding PlusedCharacter option to dspam.conf. This allows setting the separator between user names and address extensions (user+foo).
[20091218:2310] sbajic: Adding QuarantineWarnSize option to dspam.conf. This controls the size when DSPAM will send "Quarantine Full" notification messages to users
[20091218:1930] sbajic: Updating README section 7 (NOTIFICATIONS)
[20091218:0930] sbajic: Adding Czech templates for Web UI (translated by Frantisek Hanzlik <[email protected]>)
[20091218:0145] sbajic: Updated purge-4.1.sql SQL script for MySQL
[20091218:0100] sbajic: Updated purge.sql SQL script for MySQL
[20091218:0030] sbajic: Updated UPGRADING regarding indices for MySQL for speeding up purging
[20091217:2300] sbajic: Updated section 3.1 (PORTS / PACKAGES) of the README
[20091217:2255] sbajic: Small changes to MySQL 4.1+ database schema
[20091217:2250] sbajic: Fixing small typo in doc/mysql_drv.txt
[20091217:1210] sbajic: Adding code to PostgreSQL driver to not fail with an error on non fatal PostgreSQL errors
Version 3.9.0
-------------
Version 3.9.0 RC2
-----------------
[20091215:2335] sbajic: Adding contrib to distribution
[20091215:1710] sbajic: Fixing small typo in pt-BR template
[20091215:0330] sbajic: Removed LDAP driver (replaced by ExtLookup)
[20091215:0100] sbajic: Replacing non ascii characters in Romanian template with HTML characters entries
Version 3.9.0 RC1
-----------------
[20091214:1420] sbajic: Web UI changes: Fix display for history page selection and add and use function to transform some special characters (sender and subject) into HTML character entries
[20091212:0550] sbajic: Adding more comments to conigure.pl.in for the Web UI
[20091212:0545] sbajic: Fixing various issues in the CGI scripts for the Web UI
[20091209:0130] sbajic: Fixing issue with empty historical data by preinitializing empty variables for the history chart/view
[20091206:1840] sbajic: Fixing problem with fallbackDomains
[20091206:1730] sbajic: Prettifying dspam.conf and extending the notes on some configuration options
[20091205:1550] sbajic: Fixing HTML tags and some translation errors in German Web UI template
[20091204:1430] sbajic: Removed old and obsolete .cvsignore files
[20091204:1255] sbajic: Translating some left English elements in the Spanish templates for Web UI
[20091203:0255] sbajic: Adding Spanish templates for Web UI (translated by Daniel Sánchez Pearson <[email protected]>)
[20091202:0125] sbajic: Gentoo patch 8: Adding "virus" option to TrackSources
[20091201:2310] sbajic: Fixed m4 macros for SQLite/SQLite3
[20091129:1650] sbajic: Fixed and updated man files
[20091128:1000] sbajic: Replaced umlauts in German template to use HTML character encodings
[20091128:1000] sbajic: Fixed HTML markup error in pt-br/nav_fragment.html
[20091128:0030] sbajic: Fixed HTML markup error in dspam.cgi
[20091126:0050] sbajic: Adding Brazilian Portuguese templates for Web UI (translated by Felipe Szczesny Rout <[email protected]>)
[20091125:0940] sbajic: Fix Web UI access in admin area to userdir in case of domainscale and a username beginning with @ or in case of empty domain
[20091125:0930] sbajic: Fix Web UI access to userdir in case of domainscale and a username beginning with @
[20091118:1700] sbajic: Require @ in username for fallbackDomains to work and don't allow calling ctx_init() without or with empty username
[20091117:1705] sbajic: Enhancing HTML message processing
[20091115:2050] sbajic: Updating documentation
[20091115:1250] sbajic: Fixing missing <HTML> start tag in nav_fragment.html for EN, FR and RO
[20091114:1140] sbajic: Fixing bugs in _ds_get_nextuser(), _ds_get_nexttoken() and _ds_get_nextsignature() in the PostgreSQL driver
[20091114:0120] sbajic: Fixing compile failure of the PostgreSQL driver tool dspam_pg2int8
[20091113:2225] sbajic: Adding documentation into MySQL driver source code for _ds_get_nextuser(), _ds_get_nexttoken() and _ds_get_nextsignature()
[20091113:2155] sbajic: Fixing bug in _ds_get_nextuser() and _ds_get_nexttoken() in MySQL driver
[20091113:2050] sbajic: Fixing bug in _ds_get_nextsignature() in MySQL driver
[20091113:1410] sbajic: Reverting one block from submit ec9a6de09f178eaf838aad5b66b07b15951d6ef3 that breaks decoding base64/quoted-printable
[20091113:0400] sbajic: Fixing memory leak in dspam_merge.c
[20091113:0345] sbajic: Fixing file descriptor leak in PostgreSQL driver
[20091113:0340] sbajic: Fixing file descriptor leak in MySQL driver
[20091113:0310] sbajic: Speeding up various functions in dspam.c
[20091112:2325] sbajic: Fixing bug in quoted printable decoding
[20091105:2025] sbajic: Adding German templates for Web UI
[20091105:1655] sbajic: Added missing files into various make files
[20091104:0255] sbajic: Removed non properly working OSB for PValue
[20091104:0255] sbajic: Speeding up _ds_calc_result()
[20091104:0145] sbajic: Updating make files to include changes mentioned in log entry [20090818:0100]
[20091103:1843] sbajic: Typo fixes in the french WebUI (patch provided by Julien Valroff <[email protected]>)
[20091103:0945] sbajic: Fixing build issues in Mac OS X
[20091029:0810] sbajic: Fixing build issues in Mac OS X
[20091028:1018] sbajic: Fixing build issues of dynamically linked libraries
[20091028:0028] sbajic: Changes in External Lookup
* Removing not needed header files (agent_shared.h)
* Decoupling dependency to OpenLDAP (if the libraries are there
then LDAP lookups are enabled in External Lookup else LDAP
lookups are disabled in the External Lookup module)
Version 3.9.0 BETA4
-------------------
[20091027:1300] sbajic: Fixing various issues (memory leaks and logical errors) in PostgreSQL driver
Version 3.9.0 BETA3
-------------------
[20091016:1022] sbajic: Fixing (potential) branching on uninitialized variable in SQLite3 driver
[20091016:0116] sbajic: Removing unused variables in SQLite3 driver
[20091016:0112] sbajic: Fixing (potential) call to readdir with NULL argument in SQLite3 driver
[20091012:1012] sbajic: Fixing compiler warnings
[20091012:1010] sbajic: Fixing compiler warnings
[20091012:1005] sbajic: Fixing compiler warnings
[20091012:1000] sbajic: Fixing compiler warnings
[20091012:0905] sbajic: Fixing compiler warnings
[20091012:0903] sbajic: Fixing compiler warnings
[20091012:0847] sbajic: Fixing compiler warnings
[20091012:0832] sbajic: Fixing compiler warnings
[20091012:0824] sbajic: Fixing compiler warnings
[20091012:0743] sbajic: Fixing compiler warnings
[20091009:2228] sbajic: Fixing compiler warnings
[20091009:2218] sbajic: Fixing compile error introduced by last commit
[20091009:2211] sbajic: Fixing compiler warnings
[20091009:2203] sbajic: Fixing compiler warnings
[20091009:2155] sbajic: Fixing compiler warnings
[20091009:2125] sbajic: Removing unused variables in retrain_message()
[20091009:2120] sbajic: Removing unused variables in process_message()
[20091009:2115] sbajic: Removing unused variables in process_message()
[20091009:2115] sbajic: Fixing (potential) dereference of null pointer in daemon.c
[20091009:2110] sbajic: Fixing (potential) dereference of null pointer in dspam_clean.c
[20091009:2055] sbajic: Fixing (potential) dereference of null pointer in dspam_clean.c
[20091009:2048] sbajic: Fixing (potential) call to strncasecmp with NULL argument in daemon.c
[20091009:2035] sbajic: Fixing (potential) call to readdir with NULL argument in hash driver
[20091008:2321] sbajic: Fixing variable declaration in MySQL driver introduced in last commit
[20091008:2311] sbajic: Code cleanup (limiting scope of variables)
[20091008:2122] sbajic: Fixing return code in send_socket()
[20091008:2110] sbajic: Removing unused code in client_process()
[20091008:2045] sbajic: Removing unused code in base64decode() when using NCORE
[20091008:2045] sbajic: Removing unused variables in base64decode() when using NCORE
[20091008:2045] sbajic: Removing code in _ds_calc_result() (speeding up Robinson algorithm)
[20091008:2038] sbajic: Removing unused variables in csscompress()
[20091008:2031] sbajic: Removing unused variables in cssstat()
[20091008:2025] sbajic: Removing unused variables in bnr_hash_set()
[20091008:2020] sbajic: Removing unused code from _ds_calc_result()
[20091008:2010] sbajic: Removing unused variables from MySQL driver in _ds_get_nextuser()
[20091008:1915] sbajic: Removing unused variables in bnr_hash_value()
[20091008:1908] sbajic: Removing unused variables in find_signature()
[20091008:1900] sbajic: Fixing broken return code in process_users()
[20091008:1850] sbajic: Removing unused variables in _ds_ff_pref_load()
[20091008:1840] sbajic: Removing unused variables in _ds_degenerate_message()
[20091005:2138] sbajic: The README has twice a list of members. Updated the second list to be in sync with the first one.
[20091005:2135] sbajic: Changing how control tokens are matched when computing probability for Markovian weightening and OSB/OSBF/WINNOW weightening
[20091005:1600] sbajic: Adding Hugo Monteiro to the README
[20090925:2005] sbajic: Take care of internal tokens (control, whitelist, frequency and BNR) when computing probability for Markovian weightening and OSB/OSBF/WINNOW weightening
[20090924:2356] sbajic: Adding OSB/OSBF/WINNOW weightening
[20090917:1040] sbajic: Fixing memory leak in dspam.c (closing SF Bug ID #2853124)
[20090917:1025] sbajic: Fixing missing close of sockets in has_virus() and feed_clam() (closing SF Bug ID #2853156)
[20090917:1010] sbajic: Fixing freeing of unallocated pointers (closing SF Bug ID #2853164)
[20090912:0925] sbajic: Fixing LOG/LOGFILE writing (closing SF Bug ID #2837832)
[20090910:2105] sbajic: Fixing memory leak in dspam.c (closing SF Bug ID #2853133)
[20090910:2100] sbajic: Fixing missing {} block in dspam.c (closing SF Bug ID #2853138)
[20090910:2045] sbajic: Fixing null pointer deallocation in libdspam (closing SF Bug ID #2853177)
[20090910:2040] sbajic: Fixing memory leak in libdspam (closing SF Bug ID #2853181)
[20090910:2035] sbajic: Fixing memory leak in libdspam (closing SF Bug ID #2853188)
[20090821:0115] sbajic: Fixing CSS and JavaScript issues in IE7/IE8 (The absolute worst browser when it comes to supporting the standards is Internet Explorer!) (closing SF Bug ID #2841370)
[20090819:1520] sbajic: Fixing one more compiling issue under uClibc
[20090819:1520] sbajic: Fixing compiling issue under uClibc
[20090818:1650] sbajic: Fixing one missed label to be swapped out in the CGIs
[20090818:1055] sbajic: Fixing typo in dspam.conf
[20090818:0120] sbajic: Adding Romanian and French templates to be build by regular make file
[20090818:0115] sbajic: Adding French templates for Web UI (provided and translated by Julien Valroff <[email protected]>)
[20090818:0100] sbajic: Swap out text/labels from the CGIs into external file (patch from Julien Valroff <[email protected]> slightly modified)
[20090815:1400] sbajic: Fixing memory leak in dspam.c
[20090804:1150] sbajic: Adding Hebrew templates for Web UI (translated by Dudi Goldenberg)
[20090803:0730] sbajic: Fixing compiler warnings
[20090803:0655] sbajic: Fixing dynamic build of storage drivers
[20090802:2010] sbajic: Fixing resource leak in hash driver
[20090802:1915] sbajic: Added script to contrib for purging old tokens and log entries
[20090802:1745] sbajic: Fixing dynamic build of storage drivers (closing SF Bug ID #2811139)
[20090802:1630] sbajic: Fixing location for notification files (closing SF Bug ID #2825171)
[20090801:2057] itetcu: contrib/Lotus Notes --> contrib/lotus_notes
[20090801:1455] sbajic: Adding German language files for Thunderbird plugin
[20090729:1600] sbajic: Fixing typos and logical errors from last commit (closing SF Bug ID #2829650)
[20090728:1600] sbajic: Fixing segmentation fault when using groups and the calling username does not have a '@' character
[20090726:1215] sbajic: Fixing dspam.cgi error from last commit
[20090724:2300] sbajic: Fixing bug when retraining (with signature) a virus tagged message (closing SF Bug ID #2826644)
[20090724:0120] sbajic: Fixing bug in hash driver that prevented retraining with signature
[20090720:2345] sbajic: Setting/reverting libdspm version back to 3.6.0 since no ABI/API changes have been done on libdspam for 3.9.0
[20090720:2330] sbajic: Fixing typos and errors from last commit (more logging and updates to Web UI)
[20090720:0100] sbajic: Added more logging tags and updated Web UI to support them
[20090719:2130] sbajic: Adding multi-language support to Web UI
[20090719:1750] sbajic: Fixing version display in Web UI
[20090712:2325] sbajic: Code cleanup (limiting scope of variables) and fixing resource leak in dspam_pg2int8
[20090711:1655] sbajic: Fixing bug in cssconvert and csscompress (closing SF Bug ID #2819960)
[20090711:0910] sbajic: Casting call in _ds_degenerate_message() to _ds_strip_html() function
[20090707:0930] sbajic: Fixing bug in src/hash_drv.c (closing SF Bug ID # 2817736)
[20090705:1910] sbajic: Removing 3th parameter in calls to _ds_find_header()
[20090705:1905] sbajic: Removing parameter from _ds_find_header() for case insensitivity
[20090705:1850] sbajic: Adding more debug output if verbose is turned on
[20090705:1800] sbajic: Fixing typo in src/tokenizer.c
[20090705:1435] sbajic: Fixing comparing for header field names to be case insensitive (see RFC822 section B.2)
[20090701:1430] sbajic: Fixing a case where a memory allocation error in decode.c was not handled correctly
[20090629:2145] sbajic: Adding script for Lotus Notes into contrib directory
* Added Lotus Notes/Domino LotusScript Library (libDSPAMReporting.lss) into
the contrib directory. The LotusScript Library can be used together with
IBM Lotus Notes/Domino for retraining messages with the Lotus Notes
Client.
[20090628:1350] sbajic: Closing SF Bug ID #2813474
* Applying patches submitted by Andreas Schneider <[email protected]>:
* Fix a build warning in util.h/util.c
* Check return values of system functions for the hash driver
* Fix a compile warning that init_pwent_cache() has no prototype
[20090627:0404] sbajic: Removing Mac OS X patch for the duplicate symbol issue
[20090627:0228] sbajic: Fixing compiler warnings in cssclean.c and util.c
[20090627:0222] sbajic: Fixing broken return value in bnr_list_node_create()
[20090627:0204] sbajic: Fixing compiling issue (duplicate symbol _agent_config in .libs/read_config.o and .libs/pref.o) on Mac OS X
[20090627:0157] sbajic: Added csscompress to be build for the hash driver
[20090627:0143] sbajic: Fixing PostgreSQL driver
* Fixing SQL query in _ds_getall_spamrecords when using lookup_tokens
[20090625:0242] sbajic: Fixing resource leak in dspam.c
[20090625:0115] sbajic: Code cleanup in MySQL driver
[20090624:1622] sbajic: Fixing typo in configure.pl.in (SF Bug ID #2811562)
[20090623:2300] sbajic: Speed up of PostgreSQL driver
* Avoid calling _pgsql_drv_token_type() in _ds_get_nexttoken(). The token
field is either NUMERIC(20) or BIGINT for the dspam_token_data table per
made connection to the PostgreSQL database. No need to check that for
each and every token in _ds_get_nexttoken().
Version 3.9.0 ALPHA2
--------------------
[20090623:2255] sbajic: Code cleanup in MySQL and PostgreSQL driver
[20090623:2157] sbajic: Removing not needed index from PostgreSQL schema
[20090620:2130] sbajic: Updating documentation for Postfix integration
Version 3.9.0 ALPHA
-------------------
[20090617:0100] sbajic: Code cleanup in PostgreSQL driver
[20090615:0300] sbajic: Fixing typo in MySQL documentation
[20090615:0215] sbajic: MySQL driver changes
* Close properly the diction when exiting
* Update documentation for MySQL driver
[20090615:2355] sbajic: SQLite3 driver, purge script and documentation update
Change the SQLite3 driver to be closer to the changes recently done in the
MySQL and PostgreSQL driver. The changes for the SQLite3 driver include:
* Set all statistical counters to be unsigned
* Fix memory leaks
* Reduce memory footprint
* Fix issues with escaped SQL queries
* Add more debug output (only if debug is enabled)
* Micro speed and memory consumption improvements by removing not needed
whitespace from SQL queries.
* Update SQLite3 purge script
* Update documentation for SQLite driver
Database schema has not changed. Users from pre 3.9.0 can just use the new
driver without the need to run migration commands on the database.
[20090611:0140] sbajic: Reduce calls to dspam binary in the WebUI
[20090610:2255] sbajic: Fixing build problems when building on uClibc [Bug ID #2803122]
* Fixed use of inet_ntoa_r on uClibc
[20090606:1700] sbajic: Fixing potential free of null pointer in pwent cache
[20090606:1043] sbajic: Fixing build problems when building against SQLite3 3.6 series
* Fixed issues with m4 macro when building against SQLite 3.6.x [Bug ID #2774657]
[20090605:0925] sbajic: Fixing access of deallocated variables in hash driver
* Fixed using of deallocated variable in _ds_get_nextuser
[20090604:1515] sbajic: Fixing memory leaks and using of deallocated variables in SQLite/SQLite3 driver
* Fixed memory leak in _ds_set_signature (SQLite3 driver)
* Fixed memory leak in _ds_get_nextsignature (SQLite driver)
* Fixed using of deallocated variable in _ds_get_nextuser (SQLite3 and SQLite driver)
[20090602:1329] sbajic: Fixing primary dspam processing agent
* Properly terminating primary dspam processing agent when called in client mode
[20090602:0244] sbajic: Fixing primary dspam processing agent
* Properly terminating primary dspam processing agent
* Reducing still reachable memory to be on par with the lightweight client-only call
[20090602:0133] sbajic: MySQL driver changes
* Fixing loop in MySQL driver introduced by latest MySQL driver patch
[20090602:0124] sbajic: Fixing compiler warnings
[20090602:0043] sbajic: PostgreSQL and MySQL driver changes
Changing the PostgreSQL and MySQL driver source to be more congruent with each
other.