Hi guys,
The RSS Feeds fail if the email address contains a - in the domain
I have fixed this in my install by updating line 302 of
coldbox/system/web/feeds/SharedGenerator.cfc
to have the regex:
^(\w+.)\w+@((((\d{1,2})|(1\d{2})|(2[0-4]\d)|(25[0-5])).){3}((\d{1,2})|(1\d{2})|(2[0-4]\d)|(25[0-5]))|([\w-]+.)+[A-Za-z]+)( (.))?$
The change I made in bold, I replaced the \w+ with [\w-]+
I don’t have the code checked out to request a pull request so hoping someone else could do this
Cheers