an address book is really useful
This commit is contained in:
parent
49c9cf0cae
commit
4048720e54
@ -17,6 +17,13 @@ prefer_plaintext = True
|
||||
sent_tags = inbox
|
||||
sign_by_default = True
|
||||
|
||||
[[[abook]]]
|
||||
type = shellcommand
|
||||
command = 'notmuch-abook.sh'
|
||||
regexp = '\[?{"name": "(?P<name>.*)", "address": "(?P<email>.+)", "name-addr": ".*"}[,\]]?'
|
||||
shellcommand_external_filtering = True
|
||||
|
||||
|
||||
[[ugent]]
|
||||
realname = Felix Van der Jeugt
|
||||
address = felix.vanderjeugt@ugent.be
|
||||
@ -28,6 +35,12 @@ prefer_plaintext = True
|
||||
sent_tags = inbox
|
||||
sign_by_default = True
|
||||
|
||||
[[[abook]]]
|
||||
type = shellcommand
|
||||
command = 'notmuch-abook.sh'
|
||||
regexp = '\[?{"name": "(?P<name>.*)", "address": "(?P<email>.+)", "name-addr": ".*"}[,\]]?'
|
||||
shellcommand_external_filtering = True
|
||||
|
||||
[bindings]
|
||||
|
||||
P = shellescape --thread True --refocus True notmuch\ new\ --quiet
|
||||
|
2
local/bin/notmuch-abook.sh
Executable file
2
local/bin/notmuch-abook.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
notmuch address --format=json --output=recipients --output=sender --deduplicate=address from:"$*" OR to:"$*" | rg -i "$*"
|
Loading…
Reference in New Issue
Block a user