diff options
author | Pierre POMES <pierre.pomes@gmail.com> | 2011-01-02 15:34:45 -0500 |
---|---|---|
committer | Pierre POMES <pierre.pomes@gmail.com> | 2011-01-02 15:34:45 -0500 |
commit | 1edfb2de94a09dc0d56f4e4453553f06c948a84a (patch) | |
tree | 92ac784884b8a06c8618d13c9eef512081ad2274 /etc | |
parent | 2cd8d942d64d090e5672dd963eb75012a8242330 (diff) | |
download | pfsense-1edfb2de94a09dc0d56f4e4453553f06c948a84a.zip pfsense-1edfb2de94a09dc0d56f4e4453553f06c948a84a.tar.gz |
Ticket #1141. Typo error, use ->user to enable auth
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/notices.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/notices.inc b/etc/inc/notices.inc index aa3a33e..0cbf5fd 100644 --- a/etc/inc/notices.inc +++ b/etc/inc/notices.inc @@ -307,7 +307,7 @@ function notify_via_smtp($message) { if($config['notifications']['smtp']['username'] && $config['notifications']['smtp']['password']) { $smtp->authentication_mechanism = "PLAIN"; - $smtp->username = $config['notifications']['smtp']['username']; + $smtp->user = $config['notifications']['smtp']['username']; $smtp->password = $config['notifications']['smtp']['password']; } |