- Timestamp:
- 11/17/07 21:48:27 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/Mail/INET_Clients/SMTP/CSMTPSender.cp
r19 r121 33 33 #include "CMulberryCommon.h" 34 34 #endif 35 #include "CPasswordManager.h" 35 36 #include "CPluginManager.h" 36 37 #include "CRFC822.h" … … 1443 1444 SMTPAuthenticate(); 1444 1445 done = true; 1446 1447 // Recache user id & password after successful logon 1448 if (GetAccount()->GetAuthenticator().RequiresUserPswd()) 1449 { 1450 CAuthenticatorUserPswd* auth = GetAccount()->GetAuthenticatorUserPswd(); 1451 1452 // Only bother if it contains something 1453 if (!auth->GetPswd().empty()) 1454 { 1455 CPasswordManager::GetManager()->AddPassword(GetAccount(), auth->GetPswd()); 1456 } 1457 } 1445 1458 } 1446 1459 catch (CSMTPException& ex)