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

Revision 10249, 34.3 KB checked in by tomop, 8 years ago (diff)

postfix-3.1.0-1

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