do not set php vars SMTP, smtp_port, sendmail_from anymore

This commit is contained in:
Uwe Steinmann 2018-11-21 08:29:58 +01:00
parent b7e1cb869c
commit ff07a141e8

View File

@ -313,12 +313,6 @@ class Settings { /* {{{ */
} }
$this->load($configFilePath); $this->load($configFilePath);
if (!is_null($this->_smtpServer))
ini_set("SMTP", $this->_smtpServer);
if (!is_null($this->_smtpPort))
ini_set("smtp_port", $this->_smtpPort);
if (!is_null($this->_smtpSendFrom))
ini_set("sendmail_from", $this->_smtpSendFrom);
if (!is_null($this->_maxExecutionTime)) if (!is_null($this->_maxExecutionTime))
ini_set("max_execution_time", $this->_maxExecutionTime); ini_set("max_execution_time", $this->_maxExecutionTime);
} /* }}} */ } /* }}} */