aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/getmail/getmail.nix
blob: fe10b98f98105a18d35c73d5d3eef97cefcc12fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config, lib, pkgs, ... }:

with lib;

{
  imports = [ ../../accounts/email-test-accounts.nix ];

  config = {
    home.username = "hm-user";
    home.homeDirectory = "/home/hm-user";

    accounts.email.accounts = {
      "hm@example.com" = {
        getmail = {
          enable = true;
          mailboxes = [ "INBOX" "Sent" "Work" ];
          destinationCommand = "/bin/maildrop";
          delete = false;
        };
        imap.port = 993;
      };
    };

    nmt.script = ''
      assertFileExists home-files/.getmail/getmailhm@example.com
      assertFileContent home-files/.getmail/getmailhm@example.com ${
        ./getmail-expected.conf
      }
    '';
  };
}