diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index acd60e72d7..eb69615c5d 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -655,7 +655,7 @@ public function get_vendor() $ident = null; } - $vendor = (string) (!empty($ident) ? $ident['name'] : ''); + $vendor = (string) ($ident['name'] ?? $ident['NAME'] ?? ''); $ident = strtolower($vendor . ' ' . $this->conn->data['GREETING']); $vendors = ['cyrus', 'dovecot', 'uw-imap', 'gimap', 'hmail', 'greenmail'];