00001 #ifndef MINIKDE_KEMAILSETTINGS_H
00002 #define MINIKDE_KEMAILSETTINGS_H
00003
00004 #include <qstring.h>
00005
00006 class KEMailSettings
00007 {
00008 public:
00009 enum Setting {
00010 ClientProgram,
00011 ClientTerminal,
00012 RealName,
00013 EmailAddress,
00014 ReplyToAddress,
00015 Organization,
00016 OutServer,
00017 OutServerLogin,
00018 OutServerPass,
00019 OutServerType,
00020 OutServerCommand,
00021 OutServerTLS,
00022 InServer,
00023 InServerLogin,
00024 InServerPass,
00025 InServerType,
00026 InServerMBXType,
00027 InServerTLS
00028 };
00029 QString getSetting(KEMailSettings::Setting s);
00030 };
00031
00032 #endif