summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-08-24 16:34:03 -0600
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-08-24 16:34:03 -0600
commitd0fcd965ce9ef981f54b21a82208e291f97ea203 (patch)
tree7eec0667badf7a45f69a2568a7a2c46d99ddd7d4
parent6b80d971b16f81a71fdb583ef796feafa782c20c (diff)
downloadkube-d0fcd965ce9ef981f54b21a82208e291f97ea203.tar.gz
kube-d0fcd965ce9ef981f54b21a82208e291f97ea203.zip
Disable applyCharset while it's broken
It currently breaks some special characters such as the hyphen.
-rw-r--r--framework/src/domain/mime/mailtemplates.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/src/domain/mime/mailtemplates.cpp b/framework/src/domain/mime/mailtemplates.cpp
index 2c4dda04..f672692b 100644
--- a/framework/src/domain/mime/mailtemplates.cpp
+++ b/framework/src/domain/mime/mailtemplates.cpp
@@ -864,7 +864,8 @@ void MailTemplates::reply(const KMime::Message::Ptr &origMsg, const std::functio
864 864
865 //Assemble the message 865 //Assemble the message
866 addProcessedBodyToMessage(msg, plainBodyResult, htmlBodyResult, false); 866 addProcessedBodyToMessage(msg, plainBodyResult, htmlBodyResult, false);
867 applyCharset(msg, origMsg); 867 //FIXME this does more harm than good right now.
868 // applyCharset(msg, origMsg);
868 msg->assemble(); 869 msg->assemble();
869 //We're done 870 //We're done
870 callback(msg); 871 callback(msg);