mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-13 16:44:37 +08:00
verify_ssl_certificates = false
Release commit
This commit is contained in:
parent
af1694184c
commit
cfbda969d1
3 changed files with 7 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.6.10",
|
"version": "1.6.10",
|
||||||
"release": "181",
|
"release": "182",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "gulpfile.js",
|
"main": "gulpfile.js",
|
||||||
|
|
|
@ -1374,7 +1374,7 @@ class Actions
|
||||||
$this->MailClient()
|
$this->MailClient()
|
||||||
->Connect($oAccount->Domain()->IncHost(\MailSo\Base\Utils::GetDomainFromEmail($oAccount->Email())),
|
->Connect($oAccount->Domain()->IncHost(\MailSo\Base\Utils::GetDomainFromEmail($oAccount->Email())),
|
||||||
$oAccount->Domain()->IncPort(), $oAccount->Domain()->IncSecure(),
|
$oAccount->Domain()->IncPort(), $oAccount->Domain()->IncSecure(),
|
||||||
$oAccount->Domain()->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificate')))
|
$oAccount->Domain()->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificates')))
|
||||||
->Login($oAccount->IncLogin(), $oAccount->Password())
|
->Login($oAccount->IncLogin(), $oAccount->Password())
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
@ -2785,7 +2785,7 @@ class Actions
|
||||||
|
|
||||||
$iTime = \microtime(true);
|
$iTime = \microtime(true);
|
||||||
$oImapClient->Connect($oDomain->IncHost($oDomain->Name()), $oDomain->IncPort(),
|
$oImapClient->Connect($oDomain->IncHost($oDomain->Name()), $oDomain->IncPort(),
|
||||||
$oDomain->IncSecure(), $oDomain->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificate')));
|
$oDomain->IncSecure(), $oDomain->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificates')));
|
||||||
|
|
||||||
$iImapTime = \microtime(true) - $iTime;
|
$iImapTime = \microtime(true) - $iTime;
|
||||||
$oImapClient->Disconnect();
|
$oImapClient->Disconnect();
|
||||||
|
@ -2813,7 +2813,7 @@ class Actions
|
||||||
|
|
||||||
$iTime = \microtime(true);
|
$iTime = \microtime(true);
|
||||||
$oSmtpClient->Connect($oDomain->OutHost($oDomain->Name()), $oDomain->OutPort(), '127.0.0.1',
|
$oSmtpClient->Connect($oDomain->OutHost($oDomain->Name()), $oDomain->OutPort(), '127.0.0.1',
|
||||||
$oDomain->OutSecure(), $oDomain->OutVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificate')));
|
$oDomain->OutSecure(), $oDomain->OutVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificates')));
|
||||||
|
|
||||||
$iSmtpTime = \microtime(true) - $iTime;
|
$iSmtpTime = \microtime(true) - $iTime;
|
||||||
$oSmtpClient->Disconnect();
|
$oSmtpClient->Disconnect();
|
||||||
|
@ -4684,7 +4684,7 @@ class Actions
|
||||||
'From' => empty($sFrom) ? $oAccount->Email() : $sFrom,
|
'From' => empty($sFrom) ? $oAccount->Email() : $sFrom,
|
||||||
'Login' => $oAccount->OutLogin(),
|
'Login' => $oAccount->OutLogin(),
|
||||||
'Password' => $oAccount->Password(),
|
'Password' => $oAccount->Password(),
|
||||||
'VerifySsl' => $oAccount->Domain()->OutVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificate')),
|
'VerifySsl' => $oAccount->Domain()->OutVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificates')),
|
||||||
'HiddenRcpt' => array()
|
'HiddenRcpt' => array()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -6661,7 +6661,7 @@ class Actions
|
||||||
$this->MailClient()
|
$this->MailClient()
|
||||||
->Connect($oAccount->Domain()->IncHost(\MailSo\Base\Utils::GetDomainFromEmail($oAccount->Email())),
|
->Connect($oAccount->Domain()->IncHost(\MailSo\Base\Utils::GetDomainFromEmail($oAccount->Email())),
|
||||||
$oAccount->Domain()->IncPort(), $oAccount->Domain()->IncSecure(),
|
$oAccount->Domain()->IncPort(), $oAccount->Domain()->IncSecure(),
|
||||||
$oAccount->Domain()->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificate')))
|
$oAccount->Domain()->IncVerifySsl(!!$this->Config()->Get('labs', 'verify_ssl_certificates')))
|
||||||
->Login($oAccount->IncLogin(), $oAccount->Password(), !!$this->Config()->Get('labs', 'use_imap_auth_plain'))
|
->Login($oAccount->IncLogin(), $oAccount->Password(), !!$this->Config()->Get('labs', 'use_imap_auth_plain'))
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
|
@ -249,7 +249,7 @@ Enables caching in the system'),
|
||||||
'imap_message_list_date_filter' => array(0),
|
'imap_message_list_date_filter' => array(0),
|
||||||
'imap_large_thread_limit' => array(100),
|
'imap_large_thread_limit' => array(100),
|
||||||
'smtp_show_server_errors' => array(false),
|
'smtp_show_server_errors' => array(false),
|
||||||
'verify_ssl_certificate' => array(true),
|
'verify_ssl_certificates' => array(false),
|
||||||
'curl_proxy' => array(''),
|
'curl_proxy' => array(''),
|
||||||
'curl_proxy_auth' => array(''),
|
'curl_proxy_auth' => array(''),
|
||||||
'in_iframe' => array(false),
|
'in_iframe' => array(false),
|
||||||
|
|
Loading…
Add table
Reference in a new issue