depot/third_party/home-manager/tests/modules/programs/getmail/getmail.nix
Default email a0869759be Project import generated by Copybara.
GitOrigin-RevId: ac319fd3149b23a3ad8ee24cb2def6e67acf194c
2021-07-03 00:36:30 +02:00

26 lines
561 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
imports = [ ../../accounts/email-test-accounts.nix ];
config = {
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/getmailrc
assertFileContent home-files/.getmail/getmailrc ${./getmail-expected.conf}
'';
};
}