diff options
-rwxr-xr-x | bin/tagmail | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/tagmail b/bin/tagmail index f7836b1..bd58d40 100755 --- a/bin/tagmail +++ b/bin/tagmail @@ -182,9 +182,7 @@ (display (colorize-string "[Inbox]\n" 'BOLD 'YELLOW)) (let* ((my-emails (list "hi@oscarnajera.com" "hello@oscarnajera.com" "najera.oscar@gmail.com" "on@mathias-kettner.de" "oscar.najera@tribe29.com")) - (sent (format #f "(~A) AND NOT (~A)" - (format #f "~{from:~a~^ OR ~}" my-emails) - (format #f "~{to:~a~^ OR ~}" my-emails)))) + (sent (format #f "(~{from:~a~^ OR ~}) AND NOT (~:*~{to:~a~^ OR ~})" my-emails))) (notmuch-tag options ffi-db `(("+sent" ,sent "Emails I have sent") ("+inbox" "*" "Inbox for the rest")) #t))) |