#include <iostream>
#include <unistd.h>
#include <QObject>
#include <QList>
#include <QApplication>
#include <QTimer>
#include <QTextCodec>
#include <QDir>
#include <QSslCertificate>
#include <QThread>
#include <QByteArray>
#include <QPointer>
#include <KConfigGroup>
#include <KConfig>
#include <KGlobal>
#include <KPasswordDialog>
#include <kcodecs.h>
#include <ktcpsocket.h>
#include <KApplication>
#include <KDE/KLocale>
#include <KMessageBox>
#include <kde_file.h>
#include "mail.h"
#include "types.h"
#include "constants.h"
#include "encryption.h"
#include "kwalletaccess.h"
#include "maillist.h"
#include "accountlist.h"
#include "corruptdataexception.h"
#include "headerfilter.h"
#include "filterlog.h"
#include "showmaildialog.h"
#include "kshowmail.h"
#include "accountviewitem.h"
Go to the source code of this file.
Namespaces | |
namespace | POP3Constants |
Classes | |
class | Account |
This class represents an POP3-Account. More... | |
Functions | |
static const QString | POP3Constants::RESPONSE_POSITIVE ("+OK") |
positive server response | |
static const QString | POP3Constants::RESPONSE_NEGATIVE ("-ERR") |
negative server response | |
static const QString | POP3Constants::END_MULTILINE_RESPONSE (".") |
End of multi-line response. | |
static const QString | POP3Constants::CAPA_REQUEST ("CAPA") |
Capabilities request. | |
static const QString | POP3Constants::AUTH_REQUEST ("AUTH") |
Authentication mechanism request. | |
static const QString | POP3Constants::CAPA_RESPONSE_STLS ("STLS") |
Capabilities response STLS available. | |
static const QString | POP3Constants::START_TLS ("STLS") |
command for start TLS | |
static const QString | POP3Constants::COMMIT ("QUIT") |
Commit command. | |
static const QString | POP3Constants::LOGIN_USER ("USER") |
Sends the username for login. | |
static const QString | POP3Constants::LOGIN_PASSWD ("PASS") |
Sends the password for login. | |
static const QString | POP3Constants::LOGIN_APOP ("APOP") |
Command for login using APOP. | |
static const QString | POP3Constants::UID_LIST ("UIDL") |
Command to get the UID list. | |
static const QString | POP3Constants::MAIL_LIST ("LIST") |
Command to get a list of mail numbers and sizes. | |
static const QString | POP3Constants::GET_HEADER ("TOP") |
This command gets the header of a mail. | |
static const QString | POP3Constants::DELETE ("DELE") |
Deletes a mail. | |
static const QString | POP3Constants::GET_MAIL ("RETR") |
Get a mail. |