Mailcommon

filteractionredirect.h
1 /*
2  * SPDX-FileCopyrightText: 1996-1998 Stefan Taferner <[email protected]>
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  *
6  */
7 
8 #pragma once
9 
10 #include "filteractionwithaddress.h"
11 
12 namespace MailCommon
13 {
14 //=============================================================================
15 // FilterActionRedirect - redirect to
16 // Redirect message to another user
17 //=============================================================================
18 class FilterActionRedirect : public FilterActionWithAddress
19 {
20  Q_OBJECT
21 public:
22  explicit FilterActionRedirect(QObject *parent = nullptr);
23  Q_REQUIRED_RESULT ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
24  Q_REQUIRED_RESULT SearchRule::RequiredPart requiredPart() const override;
25  static FilterAction *newAction();
26  Q_REQUIRED_RESULT QString sieveCode() const override;
27  Q_REQUIRED_RESULT QString informationAboutNotValidAction() const override;
28 };
29 }
Q_OBJECTQ_OBJECT
RequiredPart
Possible required parts.
Definition: searchrule.h:68
ReturnCode
Describes the possible return codes of filter processing:
Definition: filteraction.h:45
FilterAction(const QString &name, const QString &label, QObject *parent=nullptr)
Creates a new filter action.
The filter dialog.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Thu Sep 21 2023 04:03:06 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.