From 03f04b51c84b15f5b6e82a7b427adeef56c16e90 Mon Sep 17 00:00:00 2001 From: alwin Date: Sun, 17 Oct 2004 12:24:39 +0000 Subject: the bug in libetpan seems to be fixed so we can reuse string encoding again --- (limited to 'noncore') diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp index 7c1c0e4..f40aac8 100644 --- a/noncore/net/mail/libmailwrapper/abstractmail.cpp +++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp @@ -54,7 +54,7 @@ AbstractMail* AbstractMail::getWrapper(Account*a) encodedString* AbstractMail::decode_String(const encodedString*text,const QString&enc) { - odebug << "Decode string start" << oendl; + odebug << "Decode string start" << oendl; char*result_text; size_t index = 0; /* reset for recursive use! */ @@ -78,25 +78,24 @@ encodedString* AbstractMail::decode_String(const encodedString*text,const QStrin if (err == MAILIMF_NO_ERROR) { result->setContent(result_text,target_length); } - odebug << "Decode string finished" << oendl; + odebug << "Decode string finished" << oendl; return result; } QString AbstractMail::convert_String(const char*text) { - //size_t index = 0; + size_t index = 0; char*res = 0; int err = MAILIMF_NO_ERROR; QString result(text); - /* due a bug in libetpan it isn't usable this moment */ -/* int err = mailmime_encoded_phrase_parse("iso-8859-1", - text, strlen(text),&index, "iso-8859-1",&res);*/ - //odebug << "Input: " << text << "" << oendl; + err = mailmime_encoded_phrase_parse("iso-8859-1", + text, strlen(text),&index, "iso-8859-1",&res); + //odebug << "Input: " << text << "" << oendl; if (err == MAILIMF_NO_ERROR && res && strlen(res)) { -// result = QString(res); -// odebug << "Res: " << res << ", length: " << strlen(res) << "" << oendl; + result = QString(res); +// odebug << "Res: " << res << ", length: " << strlen(res) << "" << oendl; } if (res) free(res); return result; -- cgit v0.9.0.2