2019-02-05 07:03:04 +01:00
|
|
|
pkgs:
|
2018-08-06 12:05:46 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options.alot = {
|
|
|
|
sendMailCommand = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
description = ''
|
|
|
|
Command to send a mail. If msmtp is enabled for the account,
|
|
|
|
then this is set to
|
|
|
|
<command>msmtpq --read-envelope-from --read-recipients</command>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-02-05 07:03:04 +01:00
|
|
|
contactCompletion = mkOption {
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
default = {
|
|
|
|
type = "shellcommand";
|
|
|
|
command = "'${pkgs.notmuch}/bin/notmuch address --format=json --output=recipients date:6M..'";
|
|
|
|
regexp =
|
|
|
|
"'\[?{"
|
|
|
|
+ ''"name": "(?P<name>.*)", ''
|
|
|
|
+ ''"address": "(?P<email>.+)", ''
|
|
|
|
+ ''"name-addr": ".*"''
|
|
|
|
+ "}[,\]]?'";
|
|
|
|
shellcommand_external_filtering = "False";
|
|
|
|
};
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
type = "shellcommand";
|
|
|
|
command = "abook --mutt-query";
|
|
|
|
regexp = "'^(?P<email>[^@]+@[^\t]+)\t+(?P<name>[^\t]+)'";
|
|
|
|
ignorecase = "True";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Contact completion configuration as expected per alot.
|
|
|
|
See <link xlink:href="http://alot.readthedocs.io/en/latest/configuration/contacts_completion.html">alot's wiki</link> for
|
|
|
|
explanation about possible values.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-08-06 12:05:46 +02:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra settings to add to this Alot account configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.notmuch.enable {
|
|
|
|
alot.sendMailCommand = mkOptionDefault (
|
|
|
|
if config.msmtp.enable
|
2018-11-12 21:59:02 +01:00
|
|
|
then "msmtpq --read-envelope-from --read-recipients"
|
2018-08-06 12:05:46 +02:00
|
|
|
else null
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|