fix errors in mailstream addon
parent
5f6f374f09
commit
c04016b7d3
|
@ -3287,7 +3287,7 @@ class PHPMailer
|
||||||
$result = 'localhost.localdomain';
|
$result = 'localhost.localdomain';
|
||||||
if (!empty($this->Hostname)) {
|
if (!empty($this->Hostname)) {
|
||||||
$result = $this->Hostname;
|
$result = $this->Hostname;
|
||||||
} elseif (isset($_SERVER) and array_key_exists('SERVER_NAME', $_SERVER) and !empty($_SERVER['SERVER_NAME'])) {
|
} elseif (array_key_exists('SERVER_NAME', $_SERVER) and !empty($_SERVER['SERVER_NAME'])) {
|
||||||
$result = $_SERVER['SERVER_NAME'];
|
$result = $_SERVER['SERVER_NAME'];
|
||||||
} elseif (function_exists('gethostname') && gethostname() !== false) {
|
} elseif (function_exists('gethostname') && gethostname() !== false) {
|
||||||
$result = gethostname();
|
$result = gethostname();
|
||||||
|
|
Loading…
Reference in New Issue