mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
638 lines
21 KiB
PHP
638 lines
21 KiB
PHP
<?php
|
|
|
|
//check the permission
|
|
if (defined('STDIN')) {
|
|
$document_root = str_replace("\\", "/", $_SERVER["PHP_SELF"]);
|
|
preg_match("/^(.*)\/app\/.*$/", $document_root, $matches);
|
|
$document_root = $matches[1];
|
|
set_include_path($document_root);
|
|
$_SERVER["DOCUMENT_ROOT"] = $document_root;
|
|
require_once "resources/require.php";
|
|
}
|
|
else {
|
|
exit;
|
|
include "root.php";
|
|
require_once "resources/require.php";
|
|
require_once "resources/pdo.php";
|
|
}
|
|
|
|
//increase limits
|
|
set_time_limit(0);
|
|
//ini_set('max_execution_time',1800); //30 minutes
|
|
ini_set('memory_limit', '512M');
|
|
|
|
//save the arguments to variables
|
|
$script_name = $argv[0];
|
|
if (!empty($argv[1])) {
|
|
parse_str($argv[1], $_GET);
|
|
}
|
|
//print_r($_GET);
|
|
|
|
//set the variables
|
|
if (isset($_GET['hostname'])) {
|
|
$hostname = urldecode($_GET['hostname']);
|
|
}
|
|
if (isset($_GET['debug'])) {
|
|
$debug = $_GET['debug'];
|
|
}
|
|
|
|
//includes
|
|
if (!defined('STDIN')) { include_once "root.php"; }
|
|
require_once "resources/require.php";
|
|
include "resources/classes/permissions.php";
|
|
require $document_root."/app/email_queue/resources/functions/transcribe.php";
|
|
|
|
//define a function to remove html tags
|
|
if (!function_exists('remove_tags')) {
|
|
function remove_tags($string) {
|
|
//remove HTML tags
|
|
$string = preg_replace ('/<[^>]*>/', ' ', $string);
|
|
|
|
//remove control characters
|
|
$string = str_replace("\r", '', $string); // --- replace with empty space
|
|
$string = str_replace("\n", ' ', $string); // --- replace with space
|
|
$string = str_replace("\t", ' ', $string); // --- replace with space
|
|
|
|
//remove multiple spaces
|
|
$string = trim(preg_replace('/ {2,}/', ' ', $string));
|
|
return $string;
|
|
}
|
|
}
|
|
|
|
//includes
|
|
include_once "resources/phpmailer/class.phpmailer.php";
|
|
include_once "resources/phpmailer/class.smtp.php";
|
|
|
|
//set the GET array
|
|
if (!empty($argv[1])) {
|
|
parse_str($argv[1], $_GET);
|
|
}
|
|
|
|
//get the primary key
|
|
$email_queue_uuid = $_GET['email_queue_uuid'];
|
|
$hostname = $_GET['hostname'];
|
|
|
|
//get the email details to send
|
|
$sql = "select * from v_email_queue ";
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
$database = new database;
|
|
$row = $database->select($sql, $parameters, 'row');
|
|
if (is_array($row)) {
|
|
$domain_uuid = $row["domain_uuid"];
|
|
$email_date = $row["email_date"];
|
|
$email_from = $row["email_from"];
|
|
$email_to = $row["email_to"];
|
|
$email_subject = $row["email_subject"];
|
|
$email_body = $row["email_body"];
|
|
$email_status = $row["email_status"];
|
|
$email_retry_count = $row["email_retry_count"];
|
|
$email_uuid = $row["email_uuid"];
|
|
//$email_action_before = $row["email_action_before"];
|
|
$email_action_after = $row["email_action_after"];
|
|
}
|
|
unset($parameters);
|
|
|
|
//get the call center settings
|
|
$retry_limit = $_SESSION['email_queue']['retry_limit']['numeric'];
|
|
//$retry_interval = $_SESSION['email_queue']['retry_interval']['numeric'];
|
|
|
|
//set defaults
|
|
if (strlen($email_retry_count) == 0) {
|
|
$email_retry_count = 0;
|
|
}
|
|
|
|
//create the email object
|
|
/*
|
|
$mail = new PHPMailer();
|
|
if (isset($_SESSION['email']['method'])) {
|
|
switch ($_SESSION['email']['method']['text']) {
|
|
case 'sendmail': $mail->IsSendmail(); break;
|
|
case 'qmail': $mail->IsQmail(); break;
|
|
case 'mail': $mail->IsMail(); break;
|
|
default: $mail->IsSMTP(); break;
|
|
}
|
|
}
|
|
else {
|
|
$mail->IsSMTP();
|
|
}
|
|
*/
|
|
|
|
//load default smtp settings
|
|
/*
|
|
if ($_SESSION['email']['smtp_hostname']['text'] != '') {
|
|
$smtp['hostname'] = $_SESSION['email']['smtp_hostname']['text'];
|
|
}
|
|
$smtp['host'] = (strlen($_SESSION['email']['smtp_host']['text']) ? $_SESSION['email']['smtp_host']['text']: '127.0.0.1');
|
|
if (isset($_SESSION['email']['smtp_port'])) {
|
|
$smtp['port'] = (int) $_SESSION['email']['smtp_port']['numeric'];
|
|
}
|
|
else {
|
|
$smtp['port'] = 0;
|
|
}
|
|
$smtp['secure'] = $_SESSION['email']['smtp_secure']['text'];
|
|
$smtp['auth'] = $_SESSION['email']['smtp_auth']['text'];
|
|
$smtp['username'] = $_SESSION['email']['smtp_username']['text'];
|
|
$smtp['password'] = $_SESSION['email']['smtp_password']['text'];
|
|
$smtp['from'] = $_SESSION['email']['smtp_from']['text'];
|
|
$smtp['from_name'] = $_SESSION['email']['smtp_from_name']['text'];
|
|
|
|
if (isset($_SESSION['voicemail']['smtp_from']) && strlen($_SESSION['voicemail']['smtp_from']['text']) > 0) {
|
|
$smtp['from'] = $_SESSION['voicemail']['smtp_from']['text'];
|
|
}
|
|
if (isset($_SESSION['voicemail']['smtp_from_name']) && strlen($_SESSION['voicemail']['smtp_from_name']['text']) > 0) {
|
|
$smtp['from_name'] = $_SESSION['voicemail']['smtp_from_name']['text'];
|
|
}
|
|
*/
|
|
|
|
//overwrite with domain-specific smtp server settings, if any
|
|
$sql = "select domain_setting_subcategory, domain_setting_value ";
|
|
$sql .= "from v_domain_settings ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
$sql .= "and (domain_setting_category = 'email' or domain_setting_category = 'voicemail') ";
|
|
$sql .= "and domain_setting_enabled = 'true' ";
|
|
$parameters['domain_uuid'] = $domain_uuid;
|
|
$database = new database;
|
|
$result = $database->select($sql, $parameters, 'all');
|
|
if (is_array($result) && @sizeof($result) != 0) {
|
|
foreach ($result as $row) {
|
|
if ($row['domain_setting_value'] != '') {
|
|
$smtp[str_replace('smtp_','',$row["domain_setting_subcategory"])] = $row['domain_setting_value'];
|
|
}
|
|
}
|
|
}
|
|
unset($sql, $parameters, $result, $row);
|
|
|
|
//value adjustments
|
|
$smtp['auth'] = ($smtp['auth'] == "true") ? true : false;
|
|
$smtp['password'] = ($smtp['password'] != '') ? $smtp['password'] : null;
|
|
$smtp['secure'] = ($smtp['secure'] != "none") ? $smtp['secure'] : null;
|
|
$smtp['username'] = ($smtp['username'] != '') ? $smtp['username'] : null;
|
|
|
|
//option to disable smtp ssl or tls validation
|
|
/*
|
|
if (isset($_SESSION['email']['smtp_validate_certificate'])) {
|
|
if ($_SESSION['email']['smtp_validate_certificate']['boolean'] == "false") {
|
|
$mail->SMTPOptions = array(
|
|
'ssl' => array(
|
|
'verify_peer' => false,
|
|
'verify_peer_name' => false,
|
|
'allow_self_signed' => true
|
|
)
|
|
);
|
|
}
|
|
}
|
|
*/
|
|
|
|
//add smtp authentication
|
|
/*
|
|
$mail->SMTPAuth = $smtp['auth'];
|
|
if (isset($smtp['hostname'])) {
|
|
$mail->Hostname = $smtp['hostname'];
|
|
}
|
|
$mail->Host = $smtp['host'];
|
|
if ($smtp['port'] != 0) {
|
|
$mail->Port = $smtp['port'];
|
|
}
|
|
if ($smtp['secure'] != '') {
|
|
$mail->SMTPSecure = $smtp['secure'];
|
|
}
|
|
if ($smtp['auth']) {
|
|
$mail->Username = $smtp['username'];
|
|
$mail->Password = $smtp['password'];
|
|
}
|
|
$mail->SMTPDebug = 4;
|
|
*/
|
|
|
|
//get the voicemail details
|
|
$sql = "select * from v_voicemails ";
|
|
$sql .= "where voicemail_uuid in ( ";
|
|
$sql .= " select voicemail_uuid from v_voicemail_messages ";
|
|
$sql .= " where voicemail_message_uuid = :voicemail_message_uuid ";
|
|
$sql .= ") ";
|
|
$parameters['voicemail_message_uuid'] = $email_uuid;
|
|
$database = new database;
|
|
$row = $database->select($sql, $parameters, 'row');
|
|
if (is_array($row)) {
|
|
//$domain_uuid = $row["domain_uuid"];
|
|
//$voicemail_uuid = $row["voicemail_uuid"];
|
|
$voicemail_id = $row["voicemail_id"];
|
|
//$voicemail_password = $row["voicemail_password"];
|
|
//$greeting_id = $row["greeting_id"];
|
|
//$voicemail_alternate_greet_id = $row["voicemail_alternate_greet_id"];
|
|
//$voicemail_mail_to = $row["voicemail_mail_to"];
|
|
//$voicemail_sms_to = $row["voicemail_sms_to "];
|
|
$voicemail_transcription_enabled = $row["voicemail_transcription_enabled"];
|
|
//$voicemail_attach_file = $row["voicemail_attach_file"];
|
|
//$voicemail_file = $row["voicemail_file"];
|
|
//$voicemail_local_after_email = $row["voicemail_local_after_email"];
|
|
//$voicemail_enabled = $row["voicemail_enabled"];
|
|
//$voicemail_description = $row["voicemail_description"];
|
|
//$voicemail_name_base64 = $row["voicemail_name_base64"];
|
|
//$voicemail_tutorial = $row["voicemail_tutorial"];
|
|
echo "transcribe enabled: ".$voicemail_transcription_enabled."\n";
|
|
}
|
|
unset($parameters);
|
|
|
|
//get the attachments and add to the email
|
|
$sql = "select * from v_email_queue_attachments ";
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
$database = new database;
|
|
$email_queue_attachments = $database->select($sql, $parameters, 'all');
|
|
if (is_array($email_queue_attachments) && @sizeof($email_queue_attachments) != 0) {
|
|
foreach($email_queue_attachments as $field) {
|
|
|
|
$email_queue_attachment_uuid = $field['email_queue_attachment_uuid'];
|
|
$domain_uuid = $field['domain_uuid'];
|
|
$email_attachment_type = $field['email_attachment_type'];
|
|
$email_attachment_path = $field['email_attachment_path'];
|
|
$email_attachment_name = $field['email_attachment_name'];
|
|
//$email_attachment_base64= $field['email_attachment_base64'];
|
|
|
|
switch ($email_attachment_type) {
|
|
case "wav":
|
|
$mime_type = "audio/x-wav";
|
|
break;
|
|
case "mp3":
|
|
$mime_type = "audio/x-mp3";
|
|
break;
|
|
case "pdf":
|
|
$mime_type = "application/pdf";
|
|
break;
|
|
case "tif":
|
|
$mime_type = "image/tiff";
|
|
break;
|
|
case "tiff":
|
|
$mime_type = "image/tiff";
|
|
break;
|
|
default:
|
|
$mime_type = "binary/octet-stream";
|
|
break;
|
|
}
|
|
|
|
if (isset($voicemail_transcription_enabled) && $voicemail_transcription_enabled == 'true') {
|
|
//transcribe the attachment
|
|
if ($email_attachment_type == 'wav' || $email_attachment_type == 'mp3') {
|
|
$field = transcribe($email_attachment_path, $email_attachment_name, $email_attachment_type);
|
|
echo "transcribe path: ".$email_attachment_path."\n";
|
|
echo "transcribe name: ".$email_attachment_name."\n";
|
|
echo "transcribe type: ".$email_attachment_type."\n";
|
|
echo "transcribe command: ".$field['command']."\n";
|
|
echo "transcribe message: ".$field['message']."\n";
|
|
$transcribe_message = $field['message'];
|
|
}
|
|
|
|
//echo "email_body before: ".$email_body."\n";
|
|
$email_body = str_replace('${message_text}', $transcribe_message, $email_body);
|
|
//$email_debug = $field['message'];
|
|
//echo "email_body after: ".$email_body."\n";
|
|
//unset($field);
|
|
}
|
|
else {
|
|
$email_body = str_replace('${message_text}', '', $email_body);
|
|
}
|
|
|
|
//base64 encode the file
|
|
//$file_contents = base64_encode(file_get_contents($email_attachment_path.'/'.$email_attachment_name));
|
|
|
|
//add an attachment
|
|
//public addAttachment ( string $path, string $name = '', string $encoding = 'base64', string $type = '', string $disposition = 'attachment' ) : boolean
|
|
//$mail->AddAttachment($email_attachment_path.'/'.$email_attachment_name, $email_attachment_name, 'base64', 'attachment');
|
|
|
|
//add email attachments as a string for the send_email function
|
|
//$email_attachments[0]['type'] = 'string';
|
|
//$email_attachments[0]['name'] = $email_attachment_path.'/'.$email_attachment_name;
|
|
//$email_attachments[0]['value'] = base64_encode(file_get_contents($email_attachment_path.'/'.$email_attachment_name));
|
|
|
|
//add email attachment as a file for the send_email function
|
|
$email_attachments[0]['type'] = 'file';
|
|
$email_attachments[0]['name'] = $email_attachment_name;
|
|
$email_attachments[0]['value'] = $email_attachment_path.'/'.$email_attachment_name;
|
|
}
|
|
}
|
|
unset($parameters);
|
|
|
|
//send context to the temp log
|
|
echo "Subject: ".$email_subject."\n";
|
|
echo "From: ".$email_from."\n";
|
|
echo "Reply-to: ".$email_from."\n";
|
|
echo "To: ".$email_to."\n";
|
|
echo "Date: ".$email_date."\n";
|
|
//echo "Transcript: ".$array['message']."\n";
|
|
//echo "Body: ".$email_body."\n";
|
|
|
|
//update the message transcription
|
|
if (isset($voicemail_transcription_enabled) && $voicemail_transcription_enabled == 'true' && isset($transcribe_message)) {
|
|
$sql = "update v_voicemail_messages ";
|
|
$sql .= "set message_transcription = :message_transcription ";
|
|
$sql .= "where voicemail_message_uuid = :voicemail_message_uuid; ";
|
|
$parameters['voicemail_message_uuid'] = $email_uuid;
|
|
$parameters['message_transcription'] = $transcribe_message;
|
|
//echo $sql."\n";
|
|
//print_r($parameters);
|
|
$database = new database;
|
|
$database->execute($sql, $parameters);
|
|
unset($parameters);
|
|
}
|
|
|
|
//send email
|
|
//ob_start();
|
|
//$sent = !send_email($email_to, $email_subject, $email_body, $email_error, null, null, null, null, $email_attachments) ? false : true;
|
|
//$response = ob_get_clean();
|
|
//echo $response;
|
|
|
|
//send the email
|
|
$email = new email;
|
|
$email->from_address = $email_from_address;
|
|
$email->from_name = $email_from_name;
|
|
$email->recipients = $email_to;
|
|
$email->subject = $email_subject;
|
|
$email->body = $email_body;
|
|
$email->attachments = $email_attachments;
|
|
$email->method = 'direct';
|
|
$sent = $email->send();
|
|
//$response = $email->email_error;
|
|
|
|
//add to, from, fromname, custom headers and subject to the email
|
|
/*
|
|
$mail->From = $smtp['from'] ;
|
|
$mail->FromName = $smtp['from_name'];
|
|
$mail->Subject = $email_subject;
|
|
|
|
$email_to = trim($email_to, "<> ");
|
|
$email_to = str_replace(";", ",", $email_to);
|
|
$email_to_array = explode(",", $email_to);
|
|
if (count($email_to_array) == 0) {
|
|
$mail->AddAddress($email_to);
|
|
}
|
|
else {
|
|
foreach ($email_to_array as $email_address) {
|
|
if (strlen($email_address) > 0) {
|
|
echo "Add Address: $email_address\n";
|
|
$mail->AddAddress(trim($email_address));
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
|
|
//add the body to the email
|
|
/*
|
|
$body_plain = remove_tags($email_body);
|
|
//echo "body_plain = $body_plain\n";
|
|
if ((substr($email_body, 0, 5) == "<html") || (substr($email_body, 0, 9) == "<!doctype")) {
|
|
//$mail->ContentType = "text/html; charset=utf-8";
|
|
$mail->Body = $email_body."<br><br>";
|
|
$mail->AltBody = $body_plain."\n";
|
|
$mail->isHTML(true);
|
|
}
|
|
else {
|
|
//$mail->Body = ($body != '') ? $body : $body_plain;
|
|
$mail->Body = $body_plain."\n";
|
|
$mail->AltBody = $body_plain."\n";
|
|
$mail->isHTML(false);
|
|
}
|
|
$mail->CharSet = "utf-8";
|
|
*/
|
|
|
|
//send the email
|
|
if ($sent) {
|
|
//if ($mail->Send()) {
|
|
|
|
/*
|
|
$sql = "delete from v_email_queue_attachments ";
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid; ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
$database = new database;
|
|
$database->select($sql, $parameters);
|
|
|
|
$sql = "delete from v_email_queue ";
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid; ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
$database = new database;
|
|
$database->select($sql, $parameters);
|
|
*/
|
|
|
|
/*
|
|
//build insert array
|
|
$email_log_uuid = uuid();
|
|
$array['email_queue'][0]['email_queue_uuid'] = $email_queue_uuid;
|
|
$array['email_queue'][0]['email_status'] = 'sent';
|
|
if (isset($field['message'])) {
|
|
$array['email_queue'][0]['email_transcription'] = $field['message'];
|
|
}
|
|
|
|
//grant temporary permissions
|
|
$p = new permissions;
|
|
$p->add('email_queue_add', 'temp');
|
|
|
|
//execute insert
|
|
$database = new database;
|
|
$database->app_name = 'email_queue';
|
|
$database->app_uuid = 'ba41954e-9d21-4b10-bbc2-fa5ceabeb184';
|
|
$database->save($array);
|
|
unset($array);
|
|
|
|
//revoke temporary permissions
|
|
$p->delete('email_queue_add', 'temp');
|
|
*/
|
|
|
|
//set the email status to sent
|
|
$sql = "update v_email_queue ";
|
|
$sql .= "set email_status = 'sent' ";
|
|
//$sql .= "set email_status = 'waiting' "; //debug
|
|
if (isset($transcribe_message)) {
|
|
$sql .= ", email_transcription = :email_transcription ";
|
|
}
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid; ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
if (isset($transcribe_message)) {
|
|
$parameters['email_transcription'] = $transcribe_message;
|
|
}
|
|
//echo $sql."\n";
|
|
//print_r($parameters);
|
|
$database = new database;
|
|
$database->execute($sql, $parameters);
|
|
unset($parameters);
|
|
|
|
//delete the email after it is sent
|
|
if ($email_action_after == 'delete') {
|
|
//remove the email file after it has been sent
|
|
if (is_array($email_queue_attachments) && @sizeof($email_queue_attachments) != 0) {
|
|
foreach($email_queue_attachments as $field) {
|
|
$email_attachment_path = $field['email_attachment_path'];
|
|
$email_attachment_name = $field['email_attachment_name'];
|
|
if (file_exists($email_attachment_path.'/'.$email_attachment_name)) {
|
|
unlink($email_attachment_path.'/'.$email_attachment_name);
|
|
}
|
|
}
|
|
}
|
|
|
|
//delete the voicemail message from the database
|
|
$sql = "delete from v_voicemail_messages ";
|
|
$sql .= "where voicemail_message_uuid = :voicemail_message_uuid; ";
|
|
$parameters['voicemail_message_uuid'] = $email_uuid;
|
|
//echo $sql."\n";
|
|
//print_r($parameters);
|
|
$database = new database;
|
|
$database->execute($sql, $parameters);
|
|
unset($parameters);
|
|
|
|
//get the domain_name
|
|
$sql = "select domain_name from v_domains ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
$parameters['domain_uuid'] = $domain_uuid;
|
|
$database = new database;
|
|
$domain_name = $database->select($sql, $parameters, 'column');
|
|
|
|
//send the message waiting status
|
|
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
|
if ($fp) {
|
|
//$switch_cmd .= "luarun app.lua voicemail mwi ".$voicemail_id."@".$domain_name;
|
|
$switch_cmd .= "luarun app/voicemail/resources/scripts/mwi_notify.lua ".$voicemail_id." ".$domain_name." 0 0";
|
|
$switch_result = event_socket_request($fp, 'api '.$switch_cmd);
|
|
echo $switch_cmd."\n";
|
|
}
|
|
else {
|
|
echo "event socket connection failed\n";
|
|
}
|
|
}
|
|
|
|
/*
|
|
//build insert array
|
|
$array['email_queue'][0]['email_queue_uuid'] = $email_queue_uuid;
|
|
//$array['email_queue'][0]['sent_date'] = 'now()';
|
|
$array['email_queue'][0]['email_status'] = 'sent';
|
|
|
|
//grant temporary permissions
|
|
$p = new permissions;
|
|
$p->add('email_queue_add', 'temp');
|
|
$p->add('email_queue_update', 'temp');
|
|
//execute insert
|
|
$database = new database;
|
|
$database->app_name = 'email_queue';
|
|
$database->app_uuid = '5befdf60-a242-445f-91b3-2e9ee3e0ddf7';
|
|
print_r($array);
|
|
$message = $database->save($array);
|
|
print_r($message);
|
|
unset($array);
|
|
//revoke temporary permissions
|
|
$p->delete('email_queue_add', 'temp');
|
|
$p->delete('email_queue_update', 'temp');
|
|
*/
|
|
|
|
//send a message to the console
|
|
echo "Message sent!\n";
|
|
|
|
}
|
|
else {
|
|
|
|
$mailer_error = $mail->ErrorInfo;
|
|
echo "Mailer Error: ".$mailer_error."\n\n";
|
|
|
|
/*
|
|
//build insert array
|
|
$email_log_uuid = uuid();
|
|
$array['email_queue'][0]['email_queue_uuid'] = $email_queue_uuid;
|
|
$array['email_queue'][0]['email_status'] = 'failed';
|
|
|
|
//grant temporary permissions
|
|
$p = new permissions;
|
|
$p->add('email_queue_add', 'temp');
|
|
|
|
//execute insert
|
|
$database = new database;
|
|
$database->app_name = 'email_queue';
|
|
$database->app_uuid = 'ba41954e-9d21-4b10-bbc2-fa5ceabeb184';
|
|
$database->save($array);
|
|
unset($array);
|
|
|
|
//revoke temporary permissions
|
|
$p->delete('email_queue_add', 'temp');
|
|
*/
|
|
|
|
//set the email retry count
|
|
$email_retry_count++;
|
|
|
|
//set the email status to failed
|
|
$sql = "update v_email_queue ";
|
|
if ($email_retry_count >= $retry_limit) {
|
|
$sql .= "set email_status = 'failed', ";
|
|
}
|
|
else {
|
|
$sql .= "set email_status = 'trying', ";
|
|
}
|
|
$sql .= "email_retry_count = :email_retry_count ";
|
|
//$sql .= ", email_debug = :email_debug ";
|
|
$sql .= "where email_queue_uuid = :email_queue_uuid; ";
|
|
$parameters['email_queue_uuid'] = $email_queue_uuid;
|
|
//$parameters['email_debug'] = $mailer_error;
|
|
$parameters['email_retry_count'] = $email_retry_count;
|
|
//echo $sql."\n";
|
|
//print_r($parameters);
|
|
$database = new database;
|
|
$database->execute($sql, $parameters);
|
|
unset($parameters);
|
|
|
|
/*
|
|
$call_uuid = $headers["X-FusionPBX-Call-UUID"];
|
|
if ($resend == true) {
|
|
echo "Retained in v_email_logs \n";
|
|
}
|
|
else {
|
|
// log/store message in database for review
|
|
if (!isset($email_log_uuid)) {
|
|
//build insert array
|
|
$email_log_uuid = uuid();
|
|
$array['email_logs'][0]['email_log_uuid'] = $email_log_uuid;
|
|
if (is_uuid($call_uuid)) {
|
|
$array['email_logs'][0]['call_uuid'] = $call_uuid;
|
|
}
|
|
$array['email_logs'][0]['domain_uuid'] = $headers["X-FusionPBX-Domain-UUID"];
|
|
$array['email_logs'][0]['sent_date'] = 'now()';
|
|
$array['email_logs'][0]['type'] = $headers["X-FusionPBX-Email-Type"];
|
|
$array['email_logs'][0]['status'] = 'failed';
|
|
$array['email_logs'][0]['email'] = str_replace("'", "''", $msg);
|
|
//grant temporary permissions
|
|
$p = new permissions;
|
|
$p->add('email_log_add', 'temp');
|
|
//execute insert
|
|
$database = new database;
|
|
$database->app_name = 'v_mailto';
|
|
$database->app_uuid = 'ba41954e-9d21-4b10-bbc2-fa5ceabeb184';
|
|
$database->save($array);
|
|
unset($array);
|
|
//revoke temporary permissions
|
|
$p->delete('email_log_add', 'temp');
|
|
}
|
|
|
|
echo "Retained in v_email_logs as email_log_uuid = ".$email_log_uuid."\n";
|
|
}
|
|
*/
|
|
|
|
}
|
|
|
|
//unset the php mail object
|
|
unset($mail);
|
|
|
|
//save output to
|
|
//$fp = fopen(sys_get_temp_dir()."/mailer-app.log", "a");
|
|
|
|
//prepare the output buffers
|
|
//ob_end_clean();
|
|
//ob_start();
|
|
|
|
//message divider for log file
|
|
//echo "\n\n====================================================\n\n";
|
|
|
|
//get and save the output from the buffer
|
|
//$content = ob_get_contents(); //get the output from the buffer
|
|
//$content = str_replace("<br />", "", $content);
|
|
|
|
//ob_end_clean(); //clean the buffer
|
|
|
|
//fwrite($fp, $content);
|
|
//fclose($fp);
|
|
|
|
?>
|