Hi, I'm trying to write a body rule that will catch an email exactly containing any number of characters up to 15, followed by a URI, followed by any number of characters, up to 15. My attempt has failed miserably, and hoped someone could help.
body LOC_SHORT_BODY_URI m{^.{0,15}(https?://.{1,50}).{0,15}$} This catches pretty much everything and I can't figure out why. Any help on how to do this more efficiently and effectively would be greatly appreciated. Thanks, Alex