From e659eb7dee15f01f97f3de0c5d18f85b22f3902e Mon Sep 17 00:00:00 2001 From: def Date: Wed, 24 Apr 2024 01:49:31 +0300 Subject: [PATCH] Update sp-modules/nextcloud/module.nix --- sp-modules/nextcloud/module.nix | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/sp-modules/nextcloud/module.nix b/sp-modules/nextcloud/module.nix index 3ad9097..d9fa794 100644 --- a/sp-modules/nextcloud/module.nix +++ b/sp-modules/nextcloud/module.nix @@ -77,23 +77,4 @@ adminuser = "admin"; }; }; - services.roundcube = { - enable = true; - # this is the url of the vhost, not necessarily the same as the fqdn of - # the mailserver - hostName = "webmail.bloodwine.cyou"; - extraConfig = '' - # starttls needed for authentication, so the fqdn required to match - # the certificate - $config['smtp_server'] = "tls://${config.mailserver.fqdn}"; - $config['smtp_user'] = "%u"; - $config['smtp_pass'] = "%p"; - ''; - }; - - services.nginx.virtualHosts.${hostName} = { - useACMEHost = sp.domain; - forceSSL = true; - }; - }; }