Summary | smtp authentication fails due to incorrect password |
Queue | MIMP |
Queue Version | 1.0-BETA |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | phyre (at) rogers (dot) com |
Created | 03/07/2006 (7078 days ago) |
Due | |
Updated | 03/08/2006 (7077 days ago) |
Assigned | |
Resolved | 03/08/2006 (7077 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | 1 |
Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ smtp authentication fails due to incorrect password
Queue ⇒ MIMP
authentication via IMAP works perfectly and the user can check their
mail. They, however, are unable to send their mail. Changing
Mimp/lib/Compose.php from
$params['password'] = Secret::read(Secret::getKey('mimp'),
$_SESSION['imp']['pass']);
to
$params['password'] = Secret::read(Secret::getKey('mimp'),
$_SESSION['mimp']['pass']);
[the change from imp to mimp for the password, seems to have fixed the
issue. Testing this out, it was using an improper password, as
opposed to passing on the users' login password. Hence anything
requiring SMTP auth was failing to send with a failed authentication
method.