summaryrefslogtreecommitdiff
blob: f9620b83a78241bcc3dcc329213e0eb2616fe7a0 (plain)
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
# ChangeLog for mail-mta/postfix
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v 1.166 2008/08/14 12:33:40 falco Exp $

*postfix-2.5.3-r1 (14 Aug 2008)
*postfix-2.4.7-r1 (14 Aug 2008)

  14 Aug 2008; Raphael Marichez <falco@gentoo.org>
  +files/postfix-2.4.7-CVE-2008-2936.patch,
  +files/postfix-2.4.7-CVE-2008-2937.patch,
  +files/postfix-2.5.3-CVE-2008-2936.patch, +postfix-2.4.7-r1.ebuild,
  +postfix-2.5.3-r1.ebuild:
  Revision bump, security bug 232642

*postfix-2.5.3 (03 Aug 2008)

  03 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -postfix-2.5.2.ebuild, +postfix-2.5.3.ebuild:
  Version bump, #233779

  22 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  postfix-2.2.11-r1.ebuild, postfix-2.3.8-r1.ebuild,
  postfix-2.4.6-r2.ebuild, postfix-2.4.7.ebuild, -postfix-2.5.0.ebuild,
  -postfix-2.5.1.ebuild, postfix-2.5.2.ebuild:
  Add blocker on net-mail/mailwrapper if mailwrapper use-flag isn't used,
  #231052

  16 Jul 2008; Luca Longinotti <chtekk@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild, postfix-2.4.7.ebuild,
  postfix-2.5.0.ebuild, postfix-2.5.1.ebuild, postfix-2.5.2.ebuild:
  Dep on PostgreSQL libs only.

  09 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  postfix-2.5.0.ebuild, postfix-2.5.1.ebuild, postfix-2.5.2.ebuild:
  chown keepfile in /var/lib/postfix to postfix to get rid of a postfix
  warning (#214342)

*postfix-2.5.2 (09 Jun 2008)

  09 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  postfix-2.5.1.ebuild, +postfix-2.5.2.ebuild:
  Fix postgres linking, version bump (#223937)

  21 May 2008; Tiziano Müller <dev-zero@gentoo.org>
  postfix-2.2.11-r1.ebuild, postfix-2.3.8-r1.ebuild,
  postfix-2.4.6-r2.ebuild, postfix-2.4.7.ebuild, postfix-2.5.0.ebuild,
  postfix-2.5.1.ebuild:
  Changed dependency for postgresql from dev-db/postgresql to
  virtual/postgresql-server

  13 Apr 2008; Ulrich Mueller <ulm@gentoo.org> -postfix-2.4.5.ebuild:
  Remove last vulnerable ebuild wrt bug 201671.

  08 Apr 2008; Raphael Marichez <falco@gentoo.org> files/postfix.rc6.2.5:
  Fix bashism in init.d/postfix reported by Peter Alfredsen, bug #216949

*postfix-2.4.7 (21 Mar 2008)

  21 Mar 2008; Raphael Marichez <falco@gentoo.org> +postfix-2.4.7.ebuild:
  Version bump 2.4.x series using previous vda-ng patch, closes bug #199330

  21 Mar 2008; Raphael Marichez <falco@gentoo.org> postfix-2.4.5.ebuild,
  postfix-2.4.6-r2.ebuild:
  QA: remove bindnow-flags, bug #210599; fix repoman warns (LICENSE, copyright)

*postfix-2.5.1 (17 Mar 2008)
*postfix-2.5.0 (17 Mar 2008)

  17 Mar 2008; Raphael Marichez <falco@gentoo.org> +files/postfix.rc6.2.5,
  +postfix-2.5.0.ebuild, +postfix-2.5.1.ebuild:
  Version bump (bug 207807). Removes bindnow-flags calls, and implements
  multi-instances bug 166872, thanks to busby@edoceo.com for his rc script

  16 Mar 2008; Ulrich Mueller <ulm@gentoo.org> -postfix-2.2.10-r1.ebuild:
  Remove old, bug 201671.

  16 Mar 2008; Ryan Hill <dirtyepic@gentoo.org> postfix-2.4.6-r2.ebuild:
  Keyword ~mips for bug #201671.

  14 Mar 2008; Ulrich Mueller <ulm@gentoo.org> -files/postfix.rc6,
  -files/smtp.pam, -postfix-2.1.5-r2.ebuild, -postfix-2.2.10.ebuild,
  -postfix-2.3.6.ebuild:
  Remove versions vulnerable wrt bug 201671, as far as yet possible.

  14 Mar 2008; Steve Dibb <beandog@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  amd64 stable, bug 201671

  13 Mar 2008; <ricmm@gentoo.org> postfix-2.1.5-r2.ebuild,
  postfix-2.2.10.ebuild:
  Drop to ~mips due to unstable deps

  17 Feb 2008; nixnut <nixnut@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  Stable on ppc wrt bug 201671

  17 Feb 2008; Raúl Porcel <armin76@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  alpha/ia64/sparc stable wrt #201671

  13 Feb 2008; Markus Meier <maekke@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  x86 stable, bug #201671 and quotes in 2.3.8-r1

  13 Feb 2008; Jeroen Roovers <jer@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  Stable for HPPA (bug #201671).

  11 Feb 2008; Brent Baude <ranger@gentoo.org> postfix-2.2.11-r1.ebuild,
  postfix-2.3.8-r1.ebuild, postfix-2.4.6-r2.ebuild:
  Marking various postfix ppc64 stable for bug 201671

*postfix-2.4.6-r2 (03 Feb 2008)
*postfix-2.3.8-r1 (03 Feb 2008)
*postfix-2.2.11-r1 (03 Feb 2008)

  03 Feb 2008; Ulrich Mueller <ulm@gentoo.org> -postfix-2.2.11.ebuild,
  +postfix-2.2.11-r1.ebuild, -postfix-2.3.8.ebuild,
  +postfix-2.3.8-r1.ebuild, -postfix-2.4.6-r1.ebuild,
  +postfix-2.4.6-r2.ebuild:
  Replace docert by install_cert, bug 201671.

  12 Dec 2007; Jeroen Roovers <jer@gentoo.org> postfix-2.4.5.ebuild:
  Stable for HPPA (bug #199332).

  26 Nov 2007; Christoph Mende <angelos@gentoo.org> postfix-2.4.5.ebuild:
  Stable on amd64 wrt bug #199332

*postfix-2.4.6-r1 (26 Nov 2007)

  26 Nov 2007; Luca Longinotti <chtekk@gentoo.org> -postfix-2.4.6.ebuild,
  +postfix-2.4.6-r1.ebuild:
  Fix VDA-NG with quota=0 and mailboxes.

*postfix-2.4.6 (25 Nov 2007)

  25 Nov 2007; Luca Longinotti <chtekk@gentoo.org> -postfix-2.4.1.ebuild,
  -postfix-2.4.3.ebuild, +postfix-2.4.6.ebuild:
  Remove old Postfix 2.4.X ebuilds. Add Postfix 2.4.6, fix VDA patch for bug
  #191384.

  20 Nov 2007; Raúl Porcel <armin76@gentoo.org> postfix-2.4.5.ebuild:
  alpha/ia64/sparc stable wrt #199332

  18 Nov 2007; Markus Rothe <corsair@gentoo.org> postfix-2.4.5.ebuild:
  Stable on ppc64; bug #199332

  17 Nov 2007; Dawid Węgliński <cla@gentoo.org> postfix-2.4.5.ebuild:
  Stable on x86 (bug #199332)

  17 Nov 2007; nixnut <nixnut@gentoo.org> postfix-2.4.5.ebuild:
  Stable on ppc wrt bug 199332

  21 Oct 2007; <solar@gentoo.org> postfix-2.1.5-r2.ebuild,
  postfix-2.2.10.ebuild, postfix-2.2.10-r1.ebuild, postfix-2.2.11.ebuild,
  postfix-2.3.6.ebuild, postfix-2.3.8.ebuild, postfix-2.4.1.ebuild,
  postfix-2.4.3.ebuild, postfix-2.4.5.ebuild:
  - make postfix respect user defined LDFLAGS. 192885

  19 Sep 2007; Patrick McLean <chutzpah@gentoo.org> postfix-2.4.5.ebuild:
  Change paths to binaries in default master.cf to standard gentoo paths
  (/usr/local/ to /usr/, requested by seemant).

*postfix-2.4.5 (31 Aug 2007)

  31 Aug 2007; Patrick McLean <chutzpah@gentoo.org> +postfix-2.4.5.ebuild:
  Version bump, fixes bug #188128

  30 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
  Removing langthang from metadata due to his retirement (see #53239 for
  reference).

  12 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  files/postfix.rc6.2.2.9:
  Removed bashisms from init-script, Bug #181874.

*postfix-2.4.3 (02 Jun 2007)

  02 Jun 2007; Luca Longinotti <chtekk@gentoo.org> +postfix-2.4.3.ebuild:
  Version bump.

  12 May 2007; Luca Longinotti <chtekk@gentoo.org>
  -files/postfix-2.3.0-SASL_README.patch, -files/postfix.rc6.2.2.4,
  -files/postfix.rc6.2.2.5, -postfix-2.2.4.ebuild, -postfix-2.2.5.ebuild,
  -postfix-2.2.5-r1.ebuild, -postfix-2.2.8.ebuild, -postfix-2.2.8-r1.ebuild,
  -postfix-2.2.9.ebuild, -postfix-2.2.9-r1.ebuild, -postfix-2.3.7.ebuild,
  -postfix-2.4.0.ebuild, -postfix-2.4.0-r1.ebuild:
  Cleanup, remove old ebuild versions and files.

*postfix-2.4.1 (01 May 2007)

  01 May 2007; Luca Longinotti <chtekk@gentoo.org> +postfix-2.4.1.ebuild:
  Version bump to 2.4.1, use newest VDA-NG patch.

  28 Apr 2007; Sven Wegener <swegener@gentoo.org> postfix-2.1.5-r2.ebuild:
  Fix *initd, *confd and *envd calls (#17388, #174266)

*postfix-2.4.0-r1 (24 Apr 2007)

  24 Apr 2007; Luca Longinotti <chtekk@gentoo.org> +postfix-2.4.0-r1.ebuild:
  General ebuild cleanup, now correctly supports lib/lib64 dirs. Large file
  support (fixes bug #174099). Fix CDB/TinyCDB library linking (fixes bug
  #174948). Use new VDA-NG patch, partial rewrite of the VDA-e patch, with
  bugfixes and new features.

*postfix-2.4.0 (08 Apr 2007)

  08 Apr 2007; Raphael Marichez <falco@gentoo.org> +postfix-2.4.0.ebuild:
  Version bump

  29 Mar 2007; Timothy Redaelli <drizzt@gentoo.org> postfix-2.3.8.ebuild:
  Add ~x86-fbsd keyword

  25 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  postfix-2.3.6.ebuild:
  Stable on ppc wrt bug #165326.

*postfix-2.3.8 (23 Mar 2007)

  23 Mar 2007; Andrej Kacian <ticho@gentoo.org> -postfix-2.3.0.ebuild,
  -postfix-2.3.0-r1.ebuild, -postfix-2.3.2.ebuild, -postfix-2.3.2-r1.ebuild,
  -postfix-2.3.4.ebuild, -postfix-2.3.5.ebuild, +postfix-2.3.8.ebuild:
  Version bump. Requested by Alexander Stoll <as at ha-networks.com> in bug
  #171769. Removed unneeded 2.3.x ebuilds.

  22 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> postfix-2.3.6.ebuild:
  Stable on alpha as per bug #165326

  13 Feb 2007; Markus Rothe <corsair@gentoo.org> postfix-2.3.6.ebuild:
  Stable on ppc64; bug #165326

  05 Feb 2007; Patrick McLean <chutzpah@gentoo.org> postfix-2.3.6.ebuild:
  Stable on amd64 (bug #165326).

  05 Feb 2007; Jeroen Roovers <jer@gentoo.org> postfix-2.3.6.ebuild:
  Stable for HPPA (bug #165326).

  05 Feb 2007; Torsten Veller <tove@gentoo.org> postfix-2.3.6.ebuild:
  Stable on x86 (#165326)

  05 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> postfix-2.3.6.ebuild:
  Stable on sparc wrt #165326

*postfix-2.3.7 (04 Feb 2007)

  04 Feb 2007; Andrej Kacian <ticho@gentoo.org> postfix-2.2.10.ebuild,
  postfix-2.3.6.ebuild, +postfix-2.3.7.ebuild:
  Version bump. Add postfix user to both postfix and mail groups to fix bug
  #134776.

*postfix-2.3.6 (04 Jan 2007)

  04 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> +postfix-2.3.6.ebuild:
  New upstream version, fixes bug #159981

*postfix-2.3.5 (24 Dec 2006)

  24 Dec 2006; Andrej Kacian <ticho@gentoo.org> +postfix-2.3.5.ebuild:
  Version bump. Use VDA patch version 2.3.3. Closes bug #158033, reported by
  Aurélien Requiem <bugs at menfin.net>.

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> postfix-2.1.5-r2.ebuild,
  postfix-2.2.4.ebuild, postfix-2.2.5.ebuild, postfix-2.2.5-r1.ebuild,
  postfix-2.2.8.ebuild, postfix-2.2.8-r1.ebuild, postfix-2.2.9.ebuild,
  postfix-2.2.9-r1.ebuild, postfix-2.2.10.ebuild, postfix-2.2.10-r1.ebuild,
  postfix-2.2.11.ebuild, postfix-2.3.0.ebuild, postfix-2.3.0-r1.ebuild,
  postfix-2.3.2.ebuild, postfix-2.3.2-r1.ebuild, postfix-2.3.4.ebuild:
  dev-db/mysql => virtual/mysql

*postfix-2.3.4 (10 Nov 2006)

  10 Nov 2006; Andrej Kacian <ticho@gentoo.org> +postfix-2.3.4.ebuild:
  Version bump. Closes bug #145614, by Erik Logtenberg <erik at fmf.nl>.

  04 Sep 2006; Joshua Kinard <kumba@gentoo.org> postfix-2.2.10.ebuild,
  postfix-2.2.10-r1.ebuild:
  Marked 2.2.10 stable and 2.2.10-r1 unstable.

*postfix-2.3.2-r1 (01 Aug 2006)
*postfix-2.3.2 (01 Aug 2006)

  01 Aug 2006; Tuấn Văn <langthang@gentoo.org> +postfix-2.3.2.ebuild,
  +postfix-2.3.2-r1.ebuild:
  New postfix 2.3 patch 02.
  add vda patch back.

*postfix-2.2.11 (26 Jul 2006)

  26 Jul 2006; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.11.ebuild:
  bump to patch 11. bump VDA patch to 2.2.10, bug #140099 reported by Alan Mosca 
  <nitbix@nitbix.com>

*postfix-2.3.0-r1 (14 Jul 2006)
*postfix-2.3.0 (14 Jul 2006)

  14 Jul 2006; Tuấn Văn <langthang@gentoo.org>
  +files/postfix-2.3.0-SASL_README.patch, +postfix-2.3.0.ebuild,
  +postfix-2.3.0-r1.ebuild:
  New release. Drop VDA patch for now as it is not yet available upstream.
  Add new Dovecot SASL implementation support. read SASL_README.

  25 Jun 2006; Marcus D. Hanwell <cryos@gentoo.org> postfix-2.2.10.ebuild:
  Marked stable on amd64, bug 132702.

  16 May 2006; Markus Rothe <corsair@gentoo.org> postfix-2.2.10.ebuild:
  Stable on ppc64; bug #132702

  14 May 2006; Jason Wever <weeve@gentoo.org> postfix-2.2.10.ebuild:
  Stable on SPARC wrt bug #132702.

  12 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> postfix-2.2.10.ebuild:
  Stable on x86 wrt bug #132702.

  11 May 2006; Fernando J. Pereda <ferdy@gentoo.org> postfix-2.2.10.ebuild:
  Stable on alpha wrt bug #132702

  11 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  postfix-2.2.10.ebuild:
  ppc stable, bug #132702

  27 Apr 2006; Marien Zwart <marienz@gentoo.org>
  files/digest-postfix-2.1.5-r2, files/digest-postfix-2.2.4,
  files/digest-postfix-2.2.5, files/digest-postfix-2.2.5-r1,
  files/digest-postfix-2.2.8, files/digest-postfix-2.2.8-r1, Manifest:
  Fixing SHA256 digest, pass four

*postfix-2.2.10-r1 (07 Apr 2006)
*postfix-2.2.10 (07 Apr 2006)

  07 Apr 2006; Tuấn Văn <langthang@gentoo.org>
  +files/postfix-master.cf.patch, +postfix-2.2.10.ebuild,
  +postfix-2.2.10-r1.ebuild:
  patchlevel 10.
  add a patch for master.cf . Bug #26130.

  07 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org>
  +files/postfix.rc6.2.2.9, postfix-2.2.9.ebuild, postfix-2.2.9-r1.ebuild:
  Add saslauthd to the init script, fixes bug #125376

*postfix-2.2.9-r1 (02 Mar 2006)
*postfix-2.2.9 (02 Mar 2006)

  02 Mar 2006; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.9.ebuild,
  +postfix-2.2.9-r1.ebuild:
  New patch level 9.

  02 Mar 2006; Tuấn Văn <langthang@gentoo.org> -postfix-2.2.7.ebuild,
  -postfix-2.2.7-r1.ebuild:
  remove old/p.masked ebuilds.

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> postfix-2.2.5.ebuild:
  Marked stable on mips.

*postfix-2.2.8-r1 (30 Jan 2006)
*postfix-2.2.8 (30 Jan 2006)

  30 Jan 2006; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.8.ebuild,
  +postfix-2.2.8-r1.ebuild:
  patch level 8.
  drop ~mips keyword. Bug #115716.

  25 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  postfix-2.2.7-r1.ebuild:
  Use bindnow-flags function instead of -Wl,-z,now.

  20 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org>
  postfix-2.2.7-r1.ebuild:
  Set RC_VER in postfix-2.2.7-r1

  17 Dec 2005; Tuấn Văn <langthang@gentoo.org> postfix-2.2.7.ebuild,
  postfix-2.2.7-r1.ebuild:
  fix DEPEND syntax.

*postfix-2.2.7-r1 (16 Dec 2005)
*postfix-2.2.7 (16 Dec 2005)

  16 Dec 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.7.ebuild,
  +postfix-2.2.7-r1.ebuild:
  Patchlevel 7.
  Add cdb support, bug #112293. Thanks to Paul Gabriel.
  Add missing performance tuning tools. bug #115505. Thanks to Andrea Carpani.

  14 Nov 2005; Seemant Kulleen <seemant@gentoo.org> postfix-2.2.5.ebuild:
  Stable on amd64 wrt bug #112203

  13 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> postfix-2.2.5.ebuild:
  Stable on hppa, ppc. See bug #112203.

  12 Nov 2005; Jason Wever <weeve@gentoo.org> postfix-2.2.5.ebuild:
  Stable on SPARC wrt bug #112203.

  11 Nov 2005; Brent Baude <ranger@gentoo.org> postfix-2.2.5.ebuild:
  Marking ppc64 per bug 112203

  11 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> postfix-2.2.5.ebuild:
  stable on alpha, wrt bug #112203

  11 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org> postfix-2.2.5.ebuild:
  Marking stable wrt bug #112203.

*postfix-2.2.5-r1 (11 Oct 2005)

  11 Oct 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.5-r1.ebuild:
  mailwrapper/mailer-config ebuild.

*postfix-2.2.5 (11 Oct 2005)

  11 Oct 2005; Tuấn Văn <langthang@gentoo.org> +files/postfix.rc6.2.2.5,
  +postfix-2.2.5.ebuild:
  bump to postfix-2.2.5 without mailer eclass.
  remove -ldl as it is not necessary, resolve bug #106446.
  change "need net" to "use net", resolve bug #96850.

  11 Oct 2005; Tuấn Văn <langthang@gentoo.org> -files/postfix.rc6.2.2.3,
  -postfix-2.2.1.ebuild, -postfix-2.2.1-r1.ebuild, -postfix-2.2.2.ebuild,
  -postfix-2.2.2-r1.ebuild, -postfix-2.2.2-r2.ebuild, -postfix-2.2.3.ebuild,
  -postfix-2.2.3-r1.ebuild:
  tidy up.

  04 Oct 2005; MATSUU Takuto <matsuu@gentoo.org> postfix-2.1.5-r2.ebuild:
  Stable on sh.

  23 Aug 2005; Andrej Kacian <ticho@gentoo.org> postfix-2.2.1.ebuild,
  postfix-2.2.1-r1.ebuild, postfix-2.2.2.ebuild, postfix-2.2.2-r1.ebuild,
  postfix-2.2.2-r2.ebuild, postfix-2.2.3.ebuild, postfix-2.2.3-r1.ebuild,
  postfix-2.2.4.ebuild:
  Use -1 for shell argument to enewuser. Bug #103421.

  05 Jul 2005; Andrej Kacian <ticho@gentoo.org> postfix-2.2.3-r1.ebuild,
  postfix-2.2.4.ebuild:
  Update 2.2.4 with latest mailer-config stuff (rmail binary). Bug #97589.

  04 Jul 2005; Andrej Kacian <ticho@gentoo.org> files/mailer.conf,
  postfix-2.2.3-r1.ebuild:
  Handle rmail binary.

  04 Jul 2005; Andrej Kacian <ticho@gentoo.org> postfix-2.2.3-r1.ebuild:
  Added compatibility with mailer-config-0.2 - manpages. Bug #97589.

*postfix-2.2.4 (29 Jun 2005)

  29 Jun 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.4.ebuild:
  Vesion bump with some cleanup.
  We're no longer run postconf to change the default alias_maps, 
  alias_database, local_destination_concurrency_limit, 
  default_destination_concurrency_limit to resolve issues in bug #96016.
  Don't install default certificate if they exist.

  18 Jun 2005; Andrej Kacian <ticho@gentoo.org> +files/postfix.rc6.2.2.3,
  postfix-2.2.3.ebuild, postfix-2.2.3-r1.ebuild:
  Make the initscript 'use postfix_graylist', which is a facility provided by
  graylisting engines in portage. Closes bug #55705, by Duncan Hill
  <gentoo-bugs at nacnud.force9.co.uk>.

*postfix-2.2.3-r1 (20 May 2005)

  20 May 2005; Fernando J. Pereda <ferdy@gentoo.org>
  +postfix-2.2.3-r1.ebuild:
  make it compatible with g/fbsd, fixes #93177. Thanks to flameeyes

*postfix-2.2.3 (12 May 2005)

  12 May 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.3.ebuild:
  version bump.

  04 May 2005; Fernando J. Pereda <ferdy@gentoo.org>
  postfix-2.2.2-r2.ebuild:
  append provide from mailer.eclass

*postfix-2.2.2-r2 (04 May 2005)

  04 May 2005; Fernando J. Pereda <ferdy@gentoo.org> files/mailer.conf,
  +postfix-2.2.2-r2.ebuild:
  postfix-2.2.2-r2 is mailer.eclass aware and pmasked

  27 Apr 2005; Fernando J. Pereda <ferdy@gentoo.org>
  postfix-2.1.5-r2.ebuild:
  fix logic to know if postfix is running, wrt #53324

  25 Apr 2005; Fernando J. Pereda <ferdy@gentoo.org>
  postfix-2.2.2-r1.ebuild:
  Updated the 'postfix running' check

*postfix-2.2.2-r1 (05 Apr 2005)

  05 Apr 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.2-r1.ebuild:
  sync VDA patch.

*postfix-2.2.2 (04 Apr 2005)

  04 Apr 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.2.ebuild:
  Postfix 2.2 patch 02.

  22 Mar 2005; Markus Rothe <corsair@gentoo.org> postfix-2.1.5-r2.ebuild:
  Stable on ppc64

*postfix-2.2.1-r1 (22 Mar 2005)

  22 Mar 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.1-r1.ebuild:
  Tidy up, bug #53324.

*postfix-2.2.1 (15 Mar 2005)

  15 Mar 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.1.ebuild:
  Postfix 2.2 patch 01.
  VDA is available with this ebuild.

*postfix-2.2.0 (09 Mar 2005)

  09 Mar 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.0.ebuild:
  New postfix-2.2.0 release. This release includes IPV6 and TLS in the
  official release. "vda" has been removed as it isn't available for
  experimetal Postfix release. "vda" will be added as soon as it's available.
  Please review these document for more infomation:
  ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-2.2.0.RELEA
  SE_NOTES http://www.postfix.org/TLS_README.html
  http://www.postfix.org/IPV6_README.html

*postfix-2.2.0_rc2 (04 Mar 2005)

  04 Mar 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.0_rc2.ebuild:
  New official Release Candidate.

*postfix-2.2.0_rc1 (28 Feb 2005)

  28 Feb 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.2.0_rc1.ebuild:
  Postfix 2.2.0 official Release Candidate.

*postfix-2.2_beta20050218 (19 Feb 2005)

  19 Feb 2005; Tuấn Văn <langthang@gentoo.org>
  +postfix-2.2_beta20050218.ebuild:
  new experimental snapshot.

  17 Feb 2005; Michael Hanselmann <hansmi@gentoo.org> postfix-2.1.5-r2.ebuild:
  Stable on hppa.

  14 Feb 2005; <plasmaroo@gentoo.org> postfix-2.1.5-r2.ebuild:
  Mark 2.1.5-r2 ~ia64.

  10 Feb 2005; Simon Stelling <blubb@gentoo.org> postfix-2.1.5-r2.ebuild:
  stable on amd64 wrt bug 81024

  07 Feb 2005; Bryan Østergaard <kloeri@gentoo.org>
  postfix-2.1.5-r2.ebuild:
  Stable on alpha.

*postfix-2.2_beta20050206 (07 Feb 2005)

  07 Feb 2005; Tuấn Văn <langthang@gentoo.org>
  -postfix-2.2_beta20050119.ebuild, +postfix-2.2_beta20050206.ebuild:
  New Postfix 2.2 experimental release snapshot. Remove old snapshot.

  07 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  postfix-2.1.5-r2.ebuild:
  Stable on ppc.

  07 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org> postfix-2.1.5-r2.ebuild:
  Stable on sparc wrt #81024

  06 Feb 2005; Joshua Kinard <kumba@gentoo.org> postfix-2.1.5-r2.ebuild:
  Marked stable on mips.

  03 Feb 2005; Tuấn Văn <langthang@gentoo.org> postfix-2.1.5-r2.ebuild:
  x86 stable.

*postfix-2.2_beta20050203 (03 Feb 2005)

  03 Feb 2005; Tuấn Văn <langthang@gentoo.org>
  +postfix-2.2_beta20050203.ebuild:
  new developmental snapshot.

*postfix-2.1.5-r2 (28 Jan 2005)

  28 Jan 2005; Tuấn Văn <langthang@gentoo.org> +postfix-2.1.5-r2.ebuild:
  New IPV6 patches.

  27 Jan 2005; Andrej Kacian <ticho@gentoo.org> files/postfix.rc6:
  Add "use antivirus" to initscript. Bug #76285.

*postfix-2.2_beta20050119 (21 Jan 2005)

  21 Jan 2005; Tuấn Văn <langthang@gentoo.org> files/postfix.rc6,
  -postfix-2.2_beta20041230.ebuild, +postfix-2.2_beta20050119.ebuild:
  add postgresql to postfix.rc6 use statement. Bug #70554.
  add check for postfix, postdrop user/group. Bug #77565.
  add workaround bug #76512.

*postfix-2.2_beta20041230 (05 Jan 2005)

  05 Jan 2005; Tuấn Văn <langthang@gentoo.org> -postfix-2.0.19.ebuild,
  -postfix-2.1.3.ebuild, -postfix-2.2.20041221.ebuild,
  +postfix-2.2_beta20041230.ebuild:
  new dev snapshot.
  clean out old ebuilds.

  05 Jan 2005; petre rodan <kaiowas@gentoo.org> postfix-2.1.5-r1.ebuild,
  postfix-2.2.20041221.ebuild:
  added RDEPEND for selinux systems

  02 Jan 2005; Bryan Østergaard <kloeri@gentoo.org>
  postfix-2.1.5-r1.ebuild:
  Stable on alpha.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

*postfix-2.2.20041221 (22 Dec 2004)

  22 Dec 2004; Tuan Van <langthang@gentoo.org> +postfix-2.2.20041221.ebuild:
  2.2 development release with TLS support.
  add "nis" USE flag to support uclibc env. Bug #61509.
  fix the hardcoded ALIAS_DB_MAP. Bug #75361.
  Thanks to Christian Zoffoli <czoffoli@xmerlin.org>.

  24 Nov 2004; Hardave Riar <hardave@gentoo.org> postfix-2.1.5-r1.ebuild:
  Stable on mips, bug #56088.

  17 Nov 2004; Markus Rothe <corsair@gentoo.org> postfix-2.1.5-r1.ebuild:
  stable on ppc64

  01 Nov 2004; Tuan Van <langthang@gentoo.org> -files/main.cf,
  -files/master.cf, -files/smtpd.conf:
  remove cruft in FILESDIR.

  01 Nov 2004; Tuan Van <langthang@gentoo.org>
  -postfix-1.1.11.20020917-r1.ebuild, -postfix-1.1.11.20020917.ebuild,
  -postfix-2.0.11.ebuild, -postfix-2.0.16-r1.ebuild, -postfix-2.0.18.ebuild,
  -postfix-2.0.19-r1.ebuild, -postfix-2.0.19-r2.ebuild,
  -postfix-2.0.19-r3.ebuild, -postfix-2.0.19-r4.ebuild,
  -postfix-2.0.20.ebuild, -postfix-2.1.1.ebuild, -postfix-2.1.4.ebuild,
  postfix-2.1.5-r1.ebuild:
  stable on s390 on behalf of vapier.
  remove old ebuilds.

  26 Oct 2004; Luca Barbato <lu_zero@gentoo.org> postfix-2.1.5-r1.ebuild:
  Marked ppc

  26 Oct 2004; Tuan Van <langthang@gentoo.org> postfix-2.1.5-r1.ebuild:
  replace ${CC} with $(tc-getCC), resolve bug #69003.

  26 Oct 2004; Tom Martin <slarti@gentoo.org> postfix-2.1.5-r1.ebuild:
  Stable on amd64.

  25 Oct 2004; Jason Wever <weeve@gentoo.org> postfix-2.1.5-r1.ebuild:
  Stable on sparc.

  18 Oct 2004; Tuan Van <langthang@gentoo.org> postfix-2.1.5-r1.ebuild:
  stable on x86.

  16 Oct 2004; Guy Martin <gmsoft@gentoo.org> postfix-2.1.5-r1.ebuild:
  Stable on hppa.

  28 Sep 2004; Tuan Van <langthang@gentoo.org> :
  Resolve bug #65695.

*postfix-2.1.5-r1 (22 Sep 2004)

  22 Sep 2004; Tuan Van <langthang@gentoo.org> +postfix-2.1.5-r1.ebuild:
  Version bump to please QA. Bug #62674.

*postfix-2.1.5 (21 Sep 2004)

  21 Sep 2004; Tuan Van <langthang@gentoo.org> +postfix-2.1.5.ebuild:
  Version bump.

  11 Sep 2004; Tom Martin <slarti@gentoo.org> postfix-2.1.3.ebuild:
  Stable on amd64.

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> postfix-2.0.20.ebuild,
  postfix-2.1.3.ebuild, postfix-2.1.4.ebuild:
  Switch to use epause and ebeep, bug #62950

  30 Aug 2004; Tom Gall <tgall@gentoo.org> postfix-2.1.3.ebuild:
  stable on ppc64, bug #61746

*postfix-2.1.4 (23 Aug 2004)

  23 Aug 2004; Tuan Van <langthang@gentoo.org> +postfix-2.1.4.ebuild:
  Version bump. Close bug #56574.

  22 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> postfix-2.1.3.ebuild:
  Stable on alpha.

  20 Aug 2004; Jason Wever <weeve@gentoo.org> postfix-2.1.3.ebuild:
  Stable on sparc.

  17 Aug 2004; <tuxus@gentoo.org> postfix-2.1.3.ebuild:
  Added ~mips to KEYWORDS.

  15 Aug 2004; Tuan Van <langthang@gentoo.org> postfix-2.1.3.ebuild:
  stable on x86.

  16 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> postfix-2.0.19-r4.ebuild:
  Stable on alpha, requested in bug #56088.

*postfix-2.0.20 (04 Jul 2004)

  04 Jul 2004; <langthang@gentoo.org> +postfix-2.0.20.ebuild:
  Version bump and added warnings to workaround bug #45764.

*postfix-2.1.3 (02 Jul 2004)

  02 Jul 2004; <langthang@gentoo.org> metadata.xml, +postfix-2.1.3.ebuild:
  Version bump, fix bug #53324, workaround bug #45764, add myself to 
  metadata.xml

  30 Jun 2004; Cory Visi <merlin@gentoo.org> files/postfix-2.0.9-get-FQDN.patch:
  Update files/postfix-2.0.9-get-FQDN.patch for better logging, Bug 51504,
  thanks to Ryan Earl <heretic@clanhk.org> for research and patch. Affects all
  versions <=2.1.1

*postfix-2.0.19-r4 (30 Jun 2004)

  30 Jun 2004; Cory Visi <merlin@gentoo.org> postfix-2.0.19-r4.ebuild:
  Add queue_minfree setting to default main.cf to fix Bug 51743 - thanks to
  drobbins for finding this

  16 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> postfix-2.0.11.ebuild:
  take out unused is_postfix_installed() function

  11 Jun 2004; Jeremy Huddleston <eradicator@gentoo.org>
  postfix-2.0.11.ebuild:
  Fixed init script to have proper name.

  07 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  postfix-1.1.11.20020917-r1.ebuild, postfix-1.1.11.20020917.ebuild,
  postfix-2.0.11.ebuild, postfix-2.0.16-r1.ebuild, postfix-2.0.18.ebuild,
  postfix-2.0.19.ebuild:
  Fix use invocation

*postfix-2.1.1 (05 Jun 2004)

  05 Jun 2004; Grant Goodyear <g2boojum@gentoo.org> :
  Adding the new postfix to the tree (bug # 48796).  Thanks to
  Davin Boling, Matt Girard, Lang Thang, Mogens Meier Christensen,
  theboywho, Andrew Glen-Young, and Ajay Sharma.

  05 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> postfix-2.0.19-r2.ebuild:
  Stable on alpha.

*postfix-2.0.19-r3 (30 May 2004)

  30 May 2004; Grant Goodyear <g2boojum@gentoo.org> files/mailer.conf,
  postfix-2.0.19-r2.ebuild, +postfix-2.0.19-r3.ebuild:
  Changes to make mailwrapper an optional dep.
  Also, I removed "maildir" as a use flag, as it's our default
  format.

  12 May 2004; Michael McCabe <randy@gentoo.org> postfix-2.0.19-r2.ebuild:
  Added s390 keywords

  31 Mar 2004; Max Kalika <max@gentoo.org> files/postfix.rc6:
  Set $opts properly in init script. Fixes bug #46304.

  26 Mar 2004; <tuxus@gentoo.org> postfix-2.0.19.ebuild:
  Added mips to KEYWORDS.

  22 Mar 2004; Max Kalika <max@gentoo.org> postfix-2.0.19-r1.ebuild,
  postfix-2.0.19-r2.ebuild, postfix-2.0.19.ebuild:
  Make sure spool only gets created in pkg_postinst(). Fixes bug #45142.

  19 Mar 2004; Jason Wever <weeve@gentoo.org> postfix-2.0.19.ebuild:
  Marked stable on sparc.

  18 Mar 2004; Grant Goodyear <g2boojum@hotmail.com> postfix-2.0.19-r2.ebuild:
  Whoops, forgot to create sendmail.postfix (bug 44989).

*postfix-2.0.19-r2 (17 Mar 2004)

  17 Mar 2004; Grant Goodyear <g2boojum@hotmail.com> postfix-2.0.16-r1.ebuild,
  postfix-2.0.18.ebuild, postfix-2.0.19-r1.ebuild, postfix-2.0.19-r2.ebuild,
  postfix-2.0.19.ebuild, files/mailer.conf:
  Lots of keyword fixes for bad sasl depends.

*postfix-2.0.19-r2 (17 Mar 2004)

  17 Mar 2004; Grant Goodyear <g2boojum@hotmail.com> postfix-2.0.19-r2.ebuild,
  files/mailer.conf:
  New revision that uses mailwrapper.

*postfix-2.0.19-r1 (15 Mar 2004)
*postfix-2.0.19 (15 Mar 2004)

  15 Mar 2004; Max Kalika <max@gentoo.org> postfix-2.0.19-r1.ebuild,
  postfix-2.0.19.ebuild:
  Bump to version 2.0.19 and mark stable x86. Add new testing version 2.0.19-r1
  which includes some use command cleanup and the vda patch, fixing bug 31819.

  23 Feb 2004; Jason Wever <weeve@gentoo.org> postfix-2.0.16-r1.ebuild:
  Stable on sparc.

  19 Feb 2004; Aron Griffis <agriffis@gentoo.org> postfix-2.0.16-r1.ebuild,
  postfix-2.0.18.ebuild:
  Mark 2.0.16-r1 stable on alpha and ia64. Mark 2.0.18 testing on ~ia64 (it
  already had ~alpha)

  09 Feb 2004; Max Kalika <max@gentoo.org> postfix-2.0.18.ebuild:
  Bump TLS patch to 2.0.18, IPV6+TLS patch to 1.21.

  06 Feb 2004; Max Kalika <max@gentoo.org> postfix-2.0.10-r1.ebuild,
  postfix-2.0.11.ebuild, postfix-2.0.12-r1.ebuild, postfix-2.0.13-r1.ebuild,
  postfix-2.0.14.ebuild, postfix-2.0.15-r1.ebuild, postfix-2.0.17.ebuild,
  postfix-2.0.9.ebuild, files/postfix, files/postfix-2.0.8_patch.patch,
  files/postfix-pg.postfix-2.0.0.2.patch.bz2, files/saslpass,
  files/smtpd-2.0.conf, files/postfix-2.0.0/master.cf.diff,
  files/postfix-2.0.14/main.cf.diff:
  Cleanup some stale files.

*postfix-2.0.18 (23 Jan 2004)

  23 Jan 2004; Max Kalika <max@gentoo.org> postfix-2.0.18.ebuild:
  Bump version to 2.0.18.

*postfix-2.0.17 (20 Jan 2004)

  20 Jan 2004; Max Kalika <max@gentoo.org> postfix-2.0.17.ebuild:
  Bump version to 2.0.17.

  18 Jan 2004; <tuxus@gentoo.org> postfix-2.0.16-r1.ebuild:
  Added ~mips to KEYWORDS.

  16 Jan 2004; Max Kalika <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Provide proper include path for PostgreSQL depending on which version is
  installed. Fixes bug #38401.

  14 Jan 2004; Max Kalika <max@gentoo.org> postfix-1.1.11.20020917-r1.ebuild,
  postfix-1.1.11.20020917.ebuild, postfix-2.0.10-r1.ebuild,
  postfix-2.0.12-r1.ebuild, postfix-2.0.13-r1.ebuild, postfix-2.0.14.ebuild,
  postfix-2.0.15-r1.ebuild, postfix-2.0.16-r1.ebuild, postfix-2.0.9.ebuild,
  files/gentestcrt.sh, files/tls+ipv6-1.4-pf-1.1.11-20020917.patch.bz2:
  Bump 2.0.16-r1 to stable x86. Add FSH link /usr/sbin/sendmail ->
  /usr/lib/sendmail. Do not keepdir on the queue directories to minimize bogus
  errors in the mail log. Only install the sasl conf to /etc/sasl2 as the latest
  sasl looks there for the config files.

  10 Jan 2004; Jason Wever <weeve@gentoo.org> postfix-2.0.11.ebuild:
  Marked stable on sparc.

  20 Dec 2003; Martin Schlemmer <azarah@gentoo.org> files/smtp.pam:
  Update pam.d file to use system-auth.

  14 Dec 2003; <spider@gentoo.org> postfix-1.1.11.20020917-r1.ebuild,
  postfix-1.1.11.20020917.ebuild:
  QA: fixing chown user.group to user:group, bug #35127

  10 Nov 2003; <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Put back keepdirs for the spool directories.  Allows clean unmerge.

  10 Nov 2003; <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Properly fix spool permissions after merge, take 2.

  08 Nov 2003; <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Properly fix spool after merging. Fixes bug 31797.

  07 Nov 2003; Seemant Kulleen <seemant@gentoo.org> postfix-2.0.16-r1.ebuild:
  keepdir to keep the subdirs in /var/spool/postfix

  03 Nov 2003; Max Kalika <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Allow user to set SSL_ORGANIZATION in make.conf.

  03 Nov 2003; Max Kalika <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Switch to ssl-cert.eclass.

*postfix-2.0.16-r1 (25 Sep 2003)

  25 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16-r1.ebuild:
  Add the Verisign patch from Wietse.

  24 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16.ebuild:
  Die if postfix-install or postconf fail.

  24 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16.ebuild:
  Add -lpthread to libs. Fixes bug 28044.

*postfix-2.0.16 (23 Sep 2003)

  23 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16.ebuild,
  files/gentestcrt.sh, files/postfix.rc6, files/smtp.pass, files/smtp.sasl:
  This is new/testing/experimental: Bump to version 2.0.16 with the latest
  available TLS, IPV6, and IPV6+TLS patches. Major cleanup/rewrite: quote
  variables where possible; whitespace consistancy; drop creation of postfix
  user -- already in baselayout; require >=dev-libs/cyrus-sasl-2; drop support
  for cyrus-sasl-1.*; drop is_postfix_installed() routine; move most of the
  compilation decisions to src_compile() out of src_unpack(); only use cd once
  throughout the whole ebuild; make it die on sed errors; drop CC=gcc hack for
  a cleaner bash solution; use /bin/sh postfix-install instead of manually
  installing all the files -- simplifies the src_install() routine enormously;
  install samples to the doc/defaults instead of /etc/postfix/sample; use newly
  installed postconf to set defaults instead of custom patch/sed calls -- makes
  it much more resilient to upstream changes; if USE=ssl, install default cert,
  key, and pem files similar to net-mail/cyrus-imapd.

  12 Sep 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.15.ebuild:
  Cleanup

*postfix-2.0.15-r1 (12 Sep 2003)

  12 Sep 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.15-r1.ebuild:
  Bump patch versions cuz they aren't on the servers any more GRR

*postfix-2.0.15 (08 Sep 2003)

  08 Sep 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.15.ebuild:
  Bump

*postfix-2.0.14 (01 Sep 2003)

  01 Sep 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.14.ebuild:
  Bump

  15 Aug 2003; Nick Hadaway <raker@gentoo.org>  
  files/2.0.0/master.cf.diff, files/postfix-2.0.13-r1.ebuild:
  Added a patch for the master.cf based on suggestions by Alexander
  Holler on bug #26130.  Also made changes to deal with bug #25265.

  13 Aug 2003; Nick Hadaway <raker@gentoo.org> files/postfix.rc6:
  Added ypbind to the use list so NIS-related services are started
  before the mail server is started.  See bug #26405.

  21 Jul 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.13-r1.ebuild:
  Only install the smtpd.conf if sasl is in USE.

  18 Jul 2003; lanius@gentoo.org postfix-2.0.11.ebuild,
  postfix-2.0.12-r1.ebuild, postfix-2.0.13-r1.ebuild, postfix-2.0.13.ebuild,
  files/smtpd-2.0.conf:
  fixed smtpd.conf for postfix 2.0 (bug #24556)

*postfix-2.0.13-r1 (14 Jul 2003)

  14 Jul 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.13-r1.ebuild:
  Just update the TLS and IPV6 patches

  11 Jul 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.13.ebuild,
  files/postfix-pg.postfix-2.0.0.2.patch.bz2:
  Added postgres support and associated patch.  Also installs a
  PGSQL_README.  Closes bug #23996

*postfix-2.0.13 (30 Jun 2003)

  30 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.13.ebuild:
  Bump, update tls and ipv6 patches

  20 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.12.ebuild:
  This version no longer has all required distfiles available. 

*postfix-2.0.12-r1 (20 Jun 2003)

  20 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.12-r1.ebuild:
  Bump TLS version

  16 Jun 2003; Seemant Kulleen <seemant@gentoo.org> postfix-2.0.9.ebuild:
  mark stable on sparc

  14 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.10-r1.ebuild,
  postfix-2.0.11.ebuild, postfix-2.0.12.ebuild, postfix-2.0.9.ebuild:
  Ok, so apparently putting the user's original config file from the wrong
  location in a ._cfg file was a Bad Thing (TM) because too many people don't
  merge their config files. I therefore have changed it so that the OTHER file
  (the blank original config file, if it existed) is saved in a ._cfg which the
  user can ignore as seems to be standard proceedure.

  13 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.10-r1.ebuild,
  postfix-2.0.9.ebuild:
  Fix bug 15252 in stable versions as well

*postfix-2.0.12 (13 Jun 2003)

  13 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.12.ebuild:
  Bump, bug 15252 still needs looking at so be careful with this one if you use
  sasl2

  13 Jun 2003; Seemant Kulleen <seemant@gentoo.org> postfix-2.0.11.ebuild:
  smtpd.conf for sasl in USE is now moved to /etc/sasl -- and it should do it
  safely. This closes bug #15252 by Nahor <nahorBugzilla@bravobrava.com>

*postfix-2.0.11 (11 Jun 2003)

  11 Jun 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.11.ebuild:
  Easy bump

  09 Jun 2003; <msterret@gentoo.org> postfix-2.0.10-r1.ebuild:
  DEPEND on sed >= 4

*postfix-2.0.10-r1 (31 May 2003)

  31 May 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.10-r1.ebuild,
  postfix-2.0.10.ebuild:
  Bump versions of tls, ipv6 patches

*postfix-2.0.10 (22 May 2003)

  22 May 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.10.ebuild:
  New postfix, this is mostly just a bump, but also we now have better split out
  TLS, IPV6 and IPV6+TLS patches, enjoy

*postfix-2.0.9 (28 Apr 2003)

  28 Apr 2003; Martin Schlemmer <azarah@gentoo.org> postfix-2.0.9-r1.ebuild,
  postfix-2.0.9-get-FQDN.patch :
  Postfix do not get the FQDN if no hostname is specified, and thus do not
  handle the hostname change in latest baselayout gracefully.  Patch it to
  fix this issue.

*postfix-2.0.9 (18 Apr 2003)

  18 Apr 2003; Daniel Robbins <drobbins@gentoo.org>: New release of postfix.
  Added /usr/bin/rmail to close bug #19127. Added "provide mta" to postfix
  initscript to abide with the recommendation in bug #11455 (not closing since
  other MTAs are affected.) set CC in ebuild to close bugs #16547 and #17275.
  Unmasking for x86 since so many bugs are fixed.

*postfix-2.0.7 (22 Mar 2003)

  16 Apr 2003; Brandon Low <lostlogic@gentoo.org> Manifest,
  postfix-1.1.11-r5.ebuild, postfix-1.1.11-r5.ebuild, postfix-2.0.0.ebuild,
  postfix-2.0.0.ebuild, postfix-2.0.2-r1.ebuild, postfix-2.0.2-r1.ebuild,
  postfix-2.0.2.ebuild, postfix-2.0.2.ebuild, postfix-2.0.7.ebuild,
  postfix-2.0.7.ebuild, files/postfix-1.1.11-saslv2.diff,
  files/postfix-2.0.8_patch.patch, files/postfix-2.0.0/main.cf.diff:
  Clean up a ton of old stuff, and bump to the latest version.

  24 Mar 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.7.ebuild:
  Update the TLS+IPV6 patch for this version. No need to -r bump, because this
  was a compile stopper

  22 Mar 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.6.ebuild,
  postfix-2.0.6.ebuild, postfix-2.0.7.ebuild:
  Bumpage still unstable

*postfix-2.0.6 (06 Mar 2003)

  06 Mar 2003; Brandon Low <lostlogic@gentoo.org> postfix-2.0.6.ebuild:
  Version bump

*postfix-2.0.3 (28 Jan 2003)

  13 Feb 2003; Matt Keadle <mkeadle@gentoo.org> postfix-2.0.3.ebuild :
  Moved 'inherit eutils' statement back to the top of the ebuild.
  Being placed midway through was causing the package description
  to be replaced with "Based on the eutils eclass" instead of one
  suitable for Postfix.

  12 Feb 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.3.ebuild :
  Changed CC=cc to CC=${CC}.  Thanks to Paul Prince on bug #15477
  for the suggestion.

  09 Feb 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.3.ebuild :
  moved the post-install file to the doc directory.

  02 Feb 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.3.ebuild :
  Removed spurious main.cf{~,orig}.  Thanks to Phil Richards on bug
  #14725 for noticing this.

  30 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.3.ebuild :
  Marked stable.

  28 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.3.ebuild,
  files/digest-postfix-2.0.3 :
  Version bump.  tls and ipv6+tls patches have also been updated for
  this new version.

*postfix-2.0.2-r1 (19 Jan 2003)

  24 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.2-r1.ebuild :
  Marked stable for x86.

  19 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.2-r1.ebuild,
  files/digest-postfix-2.0.2-r1 :
  I made so many individual changes on the last bug I figure I better
  release a new revision.  added maildir and mbox to IUSE.
  Added -lz for linking to mysql.

*postfix-2.0.2 (19 Jan 2003)

  19 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.2.ebuild,
  files/digest-postfix-2.0.2 :
  Version bump.  Re-incorporated tls functionality.  IPV6 is next.
  10 minutes later... ipv6 added. :) Changed so
  /var/spool/postfix/tmp is created.  Added some sed logic
  for the editing of main.cf based on maildir or mbox use variable as
  suggested on bug #10356.


*postfix-2.0.0 (23 Dec 2002)

  23 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : New upstream version.

  23 Dec 2002; Maik Schreiber <blizzy@gentoo.org> files/postfix.rc6: Added
  "use dns" to depend().

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

*postfix-1.1.11.20020917-r1 (14 Nov 2002)

  14 Nov 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020917-r1.ebuild,
  files/digest-postfix-1.1.11.20020917 :
  New ebuild which places the smtpd.conf for sasl2 in /usr/lib/sasl2
  instead of /etc/sasl2.  See bug #10650

  25 Sep 2002; Maik Schreiber <blizzy@gentoo.org>
  postfix-1.1.11-r5.ebuild, files/digest-postfix-1.1.11-r5:
  Fixed URL of TLS patch.

*postfix-1.1.11.20020917 (19 Sep 2002)

  23 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020917.ebuild :
  Added /var/spool/postfix/hold directory to install.  This seems to fix
  some postfix start problems.

  20 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020917.ebuild :
  Updated postfix SRC_URI to the pfixtls site.  I have also copied files
  to gentoo distfiles so it propagates across mirrors.  Postfix mirrors
  appear to be too erratic with the "experimental builds"

  19 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020917.ebuild, files/digest-postfix-1.1.11.20020917,
  files/tls+ipv6-1.4-pf-1.1.11-20020917.patch.bz2 :
  Version bump.  Lots of bug fixes(+features)  from the 20020822
  version.  Important fixes include ldap and berkdb related fixes.
  See...
  http://archive.progeny.com/postfix/experimental/postfix-1.1.11-20020918.HISTORY
  for the changelog.

*postfix-1.1.11.20020822 (11 Sep 2002)

  17 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020822.ebuild :
  Added saslv1 and saslv2 support.  This should be back to a full
  featured postfix ebuild.

  11 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020822.ebuild :
  provide virtual/mda.  Moved tls+ipv6 patch to ${FILESDIR} and bzipped
  it.  SASL support is next.

  11 Sep 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020822.ebuild, files/digest-postfix-1.1.11.20020822 :
  New postfix ebuild.  Currently masked.  Testing ipv6 patch.

*postfix-1.1.11.200206013-r1 (13 Aug 2002)

  22 Aug 2002; Nick Hadaway <raker@gentoo.org>
  It appears that this ebuild and digest have magically disappeared from CVS.

  15 Aug 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020613-r1.ebuild :
  Updated CCARGS and AUXLIBS variables for a proper TLS enabled postfix.
  Fixed a syntax error with the tls+ipv6 patch.

  13 Aug 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020613-r1.ebuild, files/digest-postfix-1.1.11.20020613-r1 :
  Many changes have been made to the ebuild so I created a -r1.  This
  ebuild should copy smtpd.conf into /etc/sasl2 to match the latest
  cyrus-sasl ebuild.  This should hopefully fix some of the sasl problems
  people have been having with postfix.

*postfix-1.1.11-r5 (23 Jul 2002)

  11 Sep 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11-r5.ebuild :
  provide virtual/mda

  29 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11-r5.ebuild :
  Fixed an logic for applying sasl2 related patch

  22 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11-r5.ebuild :
  Fixed typo in pkg_postinst, sasl, and ssl detection code.

  23 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :
  Use the /etc/postfix/master.cf from the source *again*, as
  they tend to differ between version.  Do NOT change, or if
  you really need to use a custom version, please keep a version
  updated from that version's source.  This should fix the:

   warning: connect #3 to subsystem public/cleanup: Connection refused

  problem.

*postfix-1.1.11.20020613 (22 Jul 2002)

  24 Jul 2002; Nick Hadaway <raker@gentoo.org> :

  Updated ebuild to install the ipv6+tls patch if the ipv6 OR ssl use
  flag is enabled.  This is a temporary hack until I get the patches
  separated from each other and I can enable each addon functionality
  separately.

  23 Jul 2002; Nick Hadaway <raker@gentoo.org> :
  Updated all ebuilds to include the pam dependancy.  Closes bug #5148.

  22 Jul 2002; Nick Hadaway <raker@gentoo.org>
  postfix-1.1.11.20020613.ebuild, files/digest-postfix-1.1.11.20020613,
  files/tls+ipv6.diff, files/saslv2.diff
  New ebuild with tls and ipv6 support.  Also added support for saslv2.
  Thanks to Philipp Morger for a start on the ebuilds and patches.

  21 Jul 2002; Maik Schreiber <blizzy@gentoo.org> postfix-1.1.11-r4.ebuild,
  ChangeLog:
  Cleaned up ebuild once again. Added post-installation note from
  bug #4652 once again. Also fixed ChangeLog since it appeared to
  really got broken.

*postfix-1.1.8-r1 (19 Jul 2002)

  19 Jul 2002; Grant Goodyear <g2boojum@gentoo.org> :
  removed /usr/bin/mail symlink in postfix-1.1.8

*postfix-1.1.11-r4 (19 Jul 2002)

  19 Jul 2002; Grant Goodyear <g2boojum@gentoo.org> :
  removed /usr/bin/mail symlink; that's what mailx and nail are for.
  Removed old versions.  Bumped -r since that symlink really should be yanked.
  Closes bug #5096

*postfix-1.1.11-r1 (09 Jul 2002)

  09 Jul 2002; Maik Schreiber <blizzy@gentoo.org> postfix-1.1.11-r1.ebuild:
  Added post-installation note about /etc/mail/aliases. No need to update
  if your Postfix installation works correctly. This closes bug #4652.

*postfix-1.1.11 (08 Jul 2002)

  08 Jul 2002; Maik Schreiber <blizzy@gentoo.org> :
  New version + TLS patch, closes bug #4215.

  20 May 2002; Daniel Robbins <drobbins@gentoo.org> postfix-1.1.8.ebuild:
  made "sasl" a USE var (disabled by default) since this seems most appropriate
  and since cyrus-sasl appears to be broken if you merge it on a fresh system.
  Postfix should work again.

*postfix-1.1.8 (13 May 2002)

  13 May 2002; Donny Davies <woodchip@gentoo.org> :
  Updated to latest postfix + tls patch.

*postfix-1.1.7-r4 (3 May 2002)

  3 May 2002; Donny Davies <woodchip@gentoo.org> :
  Added LICENSE, SLOT, $Headers.

*postfix-1.1.7-r3 (19 Apr 2002)

  19 Apr 2002; Ryan Phillips <rphillips@gentoo.org> postfix-1.1.7-r3.ebuild,
  files/digest-postfix-1.1.7-r3 :
  Added INSTALL to dodoc statement.  Closes #1923

*postfix-1.1.7-r2 (15 Apr 2002)

  15 Apr 2002; Seemant Kulleen <seemant@gentoo.org> postfix-1.1.7-r2.ebuild,
  files/digest-postfix-1.1.7-r2 :
  Changed the USE flags from mta-ldap, mta-tls, and mta-mysql to ldap, ssl, and
  mysql respectively.  Also, changed the checks to the official use foo &&
  syntax.  This has the added advantage of showing the USE flags being used
  during the emerge process.

  11 Apr 2002; Seemant Kulleen <seemant@gentoo.org> files/digest-postfix-1.1.7-r1 :
  digest contains the md5 sums for the postfix tarball and the alternate
  tarball.

*postfix-1.1.7-r1 (8 Apr 2002)

  9 Apr 2002; Jon Nelson <jnelson@gentoo.org> postfix-1.1.7-r1.ebuild:
  Clean up some tabbing and use official form of 'if use foo' constructs

*postfix-1.1.7 (8 Apr 2002)

  9 Apr 2002; Jon Nelson <jnelson@gentoo.org> postfix-1.1.7.ebuild:
  Updated to postfix 1.1.7, and altered how the 'if use foo' constructs
  are used. Closes #1612

*postfix-1.1.6-r1 (1 Apr 2002)

  1 Apr 2002; Grant Goodyear <g2boojum@gentoo.org>  :
  Modified the ebuild to link in -lcrypt, -lpam (if pam is in USE),
  and -ldl.  Thanks to Jon Nelson.

*postfix-1.1.6 (30 Mar 2002)

  30 Mar 2002; Seemant Kulleen <seemant@gentoo.org> postfix-1.1.6.ebuild :
  Version bump, using previous ebuild, and adjusting the mta-tls filename to
  fetch.

*postfix-1.1.3-r3 (24 Mar 2002)

  24 Mar 2002; Donny Davies <woodchip@gentoo.org> postfix-1.1.3-r3.ebuild :
  Fix compile problem with USE mta-mysql.  Thanks to fkooman@zeelandnet.nl (F. Kooman)
  for the report.  Closes #1328.

  17 March 2002; Donny Davies <woodchip@gentoo.org> postfix-1.1.3-r2.ebuild :
  Clarify the pkg_postinst() message about updating master.cf.  Cosmetic fix only.
  Not bumping package revision.  Closes #1153.

*postfix-1.1.3-r2 (20 Feb 2002)

  20 Feb 2002; Donny Davies <woodchip@gentoo.org> postfix-1.1.3-r2.ebuild :
  This update fixes the permissions and ownership on /usr/sbin/postdrop and
  /usr/sbin/postqueue, which were not set correctly last time.  Moved the
  postdrop group detection/creation into pkg_setup() to facilitate this.
  *Really* fix the CCARGS and AUXLIBS getting nuked this time.  Hooray!

*postfix-1.1.3-r1 (18 Feb 2002)

  18 Feb 2002; Donny Davies <woodchip@gentoo.org> ChangeLog, postfix-1.1.3-r1.ebuild,
  files/postfix.rc6 files/smtp.pam files/smtpd.conf:
  Lots of changes, ok here we go:  First, we now compile with cyrus-sasl library
  support, which gives us smtp authentication.  Next, there is support for the mta-tls
  USE variable which gives you secure connection support.  There are sample files in
  the files directory for smtp authentication.  This version fixes a glitch with the
  maildrop directory (we now let postfix create it itself, which it will do when you
  run 'postfix check' for the first time after installing this.  We create the postdrop
  group now, in pkg_postinst() if its not already on the user's system.  Some small
  cosmetic changes in the initscript, changing spaces for tabs.  The /var/spool/postfix
  directory is dropped into the system permanently now, which is good.  Fixed a small
  bug with CCARGS getting nuked.  Special thanks goto Ingo Luetkebohle
  <gentoo@blank.pages.de> for an *excellent* bug report.  Thanks Ingo!

  NB: I have successfully tested *outbound* authentication, and leave inbound
  authentication to those using it.  If you find bugs, please report them.  Enjoy.

*postfix-1.1.3 (3 Feb 2002)

*postfix-1.1.2-r1 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.