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

Revision 10073, 34.1 KB checked in by tomop, 8 years ago (diff)

postfix-3.0.4-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.0.4
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 ||:
370if [ -f %{_var}/lock/subsys/postfix ]; then
371   %{_sysconfdir}/rc.d/init.d/postfix restart
372fi
373
374
375%preun
376if [ $1 = 0 ]; then
377   if [ -f %{_var}/lock/subsys/postfix -a -f %{_sysconfdir}/rc.d/init.d/postfix ]; then
378      %{_sysconfdir}/rc.d/init.d/postfix stop
379   fi
380   /sbin/chkconfig --del postfix
381fi
382
383
384%postun
385/sbin/ldconfig
386if [ $1 = 0 ]; then
387   if ! [ -f %{_var}/lock/subsys/postfix ]; then
388        rm -rf %{_var}/lock/subsys/postfix
389   fi
390fi
391
392%clean
393rm -rf $RPM_BUILD_ROOT
394
395
396%files
397%defattr(-,root,root)
398%doc COMPATIBILITY COPYRIGHT HISTORY TLS_LICENSE LICENSE INSTALL PORTING RELEASE_NOTES
399# japanese documant for 2.4.x is not ready.
400# %doc conf.ja
401# %doc html html.ja
402# %doc README_FILES README_FILES.ja
403%doc README_FILES
404# %doc man-%{jmanversion}/readme_ja.txt
405%{_sysconfdir}/aliases
406%{_sysconfdir}/aliases.db
407%config %{_sysconfdir}/cron.daily/postfix
408%dir %{_sysconfdir}/postfix
409%config %{_sysconfdir}/postfix/main.cf.default
410%config %{_sysconfdir}/postfix/master.cf
411%config %{_sysconfdir}/postfix/bounce.cf.default
412%dir %{_sysconfdir}/postfix/dynamicmaps.cf.d
413%dir %{_sysconfdir}/postfix/postfix-files.d
414%config(noreplace) %{_sysconfdir}/postfix/aliases
415%config(noreplace) %{_sysconfdir}/postfix/access
416%config(noreplace) %{_sysconfdir}/postfix/canonical
417%config(noreplace) %{_sysconfdir}/postfix/generic
418%config(noreplace) %{_sysconfdir}/postfix/header_checks
419%config(noreplace) %{_sysconfdir}/postfix/main.cf
420%config(noreplace) %{_sysconfdir}/postfix/relocated
421%config(noreplace) %{_sysconfdir}/postfix/transport
422%config(noreplace) %{_sysconfdir}/postfix/virtual
423%config(noreplace) %{_sysconfdir}/postfix/dynamicmaps.cf
424%config %{_sysconfdir}/postfix/postfix-files
425%config %{_sysconfdir}/postfix/post-install
426%config %{_sysconfdir}/postfix/postfix-script
427%config %{_sysconfdir}/rc.d/init.d/postfix
428%{_bindir}/*
429%dir %{_libdir}/postfix
430%{_libdir}/postfix/*
431
432%if %{build_pgsql}
433%exclude %{_libdir}/postfix/postfix-pgsql.so
434%endif
435%if %{build_mysql}
436%exclude %{_libdir}/postfix/postfix-mysql.so
437%endif
438
439%exclude %{_libdir}/postfix/postfix-sqlite.so
440%exclude %{_libdir}/postfix/postfix-ldap.so
441%exclude %{_libdir}/postfix/postfix-pcre.so
442%exclude %{_sysconfdir}/postfix/dynamicmaps.cf.d/*
443%exclude %{_sysconfdir}/postfix/postfix-files.d/*
444%{_sbindir}/postalias
445%{_sbindir}/postcat
446%{_sbindir}/postconf
447%attr(2755,root,postdrop) %{_sbindir}/postdrop
448%{_sbindir}/postfix
449%{_sbindir}/postkick
450%{_sbindir}/postlock
451%{_sbindir}/postlog
452%{_sbindir}/postmap
453%{_sbindir}/postmulti
454%attr(2755,root,postdrop) %{_sbindir}/postqueue
455%{_sbindir}/postsuper
456%{_sbindir}/qmqp-sink
457%{_sbindir}/qmqp-source
458%{_sbindir}/sendmail
459%{_sbindir}/smtp-sink
460%{_sbindir}/smtp-source
461%attr(-,root,man) %{_mandir}/man*/*
462# %attr(-,root,man) %{_mandir}/ja/man*/*
463%dir %{_var}/spool/postfix
464%attr(0750,postfix,root) %dir %{_data_dir}
465%attr(1733,postfix,postdrop) %dir %{_var}/spool/postfix/maildrop
466%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/active
467%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/corrupt
468%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/deferred
469%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/incoming
470%attr(0755,root,root) %dir %{_var}/spool/postfix/pid
471%attr(0710,postfix,postdrop) %dir %{_var}/spool/postfix/public
472%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/bounce
473%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/defer
474%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/flush
475%attr(0710,postfix,postfix) %dir %{_var}/spool/postfix/private
476%attr(0700,postfix,postfix) %dir %{_var}/spool/postfix/saved
477%{_libdir}/sendmail
478
479%files sqlite
480%defattr(-,root,root)
481%{_libdir}/postfix/postfix-sqlite.so
482%{_sysconfdir}/postfix/dynamicmaps.cf.d/sqlite
483%{_sysconfdir}/postfix/postfix-files.d/sqlite
484
485%if %build_pgsql
486%files pgsql
487%defattr(-,root,root)
488%{_libdir}/postfix/postfix-pgsql.so
489%{_sysconfdir}/postfix/dynamicmaps.cf.d/pgsql
490%{_sysconfdir}/postfix/postfix-files.d/pgsql
491%endif
492
493%if %build_mysql
494%files mysql
495%defattr(-,root,root)
496%{_libdir}/postfix/postfix-mysql.so
497%{_sysconfdir}/postfix/dynamicmaps.cf.d/mysql
498%{_sysconfdir}/postfix/postfix-files.d/mysql
499%endif
500
501%files ldap
502%defattr(-,root,root)
503%{_libdir}/postfix/postfix-ldap.so
504%{_sysconfdir}/postfix/dynamicmaps.cf.d/ldap
505%{_sysconfdir}/postfix/postfix-files.d/ldap
506
507%files pcre
508%defattr(-,root,root)
509%{_libdir}/postfix/postfix-pcre.so
510%{_sysconfdir}/postfix/dynamicmaps.cf.d/pcre
511%{_sysconfdir}/postfix/postfix-files.d/pcre
512
513%changelog
514* Mon Mar 14 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.4-1
515- new upstream release.
516
517* Thu Mar 10 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.3-4
518- rebuilt with openssl 1.0.2g
519
520* Thu Nov 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.3-3
521- rebuild with icu-56.1
522
523* Mon Nov  2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.3-2
524- fixed dependency.
525
526* Sun Nov  1 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.3-1
527- new upstream release.
528- updated patch200.
529- dropped patch100 and 101.
530
531* Sat Sep  5 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.11.6-1
532- new upstream release.
533
534* Sun Jul 20 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.11.1-2
535- fix BR/R for current environment
536
537* Sun Jun 15 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.11.1-1
538- update to 2.11.1
539- build with libpq-devel and libmysqlclient-devel (vl7)
540
541* Sat Jan 18 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.10.3-1
542- new upstream release.
543
544* Mon Oct 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.2-1
545- update to 2.10.2
546
547* Sun Dec 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.4-3
548- add -DHAS_DLOPEN to CCARGS instead of patch102.
549- use postfix-install in %%install (to prepare main.cf)
550- change postfix uid/gid to fixed id. (89 for postfix, 90 for postdrop)
551- run postalias on %%post
552
553* Fri Nov 30 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.4-2
554- added patch102.
555
556* Sun Nov 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9.4-1
557- update to 2.9.4
558- update dynamicmaps patches
559- add sqite3 map support, add postfix-sqlite subpackage.
560- drop unneeded patches
561
562* Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.12-1
563- update to 2.8.12
564- rebuild with pcre-8.31
565
566* Tue May 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.10-1
567- update to 2.8.10
568
569* Sun Mar 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.9-1
570- update to 2.8.9
571
572* Thu May 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.3-1
573- update to 2.8.3
574
575* Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-1
576- update to 2.8.2
577- update dynamicmaps patch
578
579* Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.8-5
580- rebuilt with postgresql-9.0.3
581
582* Sun Jan  9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.8-4
583- rebuilt with openssl 1.0.0c
584- fix changelog typo..
585
586* Wed Dec 01 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.8-3
587- new upstream release.
588- updated %%patch100 and %%patch210.
589
590* Sat Feb 20 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.5-2
591- removed MySQL-shared from "Requires:" and "BuildRequires:".
592- replaced "Prereq:" with "Requires(pre):".
593- replaced "BuildPrereq:" with "BuildRequires:".
594
595* Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-1
596- new upstream release
597- rebuild with db4-4.8.0
598
599* Sun Aug 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-2
600- change /var/spool/postfix/pid owner and permission
601  (0700,postfix,postfix -> 0755,root,root)
602
603* Mon Aug  3 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.3-1
604- new upstream release
605
606* Sat Jun  6 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.2-1
607- new upstream release.
608
609* Sat May 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.1-2
610- added a missing file.
611
612* Sat May 30 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.1-1
613- new upstream release.
614- updated dynamicmaps patch.
615
616* Fri May 22 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.5.7-2
617- made to build -mysql and -pgsql as default.
618- rebuilt with MySQL-5.1.34.
619
620* Wed May 13 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.7-1
621- new upstream release
622- update Patch200 from fc10
623
624* Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.5.6-2
625- rebuilt with openldap-2.4.11
626
627* Mon Jan 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.6-1
628- new upstream release
629
630* Sun Oct 12 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-4
631- add patch200/patch210 from fedora
632
633* Sun Oct 12 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-3
634- add Requires cyrus-sasl-md5, cyrus-sasl-plain for smtp auth
635- add Japanese description into sub packages
636
637* Sat Oct 11 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-2
638- update patch100/101 to fix libxsasl build issue
639- remove smp flag in build section to solve build error
640- add _data_dir
641
642* Fri Oct 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.5-1
643- new upstream release
644- update patch100/101 to fit 2.5.5 (from suse)
645- add %exclude dict_{my,pg}sql.so to %%files to avoid unneeded dependancy
646  when option "--with XXsql" is specified. (from Vine 4.x update package)
647- remove HAS_DLOPEN macro.
648
649* Sat Sep 06 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.9-1
650- new upstream release with security fix
651
652* Sat Aug 30 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.8-2
653- add %%if %%build_mysql and %%if %%mysql from BuildRequires section again
654- remove unnessary dependency
655
656* Thu Aug 28 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.8-1
657- new upstream release with security fix
658
659* Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-4
660- spec in UTF-8
661
662* Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.4.7-3
663- rebuilt against db4-4.6.21
664
665* Tue Apr 15 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.4.7-2
666- add HAS_DLOPEN macro.
667- add USE_CYRUS_SASL macro.
668- modify dynamicmaps.cf (/usr/lib -> %%{_libdir}).
669
670* Tue Mar 25 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.7-1
671- new upstream release
672- update patch100 (it is based from mdk 2008.0)
673- add smp_mflags in make section
674- build under new versioning policy
675
676* Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.10-0vl10
677- rebuilt with postgresql-devel 8.2.5
678- updated Source20, 30 and 40
679
680* Fri May 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl9
681- rebuild with new openssl
682
683* Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.10-0vl8
684- rebuilt with new toolchain and db4-4.3.x
685
686* Fri Apr 13 2007 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 2.2.10-0vl7
687- <BTS:493> fix typo in %%if statement for %%files mysql section.
688- remove %%if %%build_mysql and %%if %%mysql from BuildRequires section,
689  (Patch100 always builds dict_mysql.o and dict_pgsql.o)
690
691* Fri Oct 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl6
692- disable MySQL, PostgreSQL support by default.
693  use "--with {mysql|pgsql}" to build them.
694
695* Mon Sep 18 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.2.10-0vl5
696- add lib64 patch to correct daemon_directory on x86_64 architecture
697
698* Wed Sep 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl4
699- remove duplicated entry from aliases. (<BTS:170>)
700
701* Wed Sep 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl3
702- add some pseudo accounts to aliases. (<BTS:170>)
703- add BuildPreReq: MySQL-shared
704
705* Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.2.10-0vl2
706- rebuilt with openldap-2.3.27-0vl1
707
708* Sun Apr 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.10-0vl1
709- new upstream release
710
711* Thu Jan 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.8-0vl1
712- new upstream release
713
714* Fri Sep 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.5-0vl1
715- new upstream release
716  - update to 2.2.5
717- update dynamicmaps from debian package
718- update Japaese manpages and jconf
719- add jhtml and jreadme
720- enable TLS/SSL
721
722* Mon Jan 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
723- new upstream release
724- update all patches
725- link sasl2 instead of sasl1
726
727* Mon Jan 24 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.0.20-0vl6
728- enable cyrus-sasl.
729- add TLS/IPv6 patch.
730- modify main.cf to disable IPv6 as default.
731
732* Thu Oct 28 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.20-0vl5
733- add PreReq: db4 >= 4.2.52
734  (to avoid errors when upgrading from db40-linked version)
735
736* Mon Oct 11 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.20-0vl4
737- rebuilt with db4-4.2.52
738
739* Tue Jun  8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl3
740- fix first installation time bugs...
741  - remove aliases.db from %%files again
742  - add 'touch aliases.db' in %%post script
743- update default main.cf to use /etc/postfix/aliases as default alias_database
744
745* Mon Jun  7 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl2
746- add /etc/postfix/aliases.db to %%files
747
748* Sat May  8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.20-0vl1
749- new upstream release
750
751* Tue Apr 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.19-0vl1
752- new upstream release
753- build with new postgresql
754
755* Fri Sep 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.16-0vl1
756- new upstream release
757- update jconf/jman/jhtml
758
759* Fri Jul  4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.13-0vl1
760- new upstream release
761- update jman/jhtml/jreadme
762
763* Mon Jun 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.12-0vl1
764- new upstream release
765- update jconf/jman/jhtml/jreadme
766
767* Tue Jun 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.10-0vl1
768- new upstream release
769
770* Fri May 23 2003 Satoshi MACHINO <machino@vinelinux.org> 2.0.9-0vl5
771- rebuild by new cyrus-sasl(2.1.13-3vl1)
772
773* Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl4
774- add more BuildPreReq, Requires
775- fix some typo
776- add missing files to %%files.
777
778* Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl3
779- rebuild
780
781* Sat Apr 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl2
782- add debian's dynamic map patch.
783  some additional feature is divided to sub package.
784  - postfix-ldap, postfix-mysql, postfix-pgsql, postfix-pcre
785- split common postfix libraries as shared libs.
786  - libpostfix-{master,global,util,dns}.so.1
787- use cyrus-sasl for SMTP-AUTH
788
789* Wed Apr 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.9-0vl1
790- new upstream release 2.0.9
791- update jman/jhtml/jconf to 2.0.8
792
793* Wed Apr  9 2003 IWAI Masaharu <iwai@alib.jp> 2.0.7-0vl1
794- new upstream version
795- update documents
796    - jman (source4)
797    - jconf (Source5)
798    - faq.html (Source6)
799    - INSTALL.jp (Source7)
800    - jhtml (Source12)
801
802* Sun Jan 19 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.12-0vl3
803- rebuilt against db4
804
805* Wed Dec 18 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.12-0vl2
806- rebuild to remove unnecessary dependancy.
807
808* Sat Nov 23 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.12-0vl1
809- new upstream version
810- modified /etc/init.d/postfix
811
812* Sun Oct 06 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl3
813- fixed brainless mistakes...
814  update main.cf again.
815
816* Thu Oct 03 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl2
817- update main.cf patch
818  - do not use procmail for local mailer.
819  - do not show version and OS name for smtpd greeting banner.
820
821* Tue Jun 04 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.11-0vl1
822- new upstream release
823- update jman, jconf, jhtml
824
825* Tue May 28 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl2
826- updated main.cf patch ( Patch0 )
827    undefine myhostname
828
829* Fri May 24 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl1
830- changed %%{_var}/spool/postfix/private directory permission (0700 -> 0710)
831    Thanks Mr. Daisuke SUZUKI ([VineSeed:06454])
832
833* Thu May 23 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.1.10-0vl0
834- upstream release
835- updated japanese documents Source4-9
836    ( and the unofficial Japanese Web Site moved. )
837- added japanese documents  Source10-12
838- updated main.cf patch ( Patch0 )
839- added postdrop group
840- added some directories in %%{_var}/spool/postfix/
841    active, corrupt, deferred, incoming, pid, public, bounce,
842    defer,flush,private and saved directories
843
844* Mon Feb 18 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.0.20010228pl08-0vl3
845- not stop in %%pre
846- not start but restart in %%post
847
848* Mon Dec 31 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.0.20010228pl08-0vl2
849- added BuildPreReq: db3-devel
850
851* Sat Nov 24 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl08-0vl1
852- updated to 20010228-pl08
853
854* Fri Nov  9 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl06-0vl1
855- updated to 20010228-pl06
856
857* Sun Sep 23 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl05-0vl1
858- updated to 20010228-pl05
859
860* Wed Aug  1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl04-0vl1
861- updated to 20010228-pl04
862
863* Wed Jun 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl03-0vl2
864- update Japanese documents and manpages
865
866* Sun May 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl03-0vl1
867- updated to 20010228-pl03
868
869* Mon May 21 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
870- 0.0.20010228pl02-0vl3
871- modified %%preun script again
872  (to check whether %%{_sysconfidir}/rc.d/init.d/postfix already exists)
873
874* Wed May 02 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
875- 0.0.20010228pl02-0vl2
876- fixed incorrect %%preun script :-P
877
878* Tue May  1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl02-0vl1
879- updated to 20010228-pl02
880
881* Wed Apr 11 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl4
882- add {pcre,regexp}_table to %files
883- don't replace config files
884- start postfix after install/upgrade
885
886* Mon Apr 09 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl2
887- updated jman pages and translations.
888- added japanese sample config files.
889
890* Sat Mar 31 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228pl01-0vl1
891- updated to 20010228-pl01
892
893* Thu Mar  1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228-0vl2
894- fixed file location
895
896* Thu Mar  1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20010228-0vl1
897- updated to 20010228
898
899* Tue Dec 26 2000 Tomoya TAKA <tomoya@olive.plala.or.jp> 0.0.199912310pl13-0vl2
900- fixed about mandir
901
902* Thu Nov 23 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl13-0vl1
903- updated to 19991231-pl13
904- use rpm macros in spec
905
906* Thu Nov 23 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl11-0vl1
907- updated to 19991231-pl11
908
909* Thu Nov  9 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.199912310pl10-0vl1
910- updated to 19991231-pl10
911
912* Thu Oct 12 2000 Yoshihiro Kajiki <kajiki@ylug.org>
913- fix newaliases problem by adding slink
914
915* Mon Oct  2 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
916- add japanese man pages
917
918* Sun Oct  1 2000 Jun Nishii <jun@vinelinux.org>
919- updates to 19991231-pl09-0vl2
920- fixed Group
921
922* Fri Sep 22 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
923- updates to 19991231-pl09
924
925* Wed Aug 09 2000 MACHINO, Satoshi <mac@netfort.gr.jp>
926- %build, removed bzip2 -9 and strip
927- fixed %files section to handle compressed man page
928
929* Wed Jun 21 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
930- Version name changes to 0.0.version
931- updates to 19991231-pl08
932  + Major changes with postfix-19991231-pl08:
933    Specify "body_checks = regexp:%{_sysconfdir}/postfix/body_checks" for a quick
934    and dirty emergency content filter that looks at non-header lines
935    one line at a time (including MIME headers inside the message body).
936    Details in conf/sample-filter.cf.
937  + Incompatible changes with postfix-19991231-pl07:
938    As required by RFC 822, Postfix now inserts a generic destination
939    message header when no destination header is present.  The text is
940    specified via the undisclosed_recipients_header configuration
941    parameter (default:  "To: undisclosed-recipients:;").
942
943* Thu Apr  6 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
944- updates to 19991231-pl06
945- added percent hack to main.cf
946
947* Sun Feb 20 2000 Daisuke SUZUKI <daisuke@linux.or.jp>
948- adopted to Vine Linux
949
950* Mon Jan  3 2000 Jean-Michel Dault <jmdault@netrevolution.com>
951- updated to 19991231
952- added postfix group
953- corrected aliases.db bug
954
955* Mon Dec 27 1999 Jerome Dumonteil <jd@mandrakesoft.com>
956- Add postfix check in post to create sub dirs in spool
957
958* Mon Dec 20 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
959- Add -a $DOMAIN -d $LOGNAME to procmail (philippe).
960- New banner.
961
962* Wed Nov 10 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
963- fix if conflicts with sendmail.
964
965* Sat Jun  5 1999 Axalon Bloodstone <axalon@linux-mandrake.com>
966- install bins from libexec/
967
968* Sat Jun  5 1999 Bernhard Rosenkr舅zer <bero@mandrakesoft.com>
969- 19990601
970- .spec cleanup for easier updates
971
972* Wed May 26 1999 Axalon Bloodstone <axalon@linux-mandrake.com>
973- created link from %{_sbindir}/sendmail to %{_libdir}/sendmail
974  so it doesn't bug out when i rpm -e sendmail
975- Now removes %{_var}/lock/subsys/postfix like a good little prog
976  upon rpm -e
977
978* Fri Apr 23 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
979
980- Mandrake adptations.
981
982* Tue Apr 13 1999 Arne Coucheron <arneco@online.no>
983  [19990317-pl04-1]
984
985* Tue Mar 30 1999 Arne Coucheron <arneco@online.no>
986  [19990317-pl03-2]
987- Castro, Castro, pay attention my friend. You're making it very hard
988  maintaining the package if you don't follow the flow of the releases
989
990* Thu Mar 25 1999 Arne Coucheron <arneco@online.no>
991  [19990317-pl02-1]
992
993* Tue Mar 23 1999 Arne Coucheron <arneco@online.no>
994  [19990317-3]
995- added bugfix patch01
996
997* Sat Mar 20 1999 Arne Coucheron <arneco@online.no>
998  [19990317-2]
999- removed the mynetworks line in main.cf, let postfix figure it out
1000- striping of the files in %{_sbindir}
1001- alias database moved to %{_sysconfdir}/postfix and made a symlink to it in %{_sysconfdir}
1002- enabled procmail support in main.cf and added it to Requires:
1003- check status on master instead of postfix in the init script
1004- obsoletes postfix-beta
1005- had to move some of my latest changelog entries up here since Edgard Castro
1006  didn't follow my releases
1007
1008* Thu Mar 18 1999 Edgard Castro <castro@usmatrix.net>
1009  [19990317]
1010
1011* Tue Mar 16 1999 Edgard Castro <castro@usmatrix.net>
1012  [alpha-19990315]
1013
1014* Tue Mar  9 1999 Edgard Castro <castro@usmatrix.net>
1015  [19990122-pl01-2]
1016- shell and gecho information changed to complie with Red Hat stardand
1017- changed the name of the rpm package to postfix, instead of postfix-beta
1018
1019* Tue Feb 16 1999 Edgard Castro <castro@usmatrix.net>
1020  [19990122-pl01-1]
1021
1022* Sun Jan 24 1999 Arne Coucheron <arneco@online.no>
1023  [19990122-1]
1024- shell for postfix user changed to /bin/true to avoid logins to the account
1025- files in %{_libdir}exec/postfix moved to %{_libdir}/postfix since this complies
1026  more with the Red Hat standard
1027
1028* Wed Jan 06 1999 Arne Coucheron <arneco@online.no>
1029  [19981230-2]
1030- added URL for the source
1031- added a cron job for daily check of errors
1032- sample config files moved from /etc/postfix/sample to the docdir
1033- dropped making of symlinks in %{_sbindir} and instead installing the real
1034  files there
1035- because of the previous they're not needed anymore in %{_libdir}exec/postfix,
1036  so they are removed from that place
1037
1038* Fri Jan 01 1999 Arne Coucheron <arneco@online.no>
1039  [19981230-1]
1040
1041* Tue Dec 29 1998 Arne Coucheron <arneco@online.no>
1042  [19981222-1]
1043- first build of rpm version
Note: See TracBrowser for help on using the repository browser.