使用大量 MUA 和 nottoouch-addresses

使用大量 MUA 和 nottoouch-addresses

我尝试使用MUA很多使用nottoomuch-addresses.sh脚本自动完成地址,如下所述:http://alot.readthedocs.org/en/latest/configuration/contacts_completion.html

[[[abook]]]
      type = shellcommand
      command = nottoomuch-addresses.sh
      regexp = \"(?P<name>.+)\"\s*<(?P<email>.*.+?@.+?)>
      ignorecase = True

当我尝试在很多范围内自动完成时,它给了我错误消息: completition error: abook command "nottoomuch-addresses.sh" returned with return code 2

由于它只是一个脚本而不是 shell 命令,我尝试将整个 PATH 提供给脚本,并尝试将脚本移动到很多配置文件夹中,但问题仍然相同。

所以我想知道该怎么办。

答案1

这对我有用:

[[[abook]]]
type = shellcommand
command = nottoomuch-addresses.sh
regexp = '"(?P<name>.+?)" <(?P<email>.+?)>'
ignorecase = True

相关内容