Currently delivery of mails is broken. There's some work to be done in accounts.nix. But once done this should (I think) support all the use cases desired.
10 lines
178 B
Nix
10 lines
178 B
Nix
{
|
|
config = {
|
|
services.dovecot2.protocols = [ "sieve" ];
|
|
services.roundcube.extraConfig = ''
|
|
$config['plugins'] = [
|
|
'managesieve',
|
|
];
|
|
'';
|
|
};
|
|
}
|