dovecot-vl.spec 33 KB

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