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

Revision 12520, 37.1 KB checked in by tomop, 3 years ago (diff)

updated 5 packages

dovecot-2.3.13-1

nodejs-14.15.4-1

php74-7.4.14-1

postfix-3.5.9-1

rspamd-2.7-1

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