mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
da92196a95
This has no effect if the user does not have any aliases defined for any accounts. This will also only add `--my-address=` to only accounts that are enabled to be tracked by mu.
24 lines
532 B
Nix
24 lines
532 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
mu.enable = true;
|
|
aliases = [ "foo@example.com" ];
|
|
};
|
|
};
|
|
|
|
programs.mu.enable = true;
|
|
|
|
test.stubs.mu = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContains activate \
|
|
'if [[ ! -d "/home/hm-user/.cache/mu" ]]; then'
|
|
|
|
assertFileContains activate \
|
|
'$DRY_RUN_CMD mu init --maildir=/home/hm-user/Mail --my-address=hm@example.com --my-address=foo@example.com $VERBOSE_ARG;'
|
|
'';
|
|
}
|