summaryrefslogtreecommitdiff
path: root/noncore/net/mailit/smtpclient.h
Unidiff
Diffstat (limited to 'noncore/net/mailit/smtpclient.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mailit/smtpclient.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/noncore/net/mailit/smtpclient.h b/noncore/net/mailit/smtpclient.h
new file mode 100644
index 0000000..ca65af4
--- a/dev/null
+++ b/noncore/net/mailit/smtpclient.h
@@ -0,0 +1,75 @@
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(QString target, int port);
47 void addMail(QString from, QString subject, QStringList to, QString body);
48
49signals:
50 void errorOccurred(int);
51 void updateStatus(const QString &);
52 void mailSent();
53
54public slots:
55 void errorHandling(int);
56
57protected slots:
58 void connectionEstablished();
59 void incomingData();
60
61private:
62 QSocket *socket;
63 QTextStream *stream;
64 enum transferStatus
65 {
66 Init, From, Recv, MRcv, Data, Body, Quit, Done
67 };
68 int status;
69 QList<RawEmail> mailList;
70 RawEmail *mailPtr;
71 bool sending;
72 QStringList::Iterator it;
73};
74
75#endif