source: projects/specs/trunk/d/dovecot/dovecot-vl.spec @ 12327

Revision 12327, 35.9 KB checked in by tomop, 4 years ago (diff)

updated 4 packages

dovecot-2.3.10-1

libsodium-1.0.18-1

screen-4.8.0-1

wireshark-3.2.2-1

Line 
1Summary: Dovecot Secure imap server
2Summary(ja): Dovecot セキュア IMAP サーバ
3Name: dovecot
4Version: 2.3.10
5Release: 1%{?_dist_release}
6#dovecot itself is MIT, a few sources are PD, pigeonhole is LGPLv2
7License: MIT and LGPLv2 and BSD with advertising
8Group: System Environment/Daemons
9
10%define build_postgres 1
11%define build_mysql 1
12%define build_sqlite 1
13%define build_ldap 1
14
15# pigeonhole
16%define build_pigeonhole 1
17%define pigeonholever 0.5.10
18
19# pop before smtp (drac)
20%define build_drac 0
21
22URL: http://www.dovecot.org/
23
24%global  shortver %(echo "%{version}" | perl -p -e 's/^([0-9]+\.[0-9]+).*$/\\1/')
25Source:  https://dovecot.org/releases/%{shortver}/%{name}-%{version}.tar.gz
26Source1: dovecot.init
27Source2: dovecot.pam
28Source8: https://pigeonhole.dovecot.org/releases/%{shortver}/dovecot-%{shortver}-pigeonhole-%{pigeonholever}.tar.gz
29Source9: dovecot.sysconfig
30Source10: dovecot.tmpfilesd
31
32#our own
33Source14: dovecot.conf.5
34
35# drac plugin (pop before smtp)
36# Source100: http://www.dovecot.org/patches/1.1/drac.c
37# Source100: http://sourceforge.jp/projects/dovecot2-drac/downloads/53176/dovecot2-drac-0.1.tar.gz
38# Source110: README.plugin-drac
39
40Patch1: dovecot-2.0-defaultconfig.patch
41Patch2: dovecot-1.0.beta2-mkcert-permissions.patch
42# local filesystem rules
43Patch3: dovecot-1.0.rc7-mkcert-paths.patch
44Patch4: dovecot-2.2-mkcert-10years.patch
45
46Patch10: dovecot-2.3.0.1-libxcrypt.patch
47Patch11: dovecot-2.3.4-de42b54.patch
48
49Packager: iwamoto
50Vendor: Project Vine
51Distribution: Vine Linux
52
53Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
54BuildRequires: openssl-devel, pam-devel, zlib-devel
55BuildRequires: bzip2-devel, libcap-devel
56BuildRequires: libtool autoconf automake, gettext-devel
57BuildRequires: pkgconfig
58BuildRequires: krb5-devel
59BuildRequires: tcp_wrappers
60BuildRequires: libxcrypt-devel
61
62# Package includes an initscript service file,
63# needs to require initscripts package
64Requires: initscripts
65Requires(pre): /usr/sbin/useradd
66Requires(post): /sbin/chkconfig, /usr/sbin/useradd, /sbin/chkconfig
67Requires(preun): /usr/sbin/userdel, /usr/sbin/groupdel
68Requires(preun): /sbin/chkconfig, /sbin/service
69Requires(postun): /sbin/service
70
71%if %{build_postgres}
72BuildRequires: libpq-devel
73%endif
74
75%if %{build_mysql}
76BuildRequires: libmariadb-devel
77%endif
78
79%if %{build_sqlite}
80BuildRequires: sqlite3-devel
81%endif
82
83%if %{build_ldap}
84BuildRequires: openldap-devel
85%endif
86
87%if %{build_drac}
88BuildRequires: dracd
89%endif
90
91%define docdir %{_docdir}/%{name}
92%define ssldir %{_sysconfdir}/pki/%{name}
93
94%description
95Dovecot is an IMAP server for Linux/UNIX-like systems, written with security
96primarily in mind.  It also contains a small POP3 server.  It supports mail
97in either of maildir or mbox formats.
98
99The SQL drivers and authentication plugins are in their subpackages.
100
101
102%if %{build_pigeonhole}
103%package pigeonhole
104Requires: %{name} = %{version}-%{release}
105Obsoletes: dovecot-sieve
106Summary: Sieve and managesieve plug-in for dovecot
107Group: System Environment/Daemons
108License: MIT and LGPLv2
109
110%description pigeonhole
111This package provides sieve and managesieve plug-in for dovecot LDA.
112
113%endif
114
115%if %{build_postgres}
116%package pgsql
117Requires: %{name} = %{version}-%{release}
118Summary: Postgres SQL backend for dovecot
119Group: System Environment/Daemons
120%description pgsql
121This package provides the Postgres SQL backend for dovecot-auth etc.
122%endif
123
124%if %{build_mysql}
125%package mysql
126Requires: %{name} = %{version}-%{release}
127Summary: MySQL backend for dovecot
128Group: System Environment/Daemons
129%description mysql
130This package provides the MySQL backend for dovecot-auth etc.
131%endif
132
133%if %{build_sqlite}
134%package sqlite
135Requires: %{name} = %{version}-%{release}
136Summary: SQLite backend for dovecot
137Group: System Environment/Daemons
138%description sqlite
139This package provides the SQLite backend for dovecot-auth etc.
140%endif
141
142%if %{build_ldap}
143%package ldap
144Requires: %{name} = %{version}-%{release}
145Summary: LDAP auth plugin for dovecot
146Group: System Environment/Daemons
147%description ldap
148This package provides the LDAP auth plugin for dovecot-auth etc.
149%endif
150
151%if %{build_drac}
152%package drac
153Summary: Dovecot plugin module for support drac (POP before SMTP)
154Group: System Environment/Daemons
155Requires: %{name} = %{version}-%{release}
156Requires: dracd
157Obsoletes: %{name}-plugin-drac < %{version}-%{release}
158
159%description drac
160Dovecot plugin module for support drac (POP before SMTP)
161%endif
162
163%package devel
164Requires: %{name} = %{version}-%{release}
165Summary: Development files dor dovecot
166Group: Development/Libraries
167%description devel
168This package provides the development files for dovecot.
169
170
171%prep
172
173%setup -q
174
175%patch1 -p1 -b .default-settings
176%patch2 -p1
177%patch3 -p1
178%patch4 -p1
179
180%if %{build_drac}
181%setup -T -D -q -a 100
182mv dovecot2-drac/README README.dovecot2-drac
183mv dovecot2-drac/README.j README.dovecot2-drac.jp
184cp %{SOURCE110} .
185%endif
186
187%if %{build_pigeonhole}
188%setup -q -D -T -a 8
189%endif
190
191%build
192# rm -f ./configure
193# autoreconf -i -f
194%configure                           \
195    INSTALL_DATA="install -c -p -m644" \
196    --disable-static             \
197%if %{build_postgres}
198    --with-pgsql                 \
199%endif
200%if %{build_mysql}
201    --with-mysql                 \
202%endif
203%if %{build_sqlite}
204    --with-sqlite                \
205%endif
206    --with-sql=plugin            \
207    --with-gssapi=plugin         \
208    --with-ssl=openssl           \
209    --with-ssldir=%{ssldir}      \
210    --with-libcap                \
211    --with-libwrap               \
212    --with-zlib                  \
213%if %{build_ldap}
214    --with-ldap=plugin           \
215%endif
216    --with-docs
217
218sed -i 's|/etc/ssl|/etc/pki/dovecot|' doc/mkcert.sh doc/example-config/conf.d/10-ssl.conf
219
220sed -i -e 's/^#define CLIENT_PROGRESS_TIMEOUT.*$/#define CLIENT_PROGRESS_TIMEOUT 30/' src/lib-http/test-http-payload.c
221
222make %{?_smp_mflags}
223
224%if %{build_pigeonhole}
225#pigeonhole
226pushd dovecot-2.3-pigeonhole-%{pigeonholever}
227autoreconf -fiv
228%configure                             \
229    INSTALL_DATA="install -c -p -m644" \
230    --disable-static                   \
231    --with-dovecot=../                 \
232    --without-unfinished-features
233
234make %{?_smp_mflags}
235popd
236%endif
237
238%if %{build_drac}
239pushd dovecot2-drac
240make DOVDIR=../
241popd
242%endif
243
244%install
245rm -rf $RPM_BUILD_ROOT
246make install DESTDIR=$RPM_BUILD_ROOT
247rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}
248
249%if %{build_pigeonhole}
250pushd dovecot-2.3-pigeonhole-%{pigeonholever}
251make install DESTDIR=$RPM_BUILD_ROOT
252popd
253%endif
254
255%if %{build_drac}
256pushd dovecot2-drac
257install -m 755 drac_plugin.so $RPM_BUILD_ROOT/%{_libdir}/dovecot/
258mkdir -p $RPM_BUILD_ROOT/%{_libdir}/dovecot/imap/
259mkdir -p $RPM_BUILD_ROOT/%{_libdir}/dovecot/pop3/
260ln -s ../drac_plugin.so $RPM_BUILD_ROOT/%{_libdir}/dovecot/imap/
261ln -s ../drac_plugin.so $RPM_BUILD_ROOT/%{_libdir}/dovecot/pop3/
262popd
263%endif
264
265# install -p -m 755 src/plugins/convert/convert-tool $RPM_BUILD_ROOT%{_libexecdir}/%{name}
266
267mkdir -p $RPM_BUILD_ROOT%{_initrddir}
268install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/dovecot
269
270mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
271install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/dovecot
272
273mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
274install -p -m 600 %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/dovecot
275
276#install man pages
277install -p -D -m 644 %{SOURCE14} $RPM_BUILD_ROOT%{_mandir}/man5/dovecot.conf.5
278
279# generate ghost .pem file
280mkdir -p $RPM_BUILD_ROOT%{ssldir}/certs
281mkdir -p $RPM_BUILD_ROOT%{ssldir}/private
282touch $RPM_BUILD_ROOT%{ssldir}/certs/dovecot.pem
283chmod 600 $RPM_BUILD_ROOT%{ssldir}/certs/dovecot.pem
284touch $RPM_BUILD_ROOT%{ssldir}/private/dovecot.pem
285chmod 600 $RPM_BUILD_ROOT%{ssldir}/private/dovecot.pem
286
287mkdir -p $RPM_BUILD_ROOT/var/run/dovecot/login
288chmod 755 $RPM_BUILD_ROOT/var/run/dovecot
289chmod 700 $RPM_BUILD_ROOT/var/run/dovecot/login
290       
291# Install dovecot.conf and dovecot-openssl.cnf
292mkdir -p $RPM_BUILD_ROOT%{ssldir}
293mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/dovecot/conf.d
294install -p -m 644 doc/example-config/dovecot.conf $RPM_BUILD_ROOT%{_sysconfdir}/dovecot
295install -p -m 644 doc/example-config/conf.d/*.conf $RPM_BUILD_ROOT%{_sysconfdir}/dovecot/conf.d
296install -p -m 644 doc/example-config/conf.d/*.conf.ext $RPM_BUILD_ROOT%{_sysconfdir}/dovecot/conf.d
297install -p -m 644 doc/dovecot-openssl.cnf $RPM_BUILD_ROOT%{ssldir}/dovecot-openssl.cnf
298
299# Install pigeonhole conf
300pushd dovecot-2.3-pigeonhole-%{pigeonholever}
301install -p -m 644 doc/example-config/conf.d/*.conf $RPM_BUILD_ROOT%{_sysconfdir}/dovecot/conf.d
302popd
303
304# Install some of our own documentation
305# install -p -m644 %{SOURCE7} $RPM_BUILD_ROOT%{docdir}/REDHAT-FAQ.txt
306
307# Install the licensing files into the documentation area
308install -p -m644 COPYING* $RPM_BUILD_ROOT%{docdir}
309
310mkdir -p $RPM_BUILD_ROOT%{docdir}/examples/
311install -p -m755 doc/mkcert.sh $RPM_BUILD_ROOT%{_libexecdir}/%{name}/mkcert.sh
312# for f in `cd doc; echo *.conf`; do
313#      install -p -m644 doc/$f $RPM_BUILD_ROOT%{docdir}/examples/$f;
314# done
315
316mv $RPM_BUILD_ROOT%{docdir} $RPM_BUILD_ROOT%{docdir}-%{version}
317mkdir -p $RPM_BUILD_ROOT/var/lib/dovecot
318
319#remove the libtool archives
320find $RPM_BUILD_ROOT%{_libdir}/%{name}/ -name '*.la' | xargs rm -f
321
322#prepare the filelist
323(
324    find ${RPM_BUILD_ROOT}%{_libdir}/%{name} -type d | sed -e "s|^|%dir |";
325    find ${RPM_BUILD_ROOT}%{_libdir}/%{name} -! -type d | \
326        grep -v 'dovecot-config\|lib90_cmusieve_plugin\.so\|libdriver_.*\.so\|libauthdb_.*\.so\|libmech_.*\.so\|drac\.so';
327) | sed -e "s|$RPM_BUILD_ROOT||" >libs.filelist
328
329#remove what we don't want
330rm -f $RPM_BUILD_ROOT%{_sysconfdir}/dovecot/README
331pushd doc
332#rm -f securecoding.txt thread-refs.txt
333popd
334
335%clean
336rm -rf $RPM_BUILD_ROOT
337
338
339%pre
340getent group dovecot >/dev/null || groupadd -r dovecot
341getent passwd dovecot >/dev/null || \
342useradd -r -g dovecot -d /usr/libexec/dovecot -s /sbin/nologin -c "Dovecot IMAP server" dovecot
343getent group dovenull >/dev/null || groupadd -r dovenull
344getent passwd dovenull >/dev/null || \
345useradd -r -g dovenull -d /usr/libexec/dovecot -s /sbin/nologin -c "Dovecot's unauthorized user" dovenull
346exit 0
347
348%post
349/sbin/chkconfig --add %{name}
350# generate the ssl certificates
351if [ ! -f %{ssldir}/certs/%{name}.pem ]; then
352    SSLDIR=%{ssldir} OPENSSLCONFIG=%{ssldir}/dovecot-openssl.cnf \
353         %{_libexecdir}/%{name}/mkcert.sh &> /dev/null
354fi
355
356if ! test -f /var/run/dovecot/login/ssl-parameters.dat; then
357    dovecot --build-ssl-parameters &>/dev/null
358fi
359exit 0
360
361%preun
362if [ $1 = 0 ]; then
363    /sbin/service %{name} stop > /dev/null 2>&1 || :
364    /sbin/chkconfig --del %{name} || :
365fi
366
367%postun
368if [ "$1" -ge "1" ]; then
369    /sbin/service %{name} condrestart 2>/dev/null || :
370fi
371
372%check
373make check
374cd dovecot-2.3-pigeonhole-%{pigeonholever}
375make check
376
377%files -f libs.filelist
378%defattr(-,root,root,-)
379%license COPYING COPYING.LGPL COPYING.MIT
380%doc doc/* AUTHORS ChangeLog NEWS README
381# %doc AUTHORS ChangeLog NEWS README doc/*.txt
382
383%dir %{_sysconfdir}/dovecot
384%dir %{_sysconfdir}/dovecot/conf.d
385%config(noreplace) %{_sysconfdir}/dovecot/dovecot.conf
386%config(noreplace) %{_sysconfdir}/dovecot/conf.d/*.conf
387%config(noreplace) %{_sysconfdir}/dovecot/conf.d/*.conf.ext
388# %config(noreplace) %{_sysconfdir}/dovecot.conf
389
390%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/dovecot
391%{_initrddir}/dovecot
392%config(noreplace) %{_sysconfdir}/pam.d/dovecot
393%dir %{ssldir}
394%dir %{ssldir}/certs
395%dir %{ssldir}/private
396%config(noreplace) %{ssldir}/dovecot-openssl.cnf
397%attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{ssldir}/certs/dovecot.pem
398%attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{ssldir}/private/dovecot.pem
399
400%{_libexecdir}/%{name}
401%{_libdir}/dovecot/auth/libauthdb_imap.so
402%{_libdir}/dovecot/auth/libmech_gssapi.so
403
404%{_sbindir}/dovecot
405# %{_sbindir}/dovecotpw
406%{_bindir}/doveadm
407%{_bindir}/doveconf
408%{_bindir}/dovecot-sysreport
409%{_bindir}/dsync
410%attr(0755,root,dovecot) %dir /var/run/dovecot
411%attr(0750,root,dovenull) %dir /var/run/dovecot/login
412# %attr(0755,root,dovecot) %{_libexecdir}/%{name}/mkcert.sh
413%attr(0750,dovecot,dovecot) %dir /var/lib/dovecot
414
415%{_mandir}/man1/deliver.1.gz
416%{_mandir}/man1/doveadm*.1.gz
417%{_mandir}/man1/doveconf.1.gz
418%{_mandir}/man1/dovecot*.1.gz
419%{_mandir}/man1/dsync.1.gz
420%{_mandir}/man5/dovecot.conf.5.gz
421%{_mandir}/man7/doveadm-search-query.7.gz
422
423%if %{build_pigeonhole}
424%files pigeonhole
425%defattr(-,root,root,-)
426%{_bindir}/sieve-dump
427%{_bindir}/sieve-filter
428%{_bindir}/sieve-test
429%{_bindir}/sievec
430%config(noreplace) %{_sysconfdir}/dovecot/conf.d/90-sieve.conf
431%config(noreplace) %{_sysconfdir}/dovecot/conf.d/20-managesieve.conf
432%{_libexecdir}/%{name}/managesieve
433%{_libexecdir}/%{name}/managesieve-login
434
435%dir %{_libdir}/dovecot/settings
436%{_libdir}/dovecot/settings/libmanagesieve_*.so
437
438%{_mandir}/man1/sieve-dump.1.gz
439%{_mandir}/man1/sieve-filter.1.gz
440%{_mandir}/man1/sieve-test.1.gz
441%{_mandir}/man1/sievec.1.gz
442%{_mandir}/man1/sieved.1.gz
443%{_mandir}/man7/pigeonhole.7.gz
444%endif
445
446%if %{build_mysql}
447%files mysql
448%defattr(-,root,root,-)
449%{_libdir}/%{name}/libdriver_mysql.so
450%{_libdir}/%{name}/auth/libdriver_mysql.so
451%{_libdir}/%{name}/dict/libdriver_mysql.so
452%endif
453
454%if %{build_postgres}
455%files pgsql
456%defattr(-,root,root,-)
457%{_libdir}/%{name}/libdriver_pgsql.so
458%{_libdir}/%{name}/auth/libdriver_pgsql.so
459%{_libdir}/%{name}/dict/libdriver_pgsql.so
460%endif
461
462%if %{build_sqlite}
463%files sqlite
464%defattr(-,root,root,-)
465%{_libdir}/%{name}/libdriver_sqlite.so
466%{_libdir}/%{name}/auth/libdriver_sqlite.so
467%{_libdir}/%{name}/dict/libdriver_sqlite.so
468%endif
469
470%if %{build_ldap}
471%files ldap
472%defattr(-,root,root,-)
473%{_libdir}/%{name}/auth/libauthdb_ldap.so
474%endif
475
476%if %{build_drac}
477%files drac
478%defattr(-,root,root)
479%{_libdir}/%{name}/drac_plugin.so
480%{_libdir}/%{name}/imap/drac_plugin.so
481%{_libdir}/%{name}/pop3/drac_plugin.so
482%doc README.plugin-drac
483%endif
484
485%files devel
486%defattr(-,root,root,-)
487%{_includedir}/%{name}
488%{_libdir}/%{name}/dovecot-config
489%{_datadir}/aclocal/dovecot.m4
490%if %{build_pigeonhole}
491%{_datadir}/aclocal/dovecot-pigeonhole.m4
492%endif
493
494%changelog
495* Sat Mar 07 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.10-1
496- new upstream release.
497- updated pigeonhole to 0.5.10.
498
499* Wed Feb 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.9.3-1
500- new upstream release.
501
502* Tue Dec 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.9.2-1
503- new upstream release.
504- updated pigeonhole to 0.5.9.
505
506* Thu Aug 29 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.7.2-1
507- new upstream release.
508- updated pigeonhole to 0.5.7.2.
509
510* Sun Aug 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.7.1-1
511- new upstream release.
512- updated pigeonhole to 0.5.7.1.
513
514* Mon May 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.6-1
515- updated to the 2.3.x series.
516- updated pigeonhole to 0.5.6.
517- imported Patch10 and 11.
518
519* Tue Nov 06 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.36-1
520- new upstream release.
521- updated pigeonhole to 0.4.24.
522
523* Fri Mar 23 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.35-1
524- new upstream release.
525- updated pigeonhole to 0.4.23.
526
527* Wed Feb 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.33.2-1
528- new upstream release.
529- updated pigeonhole to 0.4.21.
530
531* Sun May 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.24-1
532- new upstream release.
533- updated pigeonhole to 0.4.14.
534- added dovecot-pigeonhole.m4 to dovecot-devel.
535
536* Thu Mar 10 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.2.21-1
537- new upstream release.
538- updated pigeonhole to 0.4.10.
539- built with openssl 1.0.2g
540
541* Mon Nov  2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.19-1
542- new upstream release.
543- updated pigeonhole to 0.4.9.
544
545* Tue Jul  8 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.13-2
546- replaced "BR:mysql-devel" to "BR:libmysqlclient-devel".
547- enabled libwrap.
548
549* Sat Jun 14 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.2.13-1
550- new upstream release 2.2.13, pigeonhole 0.4.3
551- replace BR: libpq-devel from postgresql-devel
552
553* Thu Jan  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.2.10-1
554- new upstream release 2.2.10, pigeonhole 0.4.2
555- drop drac (Pop Before Smtp) support
556- add patch4
557
558* Thu Oct 25 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.1.10-1
559- new upstream release 2.1.10
560- new upstream release pigeonhole 0.3.3
561- change configure options to fit new release
562- change file list to fit new release
563- fix openssl key location in defalut config files
564
565* Sat Jun 16 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.21-1
566- new upstream release
567- new upstream release pigeonhole 0.2.6
568
569* Mon Oct 31 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.15-1
570- new upstream release
571
572* Wed Sep 28 2011 Masanobu HAGANE <masanobu@hagane.jp> 2.0.13-2
573- revival drac_plugin.so (POP bedore SMTP) support
574- use DRAC plugin for Dovecot-2.x
575-  (get from http://sourceforge.jp/projects/dovecot2-drac/releases/)
576
577* Sat May 21 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.13-1
578- new upstream release
579
580* Sun Apr 17 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.12-1
581- new upstream release
582- new upstream release pigeonholever 0.2.3
583
584* Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 2.0.9-6
585- rebuilt with postgresql-9.0.3
586
587* Mon Feb 14 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.9-5
588- fix pigeonhole R: (remove epoch)
589
590* Mon Jan 24 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.9-4
591- fix source url
592
593* Wed Jan 19 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.9-3
594- disable drac sub package (drac plugin not work with dovecot 2.x)
595
596* Mon Jan 17 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.9-2
597- fix config file path in dovecot.init
598- fix group of /var/run/dovecot/login
599
600* Sun Jan 16 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.0.9-1
601- new upstream release 2.0.x
602
603* Tue Jan 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.15-2
604- rebuild with openssl-1.0.0c
605
606* Sat Oct  9 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.15-1
607- new upstream release with security fixes (CVE-2010-3780,3779,3707,3706)
608- add BR: pkgconfig
609
610* Thu Mar 11 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.11-1
611- new upstream release with mbox DoS fix
612
613* Mon Jan 25 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.10-2
614- fix drac.so in libs.files
615
616* Mon Jan 25 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.10-1
617- new upstream release
618
619* Fri Jan  8 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.9-1
620- new upstream release
621- update to dovecot sieve 1.1.8
622
623* Thu Sep 17 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.3-2
624- update to dovecot sieve 1.1.7 to fix BoF
625- add BR: bzip2-devel, libcap-devel
626
627* Mon Aug 10 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.3-1
628- new upstream release
629
630* Wed Jul 29 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.2-1
631- new upstream release 
632
633* Sun Jul 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.1-1
634- new upstream release
635
636* Tue Jul  7 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.2.0-1
637- new upstream 1.2.x release
638- update Patch1 to fit new release
639- README.plugin-drac in UTF-8
640
641* Tue Jun  2 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.16-1
642- new upstream release
643
644* Fri May 22 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.15-3
645- rebuilt with MySQL-5.1.34.
646
647* Tue May 19 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.15-2
648- add BuildRequires gettext-devel instead of gettext
649
650* Tue May 19 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.15-1
651- new upstream release
652- update patch1 to fix new release
653
654* Mon Apr 27 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.14-1
655- new upstream release
656
657* Sun Mar 22 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.1.13-2
658- rebuilt with openldap-2.4.11
659
660* Sun Mar 22 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.13-1
661- new upstream release
662
663* Sat Feb 07 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.11-1
664- new upstream release
665
666* Sun Feb 01 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.10-1
667- new upstream release
668
669* Mon Jan 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.8-1
670- new upstream release
671
672* Sat Nov 01 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.6-1
673- new upstream release
674
675* Tue Oct 21 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.4-2
676- change BuildRequires sqlite-devel -> sqlite3-devel
677
678* Mon Oct 20 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.4-1
679- new upstream release
680
681* Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.3-1
682- new upstream release
683
684* Sun Aug 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.2-1
685- new upstream release
686- split ldap plugin to subpackage
687- split sql plugins to subpackages
688- add -devel subpackage
689- update drac module, rename to -drac from -plugin-drac
690- add dovecot-sieve
691
692* Mon Mar 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.13-0vl2
693- build for VineSeed (0vl1 is for VinePlus 4.x)
694- new upstream release
695
696* Mon Jan 07 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.10-0vl2
697- build for VineSeed (0vl1 is for VinePlus 4.x)
698- new upstream release with security fix (CVE-2007-6598)
699- turn on daemon stop massage (Already start message is on)
700
701* Sat Dec 15 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.9-0vl1
702- new upstream source
703
704* Wed Nov 21 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.7-0vl4
705- updated %%install section to support lib64 architecture
706
707* Sun Nov 04 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.7-0vl3
708- rebuild for VineSeed (from VinePlus 4.x)
709
710  * Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.5-0vl1
711  - new upstream release
712  - rebuilt with postgresql-devel 8.2.5
713
714  * Sun Aug  5 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.3-0vl1
715  - new upstream release
716
717  * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl1
718  - new upstream release
719
720* Sat Nov 03 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.7-0vl2
721- add Require dracd tag in plugin-drac
722
723* Sat Nov 03 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.7-0vl1
724- new upstream release
725
726* Fri Oct 12 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.5-0vl4
727- fix drac plugin make method
728- change drac.so install method (use sym link)
729- add README.plugin-drac
730
731* Fri Oct 12 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.5-0vl3
732- add dovecot-openssl.cnf install to doc
733- daemon restart message turn on when package is upgraded
734
735* Tue Oct 09 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.5-0vl2
736- add drac.so (POP bedore SMTP) support
737
738* Mon Oct 08 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.5-0vl1
739- new upstream release
740- drop patch500 (it is included in new release)
741- move Mysql buildreq tag to "if build_mysql" section
742- add Requires: postgresql-libs and Requires: MySQL-shared in "if-endif"
743- add Requires: openldap
744
745* Wed Aug 29 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.0-0.rc17.0vl2
746- add Patch500 to fix directory traversal vulnerability (CVE-2007-2231)
747  note that version 1.0.rc29 and up have been already fixed in upstream
748
749* Mon Jan 08 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0-0.rc17.0vl1
750- new upstream RC release
751
752* Sun Jan 07 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0-0.rc16.0vl1
753- new upstream RC release
754
755* Thu Dec 21 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0-0.rc15.0vl2
756- add Vendor/Distribution tag
757
758* Sun Dec 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0-0.rc15.0vl1
759- new upstream RC release
760- add BuildRequires: MySQL-shared, MySQL-devel
761- update patch100
762
763* Mon Oct 30 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0-0.rc7.1vl2
764- rebuilt with MySQL 5.0.27
765
766* Mon Aug 28 2006 IWAI, Masaharu <iwai@alib.jp> 1.0-0.rc7.1vl1
767- new upstream release
768- update default settings patch (Patch100)
769- build with openldap-2.3.24
770
771* Tue Aug  1 2006 IWAI, Masaharu <iwai@alib.jp> 1.0-0.rc2.1vl1
772- first release for Vine Linux
773
774* Mon Jul 17 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.rc2.1
775- reenable inotify and see what happens
776
777* Thu Jul 13 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.rc2
778- update to latest upstream release candidate
779- disable inotify for now, doesn't build -- this needs fixing though
780
781* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0-0.beta8.2.1
782- rebuild
783
784* Thu Jun 08 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta8.2
785- put back pop3_uidl_format default that got lost
786  in the beta2->beta7 upgrade (would cause pop3 to not work
787  at all in many situations)
788
789* Thu May 04 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta8.1
790- upgrade to latest upstream beta release (beta8)
791- contains a security fix in mbox handling
792
793* Thu May 04 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta7.1
794- upgrade to latest upstream beta release
795- fixed BR 173048
796
797* Fri Mar 17 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.8
798- fix sqlite detection in upstream configure checks, second part
799  of #182240
800
801* Wed Mar  8 2006 Bill Nottingham <notting@redhat.com> - 1.0-0.beta2.7
802- fix scriplet noise some more
803
804* Mon Mar  6 2006 Jeremy Katz <katzj@redhat.com> - 1.0-0.beta2.6
805- fix scriptlet error (mitr, #184151)
806
807* Mon Feb 27 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.5
808- fix #182240 by looking in lib64 for libs first and then lib
809- fix comment #1 in #182240 by copying over the example config files
810  to documentation directory
811
812* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0-0.beta2.4.1
813- bump again for double-long bug on ppc(64)
814
815* Thu Feb 09 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.4
816- enable inotify as it should work now (#179431)
817
818* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0-0.beta2.3.1
819- rebuilt for new gcc4.1 snapshot and glibc changes
820
821* Thu Feb 02 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.3
822- change the compiled-in defaults and adjust the default's configfile
823  commented-out example settings to match compiled-in defaults,
824  instead of changing the defaults only in the configfile, as per #179432
825- fix #179574 by providing a default uidl_format for pop3
826- half-fix #179620 by having plaintext auth enabled by default... this
827  needs more thinking (which one we really want) and documentation
828  either way
829
830* Tue Jan 31 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.2
831- update URL in description
832- call dovecot --build-ssl-parameters in postinst as per #179430
833
834* Mon Jan 30 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2.1
835- fix spec to work with BUILD_DIR != SOURCE_DIR
836- forward-port and split pam-nocred patch
837
838* Mon Jan 23 2006 Petr Rockai <prockai@redhat.com> - 1.0-0.beta2
839- new upstream version, hopefully fixes #173928, #163550
840- fix #168866, use install -p to install documentation
841
842* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
843- rebuilt
844
845* Sat Nov 12 2005 Tom Lane <tgl@redhat.com> - 0.99.14-10.fc5
846- Rebuild due to mysql update.
847
848* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> - 0.99.14-9.fc5
849- rebuilt with new openssl
850
851* Fri Sep 30 2005 Tomas Mraz <tmraz@redhat.com> - 0.99.14-8.fc5
852- use include instead of pam_stack in pam config
853
854* Wed Jul 27 2005 John Dennis <jdennis@redhat.com> - 0.99.14-7.fc5
855- fix bug #150888, log authenication failures with ip address
856
857* Fri Jul 22 2005 John Dennis <jdennis@redhat.com> - 0.99.14-6.fc5
858- fix bug #149673, add dummy PAM_TTY
859
860* Thu Apr 28 2005 John Dennis <jdennis@redhat.com> - 0.99.14-5.fc4
861- fix bug #156159 insecure location of restart flag file
862
863* Fri Apr 22 2005 John Dennis <jdennis@redhat.com> - 0.99.14-4.fc4
864- openssl moved its certs, CA, etc. from /usr/share/ssl to /etc/pki
865
866* Tue Apr 12 2005 Tom Lane <tgl@redhat.com> 0.99.14-3.fc4
867- Rebuild for Postgres 8.0.2 (new libpq major version).
868
869* Mon Mar  7 2005 John Dennis <jdennis@redhat.com> 0.99.14-2.fc4
870- bump rev for gcc4 build
871
872* Mon Feb 14 2005 John Dennis <jdennis@redhat.com> - 0.99.14-1.fc4
873- fix bug #147874, update to 0.99.14 release
874  v0.99.14 2005-02-11  Timo Sirainen <tss at iki.fi>
875  - Message address fields are now parsed differently, fixing some
876    issues with spaces. Affects only clients which use FETCH ENVELOPE
877    command.
878  - Message MIME parser was somewhat broken with missing MIME boundaries
879  - mbox: Don't allow X-UID headers in mails to override the UIDs we
880    would otherwise set. Too large values can break some clients and
881    cause other trouble.
882  - passwd-file userdb wasn't working
883  - PAM crashed with 64bit systems
884  - non-SSL inetd startup wasn't working
885  - If UID FETCH notices and skips an expunged message, don't return
886    a NO reply. It's not needed and only makes clients give error
887    messages.
888
889* Wed Feb  2 2005 John Dennis <jdennis@redhat.com> - 0.99.13-4.devel
890- fix bug #146198, clean up temp kerberos tickets
891
892* Mon Jan 17 2005 John Dennis <jdennis@redhat.com> 0.99.13-3.devel
893- fix bug #145214, force mbox_locks to fcntl only
894- fix bug #145241, remove prereq on postgres and mysql, allow rpm auto
895  dependency generator to pick up client lib dependency if needed.
896
897* Thu Jan 13 2005 John Dennis <jdennis@redhat.com> 0.99.13-2.devel
898- make postgres & mysql conditional build
899- remove execute bit on migration example scripts so rpm does not pull
900  in additional dependences on perl and perl modules that are not present
901  in dovecot proper.
902- add REDHAT-FAQ.txt to doc directory
903
904* Thu Jan  6 2005 John Dennis <jdennis@redhat.com> 0.99.13-1.devel
905- bring up to date with latest upstream, 0.99.13, bug #143707
906  also fix bug #14462, bad dovecot-uid macro name
907
908* Thu Jan  6 2005 John Dennis <jdennis@redhat.com> 0.99.11-10.devel
909- fix bug #133618, removed LITERAL+ capability from capability string
910
911* Wed Jan  5 2005 John Dennis <jdennis@redhat.com> 0.99.11-9.devel
912- fix bug #134325, stop dovecot during installation
913
914* Wed Jan  5 2005 John Dennis <jdennis@redhat.com> 0.99.11-8.devel
915- fix bug #129539, dovecot starts too early,
916  set chkconfig to 65 35 to match cyrus-imapd
917- also delete some old commented out code from SSL certificate creation
918
919* Thu Dec 23 2004 John Dennis <jdennis@redhat.com> 0.99.11-7.devel
920- add UW to Dovecot migration documentation and scripts, bug #139954
921  fix SSL documentation and scripts, add missing documentation, bug #139276
922
923* Mon Nov 15 2004 Warren Togami <wtogami@redhat.com> 0.99.11-2.FC4.1
924- rebuild against MySQL4
925
926* Thu Oct 21 2004 John Dennis <jdennis@redhat.com>
927- fix bug #136623
928  Change License field from GPL to LGPL to reflect actual license
929
930* Thu Sep 30 2004 John Dennis <jdennis@redhat.com> 0.99.11-1.FC3.3
931- fix bug #124786, listen to ipv6 as well as ipv4
932
933* Wed Sep  8 2004 John Dennis <jdennis@redhat.com> 0.99.11-1.FC3.1
934- bring up to latest upstream,
935  comments from Timo Sirainen <tss at iki.fi> on release v0.99.11 2004-09-04 
936  + 127.* and ::1 IP addresses are treated as secured with
937    disable_plaintext_auth = yes
938  + auth_debug setting for extra authentication debugging
939  + Some documentation and error message updates
940  + Create PID file in /var/run/dovecot/master.pid
941  + home setting is now optional in static userdb
942  + Added mail setting to static userdb
943  - After APPENDing to selected mailbox Dovecot didn't always notice the
944    new mail immediately which broke some clients
945  - THREAD and SORT commands crashed with some mails
946  - If APPENDed mail ended with CR character, Dovecot aborted the saving
947  - Output streams sometimes sent data duplicated and lost part of it.
948    This could have caused various strange problems, but looks like in
949    practise it rarely caused real problems.
950
951* Wed Aug  4 2004 John Dennis <jdennis@redhat.com>
952- change release field separator from comma to dot, bump build number
953
954* Mon Aug  2 2004 John Dennis <jdennis@redhat.com> 0.99.10.9-1,FC3,1
955- bring up to date with latest upstream, fixes include:
956- LDAP support compiles now with Solaris LDAP library
957- IMAP BODY and BODYSTRUCTURE replies were wrong for MIME parts which
958  didn't contain Content-Type header.
959- MySQL and PostgreSQL auth didn't reconnect if connection was lost
960  to SQL server
961- Linking fixes for dovecot-auth with some systems
962- Last fix for disconnecting client when downloading mail longer than
963  30 seconds actually made it never disconnect client. Now it works
964  properly: disconnect when client hasn't read _any_ data for 30
965  seconds.
966- MySQL compiling got broken in last release
967- More PostgreSQL reconnection fixing
968
969
970* Mon Jul 26 2004 John Dennis <jdennis@redhat.com> 0.99.10.7-1,FC3,1
971- enable postgres and mySQL in build
972- fix configure to look for mysql in alternate locations
973- nuke configure script in tar file, recreate from configure.in using autoconf
974
975- bring up to latest upstream, which included:
976- Added outlook-pop3-no-nuls workaround to fix Outlook hang in mails with NULs.
977- Config file lines can now contain quoted strings ("value ")
978- If client didn't finish downloading a single mail in 30 seconds,
979  Dovecot closed the connection. This was supposed to work so that
980  if client hasn't read data at all in 30 seconds, it's disconnected.
981- Maildir: LIST now doesn't skip symlinks
982
983
984* Wed Jun 30 2004 John Dennis <jdennis@redhat.com>
985- bump rev for build
986- change rev for FC3 build
987
988* Fri Jun 25 2004 John Dennis <jdennis@redhat.com> - 0.99.10.6-1
989- bring up to date with upstream,
990  recent change log comments from Timo Sirainen were:
991  SHA1 password support using OpenSSL crypto library
992  mail_extra_groups setting
993  maildir_stat_dirs setting
994  Added NAMESPACE capability and command
995  Autocreate missing maildirs (instead of crashing)
996  Fixed occational crash in maildir synchronization
997  Fixed occational assertion crash in ioloop.c
998  Fixed FreeBSD compiling issue
999  Fixed issues with 64bit Solaris binary
1000
1001* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1002- rebuilt
1003
1004* Thu May 27 2004 David Woodhouse <dwmw2@redhat.com> 0.99.10.5-1
1005- Update to 0.99.10.5 to fix maildir segfaults (#123022)
1006
1007* Fri May 07 2004 Warren Togami <wtogami@redhat.com> 0.99.10.4-4
1008- default auth config that is actually usable
1009- Timo Sirainen (author) suggested functionality fixes
1010  maildir, imap-fetch-body-section, customflags-fix
1011
1012* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
1013- Use ':' instead of '.' as separator for chown.
1014
1015* Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com> - 0.99.10.4-3
1016- restart properly if it dies (#115594)
1017
1018* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1019- rebuilt
1020
1021* Mon Nov 24 2003 Jeremy Katz <katzj@redhat.com> 0.99.10.4-1
1022- update to 0.99.10.4
1023
1024* Mon Oct  6 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-7
1025- another patch from upstream to fix returning invalid data on partial
1026  BODY[part] fetches
1027- patch to avoid confusion of draft/deleted in indexes
1028
1029* Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-6
1030- add some patches from upstream (#104288)
1031
1032* Thu Sep  4 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-5
1033- fix startup with 2.6 with patch from upstream (#103801)
1034
1035* Tue Sep  2 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-4
1036- fix assert in search code (#103383)
1037
1038* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.99.10-3
1039- rebuild
1040
1041* Thu Jul 17 2003 Bill Nottingham <notting@redhat.com> 0.99.10-2
1042- don't run by default
1043
1044* Thu Jun 26 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-1
1045- 0.99.10
1046
1047* Mon Jun 23 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-0.2
1048- 0.99.10-rc2 (includes ssl detection fix)
1049- a few tweaks from fedora
1050  - noreplace the config file
1051  - configure --with-ldap to get LDAP enabled
1052
1053* Mon Jun 23 2003 Jeremy Katz <katzj@redhat.com> 0.99.10-0.1
1054- 0.99.10-rc1
1055- add fix for ssl detection
1056- add zlib-devel to BuildRequires
1057- change pam service name to dovecot
1058- include pam config
1059
1060* Thu May  8 2003 Jeremy Katz <katzj@redhat.com> 0.99.9.1-1
1061- update to 0.99.9.1
1062- add patch from upstream to fix potential bug when fetching with
1063  CR+LF linefeeds
1064- tweak some things in the initscript and config file noticed by the
1065  fedora folks
1066
1067* Sun Mar 16 2003 Jeremy Katz <katzj@redhat.com> 0.99.8.1-2
1068- fix ssl dir
1069- own /var/run/dovecot/login with the correct perms
1070- fix chmod/chown in post
1071
1072* Fri Mar 14 2003 Jeremy Katz <katzj@redhat.com> 0.99.8.1-1
1073- update to 0.99.8.1
1074
1075* Tue Mar 11 2003 Jeremy Katz <katzj@redhat.com> 0.99.8-2
1076- add a patch to fix quoting problem from CVS
1077
1078* Mon Mar 10 2003 Jeremy Katz <katzj@redhat.com> 0.99.8-1
1079- 0.99.8
1080- add some buildrequires
1081- fixup to build with openssl 0.9.7
1082- now includes a pop3 daemon (off by default)
1083- clean up description and %%preun
1084- add dovecot user (uid/gid of 97)
1085- add some buildrequires
1086- move the ssl cert to %{_datadir}/ssl/certs
1087- create a dummy ssl cert in %post
1088- own /var/run/dovecot
1089- make the config file a source so we get default mbox locks of fcntl
1090
1091* Sun Dec  1 2002 Seth Vidal <skvidal@phy.duke.edu>
1092- 0.99.4 and fix startup so it starts imap-master not vsftpd :)
1093
1094* Tue Nov 26 2002 Seth Vidal <skvidal@phy.duke.edu>
1095- first build
Note: See TracBrowser for help on using the repository browser.