From 9e36323ae3dde787f761420465c3ae560f3dbf29 Mon Sep 17 00:00:00 2001 From: Sleepful Date: Tue, 30 Jan 2024 00:43:21 -0600 Subject: [PATCH] Update roundcube example configuration: smtp_server is deprecated Related issue on GH: https://github.com/roundcube/roundcubemail/issues/8756 --- docs/add-roundcube.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/add-roundcube.rst b/docs/add-roundcube.rst index 4e6be83..6b10d5b 100644 --- a/docs/add-roundcube.rst +++ b/docs/add-roundcube.rst @@ -20,7 +20,7 @@ servers may require more work. extraConfig = '' # starttls needed for authentication, so the fqdn required to match # the certificate - $config['smtp_server'] = "tls://${config.mailserver.fqdn}"; + $config['smtp_host'] = "tls://${config.mailserver.fqdn}"; $config['smtp_user'] = "%u"; $config['smtp_pass'] = "%p"; '';