File indexing completed on 2025-05-11 12:00:50

0001 /*
0002  * SPDX-FileCopyrightText: 2014 Sandro Knauß <knauss@kolabsys.com>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 // This code was taken from kmail-account-wizard
0008 
0009 #pragma once
0010 
0011 #include "ispdb.h"
0012 
0013 class AutoconfigKolabMail : public Ispdb
0014 {
0015     Q_OBJECT
0016 public:
0017     /** Constructor */
0018     explicit AutoconfigKolabMail(QObject *parent = nullptr);
0019 
0020     void startJob(const QUrl &url) override;
0021 
0022 private:
0023     void slotResult(KJob *);
0024 };
0025