mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-24 22:39:31 +00:00
fix(mail): case insensitve check of sender address with certificate
This commit is contained in:
@@ -2043,7 +2043,7 @@ static NSString *userAgent = nil;
|
||||
|
||||
parser = [NGMailAddressParser mailAddressParserWithString: [self sender]];
|
||||
parsedSender = [parser parse];
|
||||
emailAddress = [parsedSender address];
|
||||
emailAddress = [[parsedSender address] lowercaseString];
|
||||
|
||||
if (![emails containsObject: emailAddress])
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user