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 } }