bounce: Add the Resent-* headers
[trojita.git] / src / Composer / Recipients.h
blobdd5d1f492fc056223b0dd3cec69d656cdd41ac14
1 /* Copyright (C) 2006 - 2014 Jan Kundrát <jkt@flaska.net>
3 This file is part of the Trojita Qt IMAP e-mail client,
4 http://trojita.flaska.net/
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of
9 the License or (at your option) version 3 or any later version
10 accepted by the membership of KDE e.V. (or its successor approved
11 by the membership of KDE e.V.), which shall act as a proxy
12 defined in Section 14 of version 3 of the license.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef COMPOSER_RECIPIENTS_H
24 #define COMPOSER_RECIPIENTS_H
26 #include "Imap/Parser/MailAddress.h"
28 class QModelIndex;
30 namespace Composer {
32 typedef enum {
33 REPLY_PRIVATE, /**< @short Reply to "sender(s)" only */
34 REPLY_ALL, /**< @short Reply to all recipients */
35 REPLY_ALL_BUT_ME, /**< @short Reply to all recipients excluding any of my own identities */
36 REPLY_LIST /**< @short Reply to the mailing list */
37 } ReplyMode;
39 enum class ForwardMode {
40 FORWARD_AS_ATTACHMENT, /**< @short Forward the message as an attachment */
43 /** @short Recipients */
44 typedef enum {
45 ADDRESS_TO,
46 ADDRESS_CC,
47 ADDRESS_BCC,
48 ADDRESS_FROM,
49 ADDRESS_SENDER,
50 ADDRESS_REPLY_TO,
51 ADDRESS_RESENT_TO,
52 ADDRESS_RESENT_CC,
53 ADDRESS_RESENT_BCC,
54 ADDRESS_RESENT_FROM,
55 ADDRESS_RESENT_SENDER
56 } RecipientKind;
58 typedef QList<QPair<RecipientKind, Imap::Message::MailAddress> > RecipientList;
60 class SenderIdentitiesModel;
62 namespace Util {
64 bool replyRecipientList(const ReplyMode mode, const SenderIdentitiesModel *senderIdetitiesModel,
65 const RecipientList &originalRecipients,
66 const QList<QUrl> &headerListPost, const bool headerListPostNo,
67 RecipientList &output);
69 bool replyRecipientList(const ReplyMode mode, const SenderIdentitiesModel *senderIdetitiesModel,
70 const QModelIndex &message, RecipientList &output);
72 bool chooseSenderIdentity(const SenderIdentitiesModel *senderIdetitiesModel,
73 const QList<Imap::Message::MailAddress> &addresses, int &row);
75 bool chooseSenderIdentityForReply(const SenderIdentitiesModel *senderIdetitiesModel, const QModelIndex &message, int &row);
77 QList<Imap::Message::MailAddress> extractEmailAddresses(const RecipientList &list);
78 QList<Imap::Message::MailAddress> extractEmailAddresses(const SenderIdentitiesModel *senderIdetitiesModel);
83 #endif // COMPOSER_RECIPIENTS_H