postfix-vl.spec 33 KB

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