File indexing completed on 2024-09-22 04:50:00

0001 /*
0002  * SPDX-FileCopyrightText: 1996-1998 Stefan Taferner <taferner@kde.org>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  *
0006  */
0007 
0008 #pragma once
0009 
0010 #include "filteractionwithaddress.h"
0011 
0012 namespace MailCommon
0013 {
0014 //=============================================================================
0015 // FilterActionReplyTo - set Reply-To to
0016 // Set the Reply-to header in a message
0017 //=============================================================================
0018 class FilterActionReplyTo : public FilterActionWithAddress
0019 {
0020     Q_OBJECT
0021 public:
0022     explicit FilterActionReplyTo(QObject *parent = nullptr);
0023     [[nodiscard]] ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
0024     [[nodiscard]] SearchRule::RequiredPart requiredPart() const override;
0025     static FilterAction *newAction();
0026     [[nodiscard]] QString informationAboutNotValidAction() const override;
0027 };
0028 }