summaryrefslogtreecommitdiffstats
path: root/kmailcvt/filter_outlook.cxx
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /kmailcvt/filter_outlook.cxx
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmailcvt/filter_outlook.cxx')
-rw-r--r--kmailcvt/filter_outlook.cxx62
1 files changed, 62 insertions, 0 deletions
diff --git a/kmailcvt/filter_outlook.cxx b/kmailcvt/filter_outlook.cxx
new file mode 100644
index 000000000..e9c53a82c
--- /dev/null
+++ b/kmailcvt/filter_outlook.cxx
@@ -0,0 +1,62 @@
+/***************************************************************************
+ filter_opera.cxx - Outlook mail import
+ -------------------
+ begin : February 01 2005
+ copyright : (C) 2005 by Danny Kukawka
+ email : danny.kukawka@web.de
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+
+#include <config.h>
+#include <klocale.h>
+#include <kfiledialog.h>
+#include <ktempfile.h>
+#include <kdebug.h>
+
+#include "filter_outlook.hxx"
+
+FilterOutlook::FilterOutlook() :
+ Filter( i18n("Import Outlook Emails"),
+ "Danny Kukawka",
+ i18n("<p><b>Outlook email import filter</b></p>"
+ "<p>This filter will import mails from a Outlook pst-file. You will need to locate "
+ "the folder where the pst-file has been stored by searching for .pst files under: "
+ "<i>C:\\Documents and Settings</i> in Windows 2000 or later</p>"
+ "<p><b>Note:</b> Emails will be imported into a folder named after the "
+ "account they came from, prefixed with OUTLOOK-</p>" ))
+{}
+
+FilterOutlook::~FilterOutlook()
+{
+ endImport();
+}
+
+void FilterOutlook::import(FilterInfo *info)
+{
+ info->alert(i18n("No directory selected."));
+ info->addLog(i18n("Counting files..."));
+ info->addLog(i18n("Counting mail..."));
+ info->addLog(i18n("Counting directories..."));
+ info->addLog(i18n("Counting folders..."));
+ info->addLog(i18n("Importing new mail files..."));
+ info->addLog(i18n("No files found for import."));
+
+ QString outlookDir;
+ outlookDir = KFileDialog::getExistingDirectory(QDir::homeDirPath(), info->parent());
+ QDir importDir (outlookDir);
+ QStringList files = importDir.entryList("*.[pP][sS][tT]", QDir::Files, QDir::Name);
+ for ( QStringList::Iterator pstFile = files.begin(); pstFile != files.end(); ++pstFile) {
+ info->addLog( i18n("Importing emails from %1...").arg( *pstFile ) );
+ info->addLog( i18n("1 duplicate message not imported", "%n duplicate messages not imported", count_duplicates));
+ info->alert( i18n("Unable to open %1, skipping").arg( *pstFile ) );
+ }
+}