forked from milter-manager/milter-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2274 lines (1468 loc) · 52 KB
/
NEWS
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
# -*- rd -*-
= NEWS --- The history of milter manager
== [release-2-1-5] 2.1.5: 2019-09-10
=== Document
==== Improvements
* Updated installation manual for CentOS 7
* Removed obsolete AllowSupplementaryGroups option because
it was deprecated since ClamAV 0.100.0
==== Fixes
* Fixed to use [Reported by Kazuhiro NISHIYAMA][GitHub #137]
* Fixed "Authentication" typos in configuration document [Patch by SATOH Kiyoshi][GitHub #138]
* Fixed missing database.host in configuration document [Reported by SATOH Kiyoshi]
=== Package
==== Improvements
* Dropped CentOS 6 support
* Added a sample Ruby milter script that replaces content
==== Fixes
* Fixed to use Ubuntu version instead of code name not to fail package upgrade.
[Reported by Kazuhiro NISHIYAMA][GitHub #137]
=== Thanks
* Kazuhiro NISHIYAMA
* SATOH Kiyoshi
== [release-2-1-4] 2.1.4: 2018-07-06
=== Document
==== Fixes
* Install Japanese documents properly [Reported by OBATA Akio][GitHub #136]
=== Thanks
* OBATA Akio
== [release-2-1-3] 2.1.3: 2018-07-05
=== Document
==== Fixes
* Revive missing Japanese documents [Reported by OBATA Akio][GitHub #136]
=== Thanks
* OBATA Akio
== [release-2-1-2] 2.1.2: 2018-07-03
=== Package
==== Improvements
* Drop Ubuntu Yakkety Yak (16.10) support
* Drop Ubuntu Zesty Zapus (17.04) support
* Add Ubuntu Artful Aardvark (17.10) support
* Add Ubuntu Bionic Beaver (18.04) support
* Drop Debian Jessie support
* Update Ruby version to 2.3.5 on CentOS6
=== milter manager
==== Fixes
* Fix a bug that Rspamd auto detection failure [Reported by whyscream][GitHub #128]
=== Known issues
* We cannot use rspamd_proxy as a child milter of milter-manager [GitHub #134]
=== Thanks
* whyscream
== [release-2-1-1] 2.1.1: 2017-06-27
=== Package
==== Improvements
* Drop Ubuntu Precise Pangolin (12.04) support
* Add Ubuntu Zesty Zapus (17.04) support
* Add Debian Buster support
=== milter core
==== Improvements
* binding ruby: Update bundled ruby-gnome2 to 3.1.1
=== milter manager
* Support auto detection for ((<Rmilter|URL:https://rspamd.com/rmilter/>)) (experimental)
* Rmilter has been obsolete since Rspamd 1.6, use ((<Rspamd proxy|URL:https://rspamd.com/doc/workers/rspamd_proxy.html>))
* Support auto detection for ((<Rspamd proxy|URL:https://rspamd.com/doc/workers/rspamd_proxy.html>)) (experimental)
== [release-2-1-0] 2.1.0: 2016-11-21
A bug fix release of 2.0.9
Move to OSDN from sourceforge.net
See https://milter-manager.osdn.jp/
We are using following features on OSDN:
* Web site
* Redirect to milter-manager.osdn.jp from milter-manager.sourceforge.net
* File release
* We've already copied all released contents to OSDN
* Mailing list
* We will transfer accounts automatically
* We will not transfer mailing list archives
* News
* sourceforge.net does not have this feature
Download packages:
* deb packages for Ubuntu: launchpad.net
* https://launchpad.net/~milter-manager/+archive/ubuntu/ppa/+packages
* deb packages for Debian: packagecloud
* https://packagecloud.io/milter-manager/repos/install
* RPM: packagecloud
* https://packagecloud.io/milter-manager/repos/install
* tar ball: OSDN
* https://osdn.net/projects/milter-manager/releases/
=== Package
==== Improvements
* Add Ubuntu Yakkety (16.10) support
=== milter manager
==== Fixes
* Boot automatically after reboot the CentOS7 host
* Fix milter-greylist default config file path for pkgsrc
[Pull request by OBATA Akio][GitHub #99]
==== Improvements
* Add DNSBL applicable condition
[Pull request by Yuto Hayamizu][GitHub #108]
=== milter client
==== Fixes
* Fix the bug that milter cannot run with --n-workers=1 or more
=== milter serever
==== Improvements
* Add --all-timeout option to milter-test-server command
[Pull request by HorimotoYasuhiro][GitHub #101]
=== Thanks
* OBATA Akio
* Yuto Hayamizu
* Horimoto Yasuhiro
== [release-2-0-9] 2.0.9: 2016-06-15
A bug fix release of 2.0.8
=== milter manager
==== Fixes
* Detect milters properly on CentOS6, CentOS7
== [release-2-0-8] 2.0.8: 2016-06-15
A bug fix release of 2.0.7
You need to update /etc/apt/sources.list.d/milter-manager.list before
you update packages if you have already installed milter-manager.
For example, on Debian (jessie) /etc/apt/sources.list.d/milter-manager.list:
deb http://downloads.sourceforge.net/project/milter-manager/debian/stable jessie main
deb-src http://downloads.sourceforge.net/project/milter-manager/debian/stable jessie main
Ubuntu: Add ppa:milter-manager/ppa
% sudo apt-get -y install software-properties-common
% sudo add-apt-repository -y ppa:milter-manager/ppa
% sudo apt-get update
CentOS: Update milter-manager-release to 1.3.0
% sudo yum install -y \
http://sourceforge.net/projects/milter-manager/files/centos/milter-manager-release-1.3.0-1.noarch.rpm
=== Package
==== Fixes
* Suppress warnings (false detection) by lintian
[Patched by Youhei SASAKI]
* Keep files that is needed when rebuild document under debian
directory while building deb package. We need this for clean
build. [Patched by Youhei SASAKI]
* Update apt-line for Debian to correspond specification change of
SourceForge.net
* Create APT repository for Debian stretch properly
* Update mitler-manager-release for CentOS to correspond
specification change of SourceForge.net. You cannot update
milter-manager via yum command If you use milter-manager-release
before 1.3.0.
==== Improvements
* Drop Debian wheezy support
* Add Ubuntu Xenial (16.04 LTS) support
* Drop Ubuntu Wily (15.10) support
* Drop Ubuntu Vivid (15.04) support
* Add systemd support for deb packages (Except Ubuntu Precise(12.04))
* Update Ruby to 2.2.5 on CentOS6
* systemd support is stable on CentOS7
* Arrange build script for CentOS
[Patched by Hiroshi Ohkubo][GitHub #92]
=== milter manager
==== Fixes
* Fix milter-manager-log-analyzer errors with RRDtool 1.5
[Reporde by Dave Dodd][milter-manager-users-en]
* Use "_" instead of "-" to avoid bug of RRDtool 1.5
[Reporde by Dave Dodd][milter-manager-users-en]
* Fix a bug that configure option --with-bundled-ruby-glib2 does not
work properly on BSD.
=== libmilter-compatible
==== Fixes
* Set timeout properly using smfi_settimeout()
=== Ruby milter
==== Fixes
* Fix error when --fallback-status=temporary-failure
[Patched by Nobuhiko MIYAHARA][GitHub #87]
=== Document
==== Improvements
* Add link to Russian translation
[Translated by Alisa Bagrii]
* Update document for recent clamav-milter on Debian/Ubuntu
[Reported by Kazuhiro NISHIYAMA][GitHub #90]
* Create socket directory when install on Debian/Ubuntu
[Reported by Kazuhiro NISHIYAMA][GitHub #91]
=== Thanks
* Youhei SASAKI
* Nobuhiko MIYAHARA
* Alisa Bagrii
* Kazuhiro NISHIYAMA
* Dave Dodd
* Hiroshi Ohkubo
== [release-2-0-7] 2.0.7: 2015-11-30
A bug fix release of 2.0.6
=== Package
==== Fixes
* Fix milter-manager(1) and html documents
== [release-2-0-6] 2.0.6: 2015-11-30
A bug fix release of 2.0.5.
=== Package
==== Fixes
* Add missing dependency for deb Package
[Reported by Christian Use][milter-manager-users-en]
==== Improvements
* Add Debian stretch support
* Add Ubuntu Vivid (15.04) support
* Add Ubuntu Wily (15.10) support
* Drop Ubuntu lucid (10.04) support
* Drop Ubuntu Saucy (13.10) support
* Drop Ubuntu Utopic (14.10) support
* Use Ruby 2.2.3 on CentOS6
* Add systemd support on CentOS7 (experimental)
=== milter manager
==== Improvements
* Update bundled libev to 4.19
* Update bundled ruby-glib2 to 2.2.5
=== milter core
==== Improvements
* --log-level and --log-item can accepts multiple values separated by pipe "|" such as "info|default"
[Reported by TOMITA Masahiro]
* Don't colorize log by default when output is file
[Reported by TOMITA Masahiro][GitHub #58]
=== Ruby milter
==== Improvements
* Add Milter::ServerContext#negotiate
* Add Milter::ServerContext#data
* Add Milter::ServerContext#abort
* Add Milter::ServerContext#quit
* Add Milter::ServerContext#reset_message_related_data
* Add Milter::Headers and Milter::Header
* Add Milter::Status#pass?
* Add sample/milter-test-server.rb
=== Document
==== Fixes
* Fix typos
[Patched by Youhei SASAKI][GitHub #82]
=== Thanks
* TOMITA Masahiro
* Christian Use
* Hiroshi Hatake
* Toshio Maki
* Youhei SASAKI
== [release-2-0-5] 2.0.5: 2014-12-09
A bug fix release of 2.0.4.
Add experimental APIs can hold data between the mail transaction.
=== Package
==== Improvements
* Drop CentOS5 support
* Add CentOS7 support
* Drop Ubuntu Saucy (13.10) support
* Add Ubuntu Utopic (14.10) support
* Build deb packages in clean room
[Patched by Youhei SASAKI][milter-manager-users-ja:00224]
* Improve auto detection for ruby-glib2
[Suggested by Youhei SASAKI and Kazuhiro NISHIYAMA][milter-manager-users-ja:00243]
* Require libev
[Reported by OBATA Akio][GitHub #48][GitHub #49]
=== milter manager
==== Fixes
* Ensure to set UTF-8 encoding to file content
[Reported by Panagiotis Skarvelis][SF.net #6]
=== milter-client
==== Improvements
* Add APIs can hold data between the mail transaction. (experimental)
=== Ruby milter
==== Improvements
* Drop Ruby1.8 support
* Add APIs can hold data between the mail transaction. (experimental)
==== Fixes
* Setup signal handler when invoke milter in single process mode
[GitHub #53]
=== Document
==== Fixes
* Execute sa-update before invoke sa-spamd on FreeBSD
[Reported by moto kawasaki][milter-manager-users-ja:00250]
=== Thanks
* Youhei SASAKI
* Kazuhiro NISHIYAMA
* OBATA Akio
* Panagiotis Skarvelis
* moto kawasaki
== [release-2-0-4] 2.0.4: 2014-06-20
A bug fix release of 2.0.3
=== Ruby milter
==== Improvements
* Add Milter::Client::Test::MilterRunner
* Add Milter::Client::EnvelopeAddress
==== Fixes
* Fix the bug that milter written in Ruby cannot finish properly on multiple CPU environment
== [release-2-0-3] 2.0.3: 2014-05-20
A bug fix release of 2.0.2
=== Package
==== Improvements
* Drop Ubuntu Quantal (12.10) support
* Drop Ubuntu Raring (13.04) support
* Add Ubuntu Trusty (14.04) support
* Drop Debian squeeze support
* rpm: Update Ruby1.9.3 package for CentOS6 to Ruby1.9.3-p545.
=== milter manager
==== Improvements
* Update bundled libev to 4.15
==== Fixes
* Fix a bug that data_stopper cannot stop apply children
[GitHub #39]
=== Ruby milter
==== Improvements
* Update bundled glib2 to 2.2.0
* Milter::Logger methods can accept a block
=== Document
==== Fixes
* Fix typos in FreeBSD installation
[Patched by Dave Dodd]
=== Thanks
* Dave Dodd
== [release-2-0-2] 2.0.2: 2014-01-27
A bug fix release of 2.0.1
=== Package
==== Fixes
* Add Ubuntu Lucid (10.04) support again
[Reported by Mitsuru Ogino][milter-manager-users-ja:00229]
=== Thanks
* Mitsuru Ogino
== [release-2-0-1] 2.0.1: 2014-01-24
A bug fix release of 2.0.0.
=== milter manager
==== Improvements
* Support SIGUSR1 signal to reopen log file
==== Fixes
* Drop functionality to report stack trace on crash.
Because it is unsafe for all users. [GitHub #38]
=== milter-core
==== Improvements
* Support log output by MILTER_LOG_PATH environment variable.
=== milter-client
==== Improvements
* Support --log-path option.
=== Ruby milter
==== Improvements
* Support --log-path option.
* Support SIGUSR1 signal to reopen log file.
=== Package
==== Improvements
* Drop Ubuntu Lucid (10.04) support.
* Add Ubuntu Saucy (13.10) support.
* deb: Support Ruby 2.0.0 detection on Debian.
* rpm: Update Ruby1.9.3 package for CentOS6 to Ruby1.9.3-p484.
* Remove auto-generated files from distribution archive.
[Reported by Youhei SASAKI][milter-manager-users-ja:00225]
=== Document
==== Improvements
* Update to the latest milter-greylist RPM.
[Reported by ishizaka tadanori][milter-manager-users-ja:00220]
* Improve English version reference manual.
[GitHub #17]
=== Thanks
* Youhei SASAKI
* ishizaka tadanori
== [release-2-0-0] 2.0.0: 2013-07-25
The major version up about 2 years!
There are no incompatible changes between 1.8.9 and 2.0.0. This
version is compatible to 1.8.x, so you can upgrade without editing
config files.
The reasons:
* We are developing milter manager continuously.
* We think milter manager is stable enough.
We released milter manager 1.8.0 at 2011/06/10. There are 10 releases
between 1.8.0 and 2.0.0. We have developed milter manager continuously.
milter manager 2.0.0 is more stable than 1.8.0, because users have
been increased and reported issues. We have been able to fix problems,
because users have reported a lot of problems. Of course, milter
manager is very stable, and Ruby/milter (functionality which you can
write milter in Ruby) is also stable enough. We have reflected our
knowledge that we have developed milter written in Ruby to
Ruby/milter.
We can say that milter manager 2.0.0 is better than 1.8.0 with
confidence. Let's try milter manager if you haven't used milter
manager yet.
=== milter-test-server
==== Improvements
* Support multiline header. [GitHub #33]
=== Ruby milter
==== Fixes
* Fix a bug that reject/temporary failure on envelope recipient
calls reset.
== [release-1-8-9] 1.8.9: 2013-06-28
A bug fix release of 1.8.8.
=== Package
==== Improvements
* [rpm] Update Ruby1.9.3 package for CentOS6 to Ruby1.9.3-p448
released on 2013-06-27
=== milter manager
==== Fixes
* [binding][ruby] Fixed a bug that milter-manager couldn't detect
socket path if greylist.conf includes socket path with
permission.
== [release-1-8-8] 1.8.8: 2013-06-25
A bug fix release of 1.8.7.
=== Package
==== Fixes
* [rpm] milter-manager-log-analyzer should include cron configuration.
[Reported by Satoru Sakashita][milter-manager-users-ja:00200]
* [deb] Remove old configuration file installed by milter-manager.
[Reported by Youhei SASAKI][milter-manager-users-ja:00202]
=== Known Issues
* [test] Failed some test cases using rrdtool on some environments.
[Reported by Hirohisa Yamaguchi][GitHub #29]
=== Thanks
* Satoru Sakashita
* Youhei SASAKI
* Hirohisa Yamaguchi
== [release-1-8-7] 1.8.7: 2013-06-14
A bug fix release of 1.8.6.
=== Package
* [rpm] Keep user configuration settings on upgrade.
* [deb][rpm] Separate milter-manager-log-analyzer from milter-manager.
[Reported by Kazuhiro NISHIYAMA][GitHub #21]
* Use Ruby1.9 on CentOS6 or later.
* Drop Ubuntu Oneiric Ocelot(11.10) support.
* Add Ubuntu Raring Ringtail(13.04) support.
* Add Debian jessie support.
=== milter manager
==== Improvements
* Support Ruby2.0.0.
==== Fixes
* [debian] Support init file that contains non-ASCII characters.
[Reported by Kazuhiro NISHIYAMA][GitHub #23]
=== milter-manager-log-analyzer
==== Fixes
* Process mail log even if it includes invalid byte sequence.
[Reported by Satoru Sakashita][GitHub #24]
=== Admin
* Dropped.
=== Thanks
* Kazuhiro NISHIYAMA
* Satoru Sakashita
== [release-1-8-6] 1.8.6: 2013-03-07
A bug fix release of 1.8.5.
=== milter-core
==== Improvements
* [core][event-loop] Add an API to customize event loop on your own.
==== Fixes
* [core][event-loop] Fix to work broken libev backend with Ruby 1.9.
=== milter manager
==== Improvements
* Add max-pending-finished-sessions as configuration option.
If the number of current pending finished sessions is larger than
'max-pending-finished-sessions', the current pending finished sessions are
freed immediately.
=== milter-client
==== Improvements
* Add --max-pending-finished-sessions command line option.
=== Ruby milter
==== Improvements
* Add an API to customize event loop on your own from Ruby.
* Support manager.max_pending_finished_sessions.
* Add API to reset when transaction is finished.
Use this API to avoid not to share instance information for each transaction unexpectedly.
=== Document
==== Improvements
* Add documentation about manager.max_pending_finished_sessions
* Add API to reset transaction.
==== Fixes
* Fix the default value of manager.maitenance_interval which is not correct.
== [release-1-8-5] 1.8.5: 2012-12-03
A bug fix release of 1.8.4.
=== Package
* Drop Ubuntu Natty Narwhal support.
* Fix broken documents.
=== Ruby milter
* Fix a typo in test for Ruby1.8.
[Pull requested by umq]
=== Thanks
* umq
== [release-1-8-4] 1.8.4: 2012-11-21
A bug fix release of 1.8.3.
=== Package
* Added Ubuntu Quantal Quetzal support.
* Provided packages built by using Ruby1.9 on following distributions:
Debian wheezy, Debian sid, Ubuntu Precise Pangolin, Ubuntu Quantal Quetzal
* Added missing fixture files into tar.gz.
[Reported by Hirohisa Yamaguchi]
* Solaris: Added missing SMF method file into tar.gz.
[Reported by @ftnk]
* yum: Rename yum repository pacakge.
milter-manager-repository -> milter-manager-release
* deb: Use Ruby1.9 by default.
* deb: Rename packages for Ruby binding.
libmilter-*-ruby1.8 -> ruby-milter-*
=== milter manager
==== Improvements
* configure: Specify Ruby/GLib2 version to --with-bundled-ruby-glib2 option
==== Fixes
* manager: Suppressed compiler type warnings.
[GitHub #12]
[Reported by Hirohisa Yamaguchi]
* debian cron: used mail.log instead of mail.info
[milter-manager-users-ja:00171]
[Reported by Kazuhiro NISHIYAMA]
=== milter-core
==== Improvements
* Supported MILTER_DEBUG=fatal-criticals.
* binding ruby: milter callback arguments are ASCII_8BIT.
[GitHub #3]
==== Fixes
* Fixed an issue which a following warning is shown when running at high loads.
"g_io_channel_write_chars: assertion `channel->is_writeable' failed"
=== Admin
==== Improvements
* Upgraded to Rails2.3.14
=== Document
==== Fixes
* Fixed about install sequence on CentOS.
[GitHub #13]
[Reported by Kunkichi]
=== Thanks
* Hirohisa Yamaguchi
* Kazuhiro NISHIYAMA
* @ftnk
* Kunkichi
== [release-1-8-3] 1.8.3: 2012-05-22
A bug fix release of 1.8.2.
=== Package
* [ubuntu] Added Ubuntu Precise Pangolin support.
* [solaris] Use pkgutil instead of pkg-get.
[GitHub #6]
[Reported by h0lzi]
=== milter manager
==== Improvements
* binding ruby: update bundled ruby-glib2 to 1.1.3
==== Fixes
* [manager] support manager.event_loop_backend = "libev" on CentOS.
[Reported by SHIONO Kenji]
* [manager][children] use gulong instead of guint.
g_signal_connect() returns gulong.
=== milter-core
==== Fixes
* [libev] check whether the next id is used or not.
=== Document
==== Fixes
* doc install debian ubuntu: add missing postfix group related configuration
milter-manager user should belong to postfix group to access a socket
of other milter.
[milter-manager-users-ja:00163]
[Suggested by Satoru Sakashita]
* doc debian: adjust to the latest squeeze environment
[Suggested by Satoru Sakashita]
=== Thanks
* Satoru Sakashita
* SHIONO Kenji
* h0lzi
== [release-1-8-2] 1.8.2: 2011-11-29
A bug fix release of 1.8.1.
=== milter-core
==== Fixes
* [event-loop][glib] fix memory leaks since 1.6.6.
* [core] fix memory leak when delete header.
== [release-1-8-1] 1.8.1: 2011-11-12
A bug fix release of 1.8.0.
Now, manager.event_loop_backend and manager.n_workers aren't
experimental!
=== Package
* [ubuntu] Added Ubuntu Oneiric Ocelot support.
* [centos] Added CentOS 6 support.
* Changed GPG key to sign packages.
=== milter manager
==== Improvements
* [applicable-condition][sendmail] clear DNS cache for each 100 IP
addresses.
==== Fixes
* detach IO for launcher on daemon mode.
use milter_client_is_run_as_daemon() to get whether daemonize or
not. [Reported by OBATA Akio]
* add a workaround for Ruby cleanup.
If environment variable
MILTER_MANAGER_RUBY_STOP_TIMER_THREAD_BEFORE_CLEANUP=yes,
skip timer thread before cleanup.
* use rb_fork() as fork implementation.
This will fix --daemon doesn't work on *BSD.
[Reported by OBATA Akio]
* use INCLUDES to use configured libev include path rather than
CPPFLAGS. [Reported by moto kawasaki]
=== milter-core
==== Fixes
* fix missing null FD close by inverted condition.
[Reported by OBATA Akio]
=== milter-client
==== Improvements
* use higher priority for accepting connection.
==== Fixes
* fix a bug that workers don't shutdown on master shutdown. It's
GLib evnet loop backend specific problem.
=== milter-server
==== Improvements
* add more information to error message.
* [server] unify unknown name logging.
==== Fixes
* fix a bug that all milters can't find on 2nd RCPT in the same
session.
=== Ruby milter
==== Improvements
* add Milter::Client::Configuration::MilterConfiguration#name.
==== Fixes
* fix event_loop_created hook can't get event loop.
* do not raise error if process raw shift_jis mail file. Ruby 1.9.
* udpate bundled test-unit file list. [Reported by Hirohisa Yamaguchi]
* [ruby][glib2] fix a SEGV bug on Solaris10.
=== milter-test-server
==== Fixes
* fix quoted charset detection. [Reported by nobu]
* fix multiline header parsing.
* --mail-file keeps new line type of the original mail.
=== Document
==== Improvements
* add log list to HTML.
* fix typos. [Pull requested by Norio Suzuki]
=== Admin
==== Improvements
* use locale "en" if Accept-Language is not "ja".
[Reported by Larry G. Wapnitsky]
=== Thanks
* Mitsuru Ogino
* OBATA Akio
* moto kawasaki
* nobu
* Hirohisa Yamaguchi
* Norio Suzuki
* Larry G. Wapnitsky
== [release-1-8-0] 1.8.0: 2011-06-10
The first release of stable 1.8.x series.
=== All
==== Improvements
* Removed unused variables.
=== Package
==== Improvements
* [debian] Removed Debian GNU/Linux lenny support.
* [debian] Added Debian GNU/Linux wheezy support.