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; - }; - }; }