mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 21:04:53 +00:00
Fix bug with reply-to header in messages
(cherry picked from commit e037ca0a49)
This commit is contained in:
@@ -269,7 +269,7 @@ static NSString *userAgent = nil;
|
||||
{
|
||||
id headerValue;
|
||||
unsigned int count;
|
||||
NSString *messageID, *priority, *pureSender,*replyTo;
|
||||
NSString *messageID, *priority, *pureSender, *replyTo;
|
||||
|
||||
for (count = 0; count < 8; count++)
|
||||
{
|
||||
@@ -314,8 +314,8 @@ static NSString *userAgent = nil;
|
||||
if ([replyTo length] > 0)
|
||||
{
|
||||
[headers setObject: replyTo forKey: @"reply-to"];
|
||||
[headers removeObjectForKey: @"replyTo"];
|
||||
}
|
||||
[headers removeObjectForKey: @"replyTo"];
|
||||
|
||||
if ([[newHeaders objectForKey: @"receipt"] isEqualToString: @"true"])
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user