kde-playground/kdepim/importwizard/pmail/pmailsettings.cpp
2015-04-14 21:49:29 +00:00

78 lines
2.6 KiB
C++

/*
Copyright (c) 2012-2013 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "pmailsettings.h"
#include "importwizardutil.h"
#include <mailtransport/transportmanager.h>
#include "mailcommon/util/mailutil.h"
#include <kpimidentities/identity.h>
#include <kpimidentities/signature.h>
#include <KConfig>
#include <KConfigGroup>
#include <QFile>
PMailSettings::PMailSettings(const QString& filename,ImportWizard *parent)
:AbstractSettings( parent )
{
if (QFile( filename ).exists()) {
KConfig config( filename );
const QStringList accountList = config.groupList().filter( QRegExp( "WinPMail Identity - *" ) );
const QStringList::const_iterator end( accountList.constEnd() );
for ( QStringList::const_iterator it = accountList.constBegin(); it!=end; ++it ) {
KConfigGroup group = config.group( *it );
readIdentity( group );
}
}
}
PMailSettings::~PMailSettings()
{
}
void PMailSettings::readIdentity( const KConfigGroup& group )
{
QString personalNameStr = QLatin1String("Personal name ");
QString personalName;
if (group.hasKey(personalNameStr)) {
personalName = group.readEntry(personalNameStr);
personalName.remove(0,1); //Remove first space
}
KPIMIdentities::Identity* newIdentity = createIdentity(personalName);
newIdentity->setFullName( personalName );
newIdentity->setIdentityName( personalName );
const QString emailStr = QLatin1String("Internet E-mail Address ");
if (group.hasKey(emailStr)) {
QString email = group.readEntry(emailStr);
email.remove(0,1); //Remove first space
newIdentity->setPrimaryEmailAddress(email);
}
const QString replytoStr = QLatin1String("Default reply-to address ");
if (group.hasKey(replytoStr)) {
QString reply = group.readEntry(replytoStr);
reply.remove(0,1); //Remove first space
newIdentity->setReplyToAddr(reply);
}
storeIdentity(newIdentity);
}