MyNixOS website logo
option

services.dovecot2.mailPlugins

Additional entries to add to the mail_plugins variable, globally and per protocol.

Declarations
Type
submodule
Default
{
  globally = {
    enable = [ ];
  };
  perProtocol = { };
}
Example
{
  globally = {
    enable = [
      "acl"
    ];
  };
  perProtocol = {
    imap = {
      enable = [
        "imap_acl"
      ];
    };
  };
}