MailImporter

filtermailapp.h
1/*
2 filtermailapp.h - OS X Mail App import
3
4 SPDX-FileCopyrightText: 2004 Chris Howells <howells@kde.org>
5 Derived from code by:
6 SPDX-FileCopyrightText: 2003 Laurence Anderson <l.d.anderson@warwick.ac.uk>
7
8 SPDX-License-Identifier: GPL-2.0-or-later
9*/
10
11#pragma once
12
13#include "filters.h"
14namespace MailImporter
15{
16class FilterMailAppPrivate;
17/**
18 *imports mbox archives messages into KMail
19 *@author Chris Howells
20 */
21class MAILIMPORTER_EXPORT FilterMailApp : public Filter
22{
23public:
25 ~FilterMailApp() override;
26
27 void import() override;
28 void importMails(const QString &maildir);
29
30private:
31 std::unique_ptr<FilterMailAppPrivate> const d;
32 void traverseDirectory(const QString &);
33};
34}
imports mbox archives messages into KMail
The Filter class.
Definition filters.h:29
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:39 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.