From: Michael Tremer <git@ipfire.org>
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 7516e8b7f1edff1ff59c1e8ac3f342c66bada85d
Date: Tue, 18 Jun 2019 09:13:44 +0100 [thread overview]
Message-ID: <20190618081345.6D4F884FDAF@people01.i.ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 5146 bytes --]
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(a)ipfire.org>
Date: Tue Jun 18 09:13:21 2019 +0100
core134: Ship changed general-functions.pl
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit cc724c142aa71d9e33d923599f31ec19bd2072e2
Author: Alexander Marx <alexander.marx(a)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(a)ipfire.org>
commit 82899ad1ce895d3b2348b6c7eb6179096e3724aa
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Mon Jun 17 17:40:37 2019 +0100
core134: Ship updated unbound
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 2f278de868f0a62f03bf6f32d76309a0c1d8f9fe
Author: Matthias Fischer <matthias.fischer(a)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(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)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
reply other threads:[~2019-06-18 8:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190618081345.6D4F884FDAF@people01.i.ipfire.org \
--to=git@ipfire.org \
--cc=ipfire-scm@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox