From e3b89230f065c48c84b48c88edb6eb088374c487 Mon Sep 17 00:00:00 2001 From: zautrix Date: Sat, 03 Jul 2004 16:33:12 +0000 Subject: Initial revision --- (limited to 'kmicromail/libmailwrapper/smtpwrapper.h') diff --git a/kmicromail/libmailwrapper/smtpwrapper.h b/kmicromail/libmailwrapper/smtpwrapper.h new file mode 100644 index 0000000..6c5bbe8 --- a/dev/null +++ b/kmicromail/libmailwrapper/smtpwrapper.h @@ -0,0 +1,63 @@ +// -*- Mode: C++; -*- +#ifndef SMTPwrapper_H +#define SMTPwrapper_H + +#include + +#include +#include +#include + +#include "settings.h" +#include "generatemail.h" + +#include + +class SMTPaccount; +class AbstractMail; + +class SMTPwrapper : public Generatemail +{ + Q_OBJECT + +public: + SMTPwrapper(SMTPaccount * aSmtp); + virtual ~SMTPwrapper(); + void sendMail(const Opie::Core::OSmartPointer& mail,bool later=false ); + bool flushOutbox(); + + static progressMailSend*sendProgress; + +signals: + void queuedMails( int ); + +protected: + mailsmtp *m_smtp; + SMTPaccount * m_SmtpAccount; + + void connect_server(); + void disc_server(); + int start_smtp_tls(); + + + void smtpSend( mailmime *mail,bool later); + + static void storeMail(const char*mail, size_t length, const QString&box); + static QString mailsmtpError( int err ); + static void progress( size_t current, size_t maximum ); + + int smtpSend(char*from,clist*rcpts,const char*data,size_t size); + + void storeMail(mailmime*mail, const QString&box); + + int sendQueuedMail(AbstractMail*wrap,const Opie::Core::OSmartPointer&which); + void storeFailedMail(const char*data,unsigned int size, const char*failuremessage); + + int m_queuedMail; + +protected slots: + void emitQCop( int queued ); + +}; + +#endif -- cgit v0.9.0.2