Opened 4 years ago

Closed 4 years ago

#1486308 closed Bugs (fixed)

imap_auth_type config value ignored

Reported by: alan138 Owned by:
Priority: 5 Milestone: 0.4-beta
Component: IMAP connection Version: 0.3.1
Severity: normal Keywords: imap_auth_type, config, plain
Cc:

Description

The imap_auth_type config value is ignored by roundcube when connecting to the IMAP server. Normally this is ok, as it defaults to CHECK, finds the server capabilities and usually then goes for CRAM-MD5. However this is not the behaviour I wanted from setting PLAIN in the config file.

The problem seems to be in /program/lib/imap.inc.php, on line 557. Which reads:

if ($optkey == 'imap') {

Changing this to:

if ($optkey == 'auth_method') {

Fixes the issue.

Change History (1)

comment:1 Changed 4 years ago by alec

  • Milestone changed from later to 0.4-beta
  • Resolution set to fixed
  • Status changed from new to closed

It has been fixed in [59821225].

Note: See TracTickets for help on using tickets.