mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
57 lines
1.9 KiB
C
57 lines
1.9 KiB
C
/*
|
|
Copyright (c) 2006 - 2007 Volker Krause <vkrause@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.
|
|
*/
|
|
|
|
#ifndef MAILTRANSPORT_MAILTRANSPORT_DEFS_H
|
|
#define MAILTRANSPORT_MAILTRANSPORT_DEFS_H
|
|
|
|
/**
|
|
@file mailtransport_defs.h
|
|
Internal file containing constant definitions etc.
|
|
*/
|
|
|
|
#define WALLET_FOLDER QLatin1String("mailtransports")
|
|
#define KMAIL_WALLET_FOLDER QLatin1String("kmail")
|
|
|
|
#define DBUS_SERVICE_NAME QLatin1String("org.kde.pim.TransportManager")
|
|
#define DBUS_INTERFACE_NAME QLatin1String("org.kde.pim.TransportManager")
|
|
#define DBUS_OBJECT_PATH QLatin1String("/TransportManager")
|
|
#define DBUS_CHANGE_SIGNAL QLatin1String("changesCommitted")
|
|
|
|
#define SMTP_PROTOCOL QLatin1String("smtp")
|
|
#define SMTPS_PROTOCOL QLatin1String("smtps")
|
|
|
|
#define SMTP_PORT 25
|
|
#define SMTPS_PORT 465
|
|
|
|
// Because ServerTest is also capable of testing IMAP,
|
|
// some additional defines:
|
|
|
|
#define IMAP_PROTOCOL QLatin1String("imap")
|
|
#define IMAPS_PROTOCOL QLatin1String("imaps")
|
|
|
|
#define POP_PROTOCOL QLatin1String("pop")
|
|
#define POPS_PROTOCOL QLatin1String("pops")
|
|
|
|
#define IMAP_PORT 143
|
|
#define IMAPS_PORT 993
|
|
|
|
#define POP_PORT 110
|
|
#define POPS_PORT 995
|
|
|
|
#endif
|