summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/libmail/smtphandler.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/mail2/libmail/smtphandler.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mail2/libmail/smtphandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/unsupported/mail2/libmail/smtphandler.cpp b/noncore/unsupported/mail2/libmail/smtphandler.cpp
index 1bbad8b..d0a505d 100644
--- a/noncore/unsupported/mail2/libmail/smtphandler.cpp
+++ b/noncore/unsupported/mail2/libmail/smtphandler.cpp
@@ -124,3 +124,3 @@ void SmtpHandler::readyRead()
124 emit status(tr("SMTP> MAIL FROM: *")); 124 emit status(tr("SMTP> MAIL FROM: *"));
125 sendToSocket("MAIL FROM: " + _account.email() + "\r\n"); 125 sendToSocket("MAIL FROM: <" + _account.email() + ">\r\n");
126 _state = Rcpt; 126 _state = Rcpt;
@@ -128,3 +128,3 @@ void SmtpHandler::readyRead()
128 emit status(tr("SMTP> RCPT TO: *")); 128 emit status(tr("SMTP> RCPT TO: *"));
129 sendToSocket("RCPT TO: " + _to + "\r\n"); 129 sendToSocket("RCPT TO: <" + _to + ">\r\n");
130 _state = Data; 130 _state = Data;