mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-14 09:48:51 +00:00
Lowercase some value to avoid broken comparaisons.
This commit is contained in:
@@ -205,7 +205,7 @@
|
||||
mailingMechanism = nil;
|
||||
}
|
||||
|
||||
return mailingMechanism;
|
||||
return [mailingMechanism lowercaseString];
|
||||
}
|
||||
|
||||
- (NSArray *) mailPollingIntervals
|
||||
@@ -220,7 +220,7 @@
|
||||
|
||||
- (NSString *) smtpAuthenticationType
|
||||
{
|
||||
return [self stringForKey: @"SOGoSMTPAuthenticationType"];
|
||||
return [[self stringForKey: @"SOGoSMTPAuthenticationType"] lowercaseString];
|
||||
}
|
||||
|
||||
- (NSString *) mailSpoolPath
|
||||
|
||||
Reference in New Issue
Block a user