summaryrefslogtreecommitdiffstats
path: root/kalarm/kamail.h
blob: e62ab8f6331bd764e7e0b0b54bc5da330eb84305 (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
56
57
58
59
60
61
62
63
64
65
/*
 *  kamail.h  -  email functions
 *  Program:  kalarm
 *  Copyright © 2002-2008 by David Jarvie <djarvie@kde.org>
 *
 *  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 KAMAIL_H
#define KAMAIL_H

#include <tqstring.h>
#include <tqstringlist.h>
class KURL;
class KAEvent;
class EmailAddressList;
namespace KPIM { class IdentityManager; }
namespace KMime { namespace Types { struct Address; } }

struct KAMailData;


class KAMail
{
	public:
		static bool        send(const KAEvent&, TQStringList& errmsgs, bool allowNotify = true);
		static int         checkAddress(TQString& address);
		static int         checkAttachment(TQString& attachment, KURL* = 0);
		static bool        checkAttachment(const KURL&);
		static TQString     convertAddresses(const TQString& addresses, EmailAddressList&);
		static TQString     convertAttachments(const TQString& attachments, TQStringList& list);
		static KPIM::IdentityManager* identityManager();
		static bool        identitiesExist();
		static uint        identityUoid(const TQString& identityUoidOrName);
		static TQString     controlCentreAddress();
		static TQString     getMailBody(TQ_UINT32 serialNumber);
		static TQString     i18n_NeedFromEmailAddress();
		static TQString     i18n_sent_mail();

	private:
		static KPIM::IdentityManager* mIdentityManager;     // KMail identity manager
		static TQString     sendKMail(const KAMailData&);
		static TQString     initHeaders(const KAMailData&, bool dateId);
		static TQString     appendBodyAttachments(TQString& message, const KAEvent&);
		static TQString     addToKMailFolder(const KAMailData&, const char* folder, bool checkKmailRunning);
		static bool        callKMail(const TQByteArray& callData, const TQCString& iface, const TQCString& function, const TQCString& funcType);
		static TQString     convertAddress(KMime::Types::Address, EmailAddressList&);
		static void        notifyQueued(const KAEvent&);
		static char*       base64Encode(const char* in, TQIODevice::Offset size, TQIODevice::Offset& outSize);
		static TQStringList errors(const TQString& error = TQString(), bool sendfail = true);
};

#endif // KAMAIL_H