Host always needed, not imap if username & pass missing

This commit is contained in:
A Sigalas 2017-02-28 12:55:04 +00:00
parent b4e29edaea
commit 11b2eff8c5

View File

@ -397,7 +397,7 @@ class Account implements \ArrayAccess
*/
public function is_imap($try_connect=true)
{
if (empty($this->acc_imap_host) && empty($this->acc_imap_username) && empty($this->acc_imap_password))
if (empty($this->acc_imap_host) || ( empty($this->acc_imap_username) && empty($this->acc_imap_password) ) )
{
return false; // no imap host or credentials
}