summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/libmail/smtphandler.h
blob: abbcbcd21cc1bada01b79526d9c72ba3770dd5ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef SMTPHANDLER_H
#define SMTPHANDLER_H

#include <qobject.h>
#include <qstring.h>

#include "configfile.h"

class QSocket;

class SmtpHandler : public QObject
{
	Q_OBJECT

public:
	SmtpHandler(const QString &header, const QString &message, Account &account, const QString &to);
	
	enum SmtpError {
		ErrConnectionRefused,
		ErrHostNotFound,
		ErrUnknownResponse,
		ErrAuthNotSupported
	};

public slots:
	void stop();

signals:
	void finished();
	void error(const QString &);
	void status(const QString &);

private slots:
	void readyRead();
	void hostFound();
	void connected();
	void deleteMe();
	void errorHandling(int);

private:
	void sendToSocket(const QString &text, bool log = true);
	
	enum State { Ehlo, Auth, ReadAuth, Helo, Mail, Rcpt,
		Data, Body, Quit, Close };

	QString _header, _message;
	Account _account;
	QString _to;
	QSocket *_socket;
	int _state;
};

#endif