blob: 4636a6cbfbbcd6b1e31b4e45345089d68b0b16bf (
plain) (
blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
{ lib, pkgs, config, ... }:
let
roundcubemail = pkgs.callPackage ./roundcubemail.nix {
inherit (pkgs.webapps) roundcubemail;
env = config.myEnv.tools.roundcubemail;
};
rainloop = pkgs.callPackage ./rainloop.nix {
rainloop = pkgs.rainloop-community;
};
cfg = config.myServices.websites.tools.email;
pcfg = config.services.phpfpm.pools;
in
{
options.myServices.websites.tools.email = {
enable = lib.mkEnableOption "enable email website";
};
imports = [
./mta-sts.nix
];
config = lib.mkIf cfg.enable {
services.duplyBackup.profiles.mail.excludeFile = ''
+ ${rainloop.varDir}
+ ${roundcubemail.varDir}
'';
secrets.keys = roundcubemail.keys;
services.websites.env.tools.modules =
[ "proxy_fcgi" ]
++ rainloop.apache.modules
++ roundcubemail.apache.modules;
services.websites.env.tools.vhostConfs.mail = {
certName = "mail";
addToCerts = true;
hosts = ["mail.immae.eu"];
root = "/run/current-system/webapps/_mail";
extraConfig = [
(rainloop.apache.vhostConf pcfg.rainloop.socket)
(roundcubemail.apache.vhostConf pcfg.roundcubemail.socket)
''
<Directory /run/current-system/webapps/_mail>
Require all granted
Options -Indexes
</Directory>
''
];
};
systemd.services = {
phpfpm-rainloop = {
after = lib.mkAfter rainloop.phpFpm.serviceDeps;
wants = rainloop.phpFpm.serviceDeps;
};
phpfpm-roundcubemail = {
after = lib.mkAfter roundcubemail.phpFpm.serviceDeps;
wants = roundcubemail.phpFpm.serviceDeps;
};
};
services.phpfpm.pools.roundcubemail = {
user = "wwwrun";
group = "wwwrun";
settings = roundcubemail.phpFpm.pool;
phpOptions = config.services.phpfpm.phpOptions + ''
date.timezone = 'CET'
'';
phpPackage = pkgs.php72.withExtensions({ enabled, all }: enabled ++ [ all.imagick ]);
};
services.phpfpm.pools.rainloop = {
user = "wwwrun";
group = "wwwrun";
settings = rainloop.phpFpm.pool;
phpPackage = pkgs.php72;
};
system.activationScripts = {
roundcubemail = roundcubemail.activationScript;
rainloop = rainloop.activationScript;
};
services.websites.webappDirs = {
_mail = ./www;
"${roundcubemail.apache.webappName}" = roundcubemail.webRoot;
"${rainloop.apache.webappName}" = rainloop.webRoot;
};
};
}
|