diff --git a/Documentation/SOGoInstallationGuide.asciidoc b/Documentation/SOGoInstallationGuide.asciidoc index 49e467ccd..12a2ab3c2 100644 --- a/Documentation/SOGoInstallationGuide.asciidoc +++ b/Documentation/SOGoInstallationGuide.asciidoc @@ -72,7 +72,7 @@ following: * Database server (MariaDB, MySQL, PostgreSQL or Oracle) * LDAP server (OpenLDAP, Novell eDirectory, Microsoft Active Directory and others)  -* SMTP server (Postfix, Sendmail and others) +* SMTP server (Postfix) * IMAP server (Courier, Cyrus IMAP Server, Dovecot and others) If you plan to use ActiveSync, an IMAP server supporting the ACL, @@ -2174,7 +2174,6 @@ The following table describes the related parameters. are: [options="compact"] -* `sendmail` - to use the sendmail binary * `smtp` - to use the SMTP protocol |D |SOGoSMTPServer @@ -2202,10 +2201,6 @@ Current, Are supported `PLAIN` and 'xoauth2' for openid. |D |SOGoSMTPMasterUserPassword |SMTP account password for master account (`SOGoSMTPMasterUserEnabled` enabled). -|S |WOSendMail -|The path of the sendmail binary. - -Defaults to `/usr/lib/sendmail`. |D |SOGoForceExternalLoginWithEmail |Parameter used to specify if, when logging in to the SMTP server, the diff --git a/SoObjects/SOGo/SOGoDomainDefaults.m b/SoObjects/SOGo/SOGoDomainDefaults.m index c856f96a6..c6b014c52 100644 --- a/SoObjects/SOGo/SOGoDomainDefaults.m +++ b/SoObjects/SOGo/SOGoDomainDefaults.m @@ -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; }