split message into several paras and fix file extension markup
[kdepim.git] / mailimporter / filter_mailapp.h
blob08b457264d5923ef3a649a5e63281af1b5678d76
1 /***************************************************************************
2 filter_mailapp.h - OS X Mail App import
3 -------------------
4 copyright : (C) 2004 by Chris Howells
5 email : howells@kde.org
7 Derived from code by:
8 copyright : (C) 2003 by Laurence Anderson
9 email : l.d.anderson@warwick.ac.uk
11 ***************************************************************************/
13 #ifndef MAILIMPORTER_FILTER_MAILAPP_HXX
14 #define MAILIMPORTER_FILTER_MAILAPP_HXX
16 #include "filters.h"
17 /**
18 *imports mbox archives messages into KMail
19 *@author Chris Howells
21 namespace MailImporter {
22 class MAILIMPORTER_EXPORT FilterMailApp : public Filter
24 public:
25 explicit FilterMailApp();
26 ~FilterMailApp();
28 void import();
29 void importMails( const QString & maildir );
30 private:
31 QStringList mMboxFiles;
32 void traverseDirectory(const QString &);
36 #endif