mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
9e36323ae3
Related issue on GH: https://github.com/roundcube/roundcubemail/issues/8756
33 lines
886 B
ReStructuredText
33 lines
886 B
ReStructuredText
Add Roundcube, a webmail
|
|
========================
|
|
|
|
The NixOS module for roundcube nearly works out of the box with SNM. By
|
|
default, it sets up a nginx virtual host to serve the webmail, other web
|
|
servers may require more work.
|
|
|
|
.. code:: nix
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
services.roundcube = {
|
|
enable = true;
|
|
# this is the url of the vhost, not necessarily the same as the fqdn of
|
|
# the mailserver
|
|
hostName = "webmail.example.com";
|
|
extraConfig = ''
|
|
# starttls needed for authentication, so the fqdn required to match
|
|
# the certificate
|
|
$config['smtp_host'] = "tls://${config.mailserver.fqdn}";
|
|
$config['smtp_user'] = "%u";
|
|
$config['smtp_pass'] = "%p";
|
|
'';
|
|
};
|
|
|
|
services.nginx.enable = true;
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
}
|