aboutsummaryrefslogtreecommitdiffstats
path: root/packages/freeswitch/freeswitch_mailto.tmp
diff options
context:
space:
mode:
authorMark Crane <mcrane@pfsense.org>2008-12-17 18:04:39 +0000
committerMark Crane <mcrane@pfsense.org>2008-12-17 18:04:39 +0000
commita28d12a31c3997e98d3146e768fdb9aa9866adce (patch)
treeb47c617fbce5d206e18dbd3c8eea7fde12180519 /packages/freeswitch/freeswitch_mailto.tmp
parentffe2044de0f9446294d6609a23120fb3a35e2b35 (diff)
downloadpfsense-packages-a28d12a31c3997e98d3146e768fdb9aa9866adce.tar.gz
pfsense-packages-a28d12a31c3997e98d3146e768fdb9aa9866adce.tar.bz2
pfsense-packages-a28d12a31c3997e98d3146e768fdb9aa9866adce.zip
FreeSWITCH pkg fix voicemail to email TLS support so that it works with gmail.
Diffstat (limited to 'packages/freeswitch/freeswitch_mailto.tmp')
-rw-r--r--packages/freeswitch/freeswitch_mailto.tmp11
1 files changed, 8 insertions, 3 deletions
diff --git a/packages/freeswitch/freeswitch_mailto.tmp b/packages/freeswitch/freeswitch_mailto.tmp
index 8ecc773c..3c8dbe1f 100644
--- a/packages/freeswitch/freeswitch_mailto.tmp
+++ b/packages/freeswitch/freeswitch_mailto.tmp
@@ -36,9 +36,12 @@ global $config;
$tmp_smtphost = $config['installedpackages']['freeswitchsettings']['config'][0]['smtphost'];
$tmp_smtpsecure = $config['installedpackages']['freeswitchsettings']['config'][0]['smtpsecure']; //options "", "TLS", "SSL"
+$tmp_smtpsecure = strtolower($tmp_smtpsecure);
$tmp_smtpauth = $config['installedpackages']['freeswitchsettings']['config'][0]['smtpauth']; // SMTP authentication: true or false
$tmp_smtpusername = $config['installedpackages']['freeswitchsettings']['config'][0]['smtpusername'];
$tmp_smtppassword = $config['installedpackages']['freeswitchsettings']['config'][0]['smtppassword'];
+$tmp_smtpfrom = $config['installedpackages']['freeswitchsettings']['config'][0]['smtpfrom'];
+
ini_set(max_execution_time,900); //15 minutes
@@ -185,7 +188,7 @@ ob_start();
$mail = new PHPMailer();
- $mail->IsSMTP(); // set mailer to use SMTP
+ $mail->IsSMTP(); // set mailer to use SMTP
$mail->SMTPAuth = $tmp_smtpauth; // turn on/off SMTP authentication
$mail->Host = $tmp_smtphost;
if (strlen($tmp_smtpsecure)>0) {
@@ -194,8 +197,10 @@ ob_start();
if ($tmp_smtpauth) {
$mail->Username = $tmp_smtpusername;
$mail->Password = $tmp_smtppassword;
- }
- $mail->From = $var['From'];
+ }
+
+
+ $mail->From = $tmp_smtpfrom;
$mail->FromName = $var['From'];
$mail->Subject = $var['Subject'];
$mail->AltBody = $textplain; // optional, comment out and test