Skip to content

Commit

Permalink
chore(mailserver): add plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Oct 25, 2023
1 parent 4580c77 commit 533bfc6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modules/common/types/server/services/mailserver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,25 @@ in {
services = {
roundcube = {
enable = true;

package = pkgs.roundcube.withPlugins (
plugins:
with plugins; [
persistent_login
# carddav
]
);

database.username = "roundcube";
maxAttachmentSize = 50;

dicts = with pkgs.aspellDicts; [en];

plugins = [
# "carddav"
"persistent_login"
];

# this is the url of the vhost, not necessarily the same as the fqdn of the mailserver
hostName = "webmail.${domain}";
extraConfig = ''
Expand Down

0 comments on commit 533bfc6

Please sign in to comment.