update to 2.11.8 [release 2.11.8-1mamba;Mon Nov 26 2018]
This commit is contained in:
parent
90fa607b9b
commit
c1f1ff63a9
@ -1,6 +1,6 @@
|
|||||||
diff -uNr postfix-2.10.0.orig/README_FILES/VDA_README postfix-2.10.0/README_FILES/VDA_README
|
diff -uNr postfix-2.11.7.orig/README_FILES/VDA_README postfix-2.11.7/README_FILES/VDA_README
|
||||||
--- postfix-2.10.0.orig/README_FILES/VDA_README 1970-01-01 01:00:00.000000000 +0100
|
--- postfix-2.11.7.orig/README_FILES/VDA_README 1970-01-01 01:00:00.000000000 +0100
|
||||||
+++ postfix-2.10.0/README_FILES/VDA_README 2013-06-07 13:21:22.837143270 +0200
|
+++ postfix-2.11.7/README_FILES/VDA_README 2016-03-23 10:10:58.173560150 +0100
|
||||||
@@ -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.10.0.orig/README_FILES/VDA_README postfix-2.10.0/README_FILE
|
|||||||
+provided by this patch.
|
+provided by this patch.
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
diff -uNr postfix-2.10.0.orig/src/global/mail_params.h postfix-2.10.0/src/global/mail_params.h
|
diff -uNr postfix-2.11.7.orig/src/global/mail_params.h postfix-2.11.7/src/global/mail_params.h
|
||||||
--- postfix-2.10.0.orig/src/global/mail_params.h 2013-02-03 19:22:21.000000000 +0100
|
--- postfix-2.11.7.orig/src/global/mail_params.h 2013-12-29 02:27:16.000000000 +0100
|
||||||
+++ postfix-2.10.0/src/global/mail_params.h 2013-06-07 13:21:22.838143270 +0200
|
+++ postfix-2.11.7/src/global/mail_params.h 2016-03-23 10:10:58.174560150 +0100
|
||||||
@@ -2367,6 +2367,54 @@
|
@@ -2413,6 +2413,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.10.0.orig/src/global/mail_params.h postfix-2.10.0/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.10.0.orig/src/util/file_limit.c postfix-2.10.0/src/util/file_limit.c
|
diff -uNr postfix-2.11.7.orig/src/util/file_limit.c postfix-2.11.7/src/util/file_limit.c
|
||||||
--- postfix-2.10.0.orig/src/util/file_limit.c 2003-10-22 20:48:36.000000000 +0200
|
--- postfix-2.11.7.orig/src/util/file_limit.c 2003-10-22 20:48:36.000000000 +0200
|
||||||
+++ postfix-2.10.0/src/util/file_limit.c 2013-06-07 13:21:22.839143270 +0200
|
+++ postfix-2.11.7/src/util/file_limit.c 2016-03-23 10:10:58.174560150 +0100
|
||||||
@@ -85,7 +85,11 @@
|
@@ -85,7 +85,11 @@
|
||||||
#else
|
#else
|
||||||
struct rlimit rlim;
|
struct rlimit rlim;
|
||||||
@ -86,9 +86,9 @@ diff -uNr postfix-2.10.0.orig/src/util/file_limit.c postfix-2.10.0/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.10.0.orig/src/virtual/mailbox.c postfix-2.10.0/src/virtual/mailbox.c
|
diff -uNr postfix-2.11.7.orig/src/virtual/mailbox.c postfix-2.11.7/src/virtual/mailbox.c
|
||||||
--- postfix-2.10.0.orig/src/virtual/mailbox.c 2011-12-24 03:13:32.000000000 +0100
|
--- postfix-2.11.7.orig/src/virtual/mailbox.c 2011-12-24 03:13:32.000000000 +0100
|
||||||
+++ postfix-2.10.0/src/virtual/mailbox.c 2013-06-07 13:23:03.044139705 +0200
|
+++ postfix-2.11.7/src/virtual/mailbox.c 2016-03-23 10:10:58.197560149 +0100
|
||||||
@@ -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.10.0.orig/src/virtual/mailbox.c postfix-2.10.0/src/virtual/m
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Cleanup.
|
* Cleanup.
|
||||||
diff -uNr postfix-2.10.0.orig/src/virtual/maildir.c postfix-2.10.0/src/virtual/maildir.c
|
diff -uNr postfix-2.11.7.orig/src/virtual/maildir.c postfix-2.11.7/src/virtual/maildir.c
|
||||||
--- postfix-2.10.0.orig/src/virtual/maildir.c 2012-01-25 01:41:08.000000000 +0100
|
--- postfix-2.11.7.orig/src/virtual/maildir.c 2012-01-25 01:41:08.000000000 +0100
|
||||||
+++ postfix-2.10.0/src/virtual/maildir.c 2013-06-07 13:21:22.840143270 +0200
|
+++ postfix-2.11.7/src/virtual/maildir.c 2016-03-23 10:10:58.198560149 +0100
|
||||||
@@ -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.10.0.orig/src/virtual/maildir.c postfix-2.10.0/src/virtual/m
|
|||||||
+
|
+
|
||||||
return (deliver_status);
|
return (deliver_status);
|
||||||
}
|
}
|
||||||
diff -uNr postfix-2.10.0.orig/src/virtual/virtual.c postfix-2.10.0/src/virtual/virtual.c
|
diff -uNr postfix-2.11.7.orig/src/virtual/virtual.c postfix-2.11.7/src/virtual/virtual.c
|
||||||
--- postfix-2.10.0.orig/src/virtual/virtual.c 2011-02-19 01:46:06.000000000 +0100
|
--- postfix-2.11.7.orig/src/virtual/virtual.c 2011-02-19 01:46:06.000000000 +0100
|
||||||
+++ postfix-2.10.0/src/virtual/virtual.c 2013-06-07 13:21:22.840143270 +0200
|
+++ postfix-2.11.7/src/virtual/virtual.c 2016-03-23 10:10:58.199560149 +0100
|
||||||
@@ -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.10.0.orig/src/virtual/virtual.c postfix-2.10.0/src/virtual/v
|
|||||||
MAIL_SERVER_PRIVILEGED,
|
MAIL_SERVER_PRIVILEGED,
|
||||||
0);
|
0);
|
||||||
}
|
}
|
||||||
diff -uNr postfix-2.10.0.orig/src/virtual/virtual.h postfix-2.10.0/src/virtual/virtual.h
|
diff -uNr postfix-2.11.7.orig/src/virtual/virtual.h postfix-2.11.7/src/virtual/virtual.h
|
||||||
--- postfix-2.10.0.orig/src/virtual/virtual.h 2006-01-08 00:59:47.000000000 +0100
|
--- postfix-2.11.7.orig/src/virtual/virtual.h 2006-01-08 00:59:47.000000000 +0100
|
||||||
+++ postfix-2.10.0/src/virtual/virtual.h 2013-06-07 13:21:22.841143270 +0200
|
+++ postfix-2.11.7/src/virtual/virtual.h 2016-03-23 10:10:58.199560149 +0100
|
||||||
@@ -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;
|
@ -8,7 +8,7 @@
|
|||||||
%define postdrop_groupid 65031
|
%define postdrop_groupid 65031
|
||||||
|
|
||||||
Name: postfix
|
Name: postfix
|
||||||
Version: 2.11.5
|
Version: 2.11.8
|
||||||
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,7 +25,7 @@ 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.10.0.patch
|
Patch0: http://vda.sourceforge.net/VDA/postfix-vda-v13-2.11.7.patch
|
||||||
License: IBM Public License
|
License: IBM Public License
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
@ -303,6 +303,9 @@ 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
|
||||||
|
- update to 2.11.8
|
||||||
|
|
||||||
* Fri May 15 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.5-1mamba
|
* Fri May 15 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11.5-1mamba
|
||||||
- update to 2.11.5
|
- update to 2.11.5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user