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

Revision 12317, 35.5 KB checked in by tomop, 5 years ago (diff)

updated 7 packages

dovecot-2.3.9.2-1

mariadb-10.4.11-1

openssl-1.1.1d-2

php73-7.3.13-1

spamassassin-3.4.3-1

squid-4.9-1

zabbix-4.0.15-1

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