mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
If Mail Account has empty password, it's still regarded as imap
This commit is contained in:
parent
80cb358d88
commit
b4e29edaea
@ -397,7 +397,7 @@ class Account implements \ArrayAccess
|
|||||||
*/
|
*/
|
||||||
public function is_imap($try_connect=true)
|
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
|
return false; // no imap host or credentials
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user