KIMAP Library
#include <metadatajobbase.h>
Public Types | |
enum | ServerCapability { Metadata = 0, Annotatemore } |
Public Member Functions | |
MetaDataJobBase (Session *session) | |
QString | mailBox () const |
ServerCapability | serverCapability () const |
void | setMailBox (const QString &mailBox) |
void | setServerCapability (const ServerCapability &capability) |
Protected Member Functions | |
MetaDataJobBase (JobPrivate &dd) | |
Detailed Description
Base class for jobs that operate on mailbox metadata.
Provides support for the IMAP METADATA extension; both the final RFC version (RFC 5464) and the older, incompatible draft version (known as ANNOTATEMORE) (draft-daboo-imap-annotatemore-07).
This class cannot be used directly, you must subclass it and reimplement at least the doStart() method.
Definition at line 47 of file metadatajobbase.h.
Member Enumeration Documentation
Represents the capability level of the server.
Definition at line 61 of file metadatajobbase.h.
Member Function Documentation
QString MetaDataJobBase::mailBox | ( | ) | const |
The mailbox that will be acted upon.
If this is an empty string, server metadata will be retrieved.
- Returns
- a mailbox name, or an empty string
Definition at line 88 of file metadatajobbase.cpp.
MetaDataJobBase::ServerCapability MetaDataJobBase::serverCapability | ( | ) | const |
The version of the metadata extension that will be used.
Definition at line 100 of file metadatajobbase.cpp.
void MetaDataJobBase::setMailBox | ( | const QString & | mailBox | ) |
Set the mailbox to act on.
This may be an empty string, in which case metadata for the server (rather than a specific mailbox) will be retrieved.
- Parameters
-
mailBox the name of an existing mailbox, or an empty string
Definition at line 82 of file metadatajobbase.cpp.
void MetaDataJobBase::setServerCapability | ( | const ServerCapability & | capability | ) |
Set what version of the metadata extension to be compatible with.
This will determine the commands that will be sent to the server.
The draft for the metadata extension changed in an incompatible way between versions 7 and 8, and some servers support version 7. It should be possible to check which version the server supports using CapabilityJob: servers implementing draft-daboo-imap-annotatemore-07 should advertise the ANNOTATEMORE capability, whereas servers implementing the final RFC 5464 should advertise the METADATA capability.
The default mode is Metadata.
- Parameters
-
capability the version of the extension implemented by the server
Definition at line 94 of file metadatajobbase.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:37:03 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.