diff options
Diffstat (limited to 'kbugbuster')
-rw-r--r-- | kbugbuster/backend/smtp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kbugbuster/backend/smtp.cpp b/kbugbuster/backend/smtp.cpp index 2496e57b..df31131b 100644 --- a/kbugbuster/backend/smtp.cpp +++ b/kbugbuster/backend/smtp.cpp @@ -149,8 +149,8 @@ void Smtp::readyRead() } else if ( state == smtpSuccess && responseLine[0] == '2' ) { TQTimer::singleShot( 0, this, TQT_SIGNAL(success()) ); } else if ( state == smtpQuit && responseLine[0] == '2' ) { - command = "TQUIT"; - *t << "TQUIT\r\n"; + command = "QUIT"; + *t << "QUIT\r\n"; // here, we just close. state = smtpClose; emit status( i18n( "Message sent" ) ); |