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

Revision 12406, 36.9 KB checked in by tomop, 4 years ago (diff)

updated 3 packages

dovecot-2.3.10.1-1

libmemcached-1.0.18-3

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