automatic version update by autodist [release 3.5.1-1mamba;Sun Apr 19 2020]
This commit is contained in:
parent
c1f1ff63a9
commit
35da8b46a1
@ -1,6 +1,6 @@
|
|||||||
diff -uNr postfix-2.11.7.orig/README_FILES/VDA_README postfix-2.11.7/README_FILES/VDA_README
|
diff -uNr postfix-2.10.0.orig/README_FILES/VDA_README postfix-2.10.0/README_FILES/VDA_README
|
||||||
--- postfix-2.11.7.orig/README_FILES/VDA_README 1970-01-01 01:00:00.000000000 +0100
|
--- postfix-2.10.0.orig/README_FILES/VDA_README 1970-01-01 01:00:00.000000000 +0100
|
||||||
+++ postfix-2.11.7/README_FILES/VDA_README 2016-03-23 10:10:58.173560150 +0100
|
+++ postfix-2.10.0/README_FILES/VDA_README 2013-06-07 13:21:22.837143270 +0200
|
||||||
@@ -0,0 +1,10 @@
|
@@ -0,0 +1,10 @@
|
||||||
+Postfix VDA patch for maildir++ quota support by
|
+Postfix VDA patch for maildir++ quota support by
|
||||||
+ Anderson Nadal <andernadal@gmail.com>
|
+ Anderson Nadal <andernadal@gmail.com>
|
||||||
@ -12,10 +12,10 @@ diff -uNr postfix-2.11.7.orig/README_FILES/VDA_README postfix-2.11.7/README_FILE
|
|||||||
+provided by this patch.
|
+provided by this patch.
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
diff -uNr postfix-2.11.7.orig/src/global/mail_params.h postfix-2.11.7/src/global/mail_params.h
|
diff -uNr postfix-2.10.0.orig/src/global/mail_params.h postfix-2.10.0/src/global/mail_params.h
|
||||||
--- postfix-2.11.7.orig/src/global/mail_params.h 2013-12-29 02:27:16.000000000 +0100
|
--- postfix-2.10.0.orig/src/global/mail_params.h 2013-02-03 19:22:21.000000000 +0100
|
||||||
+++ postfix-2.11.7/src/global/mail_params.h 2016-03-23 10:10:58.174560150 +0100
|
+++ postfix-2.10.0/src/global/mail_params.h 2013-06-07 13:21:22.838143270 +0200
|
||||||
@@ -2413,6 +2413,54 @@
|
@@ -2367,6 +2367,54 @@
|
||||||
#define DEF_VIRT_GID_MAPS ""
|
#define DEF_VIRT_GID_MAPS ""
|
||||||
extern char *var_virt_gid_maps;
|
extern char *var_virt_gid_maps;
|
||||||
|
|
||||||
@ -70,9 +70,9 @@ diff -uNr postfix-2.11.7.orig/src/global/mail_params.h postfix-2.11.7/src/global
|
|||||||
#define VAR_VIRT_MINUID "virtual_minimum_uid"
|
#define VAR_VIRT_MINUID "virtual_minimum_uid"
|
||||||
#define DEF_VIRT_MINUID 100
|
#define DEF_VIRT_MINUID 100
|
||||||
extern int var_virt_minimum_uid;
|
extern int var_virt_minimum_uid;
|
||||||
diff -uNr postfix-2.11.7.orig/src/util/file_limit.c postfix-2.11.7/src/util/file_limit.c
|
diff -uNr postfix-2.10.0.orig/src/util/file_limit.c postfix-2.10.0/src/util/file_limit.c
|
||||||
--- postfix-2.11.7.orig/src/util/file_limit.c 2003-10-22 20:48:36.000000000 +0200
|
--- postfix-2.10.0.orig/src/util/file_limit.c 2003-10-22 20:48:36.000000000 +0200
|
||||||
+++ postfix-2.11.7/src/util/file_limit.c 2016-03-23 10:10:58.174560150 +0100
|
+++ postfix-2.10.0/src/util/file_limit.c 2013-06-07 13:21:22.839143270 +0200
|
||||||
@@ -85,7 +85,11 @@
|
@@ -85,7 +85,11 @@
|
||||||
#else
|
#else
|
||||||
struct rlimit rlim;
|
struct rlimit rlim;
|
||||||
@ -86,9 +86,9 @@ diff -uNr postfix-2.11.7.orig/src/util/file_limit.c postfix-2.11.7/src/util/file
|
|||||||
if (setrlimit(RLIMIT_FSIZE, &rlim) < 0)
|
if (setrlimit(RLIMIT_FSIZE, &rlim) < 0)
|
||||||
msg_fatal("setrlimit: %m");
|
msg_fatal("setrlimit: %m");
|
||||||
#ifdef SIGXFSZ
|
#ifdef SIGXFSZ
|
||||||
diff -uNr postfix-2.11.7.orig/src/virtual/mailbox.c postfix-2.11.7/src/virtual/mailbox.c
|
diff -uNr postfix-2.10.0.orig/src/virtual/mailbox.c postfix-2.10.0/src/virtual/mailbox.c
|
||||||
--- postfix-2.11.7.orig/src/virtual/mailbox.c 2011-12-24 03:13:32.000000000 +0100
|
--- postfix-2.10.0.orig/src/virtual/mailbox.c 2011-12-24 03:13:32.000000000 +0100
|
||||||
+++ postfix-2.11.7/src/virtual/mailbox.c 2016-03-23 10:10:58.197560149 +0100
|
+++ postfix-2.10.0/src/virtual/mailbox.c 2013-06-07 13:23:03.044139705 +0200
|
||||||
@@ -52,6 +52,7 @@
|
@@ -52,6 +52,7 @@
|
||||||
#include <mymalloc.h>
|
#include <mymalloc.h>
|
||||||
#include <stringops.h>
|
#include <stringops.h>
|
||||||
@ -293,9 +293,9 @@ diff -uNr postfix-2.11.7.orig/src/virtual/mailbox.c postfix-2.11.7/src/virtual/m
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Cleanup.
|
* Cleanup.
|
||||||
diff -uNr postfix-2.11.7.orig/src/virtual/maildir.c postfix-2.11.7/src/virtual/maildir.c
|
diff -uNr postfix-2.10.0.orig/src/virtual/maildir.c postfix-2.10.0/src/virtual/maildir.c
|
||||||
--- postfix-2.11.7.orig/src/virtual/maildir.c 2012-01-25 01:41:08.000000000 +0100
|
--- postfix-2.10.0.orig/src/virtual/maildir.c 2012-01-25 01:41:08.000000000 +0100
|
||||||
+++ postfix-2.11.7/src/virtual/maildir.c 2016-03-23 10:10:58.198560149 +0100
|
+++ postfix-2.10.0/src/virtual/maildir.c 2013-06-07 13:21:22.840143270 +0200
|
||||||
@@ -64,28 +64,420 @@
|
@@ -64,28 +64,420 @@
|
||||||
#include <mbox_open.h>
|
#include <mbox_open.h>
|
||||||
#include <dsn_util.h>
|
#include <dsn_util.h>
|
||||||
@ -1281,9 +1281,9 @@ diff -uNr postfix-2.11.7.orig/src/virtual/maildir.c postfix-2.11.7/src/virtual/m
|
|||||||
+
|
+
|
||||||
return (deliver_status);
|
return (deliver_status);
|
||||||
}
|
}
|
||||||
diff -uNr postfix-2.11.7.orig/src/virtual/virtual.c postfix-2.11.7/src/virtual/virtual.c
|
diff -uNr postfix-2.10.0.orig/src/virtual/virtual.c postfix-2.10.0/src/virtual/virtual.c
|
||||||
--- postfix-2.11.7.orig/src/virtual/virtual.c 2011-02-19 01:46:06.000000000 +0100
|
--- postfix-2.10.0.orig/src/virtual/virtual.c 2011-02-19 01:46:06.000000000 +0100
|
||||||
+++ postfix-2.11.7/src/virtual/virtual.c 2016-03-23 10:10:58.199560149 +0100
|
+++ postfix-2.10.0/src/virtual/virtual.c 2013-06-07 13:21:22.840143270 +0200
|
||||||
@@ -335,12 +335,30 @@
|
@@ -335,12 +335,30 @@
|
||||||
char *var_mail_spool_dir; /* XXX dependency fix */
|
char *var_mail_spool_dir; /* XXX dependency fix */
|
||||||
bool var_strict_mbox_owner;
|
bool var_strict_mbox_owner;
|
||||||
@ -1378,9 +1378,9 @@ diff -uNr postfix-2.11.7.orig/src/virtual/virtual.c postfix-2.11.7/src/virtual/v
|
|||||||
MAIL_SERVER_PRIVILEGED,
|
MAIL_SERVER_PRIVILEGED,
|
||||||
0);
|
0);
|
||||||
}
|
}
|
||||||
diff -uNr postfix-2.11.7.orig/src/virtual/virtual.h postfix-2.11.7/src/virtual/virtual.h
|
diff -uNr postfix-2.10.0.orig/src/virtual/virtual.h postfix-2.10.0/src/virtual/virtual.h
|
||||||
--- postfix-2.11.7.orig/src/virtual/virtual.h 2006-01-08 00:59:47.000000000 +0100
|
--- postfix-2.10.0.orig/src/virtual/virtual.h 2006-01-08 00:59:47.000000000 +0100
|
||||||
+++ postfix-2.11.7/src/virtual/virtual.h 2016-03-23 10:10:58.199560149 +0100
|
+++ postfix-2.10.0/src/virtual/virtual.h 2013-06-07 13:21:22.841143270 +0200
|
||||||
@@ -34,6 +34,9 @@
|
@@ -34,6 +34,9 @@
|
||||||
extern MAPS *virtual_mailbox_maps;
|
extern MAPS *virtual_mailbox_maps;
|
||||||
extern MAPS *virtual_uid_maps;
|
extern MAPS *virtual_uid_maps;
|
105
postfix.spec
105
postfix.spec
@ -8,7 +8,7 @@
|
|||||||
%define postdrop_groupid 65031
|
%define postdrop_groupid 65031
|
||||||
|
|
||||||
Name: postfix
|
Name: postfix
|
||||||
Version: 2.11.8
|
Version: 3.5.1
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: A fast, easy to administer, and secure mail transfer agent
|
Summary: A fast, easy to administer, and secure mail transfer agent
|
||||||
Group: System/Servers
|
Group: System/Servers
|
||||||
@ -25,12 +25,12 @@ Source5: %{name}-mysql_virtual_mailbox_limit_maps.cf
|
|||||||
Source6: %{name}-mysql_relay_domains_maps.cf
|
Source6: %{name}-mysql_relay_domains_maps.cf
|
||||||
Source7: %{name}-mysql-tables.txt
|
Source7: %{name}-mysql-tables.txt
|
||||||
# patch path for download: http://vda.sourceforge.net/VDA/postfix-%{version}-vda-ng.patch.gz
|
# patch path for download: http://vda.sourceforge.net/VDA/postfix-%{version}-vda-ng.patch.gz
|
||||||
Patch0: http://vda.sourceforge.net/VDA/postfix-vda-v13-2.11.7.patch
|
Patch0: http://vda.sourceforge.net/VDA/postfix-vda-v13-2.10.0.patch
|
||||||
License: IBM Public License
|
License: IBM Public License
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libdb51-devel
|
BuildRequires: libdb53-devel
|
||||||
BuildRequires: libmysqlclient-devel
|
BuildRequires: libmysql5-devel
|
||||||
BuildRequires: libopenldap-devel
|
BuildRequires: libopenldap-devel
|
||||||
BuildRequires: libopenssl-devel
|
BuildRequires: libopenssl-devel
|
||||||
BuildRequires: libpcre-devel
|
BuildRequires: libpcre-devel
|
||||||
@ -60,7 +60,7 @@ virtualdomains addon package for Postfix with mysql. This package is intended fo
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
#%patch0 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make CC=%{_host}-gcc makefiles \
|
make CC=%{_host}-gcc makefiles \
|
||||||
@ -254,6 +254,9 @@ exit 0
|
|||||||
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/relocated
|
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/relocated
|
||||||
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/transport
|
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/transport
|
||||||
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/virtual
|
%attr(-,root,postfix) %config(noreplace) %{_sysconfdir}/postfix/virtual
|
||||||
|
%{_sysconfdir}/postfix/main.cf.proto
|
||||||
|
%{_sysconfdir}/postfix/master.cf.proto
|
||||||
|
%{_sysconfdir}/postfix/postfix-files
|
||||||
%{_sysconfdir}/postfix/TLS_LICENSE
|
%{_sysconfdir}/postfix/TLS_LICENSE
|
||||||
%{_bindir}/mailq
|
%{_bindir}/mailq
|
||||||
%{_bindir}/newaliases
|
%{_bindir}/newaliases
|
||||||
@ -303,11 +306,95 @@ exit 0
|
|||||||
%attr(0771,vmail,vmail) %dir %{_localstatedir}/spool/deleted-maildirs
|
%attr(0771,vmail,vmail) %dir %{_localstatedir}/spool/deleted-maildirs
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Nov 26 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.8-1mamba
|
* Sun Apr 19 2020 Automatic Build System <autodist@mambasoft.it> 3.5.1-1mamba
|
||||||
- update to 2.11.8
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Fri May 15 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.5-1mamba
|
* Mon Mar 16 2020 Automatic Build System <autodist@mambasoft.it> 3.5.0-1mamba
|
||||||
- update to 2.11.5
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Sep 22 2019 Automatic Build System <autodist@mambasoft.it> 3.4.7-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jul 06 2019 Automatic Build System <autodist@mambasoft.it> 3.4.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Mar 31 2019 Automatic Build System <autodist@mambasoft.it> 3.4.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Mar 15 2019 Automatic Build System <autodist@mambasoft.it> 3.4.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Mar 11 2019 Automatic Build System <autodist@mambasoft.it> 3.4.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Automatic Build System <autodist@mambasoft.it> 3.4.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 28 2019 Automatic Build System <autodist@mambasoft.it> 3.4.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Feb 27 2019 Automatic Build System <autodist@mambasoft.it> 3.3.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Nov 25 2018 Automatic Build System <autodist@mambasoft.it> 3.3.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon May 21 2018 Automatic Build System <autodist@mambasoft.it> 3.3.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 22 2018 Automatic Build System <autodist@mambasoft.it> 3.3.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jan 29 2018 Automatic Build System <autodist@mambasoft.it> 3.2.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Oct 30 2017 Automatic Build System <autodist@mambasoft.it> 3.2.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 01 2017 Automatic Build System <autodist@mambasoft.it> 3.2.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Aug 08 2017 Automatic Build System <autodist@mambasoft.it> 3.2.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Mar 04 2017 Automatic Build System <autodist@mambasoft.it> 3.2.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jan 03 2017 Automatic Build System <autodist@mambasoft.it> 3.1.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 02 2016 Automatic Build System <autodist@mambasoft.it> 3.1.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Aug 28 2016 Automatic Build System <autodist@mambasoft.it> 3.1.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon May 16 2016 Automatic Build System <autodist@mambasoft.it> 3.1.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 25 2016 Automatic Build System <autodist@mambasoft.it> 3.1.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Feb 21 2016 Automatic Build System <autodist@mambasoft.it> 3.0.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 11 2015 Automatic Build System <autodist@mambasoft.it> 3.0.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jul 21 2015 Automatic Build System <autodist@mambasoft.it> 3.0.2-2mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jul 21 2015 Automatic Build System <autodist@mambasoft.it> 3.0.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Automatic Build System <autodist@mambasoft.it> 3.0.1-2mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Automatic Build System <autodist@mambasoft.it> 3.0.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Mar 09 2015 Automatic Build System <autodist@mambasoft.it> 3.0.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Fri Feb 06 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.3-7mamba
|
* Fri Feb 06 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.3-7mamba
|
||||||
- rebuilt with libsasl2 2.1.16
|
- rebuilt with libsasl2 2.1.16
|
||||||
|
Loading…
Reference in New Issue
Block a user