chore(sendmail): disable sendmail for now

This commit is contained in:
Hivert Quentin
2026-08-11 17:34:50 +02:00
parent 1caa25711f
commit f0c23407bf
2 changed files with 3 additions and 9 deletions
+2 -3
View File
@@ -304,11 +304,10 @@
NSString *mailingMechanism;
mailingMechanism = [self stringForKey: @"SOGoMailingMechanism"];
if (!([mailingMechanism isEqualToString: @"sendmail"]
|| [mailingMechanism isEqualToString: @"smtp"]))
if (![mailingMechanism isEqualToString: @"smtp"])
{
[self logWithFormat: @"mechanism '%@' is invalid and"
@" should be set to 'sendmail' or 'smtp' instead",
@" should be set to 'smtp' instead",
mailingMechanism];
mailingMechanism = nil;
}