File indexing completed on 2024-11-10 04:50:03
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 "filteractionwithcommand.h" 0011 0012 namespace MailCommon 0013 { 0014 //============================================================================= 0015 // FilterActionExec - execute command 0016 // Execute a shell command 0017 //============================================================================= 0018 class FilterActionExec : public FilterActionWithCommand 0019 { 0020 Q_OBJECT 0021 public: 0022 explicit FilterActionExec(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 }