Multiple mail id's for the RTAddressRegexp

Hello,

Can I set multiple mail id’s for the below mentioned settings to avoid
loopback in RT?

Set($RTAddressRegexp , ‘^xxx@yyy.com$’);

If yes how can I proceed?

Thanks

Manohar

Can I set multiple mail id’s for the below mentioned settings to avoid loopback in RT?

Set($RTAddressRegexp , ‘^xxx@yyy.com$’);

If yes how can I proceed?

It is just a perl regexp, so yes. You can read more about them by
checking perldoc perlre or googling ‘perl regexp’.

‘^(?:foo@example.com|baz@example.com)$’

-kevin