mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
astroid: fix maildir folder paths
Using the absolute path of maildir folders is required for Astroid to save messages in those.
This commit is contained in:
parent
4505710565
commit
18dc4153c7
1 changed files with 2 additions and 2 deletions
|
@ -20,9 +20,9 @@ let
|
||||||
sendmail = astroid.sendMailCommand;
|
sendmail = astroid.sendMailCommand;
|
||||||
additional_sent_tags = "";
|
additional_sent_tags = "";
|
||||||
default = boolOpt primary;
|
default = boolOpt primary;
|
||||||
save_drafts_to = folders.drafts;
|
save_drafts_to = "${maildir.absPath}/${folders.drafts}";
|
||||||
save_sent = "true";
|
save_sent = "true";
|
||||||
save_sent_to = folders.sent;
|
save_sent_to = "${maildir.absPath}/${folders.sent}";
|
||||||
select_query = "";
|
select_query = "";
|
||||||
}
|
}
|
||||||
// optionalAttrs (signature.showSignature != "none") {
|
// optionalAttrs (signature.showSignature != "none") {
|
||||||
|
|
Loading…
Reference in a new issue