vps: add roundcube
This commit is contained in:
parent
edae8a4dea
commit
4573eb70ff
|
@ -21,5 +21,6 @@ with lib; {
|
||||||
./paperless.nix
|
./paperless.nix
|
||||||
./trilium.nix
|
./trilium.nix
|
||||||
./firefly.nix
|
./firefly.nix
|
||||||
|
./roundcube.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
51
sys/platforms/vps/srv/roundcube.nix
Normal file
51
sys/platforms/vps/srv/roundcube.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; {
|
||||||
|
services = {
|
||||||
|
nginx = {
|
||||||
|
virtualHosts."mail.posixlycorrect.com" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_headers_hash_max_size 512;
|
||||||
|
proxy_headers_hash_bucket_size 128;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
roundcube = {
|
||||||
|
enable = true;
|
||||||
|
hostName = "mail.posixlycorrect.com";
|
||||||
|
configureNginx = true;
|
||||||
|
maxAttachmentSize = 2048; #MB
|
||||||
|
plugins = [
|
||||||
|
"archive"
|
||||||
|
"attachment_reminder"
|
||||||
|
"carddav"
|
||||||
|
"contextmenu"
|
||||||
|
"custom_from"
|
||||||
|
"emoticons"
|
||||||
|
"enigma"
|
||||||
|
"hide_blockquote"
|
||||||
|
"managesieve"
|
||||||
|
"markasjunk"
|
||||||
|
"newmail_notifier"
|
||||||
|
"password"
|
||||||
|
"persistent_login"
|
||||||
|
"reconnect"
|
||||||
|
"show_additional_headers"
|
||||||
|
"userinfo"
|
||||||
|
"vcard_attachments"
|
||||||
|
"zipdownload"
|
||||||
|
];
|
||||||
|
|
||||||
|
dicts = with pkgs.aspellDicts; [
|
||||||
|
es
|
||||||
|
en
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue