How can I make Procmail match an email address which always has 4 numbers in it?
e.g.
1234@mydomain.com
I have read that procmail does not support the modern extended regular expression implementations of repetition, such as
^To:.[0123456789]{4}@mydomain.com$
So how else would I do it?
Thanks.