X-Git-Url: https://git.madduck.net/etc/mailfilter.git/blobdiff_plain/5950d5c4e05d47338e97a80dfa0909bf9c870ee5..0c16b401e7aa24c05c875f709707f438713552fb:/bin/list-postponed-messages diff --git a/bin/list-postponed-messages b/bin/list-postponed-messages index d0ee1af..44cfa9d 100755 --- a/bin/list-postponed-messages +++ b/bin/list-postponed-messages @@ -61,7 +61,7 @@ for i in $maildirs; do echo "$d/cur/" done \ | xargs -I {} find {} -type f \ - | xargs grep '^X-Postponed:' \ + | xargs grep --with-filename --text --max-count=150 '^X-Postponed:' \ | while read i; do f="${i%:X-Postponed:*}" ts="${i#*:X-Postponed: }"; ts="${ts%% *}" @@ -70,4 +70,4 @@ done \ [ $timestamp -eq 1 ] && echo -n "$ts " echo "$f" fi - done + done