[rt-users] to: undisclosed recipients

Alan Barrett apb at cequrux.com
Mon Mar 29 10:21:22 EST 2004


On Mon, 29 Mar 2004, Anne Ramey wrote:
> Thanks, I found it, but how do I set
> 
> Set($RTAddressRegexp , '^ops\@example.com$');
> 
> to more than 1 value?  I have 2 addresses that forward to different 
> queues, and will soon have more.

It's a string that contains a perl regular expression.  See the perlre
man page for information about the regular expression syntax.  There are
many ways to make a regular expression match multiple values.

For example, you could use something like this:

Set($RTAddressRegexp , '^(ops|support|help)\@example\.com$');

or like this:

Set($RTAddressRegexp , '^(ops\@example\.com|help\@another\.example\.com)$');

--apb (Alan Barrett)



More information about the rt-users mailing list