/* * kmail: KDE mail client * Copyright (c) 1996-1998 Stefan Taferner * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef kmsender_h #define kmsender_h #include "messagesender.h" #ifndef KDE_USE_FINAL # ifndef REALLY_WANT_KMSENDER # error Do not include kmsender.h, but messagesender.h. # endif #endif #include #include #include #include #include #include class KMMessage; class KMFolder; class KMFolderMgr; class KConfig; class KProcess; class KMSendProc; class KMSendSendmail; class KMSendSMTP; class TQStrList; class KMTransportInfo; class KMPrecommand; namespace KPIM { class ProgressItem; } class KMSender: public TQObject, public KMail::MessageSender { Q_OBJECT TQ_OBJECT friend class ::KMSendProc; friend class ::KMSendSendmail; friend class ::KMSendSMTP; public: KMSender(); ~KMSender(); protected: /** Send given message. The message is either queued or sent immediately. The default behaviour, as selected with setSendImmediate(), can be overwritten with the parameter sendNow (by specifying TRUE or FALSE). The sender takes ownership of the given message on success, so DO NOT DELETE OR MODIFY the message further. Returns TRUE on success. */ bool doSend(KMMessage* msg, short sendNow); /** Send queued messages, using the specified transport or the * default, if none is given. */ bool doSendQueued( const TQString& transport ); private: /** Returns TRUE if sending is in progress. */ bool sending() const { return mSendInProgress; } public: /** Shall messages be sent immediately (TRUE), or shall they be queued and sent later upon call of sendQueued() ? */ bool sendImmediate() const { return mSendImmediate; } void setSendImmediate(bool); /** Shall messages be sent quoted-printable encoded. No encoding happens otherwise. */ bool sendQuotedPrintable() const { return mSendQuotedPrintable; } void setSendQuotedPrintable(bool); private: /** Get the transport information */ KMTransportInfo * transportInfo() { return mTransportInfo; } public: /** Read configuration from global config. */ void readConfig(); /** Write configuration to global config with optional sync() */ void writeConfig(bool withSync=true); private: /** sets a status msg and emits statusMsg() */ void seStatusMsg(const TQString&); /** sets replied/forwarded status in the linked message for @p aMsg. */ void seStatusByLink(const KMMessage *aMsg); /** Emit progress info - calculates a percent value based on the amount of bytes sent */ void emitProgressInfo( int currentFileProgress ); private slots: /** Start sending */ void slotPrecommandFinished(bool); void slotIdle(); /** abort sending of the current message */ void slotAbortSend(); /** initialization sequence has finised */ void sendProcStarted(bool success); /** note when a msg gets added to outbox during sending */ void outboxMsgAdded(int idx); private: /** handle sending of messages */ void doSendMsg(); /** second part of handling sending of messages */ void doSendMsgAux(); /** cleanup after sending */ void cleanup(); /** Test if all required settings are set. Reports problems to user via dialogs and returns FALSE. Returns TRUE if everything is Ok. */ bool settingsOk() const; /** Parse protocol '://' (host port? | mailer) string and set transport settings */ KMSendProc* createSendProcFromString( const TQString & transport ); bool runPrecommand( const TQString & cmd ); private: bool mSendImmediate; bool mSendQuotedPrintable; KMTransportInfo *mTransportInfo; KMPrecommand *mPrecommand; TQString mCustomTransport; bool mSentOk, mSendAborted; TQString mErrorMsg; KMSendProc *mSendProc; TQString mMethodStr; bool mSendProcStarted; bool mSendInProgress; KMFolder *mOutboxFolder; KMFolder *mSentFolder; KMMessage * mCurrentMsg; KPIM::ProgressItem* mProgressItem; int mSentMessages, mTotalMessages; int mSentBytes, mTotalBytes; int mFailedMessages; TQMap mPasswdCache; }; #endif /*kmsender_h*/