Replying to @⁨lain@lain.com⁩

@lain No worries, there are quick ways to solve my issue
$ for message_id in $(notmuch search --output=messages tag:pleromagit and tag:unread and date:today); do
if [ -n "$(echo ${message_id} | grep 'pleroma/pleroma/issues/[0-9].*/close')" ]; then
if [ -n "$(notmuch show ${message_id} | grep '\*@lambadalambda\* closed')" ]; then
notmuch tag -unread ${message_id}
fi
fi
done