Unverified Commit 284288c3 authored by Katalin Rebhan's avatar Katalin Rebhan
Browse files

nixosTests.gitlab: fixup for new dovecot module

parent a01f198b
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ in

  nodes = {
    gitlab =
      { ... }:
      { config, ... }:
      {
        imports = [ ../common/user-account.nix ];

@@ -75,7 +75,14 @@ in

        services.dovecot2 = {
          enable = true;
          enableImap = true;
          enablePAM = true;
          settings = {
            dovecot_config_version = "2.4.3";
            dovecot_storage_version = config.services.dovecot2.package.version;
            protocols.imap = true;
            mail_driver = "maildir";
            mail_path = "~/mail";
          };
        };

        systemd.services.gitlab-backup.environment.BACKUP = "dump";