summaryrefslogtreecommitdiffstats
path: root/docs/add-roundcube.rst
blob: 6d4795c761fd57edfbef680eb8509229de443daa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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_server'] = "tls://${config.mailserver.fqdn}";
          $config['smtp_user'] = "%u";
          $config['smtp_pass'] = "%p";
        '';
     };

     services.nginx.enable = true;

     networking.firewall.allowedTCPPorts = [ 80 443 ];
   }