Fixed bug in disconnect() when authentication is not needed (thanks to Benjamin Biron).
This commit is contained in:
parent
476cec86ca
commit
5a303de801
@ -2,6 +2,11 @@
|
|||||||
VERSION 0.8.1cvs
|
VERSION 0.8.1cvs
|
||||||
================
|
================
|
||||||
|
|
||||||
|
2005-11-07 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
|
* SMTPTransport.cpp: fixed bug in disconnect() when authentication is
|
||||||
|
not needed (thanks to Benjamin Biron).
|
||||||
|
|
||||||
2005-11-06 Vincent Richard <vincent@vincent-richard.net>
|
2005-11-06 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
* Started version 0.8.1.
|
* Started version 0.8.1.
|
||||||
|
@ -193,6 +193,8 @@ void SMTPTransport::connect()
|
|||||||
// Authentication
|
// Authentication
|
||||||
if (GET_PROPERTY(bool, PROPERTY_OPTIONS_NEEDAUTH))
|
if (GET_PROPERTY(bool, PROPERTY_OPTIONS_NEEDAUTH))
|
||||||
authenticate();
|
authenticate();
|
||||||
|
else
|
||||||
|
m_authentified = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user