You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mailq does export a nice machine-readable format. The problem is that the regex is very strict and would
work if changed from /\s[\w\d]{6}-[\w\d]{11}-[\w\d]{4}\s/ to /\s\S+\s/. So it's basically a matter of taste.
old line 500:
if (/\s[\w\d]{6}-[\w\d]{6}-[\w\d]{2}\s/) { # message id 19aEEr-0007hx-Dy
new:
if (/\s[\w\d]{6}-[\w\d]{11}-[\w\d]{4}\s/) { # message id 1sCwkT-00000000Ajj-3Yfg
I'll try to submit it as pull request 8-}, still learning 8-)
The text was updated successfully, but these errors were encountered: