mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-30 18:42:44 +00:00
Monotone-Parent: 0a66cb1695fb4317d549189b15407c076af77e16
Monotone-Revision: 9adad96605712f34ea4b5d3a10c392e250208cab Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-09-22T20:31:57 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-09-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/NSString+Utilities.m ([NSString
|
||||
-asQPSubjectString:encoding]): replace spaces with underscore
|
||||
characters to comply with rfc 2047.
|
||||
|
||||
2008-09-17 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/MailPartViewers/UIxMailPartViewer.m ([UIxMailPartViewer
|
||||
|
||||
@@ -331,8 +331,11 @@ static NSMutableCharacterSet *urlStartChars = nil;
|
||||
encoding: NSASCIIStringEncoding];
|
||||
[qpString autorelease];
|
||||
if ([qpString length] > [self length])
|
||||
subjectString = [NSString stringWithFormat: @"=?%@?Q?%@?=",
|
||||
encoding, qpString];
|
||||
{
|
||||
qpString = [qpString stringByReplacingString: @" " withString: @"_"];
|
||||
subjectString = [NSString stringWithFormat: @"=?%@?Q?%@?=",
|
||||
encoding, qpString];
|
||||
}
|
||||
else
|
||||
subjectString = self;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user