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

Revision 12386, 36.3 KB checked in by tomop, 4 years ago (diff)

updated 15 packages

epiphany-3.30.5-3

evolution-data-server-3.30.5-3

harfbuzz-2.6.4-2

icu-67.1-1

libvisio-0.1.7-3

php74-7.4.5-2

postfix-3.5.1-2

qt5-qtbase-5.12.8-2

qt5-qtlocation-5.12.8-2

qt5-qtwebengine-5.12.8-2

samba-4.12.1-2

tracker-miners-2.3.3-2

tracker-2.3.4-1

webkitgtk4-2.28.1-1

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