Skip to content
Snippets Groups Projects
Commit 6de62bab authored by Prasad's avatar Prasad
Browse files

Fixes #155: Overcome too short timeout of mailer

parent 1889be18
No related branches found
No related tags found
1 merge request!311Language italian translation
......@@ -26,6 +26,7 @@ class Vtiger_Mailer extends PHPMailer {
* Constructor
*/
function __construct() {
parent::__construct();
$this->initialize();
}
......@@ -43,6 +44,7 @@ class Vtiger_Mailer extends PHPMailer {
* @access private
*/
function initialize() {
$this->Timeout = 30; /* Issue #155: to allow anti-spam tech be successful */
$this->IsSMTP();
global $adb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment