From 8f472524a4df4e00203a074c6fe129c64a3914ba Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 19 Nov 2009 22:50:18 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: b7300c32ea4332dc810095989c8cea185300c032 Monotone-Revision: 030a45848583164e8f229744cd5a518ecc93b665 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-11-19T22:50:18 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ SoObjects/Mailer/SOGoMailReply.m | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6d5e54f14..30b4fbfff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-11-19 Francis Lachapelle + + * SoObjects/Mailer/SOGoMailReply.m (-messageBody): don't try to + remove the bottom signature when replying to an email, in order to + avoid situations where a previous message follows the last signature. + 2009-11-19 Wolfgang Sourdeau * SoObjects/SOGo/SOGoUserDefaults.m (-fetchJSONProfileFromDB): diff --git a/SoObjects/Mailer/SOGoMailReply.m b/SoObjects/Mailer/SOGoMailReply.m index 9e3370d93..ae3fefea8 100644 --- a/SoObjects/Mailer/SOGoMailReply.m +++ b/SoObjects/Mailer/SOGoMailReply.m @@ -93,13 +93,6 @@ } else { - NSRange r; - - r = [s rangeOfString: @"\n-- \n" options: NSBackwardsSearch]; - - if (r.length) - s = [s substringToIndex: r.location]; - s = [s stringByApplyingMailQuoting]; //adds "> " on each line } }