Lowercase some value to avoid broken comparaisons.

This commit is contained in:
Ludovic Marcotte
2012-12-03 16:33:14 -05:00
parent ef7c69eda7
commit d64fd65ea8

View File

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