summaryrefslogtreecommitdiff
path: root/noncore/net
authoralwin <alwin>2004-03-11 15:57:38 (UTC)
committer alwin <alwin>2004-03-11 15:57:38 (UTC)
commit8ef5f33241db5e717daf6732d4db881918b0a46b (patch) (side-by-side diff)
tree928d52d17bf28fa60f1a891f4671599e5344892b /noncore/net
parent4a54ba05ce4ff36bf90264e239c531e879fa47c0 (diff)
downloadopie-8ef5f33241db5e717daf6732d4db881918b0a46b.zip
opie-8ef5f33241db5e717daf6732d4db881918b0a46b.tar.gz
opie-8ef5f33241db5e717daf6732d4db881918b0a46b.tar.bz2
workaround of a libetpan bug :(
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/abstractmail.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp
index d71d35c..ac6f380 100644
--- a/noncore/net/mail/libmailwrapper/abstractmail.cpp
+++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp
@@ -83,20 +83,20 @@ QString AbstractMail::convert_String(const char*text)
{
size_t index = 0;
char*res = 0;
+ int err = MAILIMF_NO_ERROR;
- /* 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;
+ 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);*/
+ //qDebug("Input: %s",text);
+ if (err == MAILIMF_NO_ERROR && res && strlen(res)) {
+// result = QString(res);
+// qDebug("Res: %s, length: %i",res,strlen(res));
}
- return QString(text);
+ if (res) free(res);
+ return result;
}
/* cp & paste from launcher */