summaryrefslogtreecommitdiff
path: root/noncore/net/mailit/smtpclient.cpp
authorgroucho <groucho>2003-04-24 11:19:11 (UTC)
committer groucho <groucho>2003-04-24 11:19:11 (UTC)
commit9671975e21266e3bfa6f3c793a3278b67cea34b7 (patch) (side-by-side diff)
tree876c77939cfd0e00fc844b1b5af09b2978564a6d /noncore/net/mailit/smtpclient.cpp
parent51e782b9658de61dc02579e115a9c62f396609a3 (diff)
downloadopie-9671975e21266e3bfa6f3c793a3278b67cea34b7.zip
opie-9671975e21266e3bfa6f3c793a3278b67cea34b7.tar.gz
opie-9671975e21266e3bfa6f3c793a3278b67cea34b7.tar.bz2
- reworked size filtering
- started reworking offline download - better tab focus switching - Hello "Whats this" capability - Fixed parsing of To: header files (no more Delivered-To: and Reply-To: matches) - Good bye Settings.txt, hello Config Objects and encrypted passwords - Translation improvements (added trs) - Parser optimizations
Diffstat (limited to 'noncore/net/mailit/smtpclient.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mailit/smtpclient.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/noncore/net/mailit/smtpclient.cpp b/noncore/net/mailit/smtpclient.cpp
index b2e38e5..8a51a5b 100644
--- a/noncore/net/mailit/smtpclient.cpp
+++ b/noncore/net/mailit/smtpclient.cpp
@@ -89,3 +89,2 @@ void SmtpClient::incomingData()
response = socket->readLine();
- //qDebug(response);
@@ -97,3 +96,2 @@ void SmtpClient::incomingData()
*stream << "HELO there\r\n";
- //qDebug("HELO");
} else errorHandling(ErrUnknownResponse);
@@ -105,3 +103,2 @@ void SmtpClient::incomingData()
status = Recv;
- //qDebug("MAIL FROM: "+mailPtr->from);
} else errorHandling(ErrUnknownResponse);
@@ -115,3 +112,2 @@ void SmtpClient::incomingData()
*stream << "RCPT TO: " << *it << ">\r\n";
- //qDebug("RCPT TO: "+ *it);
status = MRcv;
@@ -125,3 +121,2 @@ void SmtpClient::incomingData()
*stream << "RCPT TO: <" << *it << ">\r\n";
- //qDebug("RCPT TO: "+ *it);
break;
@@ -136,3 +131,2 @@ void SmtpClient::incomingData()
status = Body;
- //qDebug("DATA");
emit updateStatus(tr("Sending: ") + mailPtr->subject);
@@ -150,3 +144,2 @@ void SmtpClient::incomingData()
}
- //qDebug("BODY");
} else errorHandling(ErrUnknownResponse);
@@ -165,3 +158,2 @@ void SmtpClient::incomingData()
socket->close();
- //qDebug("QUIT");
} else errorHandling(ErrUnknownResponse);