From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- korn/imap_proto.cpp | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 korn/imap_proto.cpp (limited to 'korn/imap_proto.cpp') diff --git a/korn/imap_proto.cpp b/korn/imap_proto.cpp new file mode 100644 index 000000000..d0be64360 --- /dev/null +++ b/korn/imap_proto.cpp @@ -0,0 +1,101 @@ +/* + * Copyright (C) 2005, Mart Kelder (mart.kde@hccnet.nl) + * + * 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. + * + * 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 "imap_proto.h" + +#include "account_input.h" + +#include +#include +#include +#include +#include + +void Imap_Protocol::configFillGroupBoxes( QStringList* groupBoxes ) const +{ + groupBoxes->append( "Server" ); + groupBoxes->append( "Identity" ); +} + +void Imap_Protocol::configFields( QPtrVector< QWidget >* vector, const QObject* configDialog, QPtrList< AccountInput > * result ) const +{ + QMap< QString, QString > encrList; + encrList.insert( "ssl", i18n( "SSL" ) ); + encrList.insert( "tls=auto", i18n( "TLS if possible" ) ); + encrList.insert( "tls=on", i18n( "Always TLS" ) ); + encrList.insert( "tls=off", i18n( "Never TLS" ) ); + + QMap< QString, QString > authList; + authList.insert( "auth=*", i18n( "Default" ) ); + authList.insert( "auth=LOGIN", i18n( "LOGIN" ) ); //Note: LOGIN is an authentication method + authList.insert( "auth=ANONTMOUS", i18n( "Anonymous" ) ); //Note: ANONYMOUS is an authentication method + authList.insert( "auth=CRAM-MD5", i18n( "CRAM-MD5" ) ); //Note: CRAM-MD5 is an authentication method + + result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Server" ), TextInput::text, "", "server" ) ); + result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Port" ), 0, 65535, "143", "port" ) ); + result->append( new ComboInput( (QWidget*)vector->at( 0 ), i18n( "Encryption" ), encrList, "tls=auto", "encryption" ) ); + QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( activated( int) ), + configDialog, SLOT( slotSSLChanged() ) ); + + result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Username" ), TextInput::text, "", "username" ) ); + result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Mailbox" ), TextInput::text, "INBOX", "mailbox" ) ); + result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Password" ), TextInput::password, "", "password" ) ); + result->append( new CheckboxInput( (QWidget*)vector->at( 1 ), i18n( "Save password" ), "true", "savepassword" ) ); + QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( toggled( bool ) ), + (QObject*)result->prev()->rightWidget(), SLOT( setEnabled( bool ) ) ); + result->last()->setValue( "false" ); + result->append( new ComboInput( (QWidget*)vector->at( 1 ), i18n( "Authentication" ), authList, "auth=*", "auth" ) ); +} + +void Imap_Protocol::readEntries( QMap< QString, QString >* map, QMap< QString, QString > *metadata ) const +{ + if( map->contains( "ssl" ) && *map->find( "ssl" ) == "true" ) + map->insert( "encryption", "ssl" ); + if( metadata->contains( "tls" ) ) + map->insert( "encryption", QString( "tls=%1" ).arg( *metadata->find( "tls" ) ) ); + if( metadata->contains( "auth" ) ) + map->insert( "auth", QString( "auth=%1" ).arg( *metadata->find( "auth" ) ) ); +} + +void Imap_Protocol::writeEntries( QMap< QString, QString >* map ) const +{ + QString metadata; + if( map->contains( "encryption" ) ) + { + if( *map->find( "encryption" ) == "ssl" ) + map->insert( "ssl", "true" ); + else + { + map->insert( "ssl", "false" ); + metadata += *map->find( "encryption" ); + } + map->erase( "encryption" ); + } + + if( map->contains( "auth" ) ) + { + if( !metadata.isEmpty() ) + metadata += ","; + metadata += *map->find( "auth" ); + map->erase( "auth" ); + } + + map->insert( "metadata", metadata ); +} + -- cgit v1.2.1