summaryrefslogtreecommitdiff
path: root/noncore/net/mailit/smtpclient.h
Unidiff
Diffstat (limited to 'noncore/net/mailit/smtpclient.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mailit/smtpclient.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/noncore/net/mailit/smtpclient.h b/noncore/net/mailit/smtpclient.h
deleted file mode 100644
index 554ba3f..0000000
--- a/noncore/net/mailit/smtpclient.h
+++ b/dev/null
@@ -1,76 +0,0 @@
1/**********************************************************************
2** Copyright (C) 2001 Trolltech AS. All rights reserved.
3**
4** This file is part of Qt Palmtop Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#ifndef SmtpClient_H
21#define SmtpClient_H
22
23//#include <stdio.h>
24#include <qsocket.h>
25#include <qstring.h>
26#include <qobject.h>
27#include <qtextstream.h>
28#include <qstringlist.h>
29#include <qlist.h>
30
31struct RawEmail
32{
33 QString from;
34 QString subject;
35 QStringList to;
36 QString body;
37};
38
39class SmtpClient: public QObject
40{
41 Q_OBJECT
42
43public:
44 SmtpClient();
45 ~SmtpClient();
46 void newConnection(const QString &target, int port);
47 void addMail(const QString &from, const QString &subject, const QStringList &to, const QString &body);
48
49signals:
50 void errorOccurred(int, const QString & LR );
51 void updateStatus(const QString &);
52 void mailSent();
53
54public slots:
55 void errorHandling(int);
56 void errorHandlingWithMsg(int, const QString & LastResponse );
57
58protected slots:
59 void connectionEstablished();
60 void incomingData();
61
62private:
63 QSocket *socket;
64 QTextStream *stream;
65 enum transferStatus
66 {
67 Init, From, Recv, MRcv, Data, Body, Quit, Done
68 };
69 int status;
70 QList<RawEmail> mailList;
71 RawEmail *mailPtr;
72 bool sending;
73 QStringList::Iterator it;
74};
75
76#endif