From 1499b85ac6c722793d6f7215f4f1fc4f83106439 Mon Sep 17 00:00:00 2001 From: paumr Date: Thu, 8 Aug 2019 14:45:55 +0200 Subject: [PATCH] alot: added send/draf_box to configuration file --- modules/programs/alot.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/programs/alot.nix b/modules/programs/alot.nix index 341bb04a9..32796b1cf 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;