2022-02-22 04:24:27 +01:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
|
|
|
|
accounts.email.accounts = {
|
|
|
|
"hm@example.com" = {
|
|
|
|
mu.enable = true;
|
|
|
|
aliases = [ "foo@example.com" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.mu.enable = true;
|
|
|
|
|
2023-08-09 18:40:43 +02:00
|
|
|
test.stubs.mu = { name = "mu"; };
|
2022-02-22 04:24:27 +01:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileContains activate \
|
|
|
|
'if [[ ! -d "/home/hm-user/.cache/mu" ]]; then'
|
|
|
|
|
|
|
|
assertFileContains activate \
|
2024-01-13 23:15:00 +01:00
|
|
|
'run @mu@/bin/mu init --maildir=/home/hm-user/Mail --my-address=hm@example.com --my-address=foo@example.com $VERBOSE_ARG;'
|
2022-02-22 04:24:27 +01:00
|
|
|
'';
|
|
|
|
}
|