This commit is contained in:
parent
9a5f0949d7
commit
16b657fe83
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 14 11:16:21 CEST 2008 - varkoly@suse.de
|
||||||
|
|
||||||
|
- (bnc#403976) - permissions on /var/lib/postfix changed
|
||||||
|
- (bnc#433916) - postfix should be splitted into postfix and postfix-doc
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 11 14:34:22 CEST 2008 - varkoly@suse.de
|
Thu Sep 11 14:34:22 CEST 2008 - varkoly@suse.de
|
||||||
|
|
||||||
|
43
postfix.spec
43
postfix.spec
@ -32,7 +32,7 @@ Conflicts: sendmail exim
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: A fast, secure, and flexible mailer
|
Summary: A fast, secure, and flexible mailer
|
||||||
Version: 2.5.5
|
Version: 2.5.5
|
||||||
Release: 1
|
Release: 4
|
||||||
Source: postfix-%{version}.tar.bz
|
Source: postfix-%{version}.tar.bz
|
||||||
Source1: postfix-SuSE.tar.gz
|
Source1: postfix-SuSE.tar.gz
|
||||||
Patch: dynamic_maps.patch
|
Patch: dynamic_maps.patch
|
||||||
@ -65,6 +65,13 @@ Summary: Development headers for the postfix package
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Group: Productivity/Networking/Email/Servers
|
Group: Productivity/Networking/Email/Servers
|
||||||
PreReq: %{name} = %{version}
|
PreReq: %{name} = %{version}
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
License: IBM Public License
|
||||||
|
Summary: Documentations for the postfix package
|
||||||
|
AutoReqProv: on
|
||||||
|
Group: Productivity/Networking/Email/Servers
|
||||||
|
PreReq: %{name} = %{version}
|
||||||
#
|
#
|
||||||
# Some defines
|
# Some defines
|
||||||
#
|
#
|
||||||
@ -77,9 +84,9 @@ PreReq: %{name} = %{version}
|
|||||||
%define pf_newaliases_path /usr/bin/newaliases
|
%define pf_newaliases_path /usr/bin/newaliases
|
||||||
%define pf_mailq_path /usr/bin/mailq
|
%define pf_mailq_path /usr/bin/mailq
|
||||||
%define pf_setgid_group maildrop
|
%define pf_setgid_group maildrop
|
||||||
%define pf_readme_directory %{_docdir}/%{name}/README_FILES
|
%define pf_readme_directory %{_docdir}/%{name}-doc/README_FILES
|
||||||
%define pf_html_directory %{_docdir}/%{name}/html
|
%define pf_html_directory %{_docdir}/%{name}-doc/html
|
||||||
%define pf_sample_directory %{_docdir}/%{name}/samples
|
%define pf_sample_directory %{_docdir}/%{name}-doc/samples
|
||||||
%define pf_data_directory /var/lib/postfix
|
%define pf_data_directory /var/lib/postfix
|
||||||
%define postfix_uid 51
|
%define postfix_uid 51
|
||||||
%define postfix_gid 51
|
%define postfix_gid 51
|
||||||
@ -460,6 +467,14 @@ fi
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
/usr/include/postfix/
|
/usr/include/postfix/
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc AAAREADME COMPATIBILITY COPYRIGHT HISTORY INSTALL IPv6-ChangeLog LICENSE
|
||||||
|
%doc PORTING RELEASE_NOTES* US_PATENT_6321267 TLS_LICENSE
|
||||||
|
%doc README_FILES examples html auxiliary
|
||||||
|
%doc postfix-SuSE/README.SuSE
|
||||||
|
%doc postfix-SuSE/SPAMASSASSIN+POSTFIX.SuSE
|
||||||
|
|
||||||
%files -f %{postfixfiles}
|
%files -f %{postfixfiles}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%config /etc/pam.d/*
|
%config /etc/pam.d/*
|
||||||
@ -517,13 +532,8 @@ fi
|
|||||||
/usr/lib/postfix/dict_ldap.so
|
/usr/lib/postfix/dict_ldap.so
|
||||||
/usr/lib/postfix/dict_pcre.so
|
/usr/lib/postfix/dict_pcre.so
|
||||||
/usr/lib/postfix/dict_tcp.so
|
/usr/lib/postfix/dict_tcp.so
|
||||||
%dir %attr(0750,postfix,root) %{pf_data_directory}
|
|
||||||
%doc AAAREADME COMPATIBILITY COPYRIGHT HISTORY INSTALL IPv6-ChangeLog LICENSE
|
|
||||||
%doc PORTING RELEASE_NOTES* US_PATENT_6321267 TLS_LICENSE
|
|
||||||
%doc README_FILES examples html auxiliary
|
|
||||||
%doc postfix-SuSE/README.SuSE
|
|
||||||
%doc postfix-SuSE/SPAMASSASSIN+POSTFIX.SuSE
|
|
||||||
%{conf_backup_dir}
|
%{conf_backup_dir}
|
||||||
|
%dir %attr(0700,postfix,root) %{pf_data_directory}
|
||||||
%{_mandir}/man?/*.gz
|
%{_mandir}/man?/*.gz
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -561,11 +571,24 @@ Postfix aims to be an alternative to the widely-used sendmail program.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Wietse Venema <wietse@porcupine.org>
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Postfix aims to be an alternative to the widely-used sendmail program.
|
||||||
|
This package contains the documentation for postfix
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
--------
|
--------
|
||||||
Wietse Venema <wietse@porcupine.org>
|
Wietse Venema <wietse@porcupine.org>
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 14 2008 varkoly@suse.de
|
||||||
|
- (bnc#403976) - permissions on /var/lib/postfix changed
|
||||||
|
- (bnc#433916) - postfix should be splitted into postfix and postfix-doc
|
||||||
* Thu Sep 11 2008 varkoly@suse.de
|
* Thu Sep 11 2008 varkoly@suse.de
|
||||||
- (bnc#415216) - Postfix RPM Install Displays Multiple Warnings
|
- (bnc#415216) - Postfix RPM Install Displays Multiple Warnings
|
||||||
- clean up spec file
|
- clean up spec file
|
||||||
|
Loading…
x
Reference in New Issue
Block a user