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

Revision 12481, 36.5 KB checked in by tomop, 4 years ago (diff)

postfix-3.5.7-1

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