[Rt-commit] r19904 - in rt/3.8/trunk: .
ruz at bestpractical.com
ruz at bestpractical.com
Thu Jun 4 17:29:03 EDT 2009
Author: ruz
Date: Thu Jun 4 17:29:02 2009
New Revision: 19904
Modified:
rt/3.8/trunk/UPGRADING
rt/3.8/trunk/etc/RT_Config.pm.in
Log:
* WebNoAuthRegex by default matches any /NoAuth/ in the path,
not only leading or REST
Modified: rt/3.8/trunk/UPGRADING
==============================================================================
--- rt/3.8/trunk/UPGRADING (original)
+++ rt/3.8/trunk/UPGRADING Thu Jun 4 17:29:02 2009
@@ -19,6 +19,11 @@
*******
+UPGRADING FROM 3.8.3 and earlier - Changes:
+
+Default value of WebNoAuthRegex option in the config now matches any path
+that has '/NoAuth/' substring, so extensions can avoid overriding it.
+
UPGRADING FROM 3.8.2 and earlier - Changes:
New scrip condition 'On Reject'.
Modified: rt/3.8/trunk/etc/RT_Config.pm.in
==============================================================================
--- rt/3.8/trunk/etc/RT_Config.pm.in (original)
+++ rt/3.8/trunk/etc/RT_Config.pm.in Thu Jun 4 17:29:02 2009
@@ -849,11 +849,14 @@
=item C<$WebNoAuthRegex>
-What portion of RT's URLspace should not require authentication.
+What portion of RT's URL space should not require authentication.
+
+This is mostly for extension and doesn't mean RT will work without
+login if you change it.
=cut
-Set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
+Set($WebNoAuthRegex, qr{ /NoAuth/ }x );
=item C<$SelfServiceRegex>
More information about the Rt-commit
mailing list