Summary | SMTP auth "Best available authentication" does not work |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | jan (at) horde (dot) org |
Requester | horde-bugs (at) conuropsis (dot) org |
Created | 08/29/2007 (6521 days ago) |
Due | |
Updated | 09/10/2007 (6509 days ago) |
Assigned | 08/29/2007 (6521 days ago) |
Resolved | 09/10/2007 (6509 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Taken from
State ⇒ Resolved
and "true" strings to PHP boolean scalars.
State ⇒ Assigned
Assigned to
Assigned to Jan Schneider
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ SMTP auth "Best available authentication" does not work
Queue ⇒ Horde Framework Packages
State ⇒ Unconfirmed
authentication" in the admin web interface, this sets the option to
the string '1'. But this instructs Mail_smtp to instruct Net_SMTP to
use authentication method '1' only, not PLAIN/LOGIN/CRAM-MD5/...
whatever the server supports. Indeed, abstract from Mail_smtp:
if ($this->auth) {
$method = is_string($this->auth) ? $this->auth : '';
The "best available authentication" enum choice needs to set the
option to the boolean true, or the integer 1, or any other non-string
value that is not the boolean false.