I'm trying to setup an alert that emails a notice to an address similar to #group@domain.com, but the system complains that it is an invalid email. RFC's 5321, 5322, and RFC 3696 all are very clear about which characters are valid email addresses, and '#' is all over the place in those lists.For example, p.5 of RFC 3696 says that...
Without quotes, local-parts may consist of any combination of alphabetic characters, digits, or any of the [following] special characters:
! # $ % & ' * + - / = ? ^ _ ` . { | } ~
So, in the current version of Orion Platform's web alerting, how do we address valid smtp email addresses that include non-alphanumeric characters? The RFC states that using standard regex escape characters or quoting the local-part is the accepted method to accomplish this, but I couldn't get that to work, either.