aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/alot.nix
diff options
context:
space:
mode:
authorpaumr <paum@bdisk.eu>2019-08-08 14:45:55 +0200
committerMatthieu Coudron <coudron@iij.ad.jp>2019-08-16 16:27:28 +0900
commit1499b85ac6c722793d6f7215f4f1fc4f83106439 (patch)
tree3ab57ce7ba207382825b8d64812963143503bc1b /modules/programs/alot.nix
parentfcdab6a62df47e0b23ef9bd0e4ff2a9452277f71 (diff)
alot: added send/draf_box to configuration file
Diffstat (limited to 'modules/programs/alot.nix')
-rw-r--r--modules/programs/alot.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/programs/alot.nix b/modules/programs/alot.nix
index 341bb04a98e..32796b1cf1b 100644
--- a/modules/programs/alot.nix
+++ b/modules/programs/alot.nix
@@ -21,6 +21,8 @@ let
realname = realName;
sendmail_command =
optionalString (alot.sendMailCommand != null) alot.sendMailCommand;
+ sent_box = "maildir" + "://" + maildir.absPath + "/" + folders.sent;
+ draft_box = "maildir" + "://"+ maildir.absPath + "/" + folders.drafts;
}
// optionalAttrs (aliases != []) {
aliases = concatStringsSep "," aliases;