summaryrefslogtreecommitdiff
path: root/noncore/net/mail/abstractmail.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/abstractmail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/abstractmail.cpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/noncore/net/mail/abstractmail.cpp b/noncore/net/mail/abstractmail.cpp
deleted file mode 100644
index f303d72..0000000
--- a/noncore/net/mail/abstractmail.cpp
+++ b/dev/null
@@ -1,94 +0,0 @@
-#include "abstractmail.h"
-#include "imapwrapper.h"
-#include "pop3wrapper.h"
-#include "mboxwrapper.h"
-#include "mailtypes.h"
-
-#include <qstring.h>
-#include <qfile.h>
-#include <qtextstream.h>
-#include <stdlib.h>
-#include <libetpan/mailmime_content.h>
-#include <libetpan/mailmime.h>
-
-AbstractMail* AbstractMail::getWrapper(IMAPaccount *a)
-{
- return new IMAPwrapper(a);
-}
-
-AbstractMail* AbstractMail::getWrapper(POP3account *a)
-{
- return new POP3wrapper(a);
-}
-
-AbstractMail* AbstractMail::getWrapper(const QString&a)
-{
- return new MBOXwrapper(a);
-}
-
-encodedString* AbstractMail::decode_String(const encodedString*text,const QString&enc)
-{
- qDebug("Decode string start");
- char*result_text;
- size_t index = 0;
- /* reset for recursive use! */
- size_t target_length = 0;
- result_text = 0;
- int mimetype = MAILMIME_MECHANISM_7BIT;
- if (enc.lower()=="quoted-printable") {
- mimetype = MAILMIME_MECHANISM_QUOTED_PRINTABLE;
- } else if (enc.lower()=="base64") {
- mimetype = MAILMIME_MECHANISM_BASE64;
- } else if (enc.lower()=="8bit") {
- mimetype = MAILMIME_MECHANISM_8BIT;
- } else if (enc.lower()=="binary") {
- mimetype = MAILMIME_MECHANISM_BINARY;
- }
-
- int err = mailmime_part_parse(text->Content(),text->Length(),&index,mimetype,
- &result_text,&target_length);
-
- encodedString* result = new encodedString();
- if (err == MAILIMF_NO_ERROR) {
- result->setContent(result_text,target_length);
- }
- qDebug("Decode string finished");
- return result;
-}
-
-QString AbstractMail::convert_String(const char*text)
-{
- size_t index = 0;
- char*res = 0;
-
- /* attention - doesn't work with arm systems! */
- int err = mailmime_encoded_phrase_parse("iso-8859-1",
- text, strlen(text),&index, "iso-8859-1",&res);
- if (err != MAILIMF_NO_ERROR) {
- if (res) free(res);
- return QString(text);
- }
- if (res) {
- QString result(res);
- free(res);
- return result;
- }
- return QString(text);
-}
-
-/* cp & paste from launcher */
-QString AbstractMail::gen_attachment_id()
-{
- QFile file( "/proc/sys/kernel/random/uuid" );
- if (!file.open(IO_ReadOnly ) )
- return QString::null;
-
- QTextStream stream(&file);
-
- return "{" + stream.read().stripWhiteSpace() + "}";
-}
-
-int AbstractMail::createMbox(const QString&,const Folder*,const QString& delemiter,bool)
-{
- return 0;
-}