summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Common.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-03-14 06:05:34 +0100
committerlpsolit%gmail.com <>2008-03-14 06:05:34 +0100
commit05a0cfc3eeb0b738c7e00840df7b49e162692044 (patch)
tree277eb6b7d9583963dcb0ecee1150efc4bb1f77cf /Bugzilla/Config/Common.pm
parent7c6954f9189af00752c59112b79c79d8bef49390 (diff)
downloadbugzilla-05a0cfc3eeb0b738c7e00840df7b49e162692044.tar.gz
bugzilla-05a0cfc3eeb0b738c7e00840df7b49e162692044.tar.xz
Bug 304005: Implement SMTP authentication support for email notifications - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
Diffstat (limited to 'Bugzilla/Config/Common.pm')
-rw-r--r--Bugzilla/Config/Common.pm12
1 files changed, 11 insertions, 1 deletions
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm
index 03e97d6a1..f5f5a3fb2 100644
--- a/Bugzilla/Config/Common.pm
+++ b/Bugzilla/Config/Common.pm
@@ -50,7 +50,7 @@ use base qw(Exporter);
check_opsys check_shadowdb check_urlbase check_webdotbase
check_netmask check_user_verify_class check_image_converter
check_mail_delivery_method check_notification check_timezone check_utf8
- check_bug_status
+ check_bug_status check_smtp_auth
);
# Checking functions for the various values
@@ -337,6 +337,14 @@ sub check_timezone {
return "";
}
+sub check_smtp_auth {
+ my $username = shift;
+ if ($username) {
+ eval "require Authen::SASL";
+ return "Error requiring Authen::SASL: '$@'" if $@;
+ }
+ return "";
+}
# OK, here are the parameter definitions themselves.
#
@@ -354,6 +362,8 @@ sub check_timezone {
# The type value can be one of the following:
#
# t -- A short text entry field (suitable for a single line)
+# p -- A short text entry field (as with type = 't'), but the string is
+# replaced by asterisks (appropriate for passwords)
# l -- A long text field (suitable for many lines)
# b -- A boolean value (either 1 or 0)
# m -- A list of values, with many selectable (shows up as a select box)