postfix-vl.spec 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068
  1. #%define build_mysql %{?_with_mysql:1}%{!?_with_mysql:0}
  2. #%define build_pgsql %{?_with_pgsql:1}%{!?_with_pgsql:0}
  3. %define _unpackaged_files_terminate_build 1
  4. %define build_mysql 1
  5. %define build_pgsql 1
  6. %define _sysconfdir /etc
  7. %define _data_dir %{_var}/lib/postfix
  8. # postfix user/group
  9. # changed since 2.9.4-3
  10. %define postfix_uid 89
  11. %define postfix_user postfix
  12. %define postfix_gid 89
  13. %define postfix_group postfix
  14. %define maildrop_group postdrop
  15. %define maildrop_gid 90
  16. # install dirs
  17. %define postfix_config_dir %{_sysconfdir}/postfix
  18. %define postfix_shlib_dir %{_libdir}/postfix
  19. %define postfix_daemon_dir %{_libdir}/postfix
  20. %define postfix_command_dir %{_sbindir}
  21. %define postfix_queue_dir %{_var}/spool/postfix
  22. %define postfix_data_dir %{_var}/lib/postfix
  23. %define postfix_doc_dir %{_docdir}/%{name}-%{version}
  24. %define postfix_sample_dir %{postfix_doc_dir}/samples
  25. %define postfix_readme_dir %{postfix_doc_dir}/README_FILES
  26. %define origversion 3.3.1
  27. Summary: Postfix Mail Transport Agent
  28. Summary(ja): Postfix メールトランスポートエージェント
  29. Name: postfix
  30. Version: %{origversion}
  31. Release: 1%{?_dist_release}
  32. URL: http://www.postfix.org/
  33. License: Distributable - IBM PUBLIC LICENSE VERSION 1.0 - SECURE MAILER
  34. Group: System Environment/Daemons
  35. Source0: ftp://postfix.cloud9.net/official/%{name}-%{version}.tar.gz
  36. Source1: postfix.aliases
  37. Source2: postfix.cron
  38. Source3: postfix.init
  39. Patch0: postfix-2.9.1-vine.patch
  40. # patches 200-299 are imported from rh/fedora
  41. Patch200: postfix-3.2.0-large-fs.patch
  42. Provides: smtpdaemon
  43. Conflicts: sendmail
  44. BuildRequires: pam-devel
  45. BuildRequires: cyrus-sasl-devel >= 2
  46. BuildRequires: openldap-devel, openssl-devel
  47. BuildRequires: libicu-devel, pcre-devel
  48. %if "%{_dist_release}" >= "vl7"
  49. BuildRequires: libdb-devel >= 5.3
  50. Requires(post): libdb
  51. %else
  52. BuildRequires: db4-devel >= 4.6.21
  53. Requires(post): db4
  54. %endif
  55. %if %build_mysql
  56. %if "%{_dist_release}" >= "vl7"
  57. BuildRequires: libmariadb-devel
  58. %else
  59. BuildRequires: MySQL-devel
  60. %endif
  61. %endif
  62. %if %build_pgsql
  63. %if "%{_dist_release}" >= "vl7"
  64. BuildRequires: libpq-devel
  65. %else
  66. BuildRequires: postgresql-devel
  67. %endif
  68. %endif
  69. BuildRequires: sqlite3-devel
  70. Requires(pre): chkconfig
  71. Requires: cyrus-sasl >= 2, cyrus-sasl-md5, cyrus-sasl-plain
  72. Requires: pam
  73. Obsoletes: postfix-beta
  74. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  75. Vendor: Project Vine
  76. Distribution: Vine Linux
  77. Packager: daisuke
  78. %description
  79. Postfix aims to be an alternative to the widely-used sendmail
  80. program. Sendmail is responsible for 70 percent of all e-mail delivered
  81. on the Internet. With an estimated 100 million users, that's an
  82. estimated 10 billion (10^10) messages daily. A stunning number.
  83. Although IBM supported the Postfix development, it abstains from
  84. control over its evolution. The goal is to have Postfix installed
  85. on as many systems as possible. To this end, the software is given
  86. away with no strings attached to it, so that it can evolve with
  87. input from and under control by its users.
  88. #'
  89. %description -l ja
  90. Postfix は現在広く使われている sendmail を置き換える目的で
  91. 開発されています。sendmail は約 70% の E-mail サーバで使用
  92. されています。また、その使用者は 100万人にもおよび、およそ
  93. 一日 1 千万通ものメールを処理しています。
  94. Postfix の開発は IBM によってサポートされており、全世界の
  95. 全てのシステムを postfix にすることを目標としています。
  96. %package sqlite
  97. Summary: SQLite3 map support for Postfix
  98. Group: System Environment/Daemons
  99. Requires(pre): postfix = %{version}-%{release}
  100. %description sqlite
  101. This package contains shared lib module which support
  102. SQLite map on Postfix.
  103. %description -l ja sqlite
  104. このパッケージには、Postfix で SQLite map を使うのに
  105. 必要なライブラリが納められています。
  106. %if %build_pgsql
  107. %package pgsql
  108. Summary: PGSQL map support for Postfix
  109. Group: System Environment/Daemons
  110. Requires(pre): postfix = %{version}-%{release}
  111. %description pgsql
  112. This package contains shared lib module which support
  113. PostgreSQL map on Postfix.
  114. %description -l ja pgsql
  115. このパッケージには、Postfix で PostgreSQL を使うのに必要な
  116. ライブラリが納められています。
  117. %endif
  118. %if %build_mysql
  119. %package mysql
  120. Summary: MySQL map support for Postfix
  121. Group: System Environment/Daemons
  122. Requires(pre): postfix = %{version}-%{release}
  123. %description mysql
  124. This package contains shared lib module which support
  125. MySQL map on Postfix.
  126. %description -l ja mysql
  127. このパッケージには、Postfix で MySQL を使うのに必要な
  128. ライブラリが納められています。
  129. %endif
  130. %package ldap
  131. Summary: LDAP map support for Postfix
  132. Group: System Environment/Daemons
  133. Requires(pre): postfix = %{version}-%{release}
  134. %description ldap
  135. This package contains shared lib module which support
  136. OpenLDAP map on Postfix.
  137. %description -l ja ldap
  138. このパッケージには、Postfix で OpenLDAP を使うのに必要な
  139. ライブラリが納められています。
  140. %package pcre
  141. Summary: PCRE map support for Postfix
  142. Group: System Environment/Daemons
  143. Requires(pre): postfix = %{version}-%{release}
  144. %description pcre
  145. This package contains shared lib module which support
  146. PCRE map on Postfix.
  147. %description -l ja pcre
  148. このパッケージには、Postfix で PCRE マップを使うのに必要な
  149. ライブラリが納められています。
  150. %prep
  151. # japanese documant for 2.4.x is not ready.
  152. # %setup -q -a 10 -a 20 -a 30 -a 40
  153. %setup -q
  154. %patch0 -p1 -b .vine
  155. %ifarch x86_64
  156. sed -i -e 's|/usr/lib/postfix|/usr/lib64/postfix|g' conf/main.cf
  157. %endif
  158. %patch200 -p1 -b .large-fs
  159. # Change DEF_SHLIB_DIR according to build host
  160. sed -i \
  161. 's|^\(\s*#define\s\+DEF_SHLIB_DIR\s\+\)"/usr/lib/postfix"|\1"%{_libdir}/postfix" |' \
  162. src/global/mail_params.h
  163. %build
  164. unset AUXLIBS_MYSQL AUXLIBS_PGSQL
  165. CCARGS="-DMAX_DYNAMIC_MAPS \
  166. -DUSE_SASL_AUTH -I/usr/include/sasl \
  167. -DUSE_CYRUS_SASL \
  168. -DHAS_LDAP \
  169. -DLDAP_DEPRECATED=1 -DUSE_LDAP_SASL \
  170. -DHAS_SSL -I/usr/include/openssl \
  171. -DHAS_PCRE -I/usr/include/pcre \
  172. -DHAS_SQLITE \
  173. `pkg-config --cflags sqlite3` \
  174. -DUSE_TLS"
  175. AUXLIBS="-lsasl2 -lssl -lcrypto"
  176. AUXLIBS_LDAP="-lldap -llber"
  177. AUXLIBS_PCRE="-lpcre"
  178. AUXLIBS_SQLITE="`pkg-config --libs sqlite3`"
  179. %if %build_mysql
  180. CCARGS="${CCARGS} -DHAS_MYSQL -I/usr/include/mysql"
  181. AUXLIBS_MYSQL="-L%{_libdir}/mysql -lmysqlclient -lm"
  182. %endif
  183. %if %build_pgsql
  184. CCARGS="${CCARGS} -DHAS_PGSQL -I/usr/include/pgsql"
  185. AUXLIBS_PGSQL="-lpq"
  186. %endif
  187. make -f Makefile.init makefiles \
  188. shared=yes dynamicmaps=yes \
  189. CCARGS="${CCARGS}" \
  190. AUXLIBS="${AUXLIBS}" \
  191. AUXLIBS_LDAP="${AUXLIBS_LDAP}" AUXLIBS_PCRE="${AUXLIBS_PCRE}" \
  192. AUXLIBS_MYSQL="${AUXLIBS_MYSQL}" AUXLIBS_PGSQL="${AUXLIBS_PGSQL}" \
  193. AUXLIBS_SQLITE="${AUXLIBS_SQLITE}" \
  194. SHLIB_RPATH="-Wl,-rpath,%{postfix_shlib_dir}" \
  195. OPT="$RPM_OPT_FLAGS" DEBUG=""
  196. # make %{?_smp_mflags} DEBUG="" OPT="$RPM_OPT_FLAGS" \
  197. # LD_LIBRARY_PATH=$(pwd)/lib:${LD_LIBRARY_PATH}
  198. # using _smp_mflags makes build error. why? (2008.10.11)
  199. #make DEBUG="" OPT="$RPM_OPT_FLAGS" \
  200. # LD_LIBRARY_PATH=$(pwd)/lib:${LD_LIBRARY_PATH} CDBSO=""
  201. make %{?_smp_mflags}
  202. %install
  203. rm -rf $RPM_BUILD_ROOT
  204. rm -f html/Makefile.in
  205. rm -f README_FILES/*.*
  206. install -d $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily
  207. install -d $RPM_BUILD_ROOT%{_sysconfdir}/postfix
  208. install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
  209. install -d $RPM_BUILD_ROOT%{_bindir}
  210. install -d $RPM_BUILD_ROOT%{_libdir}/postfix
  211. install -d $RPM_BUILD_ROOT%{_mandir}/man{1,5,8}
  212. install -d $RPM_BUILD_ROOT%{_mandir}/ja/man{1,5,8}
  213. install -d $RPM_BUILD_ROOT%{_sbindir}
  214. install -d $RPM_BUILD_ROOT%{_var}/spool/postfix
  215. install -d $RPM_BUILD_ROOT%{_var}/spool/postfix/{active,corrupt,deferred,incoming,pid,public}
  216. install -d $RPM_BUILD_ROOT%{_var}/spool/postfix/{bounce,defer,flush,maildrop,private,saved}
  217. LD_LIBRARY_PATH=./lib \
  218. sh postfix-install -non-interactive \
  219. install_root=$RPM_BUILD_ROOT \
  220. config_directory=%{postfix_config_dir} \
  221. meta_directory=%{postfix_config_dir} \
  222. shlib_directory=%{postfix_shlib_dir} \
  223. daemon_directory=%{postfix_daemon_dir} \
  224. command_directory=%{postfix_command_dir} \
  225. queue_directory=%{postfix_queue_dir} \
  226. data_directory=%{postfix_data_dir} \
  227. sendmail_path=%{postfix_command_dir}/sendmail \
  228. newaliases_path=%{_bindir}/newaliases \
  229. mailq_path=%{_bindir}/mailq \
  230. mail_owner=%{postfix_user} \
  231. setgid_group=%{maildrop_group} \
  232. manpage_directory=%{_mandir} \
  233. sample_directory=%{postfix_sample_dir} \
  234. readme_directory=%{postfix_readme_dir} || exit 1
  235. install -m644 conf/postfix-files $RPM_BUILD_ROOT%{_sysconfdir}/postfix
  236. for i in post-install postfix-script
  237. do
  238. install -m755 conf/$i $RPM_BUILD_ROOT%{_sysconfdir}/postfix
  239. done
  240. # install performance benchmark tools by hand
  241. for i in smtp-sink smtp-source qmqp-sink qmqp-source; do
  242. install -c -m 755 bin/$i $RPM_BUILD_ROOT%{postfix_command_dir}/
  243. install -c -m 755 man/man1/$i.1 $RPM_BUILD_ROOT%{_mandir}/man1/
  244. done
  245. install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/postfix/aliases
  246. install -m755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily/postfix
  247. install -m755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/postfix
  248. ln -sf postfix/aliases $RPM_BUILD_ROOT%{_sysconfdir}/aliases
  249. ln -sf postfix/aliases.db $RPM_BUILD_ROOT%{_sysconfdir}/aliases.db
  250. # helper for splitting content of dynamicmaps.cf and postfix-files
  251. function split_file
  252. {
  253. # "|| :" to silently skip non existent records
  254. grep "$1" "$3" >> "$3.d/$2" || :
  255. sed -i "\|$1| d" "$3" || :
  256. }
  257. # split global dynamic maps configuration to individual sub-packages
  258. pushd $RPM_BUILD_ROOT%{postfix_config_dir}
  259. for map in sqlite ldap pcre \
  260. %{?build_mysql:mysql} %{?build_pgsql:pgsql}; do
  261. rm -f dynamicmaps.cf.d/"$map" "postfix-files.d/$map"
  262. split_file "^\s*$map\b" "$map" dynamicmaps.cf
  263. sed -i "s|postfix-$map\\.so|%{postfix_shlib_dir}/\\0|" "dynamicmaps.cf.d/$map"
  264. split_file "^\$shlib_directory/postfix-$map\\.so:" "$map" postfix-files
  265. split_file "^\$manpage_directory/man5/${map}_table\\.5" "$map" postfix-files
  266. map_upper=`echo $map | tr '[:lower:]' '[:upper:]'`
  267. split_file "^\$readme_directory/${map_upper}_README:" "$map" postfix-files
  268. done
  269. popd
  270. #( cd $RPM_BUILD_ROOT%{_bindir}
  271. # ln -sf ../sbin/sendmail mailq
  272. # ln -sf ../sbin/sendmail newaliases
  273. #)
  274. ( cd $RPM_BUILD_ROOT%{_libdir}
  275. ln -sf ../sbin/sendmail sendmail
  276. )
  277. # data dir
  278. install -d $RPM_BUILD_ROOT%{_data_dir}
  279. # remove unneeded files
  280. rm -f $RPM_BUILD_ROOT%{postfix_config_dir}/{TLS_,}LICENSE
  281. rm -f $RPM_BUILD_ROOT%{postfix_config_dir}/{main,master}.cf.proto
  282. rm -f $RPM_BUILD_ROOT%{postfix_config_dir}/makedefs.out
  283. %pre
  284. # Add user and groups if necessary
  285. %{_sbindir}/groupadd -g %{maildrop_gid} -r %{maildrop_group} 2>/dev/null
  286. %{_sbindir}/groupadd -g %{postfix_gid} -r %{postfix_group} 2>/dev/null
  287. %{_sbindir}/groupadd -g 12 -r mail 2>/dev/null
  288. %{_sbindir}/useradd -d %{postfix_queue_dir} -s /sbin/nologin -g %{postfix_group} -G mail -M -r -u %{postfix_uid} %{postfix_user} 2>/dev/null
  289. exit 0
  290. %post
  291. /sbin/ldconfig
  292. # upgrade configuration files if necessary
  293. %{_sbindir}/postfix set-permissions upgrade-configuration \
  294. daemon_directory=%{postfix_daemon_dir} \
  295. command_directory=%{postfix_command_dir} \
  296. mail_owner=%{postfix_user} \
  297. setgid_group=%{maildrop_group} \
  298. manpage_directory=%{_mandir} \
  299. sample_directory=%{postfix_sample_dir} \
  300. readme_directory=%{postfix_readme_dir} &> /dev/null
  301. /sbin/chkconfig --add postfix
  302. if [ ! -f %{_sysconfdir}/postfix/aliases.db ]; then
  303. %{_sbindir}/postalias %{_sysconfdir}/postfix/aliases
  304. fi
  305. %{_sbindir}/postalias %{_sysconfdir}/postfix/aliases ||:
  306. if [ ! -e %{_libdir}/sendmail ]; then
  307. ln -sf %{_sbindir}/sendmail %{_libdir}/sendmail
  308. fi
  309. /sbin/chkconfig --del sendmail &> /dev/null ||:
  310. %{_sbindir}/postfix check >/dev/null 2>&1 ||:
  311. %preun
  312. if [ $1 -eq 0 ]; then
  313. if [ -f %{_var}/lock/subsys/postfix -a -f %{_sysconfdir}/rc.d/init.d/postfix ]; then
  314. %{_sysconfdir}/rc.d/init.d/postfix stop
  315. fi
  316. /sbin/chkconfig --del postfix
  317. fi
  318. %postun
  319. /sbin/ldconfig
  320. if [ -f %{_var}/lock/subsys/postfix ]; then
  321. if [ $1 -eq 0 ]; then
  322. rm -rf %{_var}/lock/subsys/postfix
  323. else
  324. %{_sysconfdir}/rc.d/init.d/postfix restart
  325. fi
  326. fi
  327. %triggerpostun -- postfix < 3.1.0
  328. if [ -f %{_var}/lock/subsys/postfix ]; then
  329. if [ $2 -gt 0 ]; then
  330. %{_sysconfdir}/rc.d/init.d/postfix restart
  331. fi
  332. fi
  333. %clean
  334. rm -rf $RPM_BUILD_ROOT
  335. %files
  336. %defattr(-,root,root)
  337. %doc COMPATIBILITY COPYRIGHT HISTORY TLS_LICENSE LICENSE INSTALL PORTING RELEASE_NOTES
  338. # japanese documant for 2.4.x is not ready.
  339. # %doc conf.ja
  340. # %doc html html.ja
  341. # %doc README_FILES README_FILES.ja
  342. %doc README_FILES
  343. # %doc man-%{jmanversion}/readme_ja.txt
  344. %{_sysconfdir}/aliases
  345. %{_sysconfdir}/aliases.db
  346. %config %{_sysconfdir}/cron.daily/postfix
  347. %dir %{_sysconfdir}/postfix
  348. %config %{_sysconfdir}/postfix/main.cf.default
  349. %config %{_sysconfdir}/postfix/master.cf
  350. %config %{_sysconfdir}/postfix/bounce.cf.default
  351. %dir %{_sysconfdir}/postfix/dynamicmaps.cf.d
  352. %dir %{_sysconfdir}/postfix/postfix-files.d
  353. %config(noreplace) %{_sysconfdir}/postfix/aliases
  354. %config(noreplace) %{_sysconfdir}/postfix/access
  355. %config(noreplace) %{_sysconfdir}/postfix/canonical
  356. %config(noreplace) %{_sysconfdir}/postfix/generic
  357. %config(noreplace) %{_sysconfdir}/postfix/header_checks
  358. %config(noreplace) %{_sysconfdir}/postfix/main.cf
  359. %config(noreplace) %{_sysconfdir}/postfix/relocated
  360. %config(noreplace) %{_sysconfdir}/postfix/transport
  361. %config(noreplace) %{_sysconfdir}/postfix/virtual
  362. %config(noreplace) %{_sysconfdir}/postfix/dynamicmaps.cf
  363. %config %{_sysconfdir}/postfix/postfix-files
  364. %config %{_sysconfdir}/postfix/post-install
  365. %config %{_sysconfdir}/postfix/postfix-script
  366. %config %{_sysconfdir}/rc.d/init.d/postfix
  367. %{_bindir}/*
  368. %dir %{_libdir}/postfix
  369. %{_libdir}/postfix/*
  370. %if %{build_pgsql}
  371. %exclude %{_libdir}/postfix/postfix-pgsql.so
  372. %endif
  373. %if %{build_mysql}
  374. %exclude %{_libdir}/postfix/postfix-mysql.so
  375. %endif
  376. %exclude %{_libdir}/postfix/postfix-sqlite.so
  377. %exclude %{_libdir}/postfix/postfix-ldap.so
  378. %exclude %{_libdir}/postfix/postfix-pcre.so
  379. %exclude %{_sysconfdir}/postfix/dynamicmaps.cf.d/*
  380. %exclude %{_sysconfdir}/postfix/postfix-files.d/*
  381. %{_sbindir}/postalias
  382. %{_sbindir}/postcat
  383. %{_sbindir}/postconf
  384. %attr(2755,root,postdrop) %{_sbindir}/postdrop
  385. %{_sbindir}/postfix
  386. %{_sbindir}/postkick
  387. %{_sbindir}/postlock
  388. %{_sbindir}/postlog
  389. %{_sbindir}/postmap
  390. %{_sbindir}/postmulti
  391. %attr(2755,root,postdrop) %{_sbindir}/postqueue
  392. %{_sbindir}/postsuper
  393. %{_sbindir}/qmqp-sink
  394. %{_sbindir}/qmqp-source
  395. %{_sbindir}/sendmail
  396. %{_sbindir}/smtp-sink
  397. %{_sbindir}/smtp-source
  398. %attr(-,root,man) %{_mandir}/man*/*
  399. # %attr(-,root,man) %{_mandir}/ja/man*/*
  400. %dir %{_var}/spool/postfix
  401. %attr(0750,postfix,root) %dir %{_data_dir}
  402. %attr(1733,postfix,postdrop) %dir %{_var}/spool/postfix/maildrop
  403. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/active
  404. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/corrupt
  405. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/deferred
  406. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/incoming
  407. %attr(0755,root,root) %dir %{_var}/spool/postfix/pid
  408. %attr(0710,postfix,postdrop) %dir %{_var}/spool/postfix/public
  409. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/bounce
  410. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/defer
  411. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/flush
  412. %attr(0710,postfix,postfix) %dir %{_var}/spool/postfix/private
  413. %attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/saved
  414. %{_libdir}/sendmail
  415. %files sqlite
  416. %defattr(-,root,root)
  417. %{_libdir}/postfix/postfix-sqlite.so
  418. %{_sysconfdir}/postfix/dynamicmaps.cf.d/sqlite
  419. %{_sysconfdir}/postfix/postfix-files.d/sqlite
  420. %if %build_pgsql
  421. %files pgsql
  422. %defattr(-,root,root)
  423. %{_libdir}/postfix/postfix-pgsql.so
  424. %{_sysconfdir}/postfix/dynamicmaps.cf.d/pgsql
  425. %{_sysconfdir}/postfix/postfix-files.d/pgsql
  426. %endif
  427. %if %build_mysql
  428. %files mysql
  429. %defattr(-,root,root)
  430. %{_libdir}/postfix/postfix-mysql.so
  431. %{_sysconfdir}/postfix/dynamicmaps.cf.d/mysql
  432. %{_sysconfdir}/postfix/postfix-files.d/mysql
  433. %endif
  434. %files ldap
  435. %defattr(-,root,root)
  436. %{_libdir}/postfix/postfix-ldap.so
  437. %{_sysconfdir}/postfix/dynamicmaps.cf.d/ldap
  438. %{_sysconfdir}/postfix/postfix-files.d/ldap
  439. %files pcre
  440. %defattr(-,root,root)
  441. %{_libdir}/postfix/postfix-pcre.so
  442. %{_sysconfdir}/postfix/dynamicmaps.cf.d/pcre
  443. %{_sysconfdir}/postfix/postfix-files.d/pcre
  444. %changelog
  445. * Tue Nov 06 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.1-1
  446. - new upstream release.
  447. - updated Patch200.
  448. * Mon Jan 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2.4-2
  449. - rebuilt with libicu-60.2.
  450. * Fri Dec 22 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2.4-1
  451. - new upstream release.
  452. * Sun May 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1.1-1
  453. - new upstream release.
  454. * Sun May 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1.0-1
  455. - new upstream release.
  456. * Mon Mar 14 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.4-1
  457. - new upstream release.
  458. * Thu Mar 10 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.3-4
  459. - rebuilt with openssl 1.0.2g
  460. * Thu Nov 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.3-3
  461. - rebuild with icu-56.1
  462. * Mon Nov 2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.3-2
  463. - fixed dependency.
  464. * Sun Nov 1 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.3-1
  465. - new upstream release.
  466. - updated patch200.
  467. - dropped patch100 and 101.
  468. * Sat Sep 5 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.11.6-1
  469. - new upstream release.
  470. * Sun Jul 20 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.11.1-2
  471. - fix BR/R for current environment
  472. * Sun Jun 15 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.11.1-1
  473. - update to 2.11.1
  474. - build with libpq-devel and libmysqlclient-devel (vl7)
  475. * Sat Jan 18 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.10.3-1
  476. - new upstream release.
  477. * Mon Oct 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.2-1
  478. - update to 2.10.2
  479. * Sun Dec 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.4-3
  480. - add -DHAS_DLOPEN to CCARGS instead of patch102.
  481. - use postfix-install in %%install (to prepare main.cf)
  482. - change postfix uid/gid to fixed id. (89 for postfix, 90 for postdrop)
  483. - run postalias on %%post
  484. * Fri Nov 30 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.4-2
  485. - added patch102.
  486. * Sun Nov 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.4-1
  487. - update to 2.9.4
  488. - update dynamicmaps patches
  489. - add sqite3 map support, add postfix-sqlite subpackage.
  490. - drop unneeded patches
  491. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.12-1
  492. - update to 2.8.12
  493. - rebuild with pcre-8.31
  494. * Tue May 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.10-1
  495. - update to 2.8.10
  496. * Sun Mar 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.9-1
  497. - update to 2.8.9
  498. * Thu May 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.3-1
  499. - update to 2.8.3
  500. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-1
  501. - update to 2.8.2
  502. - update dynamicmaps patch
  503. * Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.8-5
  504. - rebuilt with postgresql-9.0.3
  505. * Sun Jan 9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.8-4
  506. - rebuilt with openssl 1.0.0c
  507. - fix changelog typo..
  508. * Wed Dec 01 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.8-3
  509. - new upstream release.
  510. - updated %%patch100 and %%patch210.
  511. * Sat Feb 20 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.5-2
  512. - removed MySQL-shared from "Requires:" and "BuildRequires:".
  513. - replaced "Prereq:" with "Requires(pre):".
  514. - replaced "BuildPrereq:" with "BuildRequires:".
  515. * Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-1
  516. - new upstream release
  517. - rebuild with db4-4.8.0
  518. * Sun Aug 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-2
  519. - change /var/spool/postfix/pid owner and permission
  520. (0700,postfix,postfix -> 0755,root,root)
  521. * Mon Aug 3 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.3-1
  522. - new upstream release
  523. * Sat Jun 6 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.2-1
  524. - new upstream release.
  525. * Sat May 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.1-2
  526. - added a missing file.
  527. * Sat May 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.1-1
  528. - new upstream release.
  529. - updated dynamicmaps patch.
  530. * Fri May 22 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.5.7-2
  531. - made to build -mysql and -pgsql as default.
  532. - rebuilt with MySQL-5.1.34.
  533. * Wed May 13 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.7-1
  534. - new upstream release
  535. - update Patch200 from fc10
  536. * Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.5.6-2
  537. - rebuilt with openldap-2.4.11
  538. * Mon Jan 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.6-1
  539. - new upstream release
  540. * Sun Oct 12 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-4
  541. - add patch200/patch210 from fedora
  542. * Sun Oct 12 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-3
  543. - add Requires cyrus-sasl-md5, cyrus-sasl-plain for smtp auth
  544. - add Japanese description into sub packages
  545. * Sat Oct 11 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-2
  546. - update patch100/101 to fix libxsasl build issue
  547. - remove smp flag in build section to solve build error
  548. - add _data_dir
  549. * Fri Oct 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-1
  550. - new upstream release
  551. - update patch100/101 to fit 2.5.5 (from suse)
  552. - add %exclude dict_{my,pg}sql.so to %%files to avoid unneeded dependancy
  553. when option "--with XXsql" is specified. (from Vine 4.x update package)
  554. - remove HAS_DLOPEN macro.
  555. * Sat Sep 06 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.9-1
  556. - new upstream release with security fix
  557. * Sat Aug 30 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.8-2
  558. - add %%if %%build_mysql and %%if %%mysql from BuildRequires section again
  559. - remove unnessary dependency
  560. * Thu Aug 28 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.8-1
  561. - new upstream release with security fix
  562. * Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-4
  563. - spec in UTF-8
  564. * Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.4.7-3
  565. - rebuilt against db4-4.6.21
  566. * Tue Apr 15 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.4.7-2
  567. - add HAS_DLOPEN macro.
  568. - add USE_CYRUS_SASL macro.
  569. - modify dynamicmaps.cf (/usr/lib -> %%{_libdir}).
  570. * Tue Mar 25 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.7-1
  571. - new upstream release
  572. - update patch100 (it is based from mdk 2008.0)
  573. - add smp_mflags in make section
  574. - build under new versioning policy
  575. * Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.10-0vl10
  576. - rebuilt with postgresql-devel 8.2.5
  577. - updated Source20, 30 and 40
  578. * Fri May 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl9
  579. - rebuild with new openssl
  580. * Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.10-0vl8
  581. - rebuilt with new toolchain and db4-4.3.x
  582. * Fri Apr 13 2007 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 2.2.10-0vl7
  583. - <BTS:493> fix typo in %%if statement for %%files mysql section.
  584. - remove %%if %%build_mysql and %%if %%mysql from BuildRequires section,
  585. (Patch100 always builds dict_mysql.o and dict_pgsql.o)
  586. * Fri Oct 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl6
  587. - disable MySQL, PostgreSQL support by default.
  588. use "--with {mysql|pgsql}" to build them.
  589. * Mon Sep 18 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.2.10-0vl5
  590. - add lib64 patch to correct daemon_directory on x86_64 architecture
  591. * Wed Sep 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl4
  592. - remove duplicated entry from aliases. (<BTS:170>)
  593. * Wed Sep 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl3
  594. - add some pseudo accounts to aliases. (<BTS:170>)
  595. - add BuildPreReq: MySQL-shared
  596. * Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.2.10-0vl2
  597. - rebuilt with openldap-2.3.27-0vl1
  598. * Sun Apr 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl1
  599. - new upstream release
  600. * Thu Jan 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8-0vl1
  601. - new upstream release
  602. * Fri Sep 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.5-0vl1
  603. - new upstream release
  604. - update to 2.2.5
  605. - update dynamicmaps from debian package
  606. - update Japaese manpages and jconf
  607. - add jhtml and jreadme
  608. - enable TLS/SSL
  609. * Mon Jan 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
  610. - new upstream release
  611. - update all patches
  612. - link sasl2 instead of sasl1
  613. * Mon Jan 24 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.0.20-0vl6
  614. - enable cyrus-sasl.
  615. - add TLS/IPv6 patch.
  616. - modify main.cf to disable IPv6 as default.
  617. * Thu Oct 28 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.20-0vl5
  618. - add PreReq: db4 >= 4.2.52
  619. (to avoid errors when upgrading from db40-linked version)
  620. * Mon Oct 11 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.20-0vl4
  621. - rebuilt with db4-4.2.52
  622. * Tue Jun 8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl3
  623. - fix first installation time bugs...
  624. - remove aliases.db from %%files again
  625. - add 'touch aliases.db' in %%post script
  626. - update default main.cf to use /etc/postfix/aliases as default alias_database
  627. * Mon Jun 7 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl2
  628. - add /etc/postfix/aliases.db to %%files
  629. * Sat May 8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl1
  630. - new upstream release
  631. * Tue Apr 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.19-0vl1
  632. - new upstream release
  633. - build with new postgresql
  634. * Fri Sep 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.16-0vl1
  635. - new upstream release
  636. - update jconf/jman/jhtml
  637. * Fri Jul 4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.13-0vl1
  638. - new upstream release
  639. - update jman/jhtml/jreadme
  640. * Mon Jun 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.12-0vl1
  641. - new upstream release
  642. - update jconf/jman/jhtml/jreadme
  643. * Tue Jun 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.10-0vl1
  644. - new upstream release
  645. * Fri May 23 2003 Satoshi MACHINO <machino@vinelinux.org> 2.0.9-0vl5
  646. - rebuild by new cyrus-sasl(2.1.13-3vl1)
  647. * Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl4
  648. - add more BuildPreReq, Requires
  649. - fix some typo
  650. - add missing files to %%files.
  651. * Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl3
  652. - rebuild
  653. * Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl2
  654. - add debian's dynamic map patch.
  655. some additional feature is divided to sub package.
  656. - postfix-ldap, postfix-mysql, postfix-pgsql, postfix-pcre
  657. - split common postfix libraries as shared libs.
  658. - libpostfix-{master,global,util,dns}.so.1
  659. - use cyrus-sasl for SMTP-AUTH
  660. * Wed Apr 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl1
  661. - new upstream release 2.0.9
  662. - update jman/jhtml/jconf to 2.0.8
  663. * Wed Apr 9 2003 IWAI Masaharu <iwai@alib.jp> 2.0.7-0vl1
  664. - new upstream version
  665. - update documents
  666. - jman (source4)
  667. - jconf (Source5)
  668. - faq.html (Source6)
  669. - INSTALL.jp (Source7)
  670. - jhtml (Source12)
  671. * Sun Jan 19 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.12-0vl3
  672. - rebuilt against db4
  673. * Wed Dec 18 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.12-0vl2
  674. - rebuild to remove unnecessary dependancy.
  675. * Sat Nov 23 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.12-0vl1
  676. - new upstream version
  677. - modified /etc/init.d/postfix
  678. * Sun Oct 06 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl3
  679. - fixed brainless mistakes...
  680. update main.cf again.
  681. * Thu Oct 03 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl2
  682. - update main.cf patch
  683. - do not use procmail for local mailer.
  684. - do not show version and OS name for smtpd greeting banner.
  685. * Tue Jun 04 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl1
  686. - new upstream release
  687. - update jman, jconf, jhtml
  688. * Tue May 28 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl2
  689. - updated main.cf patch ( Patch0 )
  690. undefine myhostname
  691. * Fri May 24 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl1
  692. - changed %%{_var}/spool/postfix/private directory permission (0700 -> 0710)
  693. Thanks Mr. Daisuke SUZUKI ([VineSeed:06454])
  694. * Thu May 23 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl0
  695. - upstream release
  696. - updated japanese documents Source4-9
  697. ( and the unofficial Japanese Web Site moved. )
  698. - added japanese documents Source10-12
  699. - updated main.cf patch ( Patch0 )
  700. - added postdrop group
  701. - added some directories in %%{_var}/spool/postfix/
  702. active, corrupt, deferred, incoming, pid, public, bounce,
  703. defer,flush,private and saved directories
  704. * Mon Feb 18 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.0.20010228pl08-0vl3
  705. - not stop in %%pre
  706. - not start but restart in %%post
  707. * Mon Dec 31 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.0.20010228pl08-0vl2
  708. - added BuildPreReq: db3-devel
  709. * Sat Nov 24 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl08-0vl1
  710. - updated to 20010228-pl08
  711. * Fri Nov 9 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl06-0vl1
  712. - updated to 20010228-pl06
  713. * Sun Sep 23 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl05-0vl1
  714. - updated to 20010228-pl05
  715. * Wed Aug 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl04-0vl1
  716. - updated to 20010228-pl04
  717. * Wed Jun 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl03-0vl2
  718. - update Japanese documents and manpages
  719. * Sun May 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl03-0vl1
  720. - updated to 20010228-pl03
  721. * Mon May 21 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  722. - 0.0.20010228pl02-0vl3
  723. - modified %%preun script again
  724. (to check whether %%{_sysconfidir}/rc.d/init.d/postfix already exists)
  725. * Wed May 02 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  726. - 0.0.20010228pl02-0vl2
  727. - fixed incorrect %%preun script :-P
  728. * Tue May 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl02-0vl1
  729. - updated to 20010228-pl02
  730. * Wed Apr 11 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl4
  731. - add {pcre,regexp}_table to %files
  732. - don't replace config files
  733. - start postfix after install/upgrade
  734. * Mon Apr 09 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl2
  735. - updated jman pages and translations.
  736. - added japanese sample config files.
  737. * Sat Mar 31 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl1
  738. - updated to 20010228-pl01
  739. * Thu Mar 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228-0vl2
  740. - fixed file location
  741. * Thu Mar 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228-0vl1
  742. - updated to 20010228
  743. * Tue Dec 26 2000 Tomoya TAKA <tomoya@olive.plala.or.jp> 0.0.199912310pl13-0vl2
  744. - fixed about mandir
  745. * Thu Nov 23 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl13-0vl1
  746. - updated to 19991231-pl13
  747. - use rpm macros in spec
  748. * Thu Nov 23 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl11-0vl1
  749. - updated to 19991231-pl11
  750. * Thu Nov 9 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl10-0vl1
  751. - updated to 19991231-pl10
  752. * Thu Oct 12 2000 Yoshihiro Kajiki <kajiki@ylug.org>
  753. - fix newaliases problem by adding slink
  754. * Mon Oct 2 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
  755. - add japanese man pages
  756. * Sun Oct 1 2000 Jun Nishii <jun@vinelinux.org>
  757. - updates to 19991231-pl09-0vl2
  758. - fixed Group
  759. * Fri Sep 22 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
  760. - updates to 19991231-pl09
  761. * Wed Aug 09 2000 MACHINO, Satoshi <mac@netfort.gr.jp>
  762. - %build, removed bzip2 -9 and strip
  763. - fixed %files section to handle compressed man page
  764. * Wed Jun 21 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
  765. - Version name changes to 0.0.version
  766. - updates to 19991231-pl08
  767. + Major changes with postfix-19991231-pl08:
  768. Specify "body_checks = regexp:%{_sysconfdir}/postfix/body_checks" for a quick
  769. and dirty emergency content filter that looks at non-header lines
  770. one line at a time (including MIME headers inside the message body).
  771. Details in conf/sample-filter.cf.
  772. + Incompatible changes with postfix-19991231-pl07:
  773. As required by RFC 822, Postfix now inserts a generic destination
  774. message header when no destination header is present. The text is
  775. specified via the undisclosed_recipients_header configuration
  776. parameter (default: "To: undisclosed-recipients:;").
  777. * Thu Apr 6 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
  778. - updates to 19991231-pl06
  779. - added percent hack to main.cf
  780. * Sun Feb 20 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
  781. - adopted to Vine Linux
  782. * Mon Jan 3 2000 Jean-Michel Dault <jmdault@netrevolution.com>
  783. - updated to 19991231
  784. - added postfix group
  785. - corrected aliases.db bug
  786. * Mon Dec 27 1999 Jerome Dumonteil <jd@mandrakesoft.com>
  787. - Add postfix check in post to create sub dirs in spool
  788. * Mon Dec 20 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
  789. - Add -a $DOMAIN -d $LOGNAME to procmail (philippe).
  790. - New banner.
  791. * Wed Nov 10 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
  792. - fix if conflicts with sendmail.
  793. * Sat Jun 5 1999 Axalon Bloodstone <axalon@linux-mandrake.com>
  794. - install bins from libexec/
  795. * Sat Jun 5 1999 Bernhard Rosenkr舅zer <bero@mandrakesoft.com>
  796. - 19990601
  797. - .spec cleanup for easier updates
  798. * Wed May 26 1999 Axalon Bloodstone <axalon@linux-mandrake.com>
  799. - created link from %{_sbindir}/sendmail to %{_libdir}/sendmail
  800. so it doesn't bug out when i rpm -e sendmail
  801. - Now removes %{_var}/lock/subsys/postfix like a good little prog
  802. upon rpm -e
  803. * Fri Apr 23 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
  804. - Mandrake adptations.
  805. * Tue Apr 13 1999 Arne Coucheron <arneco@online.no>
  806. [19990317-pl04-1]
  807. * Tue Mar 30 1999 Arne Coucheron <arneco@online.no>
  808. [19990317-pl03-2]
  809. - Castro, Castro, pay attention my friend. You're making it very hard
  810. maintaining the package if you don't follow the flow of the releases
  811. * Thu Mar 25 1999 Arne Coucheron <arneco@online.no>
  812. [19990317-pl02-1]
  813. * Tue Mar 23 1999 Arne Coucheron <arneco@online.no>
  814. [19990317-3]
  815. - added bugfix patch01
  816. * Sat Mar 20 1999 Arne Coucheron <arneco@online.no>
  817. [19990317-2]
  818. - removed the mynetworks line in main.cf, let postfix figure it out
  819. - striping of the files in %{_sbindir}
  820. - alias database moved to %{_sysconfdir}/postfix and made a symlink to it in %{_sysconfdir}
  821. - enabled procmail support in main.cf and added it to Requires:
  822. - check status on master instead of postfix in the init script
  823. - obsoletes postfix-beta
  824. - had to move some of my latest changelog entries up here since Edgard Castro
  825. didn't follow my releases
  826. * Thu Mar 18 1999 Edgard Castro <castro@usmatrix.net>
  827. [19990317]
  828. * Tue Mar 16 1999 Edgard Castro <castro@usmatrix.net>
  829. [alpha-19990315]
  830. * Tue Mar 9 1999 Edgard Castro <castro@usmatrix.net>
  831. [19990122-pl01-2]
  832. - shell and gecho information changed to complie with Red Hat stardand
  833. - changed the name of the rpm package to postfix, instead of postfix-beta
  834. * Tue Feb 16 1999 Edgard Castro <castro@usmatrix.net>
  835. [19990122-pl01-1]
  836. * Sun Jan 24 1999 Arne Coucheron <arneco@online.no>
  837. [19990122-1]
  838. - shell for postfix user changed to /bin/true to avoid logins to the account
  839. - files in %{_libdir}exec/postfix moved to %{_libdir}/postfix since this complies
  840. more with the Red Hat standard
  841. * Wed Jan 06 1999 Arne Coucheron <arneco@online.no>
  842. [19981230-2]
  843. - added URL for the source
  844. - added a cron job for daily check of errors
  845. - sample config files moved from /etc/postfix/sample to the docdir
  846. - dropped making of symlinks in %{_sbindir} and instead installing the real
  847. files there
  848. - because of the previous they're not needed anymore in %{_libdir}exec/postfix,
  849. so they are removed from that place
  850. * Fri Jan 01 1999 Arne Coucheron <arneco@online.no>
  851. [19981230-1]
  852. * Tue Dec 29 1998 Arne Coucheron <arneco@online.no>
  853. [19981222-1]
  854. - first build of rpm version