mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
131 lines
4.5 KiB
C++
131 lines
4.5 KiB
C++
/**
|
|
* This file is part of the KDE project
|
|
* Copyright (C) 2009 Kevin Ottens <ervin@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <kcomponentdata.h>
|
|
#include <kaboutdata.h>
|
|
#include <klocale.h>
|
|
#include <klocalizedstring.h>
|
|
#include <kdebug.h>
|
|
#include <ktcpsocket.h> // declares KSslErrorUiData
|
|
#include <QCoreApplication>
|
|
#include <qsignalspy.h>
|
|
|
|
#include "kimap/session.h"
|
|
#include "kimap/capabilitiesjob.h"
|
|
#include "kimap/idlejob.h"
|
|
#include "kimap/loginjob.h"
|
|
#include "kimap/logoutjob.h"
|
|
#include "kimap/selectjob.h"
|
|
#include "kimap/closejob.h"
|
|
#include "kimap/sessionuiproxy.h"
|
|
|
|
using namespace KIMAP;
|
|
|
|
class UiProxy: public SessionUiProxy {
|
|
public:
|
|
bool ignoreSslError(const KSslErrorUiData& errorData) {
|
|
Q_UNUSED( errorData );
|
|
return true;
|
|
}
|
|
};
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
KAboutData about( "TestImapIdle", 0, ki18n( "TestImapIdle" ), "version" );
|
|
KComponentData cData( &about );
|
|
|
|
if ( argc < 4 ) {
|
|
kError() << "Not enough parameters, expecting: <server> <user> <password>";
|
|
}
|
|
|
|
QString server = QString::fromLocal8Bit( argv[1] );
|
|
int port = 143;
|
|
if ( server.count( ':' ) == 1 ) {
|
|
port = server.split( ':' ).last().toInt();
|
|
server = server.split( ':' ).first();
|
|
}
|
|
QString user = QString::fromLocal8Bit( argv[2] );
|
|
QString password = QString::fromLocal8Bit( argv[3] );
|
|
|
|
kDebug() << "Listening:" << server << port << user << password;
|
|
qDebug();
|
|
|
|
QCoreApplication app( argc, argv );
|
|
Session session( server, port );
|
|
UiProxy *proxy = new UiProxy();
|
|
session.setUiProxy( UiProxy::Ptr( proxy ) );
|
|
|
|
kDebug() << "Logging in...";
|
|
LoginJob *login = new LoginJob( &session );
|
|
login->setUserName( user );
|
|
login->setPassword( password );
|
|
login->exec();
|
|
Q_ASSERT_X( login->error() == 0, "LoginJob", login->errorString().toLocal8Bit() );
|
|
Q_ASSERT( session.state() == Session::Authenticated );
|
|
qDebug();
|
|
|
|
kDebug() << "Asking for capabilities:";
|
|
CapabilitiesJob *capabilities = new CapabilitiesJob( &session );
|
|
capabilities->exec();
|
|
Q_ASSERT_X( capabilities->error() == 0, "CapabilitiesJob", capabilities->errorString().toLocal8Bit() );
|
|
Q_ASSERT( session.state() == Session::Authenticated );
|
|
kDebug() << capabilities->capabilities();
|
|
qDebug();
|
|
|
|
Q_ASSERT( capabilities->capabilities().contains( "IDLE" ) );
|
|
|
|
kDebug() << "Selecting INBOX:";
|
|
SelectJob *select = new SelectJob( &session );
|
|
select->setMailBox( "INBOX" );
|
|
select->exec();
|
|
Q_ASSERT_X( select->error() == 0, "SelectJob", select->errorString().toLocal8Bit() );
|
|
Q_ASSERT( session.state() == Session::Selected );
|
|
kDebug() << "Flags:" << select->flags();
|
|
kDebug() << "Permanent flags:" << select->permanentFlags();
|
|
kDebug() << "Total Number of Messages:" << select->messageCount();
|
|
kDebug() << "Number of recent Messages:" << select->recentCount();
|
|
kDebug() << "First Unseen Message Index:" << select->firstUnseenIndex();
|
|
kDebug() << "UID validity:" << select->uidValidity();
|
|
kDebug() << "Next UID:" << select->nextUid();
|
|
qDebug();
|
|
|
|
kDebug() << "Start idling...";
|
|
IdleJob *idle = new IdleJob( &session );
|
|
QObject::connect( idle, SIGNAL(mailBoxStats(KIMAP::IdleJob*,QString,int,int)),
|
|
idle, SLOT(stop()) );
|
|
idle->exec();
|
|
kDebug() << "Idling done for" << idle->lastMailBox()
|
|
<< "message count:" << idle->lastMessageCount()
|
|
<< "recent count:" << idle->lastRecentCount();
|
|
|
|
kDebug() << "Closing INBOX:";
|
|
CloseJob *close = new CloseJob( &session );
|
|
close->exec();
|
|
Q_ASSERT( session.state() == Session::Authenticated );
|
|
qDebug();
|
|
|
|
kDebug() << "Logging out...";
|
|
LogoutJob *logout = new LogoutJob( &session );
|
|
logout->exec();
|
|
Q_ASSERT_X( logout->error() == 0, "LogoutJob", logout->errorString().toLocal8Bit() );
|
|
Q_ASSERT( session.state() == Session::Disconnected );
|
|
|
|
return 0;
|
|
}
|