author | alwin <alwin> | 2004-03-11 15:57:38 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-03-11 15:57:38 (UTC) |
commit | 8ef5f33241db5e717daf6732d4db881918b0a46b (patch) (side-by-side diff) | |
tree | 928d52d17bf28fa60f1a891f4671599e5344892b | |
parent | 4a54ba05ce4ff36bf90264e239c531e879fa47c0 (diff) | |
download | opie-8ef5f33241db5e717daf6732d4db881918b0a46b.zip opie-8ef5f33241db5e717daf6732d4db881918b0a46b.tar.gz opie-8ef5f33241db5e717daf6732d4db881918b0a46b.tar.bz2 |
workaround of a libetpan bug :(
-rw-r--r-- | noncore/net/mail/libmailwrapper/abstractmail.cpp | 24 |
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 @@ -62,62 +62,62 @@ encodedString* AbstractMail::decode_String(const encodedString*text,const QStrin 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; + 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 */ 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; } QString AbstractMail::defaultLocalfolder() { QString f = getenv( "HOME" ); f += "/Applications/opiemail/localmail"; return f; |