summaryrefslogtreecommitdiff
blob: 961497f4dada337f75fc0c8089a0fc148739031f (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
# ChangeLog for net-mail/dovecot
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.186 2008/11/02 10:33:51 dertobi123 Exp $

  02 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.1.6.ebuild:
  ppc stable, bug #244962

  01 Nov 2008; Markus Meier <maekke@gentoo.org> dovecot-1.1.6.ebuild:
  amd64/x86 stable, bug #244962

*dovecot-1.1.6 (30 Oct 2008)

  30 Oct 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.1.1-r1.ebuild, -dovecot-1.1.3.ebuild, +dovecot-1.1.6.ebuild:
  version bump, removed old versions

  12 Oct 2008; Raúl Porcel <armin76@gentoo.org> dovecot-1.1.4-r1.ebuild:
  alpha stable wrt #240409

  12 Oct 2008; Friedrich Oslage <bluebird@gentoo.org>
  dovecot-1.1.4-r1.ebuild:
  Stable on sparc, security bug #240409

  11 Oct 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.1.4-r1.ebuild:
  ppc stable, bug #240409

  08 Oct 2008; Markus Meier <maekke@gentoo.org> dovecot-1.1.4-r1.ebuild:
  amd64/x86 stable, bug #240409

*dovecot-1.1.4-r1 (07 Oct 2008)

  07 Oct 2008; Wolfram Schlich <wschlich@gentoo.org>
  +files/dovecot-1.1.4-expire.patch, -dovecot-1.1.4.ebuild,
  +dovecot-1.1.4-r1.ebuild:
  add patch for expire plugin crash, removed old version

*dovecot-1.1.4 (06 Oct 2008)

  06 Oct 2008; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.1.4.ebuild:
  version bump

*dovecot-1.1.3 (08 Sep 2008)

  08 Sep 2008; Wolfram Schlich <wschlich@gentoo.org>
  -files/dovecot-1.0.13-body.patch, -dovecot-1.0.13-r1.ebuild,
  -dovecot-1.1.2.ebuild, +dovecot-1.1.3.ebuild:
  version bump, removed old versions

  08 Aug 2008; Markus Meier <maekke@gentoo.org> dovecot-1.0.15-r1.ebuild,
  dovecot-1.1.1-r1.ebuild:
  amd64 stable, bug #231494

  01 Aug 2008; Raúl Porcel <armin76@gentoo.org> dovecot-1.0.15-r1.ebuild,
  dovecot-1.1.1-r1.ebuild:
  alpha/x86 stable wrt #231494

  01 Aug 2008; nixnut <nixnut@gentoo.org> dovecot-1.0.15-r1.ebuild,
  dovecot-1.1.1-r1.ebuild:
  Stable on ppc wrt bug 231494

  29 Jul 2008; Friedrich Oslage <bluebird@gentoo.org>
  dovecot-1.0.15-r1.ebuild, dovecot-1.1.1-r1.ebuild:
  Stable on sparc, bug #231494

*dovecot-1.1.2 (28 Jul 2008)

  28 Jul 2008; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.1.2.ebuild:
  version bump

  16 Jul 2008; Luca Longinotti <chtekk@gentoo.org> dovecot-1.0.13-r1.ebuild,
  dovecot-1.0.15-r1.ebuild, dovecot-1.1.1-r1.ebuild:
  Dep on PostgreSQL libs only.

*dovecot-1.0.15-r1 (08 Jul 2008)

  08 Jul 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.0.15.ebuild,
  +dovecot-1.0.15-r1.ebuild, dovecot-1.1.1-r1.ebuild:
  /etc/pam.d/managesieve symlink: fix handling for 1.1, added for 1.0

*dovecot-1.1.1-r1 (08 Jul 2008)

  08 Jul 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.1.1.ebuild,
  +dovecot-1.1.1-r1.ebuild:
  fix bugs #229067 and #230375

*dovecot-1.1.1 (23 Jun 2008)
*dovecot-1.0.15 (23 Jun 2008)

  23 Jun 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.0.14.ebuild,
  +dovecot-1.0.15.ebuild, -dovecot-1.1_rc10.ebuild, +dovecot-1.1.1.ebuild:
  version bump, removed old versions

*dovecot-1.1_rc10 (17 Jun 2008)

  17 Jun 2008; Wolfram Schlich <wschlich@gentoo.org>
  -files/dovecot-1.1_rc8-mbox-fixup.patch, -dovecot-1.1_rc8.ebuild,
  +dovecot-1.1_rc10.ebuild:
  version bump

*dovecot-1.1_rc8 (04 Jun 2008)
*dovecot-1.0.14 (04 Jun 2008)

  04 Jun 2008; Wolfram Schlich <wschlich@gentoo.org>
  +files/dovecot-1.1_rc8-mbox-fixup.patch, -dovecot-1.0.13-r5.ebuild,
  +dovecot-1.0.14.ebuild, -dovecot-1.1_rc6.ebuild, +dovecot-1.1_rc8.ebuild:
  version bump

  01 Jun 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.1_rc5-r1.ebuild, +dovecot-1.1_rc6.ebuild:
  version bump

*dovecot-1.1_rc6 (01 Jun 2008)

  01 Jun 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.1_rc5-r1.ebuild, +dovecot-1.1_rc6.ebuild:
  version bump, remove old version

  21 May 2008; Tiziano Müller <dev-zero@gentoo.org>
  dovecot-1.0.13-r1.ebuild, dovecot-1.0.13-r5.ebuild,
  dovecot-1.1_rc5-r1.ebuild:
  Changed dependency for postgresql from dev-db/postgresql to
  virtual/postgresql-server

*dovecot-1.1_rc5-r1 (20 May 2008)
*dovecot-1.0.13-r5 (20 May 2008)

  20 May 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.0.13-r4.ebuild, +dovecot-1.0.13-r5.ebuild,
  -dovecot-1.1_rc5.ebuild, +dovecot-1.1_rc5-r1.ebuild:
  sieve plugin version bump

*dovecot-1.1_rc5 (05 May 2008)
*dovecot-1.0.13-r4 (05 May 2008)

  05 May 2008; Wolfram Schlich <wschlich@gentoo.org>
  -files/dovecot-1.1_rc3-body.patch, -dovecot-1.0.13-r3.ebuild,
  +dovecot-1.0.13-r4.ebuild, -dovecot-1.1_rc4.ebuild,
  -dovecot-1.1_rc4-r2.ebuild, +dovecot-1.1_rc5.ebuild:
  version bump for 1.1, managesieve bump for 1.0 and 1.1

*dovecot-1.1_rc4-r2 (21 Apr 2008)
*dovecot-1.0.13-r3 (21 Apr 2008)

  21 Apr 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.0.13-r2.ebuild, +dovecot-1.0.13-r3.ebuild,
  -dovecot-1.1_rc4-r1.ebuild, +dovecot-1.1_rc4-r2.ebuild:
  revbump due to lastly committed init script dependency fix

  21 Apr 2008; Wolfram Schlich <wschlich@gentoo.org> files/dovecot.init,
  files/dovecot.init-r1:
  fix init script dependencies and indention (bug #217941, comment #3)

*dovecot-1.1_rc4-r1 (17 Apr 2008)

  17 Apr 2008; Wolfram Schlich <wschlich@gentoo.org> +files/dovecot.init-r1,
  +dovecot-1.1_rc4-r1.ebuild:
  add multiple instances support to init script

*dovecot-1.1_rc4 (02 Apr 2008)

  02 Apr 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.1_rc3-r1.ebuild, -dovecot-1.1_rc3-r2.ebuild,
  +dovecot-1.1_rc4.ebuild:
  version bump, removed old versions

  18 Mar 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.0.10.ebuild,
  -dovecot-1.0.13.ebuild, -dovecot-1.1_rc3.ebuild:
  removed old versions

*dovecot-1.1_rc3-r2 (18 Mar 2008)
*dovecot-1.0.13-r2 (18 Mar 2008)

  18 Mar 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.0.13-r2.ebuild, +dovecot-1.1_rc3-r2.ebuild:
  add sqlite3 USE flag wrt bug #201985

  15 Mar 2008; Wolfram Schlich <wschlich@gentoo.org>
  dovecot-1.0.13-r1.ebuild, dovecot-1.1_rc3-r1.ebuild:
  fix mail group setting (thanks to rbu)

  14 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0.13-r1.ebuild:
  ppc stable, bug #212336

  14 Mar 2008; Steve Dibb <beandog@gentoo.org> dovecot-1.0.13.ebuild,
  dovecot-1.0.13-r1.ebuild:
  amd64 stable, bug 212336

  12 Mar 2008; Raúl Porcel <armin76@gentoo.org> dovecot-1.0.13-r1.ebuild:
  alpha/sparc stable wrt #212336

  12 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
  dovecot-1.0.13-r1.ebuild:
  stable x86, security bug 212336

*dovecot-1.1_rc3-r1 (11 Mar 2008)
*dovecot-1.0.13-r1 (11 Mar 2008)

  11 Mar 2008; Wolfram Schlich <wschlich@gentoo.org>
  +files/dovecot-1.0.13-body.patch, +files/dovecot-1.1_rc3-body.patch,
  +dovecot-1.0.13-r1.ebuild, +dovecot-1.1_rc3-r1.ebuild:
  added patches for fetch_bodystructure/imap_bodystructure_write

  10 Mar 2008; Wolfram Schlich <wschlich@gentoo.org>
  -dovecot-1.0.10-r1.ebuild, -dovecot-1.0.11.ebuild, -dovecot-1.0.12.ebuild,
  -dovecot-1.1_beta15.ebuild, -dovecot-1.1_beta16.ebuild,
  -dovecot-1.1_rc1.ebuild, -dovecot-1.1_rc1-r1.ebuild:
  removed old versions

*dovecot-1.1_rc3 (10 Mar 2008)
*dovecot-1.0.13 (10 Mar 2008)

  10 Mar 2008; Wolfram Schlich <wschlich@gentoo.org> metadata.xml,
  +dovecot-1.0.13.ebuild, +dovecot-1.1_rc3.ebuild:
  version bump

*dovecot-1.0.12 (06 Mar 2008)

  06 Mar 2008; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.0.12.ebuild:
  version bump

*dovecot-1.0.11 (04 Mar 2008)

  04 Mar 2008; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.0.11.ebuild:
  version bump

*dovecot-1.1_rc1-r1 (03 Mar 2008)

  03 Mar 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_rc1-r1.ebuild:
  version bump of the MANAGESIEVE plugin

*dovecot-1.1_rc1 (22 Feb 2008)

  22 Feb 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_rc1.ebuild:
  version bump

*dovecot-1.1_beta16 (17 Feb 2008)

  17 Feb 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_beta16.ebuild:
  version bump

  14 Feb 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.0.8.ebuild,
  -dovecot-1.0.9.ebuild, -dovecot-1.1_beta14.ebuild:
  removed old versions

*dovecot-1.1_beta15 (14 Feb 2008)
*dovecot-1.0.10-r1 (14 Feb 2008)

  14 Feb 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.0.10-r1.ebuild, +dovecot-1.1_beta15.ebuild:
  1.1 version bump, 1.0 managesieve patch update

  23 Jan 2008; Wolfram Schlich <wschlich@gentoo.org> -dovecot-1.0.3.ebuild,
  -dovecot-1.0.5.ebuild, -dovecot-1.0.6.ebuild, -dovecot-1.0.7.ebuild,
  -dovecot-1.1_beta11.ebuild, -dovecot-1.1_beta12.ebuild,
  -dovecot-1.1_beta13.ebuild:
  removed old versions

*dovecot-1.1_beta14 (22 Jan 2008)

  22 Jan 2008; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_beta14.ebuild:
  version bump

  22 Jan 2008; Peter Weller <welp@gentoo.org> dovecot-1.0.10.ebuild:
  Stable on amd64; bug 203731

  07 Jan 2008; Raúl Porcel <armin76@gentoo.org> dovecot-1.0.10.ebuild:
  alpha/sparc stable wrt security #203731

  06 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0.10.ebuild:
  ppc stable, bug #203731

  03 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
  dovecot-1.0.10.ebuild:
  stable x86, security bug 203731

*dovecot-1.1_beta13 (30 Dec 2007)

  30 Dec 2007; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_beta13.ebuild:
  version bump

*dovecot-1.1_beta12 (29 Dec 2007)
*dovecot-1.0.10 (29 Dec 2007)

  29 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.0.10.ebuild,
  +dovecot-1.1_beta12.ebuild:
  version bump

  25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
  Removing uberlord from metadata.xml as per #199318.

*dovecot-1.1_beta11 (12 Dec 2007)

  12 Dec 2007; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.1_beta11.ebuild:
  add a 1.1 beta version

*dovecot-1.0.9 (12 Dec 2007)

  12 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.0.9.ebuild:
  version bump

  09 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> dovecot-1.0.8.ebuild:
  ROOT fixes

  09 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> dovecot-1.0.8.ebuild:
  fix bug #201686

*dovecot-1.0.8 (08 Dec 2007)

  08 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> +dovecot-1.0.8.ebuild:
  version bump, add managesieve patch, small cleanups

  06 Nov 2007; Raúl Porcel <armin76@gentoo.org> dovecot-1.0.5.ebuild:
  alpha/sparc stable wrt #197388

  03 Nov 2007; Lars Weiler <pylon@gentoo.org> dovecot-1.0.5.ebuild:
  stable ppc, bug #197388

  02 Nov 2007; Roy Marples <uberlord@gentoo.org> files/dovecot.init:
  Start after ntp-client and ntp, #197872 thanks to James Pattinson

*dovecot-1.0.7 (30 Oct 2007)

  30 Oct 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.7.ebuild:
  Double Bump

  29 Oct 2007; Dawid Węgliński <cla@gentoo.org> dovecot-1.0.5.ebuild:
  Stable on x86 (bug #197388)

  29 Oct 2007; Daniel Gryniewicz <dang@gentoo.org> dovecot-1.0.5.ebuild:
  Marked stable on amd64 for bug #197388

*dovecot-1.0.6 (29 Oct 2007)

  29 Oct 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.6.ebuild:
  Bump

*dovecot-1.0.5 (10 Sep 2007)

  10 Sep 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.5.ebuild:
  Bump.

  24 Aug 2007; Raúl Porcel <armin76@gentoo.org> dovecot-1.0.3.ebuild:
  alpha stable wrt security #187512

  23 Aug 2007; Andrej Kacian <ticho@gentoo.org> dovecot-1.0.3.ebuild:
  Stable on x86, security bug #187512.

  23 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0.3.ebuild:
  ppc stable, bug #187512

  23 Aug 2007; Christoph Mende <angelos@gentoo.org> dovecot-1.0.3.ebuild:
  Stable on amd64 wrt security bug #187512

  23 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> dovecot-1.0.3.ebuild:
  Stable on sparc wrt security #187512

  08 Aug 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0.3.ebuild:
  Update sieve to 1.0.2, #188147 thanks to Andrew Roberts.

*dovecot-1.0.3 (01 Aug 2007)

  01 Aug 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc29-r1.ebuild,
  dovecot-1.0.2-r1.ebuild, +dovecot-1.0.3.ebuild:
  New version and change download URL.

*dovecot-1.0.2-r1 (19 Jul 2007)
*dovecot-1.0_rc29-r1 (19 Jul 2007)

  19 Jul 2007; Roy Marples <uberlord@gentoo.org>
  +dovecot-1.0_rc29-r1.ebuild, +dovecot-1.0.2-r1.ebuild:
  fperms are now u+s for suid.

*dovecot-1.0.2 (15 Jul 2007)

  15 Jul 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.2.ebuild:
  Bump, #185407 thanks to Kilburn Abrahams

  28 Jun 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0.1.ebuild:
  Update sieve to 1.0.1, #182182 thanks to Yoann Pannier

*dovecot-1.0.1 (26 Jun 2007)

  26 Jun 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.1.ebuild:
  Bump, #182182 thanks to Kilburn Abrahams.

  12 Jun 2007; Marius Mauch <genone@gentoo.org> dovecot-1.0_rc29.ebuild,
  dovecot-1.0_rc31.ebuild, dovecot-1.0_rc31-r1.ebuild,
  dovecot-1.0_rc32.ebuild, dovecot-1.0.0.ebuild:
  Replacing einfo with elog

*dovecot-1.0.0 (13 Apr 2007)

  13 Apr 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0.0.ebuild:
  This is the fourth sign of the apocalypse! Debian 4.0, me being funny, the
  Engineer I work with thanking me; Dovecot-1.0.0 released!

*dovecot-1.0_rc32 (12 Apr 2007)

  12 Apr 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc32.ebuild:
  Another day, another dovecot.

*dovecot-1.0_rc31-r1 (12 Apr 2007)

  12 Apr 2007; Roy Marples <uberlord@gentoo.org>
  +files/dovecot-1.0_rc31-ldap.patch, +dovecot-1.0_rc31-r1.ebuild:
  Define LDAP_DEPRECATED for OpenLDAP 2.3 users #162437 which also stops it
  segfaulting on amd64, #174139.

*dovecot-1.0_rc31 (10 Apr 2007)

  10 Apr 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc31.ebuild:
  Boing.

  07 Apr 2007; Peter Weller <welp@gentoo.org> dovecot-1.0_rc29.ebuild:
  Stable on amd64 wrt bug 172795

*dovecot-1.0_rc30 (06 Apr 2007)

  06 Apr 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc30.ebuild:
  New version - hopefully the last before v1.0 (but don't hold your breath!)

  03 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  dovecot-1.0_rc29.ebuild:
  Stable on sparc wrt security #172795

  02 Apr 2007; Jose Luis Rivero <yoswink@gentoo.org>
  dovecot-1.0_rc29.ebuild:
  Stable on alpha wrt security bug #172795

  02 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0_rc29.ebuild:
  ppc stable, bug #172795

  30 Mar 2007; Andrej Kacian <ticho@gentoo.org> dovecot-1.0_rc29.ebuild:
  Stable on x86, security bug #172795.

*dovecot-1.0_rc29 (30 Mar 2007)

  30 Mar 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc29.ebuild:
  New version fixes a security hole in the zlib plugin.

*dovecot-1.0_rc28 (28 Mar 2007)

  28 Mar 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc28.ebuild:
  Bumpage - but with a fix!
  suid USE flag now installs deliver as suid, #172576.

*dovecot-1.0_rc27 (13 Mar 2007)

  13 Mar 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc27.ebuild:
  U L T R A   B U M P !

*dovecot-1.0_rc26 (07 Mar 2007)

  07 Mar 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc26.ebuild:
  Bumpage!

*dovecot-1.0_rc25 (01 Mar 2007)

  01 Mar 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc25.ebuild:
  Another day, another RC.

*dovecot-1.0_rc24 (22 Feb 2007)

  22 Feb 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc24.ebuild:
  Bumpage

*dovecot-1.0_rc23 (20 Feb 2007)

  20 Feb 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc23.ebuild:
  Bump.

  12 Feb 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc22.ebuild:
  Added ~x86-fbsd keyword, #166391

*dovecot-1.0_rc22 (11 Feb 2007)

  11 Feb 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc22.ebuild:
  New release.

*dovecot-1.0_rc21 (02 Feb 2007)

  02 Feb 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc21.ebuild:
  New version.

  30 Jan 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc19.ebuild:
  Uncomment ssl_*_file directices with correct path, #163851.

*dovecot-1.0_rc19 (25 Jan 2007)

  25 Jan 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc19.ebuild:
  Yay, another RC.

  08 Jan 2007; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc17.ebuild:
  Use docert from ssl-cert eclass to make our certs.
  Touch certs in pkg_postinst so newer portages don't remove them.

*dovecot-1.0_rc17 (07 Jan 2007)

  07 Jan 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc17.ebuild:
  New release, fixes mysql auth in rc16.

*dovecot-1.0_rc16 (05 Jan 2007)

  05 Jan 2007; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc16.ebuild:
  New RC

*dovecot-1.0_rc15-r1 (05 Dec 2006)

  05 Dec 2006; Roy Marples <uberlord@gentoo.org>
  +dovecot-1.0_rc15-r1.ebuild:
  Add sieve support, #141743. Thanks to Brian G. Peterson and the others on the
  bug.

  05 Dec 2006; Roy Marples <uberlord@gentoo.org> files/dovecot.init:
  Add a reload function to the init script, #157139 thanks to Marshal Newrock.

  25 Nov 2006; Bryan Østergaard <kloeri@gentoo.org>
  dovecot-1.0_rc15.ebuild:
  Stable on Alpha, bug 155654.

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> dovecot-1.0_beta8.ebuild,
  dovecot-1.0_rc15.ebuild:
  dev-db/mysql => virtual/mysql, manually

  23 Nov 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc15.ebuild:
  Fix mbox location in default dovecot.conf

  22 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0_rc15.ebuild:
  ppc stable, bug #155654

  20 Nov 2006; <blubb@gentoo.org> dovecot-1.0_rc15.ebuild:
  stable on amd64

  20 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  dovecot-1.0_rc15.ebuild:
  Stable on sparc wrt security #155654

  20 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  dovecot-1.0_rc15.ebuild:
  stable x86, security bug #155654

*dovecot-1.0_rc15 (19 Nov 2006)

  19 Nov 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc15.ebuild:
  New release. Fixes a off-by-one buffer overflow in cache file handling.
  The code is executed only with mmap_disable=yes and only if index files
  are used (ie. INDEX=MEMORY is safe).

*dovecot-1.0_rc14 (12 Nov 2006)

  12 Nov 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc14.ebuild:
  New RC

*dovecot-1.0_rc13 (08 Nov 2006)

  08 Nov 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc13.ebuild:
  YARC

*dovecot-1.0_rc12 (05 Nov 2006)

  05 Nov 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc12.ebuild:
  New upstream release, fixes #154104.

*dovecot-1.0_rc11 (04 Nov 2006)

  04 Nov 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc11.ebuild:
  New upstream rc - maybe last before 1.0?

*dovecot-1.0_rc10 (16 Oct 2006)

  16 Oct 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc10.ebuild:
  Version bump.

*dovecot-1.0_rc9 (14 Oct 2006)

  14 Oct 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc9.ebuild:
  Version bump.
  Index files will be rebuilt on 64-bit machines, you will see warnings about
  this in your logs.

*dovecot-1.0_rc8 (09 Oct 2006)

  09 Oct 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc8.ebuild:
  Bump.

  05 Sep 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc7.ebuild:
  Only install developer documentation with doc USE flag, #145433.

  30 Aug 2006; <blubb@gentoo.org> dovecot-1.0_beta8.ebuild:
  stable on amd64

  20 Aug 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc7.ebuild:
  Fix no ipv6 support, #144450 thanks to Marcin Deranek.

*dovecot-1.0_rc7 (18 Aug 2006)

  18 Aug 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc7.ebuild:
  Bump.

*dovecot-1.0_rc6 (08 Aug 2006)

  08 Aug 2006; Roy Marples <uberlord@gentoo.org>
  +files/dovecot-1.0_rc6-proxy-ssl.patch, +dovecot-1.0_rc6.ebuild:
  rc6 is out - include a patch for ssl proxies.

*dovecot-1.0_rc5 (03 Aug 2006)

  03 Aug 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc5.ebuild:
  Version bump to fix mbox problems caused in rc3, #142576
  thanks to Kilburn Abrahams.

*dovecot-1.0_rc3 (02 Aug 2006)

  02 Aug 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc3.ebuild:
  Bump

*dovecot-1.0_rc2 (04 Jul 2006)

  04 Jul 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc2.ebuild:
  Version bump.

*dovecot-1.0_rc1 (28 Jun 2006)

  28 Jun 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_rc1.ebuild:
  New upstream release.

*dovecot-1.0_beta9-r2 (16 Jun 2006)

  16 Jun 2006; Roy Marples <uberlord@gentoo.org>
  +files/dovecot-1.0_beta9-ssl_listen.patch, +dovecot-1.0_beta9-r2.ebuild:
  Add upstream patch to fix #136781 a whole load better.

*dovecot-1.0_beta9-r1 (16 Jun 2006)

  16 Jun 2006; Roy Marples <uberlord@gentoo.org>
  +files/dovecot-1.0_beta9-configure.patch, +dovecot-1.0_beta9-r1.ebuild:
  Patch configure.in to detect working inotify, epoll, kqueue, dnotify as
  we cannot do so in the ebuild.

  15 Jun 2006; Roy Marples <uberlord@gentoo.org>
  dovecot-1.0_beta8-r1.ebuild, dovecot-1.0_beta9.ebuild:
  We now only enable inotify support if you have >=linux-headers-2.6.16 and
  >=glibc-2.4 - hopefully glibc-2.4 has been emerged against
  >=linux-headers-2.6.16, but we have no way of knowing this :/

  14 Jun 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_beta9.ebuild:
  Documentation now installed via the doc USE flag.
  Example configs for ldap and sql are now copied instead of moved, #136812.
  Set ssl_listen = * when emerged without ipv6, #136781

*dovecot-1.0_beta9 (13 Jun 2006)

  13 Jun 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta9.ebuild:
  Version bump.

  31 May 2006; Roy Marples <uberlord@gentoo.org>
  dovecot-1.0_beta8-r1.ebuild:
  For Linux we now enable epoll
  Also we enable inotify if we have >=glibc-2.4
  For FreeBSD we now enable kqueue by default

*dovecot-1.0_beta8-r1 (30 May 2006)

  30 May 2006; Roy Marples <uberlord@gentoo.org>
  +dovecot-1.0_beta8-r1.ebuild:
  Install sample LDAP and/or SQL config files based on USE flags.
  Fixes #123049 thanks to Max Lorenz.

  14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0_beta8.ebuild:
  ppc stable, bug #133149

  13 May 2006; Fernando J. Pereda <ferdy@gentoo.org>
  dovecot-1.0_beta8.ebuild:
  Stable on alpha wrt bug #133149

  13 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  dovecot-1.0_beta8.ebuild:
  Stable on sparc wrt security #133149

  13 May 2006; Krzysiek Pawlik <nelchael@gentoo.org>
  dovecot-1.0_beta8.ebuild:
  Stable on x86, see bug #133149.

*dovecot-1.0_beta8 (12 May 2006)

  12 May 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta8.ebuild:
  New upstream release, #113149 thanks to Jan Kundrát.

*dovecot-1.0_beta7 (13 Apr 2006)

  13 Apr 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta7.ebuild:
  New upstream release.

  10 Apr 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_beta5.ebuild:
  Removed berkdb depenency as afaik dovecot does not use berkdb anymore.
  Fixes #124039.

*dovecot-1.0_beta5 (10 Apr 2006)

  10 Apr 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta5.ebuild:
  New release, #129295.
  ipv6 USE flag now enables listening on ipv6 by default in the config file.

  26 Feb 2006; Stefaan De Roeck <stefaan@gentoo.org>
  dovecot-1.0_beta3.ebuild:
  Stable on alpha (wrt security bug #123024)

  23 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  dovecot-1.0_beta3.ebuild:
  Stable on sparc wrt security #123024

  22 Feb 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  dovecot-1.0_beta3.ebuild:
  ppc stable, bug #123024

  22 Feb 2006; Joshua Jackson <tsunam@gentoo.org> dovecot-1.0_beta3.ebuild:
  Stable on x86; bug #123024 for Ticho

*dovecot-1.0_beta3 (10 Feb 2006)

  10 Feb 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta3.ebuild:
  New upstream version.
  We can now create DH SSL parameters via emerge --config dovecot.

*dovecot-1.0_beta2 (24 Jan 2006)

  24 Jan 2006; Roy Marples <uberlord@gentoo.org> +dovecot-1.0_beta2.ebuild:
  New upstream version.
  WARNING: beta2 requires DH parameters for SSL/TLS usage now. These will be
  generated the next time dovecot is started and may take some time. It took
  around 10 minutes on my VIA C3-2 1 GigaHertz server. This is a onetime
  operation.

*dovecot-1.0_alpha5 (14 Dec 2005)

  14 Dec 2005; Roy Marples <uberlord@gentoo.org> files/dovecot.init,
  +dovecot-1.0_alpha5.ebuild:
  nopop3d USE flag changed to pop3d - I hate double negatives
  sasl USE flag dropped as dovecot has its own internal version - no need to
  depend on cyrus-sasl
  maildir USE flag dropped as -mbox implies maildir
  kerberos USE flag added
  init script is now more robust and should start after all authenticators
  Oh yeah - new upstream version too ;)

  10 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org>
  dovecot-0.99.14-r1.ebuild:
  fix for bug #112070

*dovecot-1.0_alpha3 (23 Sep 2005)

  23 Sep 2005; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.0_alpha3.ebuild:
  version bump

  13 Sep 2005; Wolfram Schlich <wschlich@gentoo.org>
  dovecot-1.0_alpha2.ebuild:
  fixups

*dovecot-1.0_alpha2 (13 Sep 2005)

  13 Sep 2005; Wolfram Schlich <wschlich@gentoo.org>
  +dovecot-1.0_alpha2.ebuild:
  version bump

  23 Aug 2005; Andrej Kacian <ticho@gentoo.org> dovecot-0.99.11-r1.ebuild,
  dovecot-0.99.13.ebuild, dovecot-0.99.14.ebuild, dovecot-0.99.14-r1.ebuild:
  Use -1 for shell argument to enewuser. Bug #103421.

  17 Jun 2005; Fernando J. Pereda <ferdy@gentoo.org>
  dovecot-0.99.14-r1.ebuild:
  Stable on alpha

  20 May 2005; Fernando J. Pereda <ferdy@gentoo.org>
  dovecot-0.99.14-r1.ebuild:
  keyworded ~alpha wrt #93325

  16 May 2005; Jason Wever <weeve@gentoo.org> dovecot-0.99.14-r1.ebuild:
  Stable on SPARC.

  01 May 2005; Michael Hanselmann <hansmi@gentoo.org>
  dovecot-0.99.14-r1.ebuild:
  Stable on ppc.

  09 Apr 2005; Andrej Kacian <ticho@gentoo.org> dovecot-0.99.14-r1.ebuild:
  Stable on x86. Closes #87676, reported by Daniel Webert <rockoo@gmail.com>.

  01 Apr 2005; Wolfram Schlich <wschlich@gentoo.org>
  dovecot-0.99.11-r1.ebuild, dovecot-0.99.13.ebuild,
  dovecot-0.99.14-r1.ebuild, dovecot-0.99.14.ebuild:
  fix broken sed calls (-ie -> -i -e)

*dovecot-0.99.14-r1 (25 Feb 2005)

  25 Feb 2005; Andrej Kacian <ticho@gentoo.org> +dovecot-0.99.14-r1.ebuild:
  Use common PAM profiles provided by >=net-mail/mailbase-0.00-r8 if pam USE
  flag is set. This only means changing auth_passdb setting in installed
  config file to "pam *".

*dovecot-0.99.14 (18 Feb 2005)

  18 Feb 2005; Grant Goodyear <g2boojum@gentoo.org> dovecot-0.99.13.ebuild,
  +dovecot-0.99.14.ebuild:
  Version bump (bug #82493), thanks to Daniel Webert.

*dovecot-0.99.13 (08 Jan 2005)

  08 Jan 2005; Grant Goodyear <g2boojum@gentoo.org> -dovecot-0.99.12.ebuild,
  +dovecot-0.99.13.ebuild:
  Version bump.  Should solve bugs 74334 (thanks Daniel Webert)
  and 77131 (thanks Alexander Skwar).  Removing .12.

*dovecot-0.99.12 (07 Dec 2004)

  07 Dec 2004; Grant Goodyear <g2boojum@gentoo.org> +dovecot-0.99.12.ebuild:
  Version bump; thanks to Andreas Simon (bug #73561).

*dovecot-0.99.11-r1 (01 Nov 2004)

  01 Nov 2004; Grant Goodyear <g2boojum@gentoo.org>
  -dovecot-0.99.10.9-r1.ebuild, +dovecot-0.99.11-r1.ebuild,
  -dovecot-0.99.11.ebuild:
  New revision that removes gnutls support, since
  upstream tells us that gnutls will be broken for some
  time (http://www.dovecot.org/list/dovecot/2004-November/005169.html),
  thanks to Ooblick (bug #67628) for finding the problem.  Also fixed
  permissions, thanks to tove (bug #68824).  Marking stable on x86
  and removing old (and broken) versions.

  22 Sep 2004; Andrej Kacian <ticho@gentoo.org> dovecot-0.99.10.9-r1.ebuild,
  dovecot-0.99.11.ebuild:
  Do not use ${HOMEPAGE} in SRC_URI.

*dovecot-0.99.11 (19 Sep 2004)

  19 Sep 2004; Grant Goodyear <g2boojum@gentoo.org>
  dovecot-0.99.10.9-r1.ebuild, +dovecot-0.99.11.ebuild:
  Version bump.  Thanks to Daniel Webert (bug #63849).
  Also set static uid/gid.  (Thanks to Nils Marving, bug #58772)

*dovecot-0.99.10.9-r1 (31 Aug 2004)

  31 Aug 2004; <ticho@gentoo.org> +dovecot-0.99.10.9-r1.ebuild:
  Applied patch to add mysql USE flag, committed by pille <pille@struction.de>.
  Closes #61297.

*dovecot-0.99.10.9 (17 Aug 2004)

  17 Aug 2004; Grant Goodyear <g2boojum@gentoo.org> -dovecot-0.99.10.7.ebuild,
  +dovecot-0.99.10.9.ebuild:
  Whoops, should have bumped to .9, not .7.

*dovecot-0.99.10.7 (16 Aug 2004)

  16 Aug 2004; Grant Goodyear <g2boojum@gentoo.org> dovecot-0.99.10.6.ebuild,
  +dovecot-0.99.10.7.ebuild:
  Version bump (Bug 57136; thanks to Andreas Simon and Daniel Webert),
  removing old versions, marking .6 stable on x86.

*dovecot-0.99.10.6 (24 Jun 2004)

  24 Jun 2004; Grant Goodyear <g2boojum@gentoo.org> +dovecot-0.99.10.6.ebuild:
  Version bump (Thanks to Andreas Simon, Bug # 54826).

*dovecot-0.99.10.5-r1 (12 Jun 2004)

  12 Jun 2004; Grant Goodyear <g2boojum@gentoo.org>
  +dovecot-0.99.10.4-r1.ebuild, -dovecot-0.99.10.4.ebuild,
  +dovecot-0.99.10.5-r1.ebuild, -dovecot-0.99.10.5.ebuild:
  Security fix: old ebuilds installed /etc/dovecot.conf w/ 0644 
  permissions, but sql passwords might be stored there.
  
  Thanks to Andreas Simon (Bug #53707).

  11 Jun 2004; Aron Griffis <agriffis@gentoo.org> dovecot-0.99.10.4.ebuild:
  Fix use invocation

  03 Jun 2004; David Holm <dholm@gentoo.org> dovecot-0.99.10.5.ebuild:
  Added to ~ppc.

  30 May 2004; Grant Goodyear <g2boojum@gentoo.org> dovecot-0.99.10.4.ebuild:
  Added "gnutls" to IUSE and fixed ssl certificate handling
  (thanks to Andreas Simon, bugs # 49876 and # 49690)

*dovecot-0.99.10.5 (30 May 2004)

  30 May 2004; Grant Goodyear <g2boojum@gentoo.org> +dovecot-0.99.10.5.ebuild:
  Version bump (thanks to David Pufer, bug # 52371).  I also did some
  fairly massive cleaning, so this ebuild could be massively broken
  (although it does seem to be working just fine for me -- dovecot is the imap
  server that my family uses).  Also replaced the "maildir" USE flag with 
  "mbox", since maildir is the Gentoo default and thus should never have
  been a USE flag, and cleaned up the logic to make gnutls preferred over
  ssl if both gnutls and ssl are secified in USE.

  09 May 2004; Jason Wever <weeve@gentoo.org> dovecot-0.99.10.4.ebuild:
  Added ~sparc keyword.

  07 May 2004; Danny van Dyk <kugelfang@gentoo.org> dovecot-0.99.10.4.ebuild:
  Marked ~amd64.

*dovecot-0.99.10.4 (10 Apr 2004)

  10 Apr 2004; Grant Goodyear <g2boojum@hotmail.com> :
  Long overdue new package.  Thanks to Zach Bagnell, Andreas Simon, Lars 
  Trieloff, Andrew Cooks, Tony Vroon, and tseng.