From 49ba94548045b833f27b31cc8541dba03ea46162 Mon Sep 17 00:00:00 2001 From: Stuart Wyatt Date: Tue, 7 Apr 2015 11:59:04 -0700 Subject: Apcupsd - Bug 4650 - Support TLS email notifications and update email notification flag tests Bump package number to 0.3.5 --- config/apcupsd/apcupsd_mail.php | 7 +++++-- pkg_config.10.xml | 2 +- pkg_config.8.xml | 2 +- pkg_config.8.xml.amd64 | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/config/apcupsd/apcupsd_mail.php b/config/apcupsd/apcupsd_mail.php index 3b13309c..15c74fd2 100755 --- a/config/apcupsd/apcupsd_mail.php +++ b/config/apcupsd/apcupsd_mail.php @@ -61,8 +61,11 @@ $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = $config['notifications']['smtp']['ipaddress']; -if ($config['notifications']['smtp']['ssl'] == "checked") - $mail->SMTPSecure = "ssl"; +if ((isset($config['notifications']['smtp']['ssl']) && $config['notifications']['smtp']['ssl'] != "unchecked") || $config['notifications']['smtp']['ssl'] == "checked") + $mail->SMTPSecure = "ssl"; + +if ((isset($config['notifications']['smtp']['tls']) && $config['notifications']['smtp']['tls'] != "unchecked") || $config['notifications']['smtp']['tls'] == "checked") + $mail->SMTPSecure = "tls"; $mail->Port = empty($config['notifications']['smtp']['port']) ? 25 : $config['notifications']['smtp']['port']; diff --git a/pkg_config.10.xml b/pkg_config.10.xml index 72b7ebff..0eb4bf6e 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -1452,7 +1452,7 @@ Set of programs for controlling APC UPS. Services https://packages.pfsense.org/packages/config/apcupsd/apcupsd.xml - apcupsd-3.14.12_1 pkg v0.3.4 + apcupsd-3.14.12_1 pkg v0.3.5 BETA 2.2 apcupsd.xml diff --git a/pkg_config.8.xml b/pkg_config.8.xml index 930d943e..5029eb28 100644 --- a/pkg_config.8.xml +++ b/pkg_config.8.xml @@ -1883,7 +1883,7 @@ Set of programs for controlling APC UPS. Services https://packages.pfsense.org/packages/config/apcupsd/apcupsd.xml - apcupsd-3.14.10_1 pkg v0.3.4 + apcupsd-3.14.10_1 pkg v0.3.5 BETA 2.0 apcupsd.xml diff --git a/pkg_config.8.xml.amd64 b/pkg_config.8.xml.amd64 index 63a97830..83f5c242 100644 --- a/pkg_config.8.xml.amd64 +++ b/pkg_config.8.xml.amd64 @@ -1870,7 +1870,7 @@ Set of programs for controlling APC UPS. Services https://packages.pfsense.org/packages/config/apcupsd/apcupsd.xml - apcupsd-3.14.10_1 pkg v0.3.4 + apcupsd-3.14.10_1 pkg v0.3.5 BETA 2.0 apcupsd.xml -- cgit v1.2.3