What is WebNoAuthRegex?

Okay, I’m not sure whether I need to use it or not, but I’d like to find out what WebNoAuthRegex does and/or how it would be used.

There’s next to no documentation on it - RT Essentials just has the same as the Config file
"What portion of RT’s URLspace should not require authentication."
It’s not mentioned at all on the wiki.

I’m v familiar with regexes, so you needn’t explain them.

thanks,
Christopher

Okay, I’m not sure whether I need to use it or not, but I’d like to find
out what WebNoAuthRegex does and/or how it would be used.

If an URL matches $WebNoAuthRegex, it doesn’t require authentication

The default is fixed in RT_Config.pm :

WebNoAuthRegex - What portion of RT’s URLspace should not require

authentication.

Set($WebNoAuthRegex, qr!^(?:/+NoAuth/|
/+REST/\d+.\d+/NoAuth/)!x );

It’s handled in html/autohandler