source: projects/specs/trunk/p/postfix/postfix-vl.spec @ 12121

Revision 12121, 35.0 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

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