This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 7516e8b7f1edff1ff59c1e8ac3f342c66bada85d (commit) via cc724c142aa71d9e33d923599f31ec19bd2072e2 (commit) via 82899ad1ce895d3b2348b6c7eb6179096e3724aa (commit) via 2f278de868f0a62f03bf6f32d76309a0c1d8f9fe (commit) from 1307df22574f5c4a04b79510b181e17fa33bad5d (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 7516e8b7f1edff1ff59c1e8ac3f342c66bada85d Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Jun 18 09:13:21 2019 +0100
core134: Ship changed general-functions.pl
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit cc724c142aa71d9e33d923599f31ec19bd2072e2 Author: Alexander Marx alexander.marx@ipfire.org Date: Tue Jun 18 09:55:35 2019 +0200
BUG12070: Its not possible to use the underscore in email addresses
Using IPFire's Mailservice does not allow to enter a senders mail address with the underscore. The function used to verify that is used from general-functions.pl. Now the function 'validemail' allows the underscore in the address.
Fixes: #12070
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 82899ad1ce895d3b2348b6c7eb6179096e3724aa Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Jun 17 17:40:37 2019 +0100
core134: Ship updated unbound
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 2f278de868f0a62f03bf6f32d76309a0c1d8f9fe Author: Matthias Fischer matthias.fischer@ipfire.org Date: Mon Jun 17 21:11:00 2019 +0200
unbound: Update to 1.9.2
For details see: https://nlnetlabs.nl/pipermail/unbound-users/2019-June/011632.html
Signed-off-by: Matthias Fischer matthias.fischer@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/cfgroot/general-functions.pl | 2 +- config/rootfiles/common/unbound | 2 +- config/rootfiles/core/134/filelists/files | 1 + config/rootfiles/{oldcore/106 => core/134}/filelists/unbound | 0 lfs/unbound | 4 ++-- 5 files changed, 5 insertions(+), 4 deletions(-) copy config/rootfiles/{oldcore/106 => core/134}/filelists/unbound (100%)
Difference in files: diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl index 04e36969c..aefcfb687 100644 --- a/config/cfgroot/general-functions.pl +++ b/config/cfgroot/general-functions.pl @@ -784,7 +784,7 @@ sub validemail { return 0 if ( substr($parts[1],-1,1) eq '.' );
#check first addresspart (before '@' sign) - return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9.!-+#]+$/ ); + return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9.!-_+#]+$/ );
#check second addresspart (after '@' sign) return 0 if ( $parts[1] !~ m/^[a-zA-Z0-9.-]+$/ ); diff --git a/config/rootfiles/common/unbound b/config/rootfiles/common/unbound index a130a059b..7bab5a7dc 100644 --- a/config/rootfiles/common/unbound +++ b/config/rootfiles/common/unbound @@ -11,7 +11,7 @@ etc/unbound/unbound.conf #usr/lib/libunbound.la #usr/lib/libunbound.so usr/lib/libunbound.so.8 -usr/lib/libunbound.so.8.1.1 +usr/lib/libunbound.so.8.1.2 #usr/lib/pkgconfig/libunbound.pc usr/sbin/unbound usr/sbin/unbound-anchor diff --git a/config/rootfiles/core/134/filelists/files b/config/rootfiles/core/134/filelists/files index 25ade1735..b74ce2e5f 100644 --- a/config/rootfiles/core/134/filelists/files +++ b/config/rootfiles/core/134/filelists/files @@ -2,4 +2,5 @@ etc/system-release etc/issue etc/rc.d/init.d/unbound srv/web/ipfire/cgi-bin/credits.cgi +var/ipfire/general-functions.pl var/ipfire/langs diff --git a/config/rootfiles/core/134/filelists/unbound b/config/rootfiles/core/134/filelists/unbound new file mode 120000 index 000000000..66adf0924 --- /dev/null +++ b/config/rootfiles/core/134/filelists/unbound @@ -0,0 +1 @@ +../../../common/unbound \ No newline at end of file diff --git a/lfs/unbound b/lfs/unbound index 87666dfce..e017dcd78 100644 --- a/lfs/unbound +++ b/lfs/unbound @@ -24,7 +24,7 @@
include Config
-VER = 1.9.1 +VER = 1.9.2
THISAPP = unbound-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 5d954920d192b33f7c88f015dd969940 +$(DL_FILE)_MD5 = 244e10977d1453dff669caa3c0efba18
install : $(TARGET)
hooks/post-receive -- IPFire 2.x development tree