From 8a4621720b54cc92575e9021ca31bc7ef88f7272 Mon Sep 17 00:00:00 2001 From: jim-p Date: Wed, 11 Dec 2013 11:23:18 -0500 Subject: Correct perl version for mailscanner, fixes service status indication. --- config/mailscanner/mailscanner.xml | 2 +- pkg_config.8.xml | 2 +- pkg_config.8.xml.amd64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/mailscanner/mailscanner.xml b/config/mailscanner/mailscanner.xml index 05798a1e..87be2421 100644 --- a/config/mailscanner/mailscanner.xml +++ b/config/mailscanner/mailscanner.xml @@ -54,7 +54,7 @@ mailscanner mailscanner - perl5.14.2 + perl5.16.3 MailScanner diff --git a/pkg_config.8.xml b/pkg_config.8.xml index 04dda1d3..0a04d15c 100644 --- a/pkg_config.8.xml +++ b/pkg_config.8.xml @@ -637,7 +637,7 @@ p5-IP-Country-2.28.tbz MailScanner-4.84.5_3.tbz mailscanner-4.84.5_3-i386.pbi - 4.84.5_3 pkg v.0.2.3 + 4.84.5_3 pkg v.0.2.4 beta 2.0 mailscanner.xml diff --git a/pkg_config.8.xml.amd64 b/pkg_config.8.xml.amd64 index 855be027..0376a7df 100644 --- a/pkg_config.8.xml.amd64 +++ b/pkg_config.8.xml.amd64 @@ -624,7 +624,7 @@ p5-IP-Country-2.28.tbz MailScanner-4.84.5_3.tbz mailscanner-4.84.5_3-amd64.pbi - 4.84.5_3 pkg v.0.2.3 + 4.84.5_3 pkg v.0.2.4 beta 2.0 mailscanner.xml -- cgit v1.2.3 From 419fe8a7818856bcc6badb4e8d601f0e01f31f5c Mon Sep 17 00:00:00 2001 From: Marcello Coutinho Date: Thu, 12 Dec 2013 11:01:39 -0200 Subject: bind - fix final . check for ipv6 addresses. --- config/bind/bind.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bind/bind.inc b/config/bind/bind.inc index 146632c9..8f439d1a 100644 --- a/config/bind/bind.inc +++ b/config/bind/bind.inc @@ -432,7 +432,7 @@ EOD; $hostname = (preg_match("/(MX|NS)/",$zone['row'][$y]['hosttype'])?"@":$zone['row'][$y]['hostname']); $hosttype = $zone['row'][$y]['hosttype']; $hostdst = $zone['row'][$y]['hostdst']; - if (preg_match("/[a-zA-Z]/",$hostdst) && !preg_match("/(TXT|SPF)/",$hosttype)) + if (preg_match("/[a-zA-Z]/",$hostdst) && !preg_match("/(TXT|SPF|AAAA)/",$hosttype)) $hostdst .= "."; $hostvalue = $zone['row'][$y]['hostvalue']; -- cgit v1.2.3