X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Fetc%2FRT_Config.pm.in;h=37a2c17bb333bcb1e591c606df9ed7ede52c5899;hb=32da33792be36b93ce982e9191aaa305d697e1e9;hp=cf089fb8d012e571c4156fd8e8c1e69b8c18b143;hpb=7ae1187b1e4665a6c68bef5d957542d80d835b5d;p=freeside.git diff --git a/rt/etc/RT_Config.pm.in b/rt/etc/RT_Config.pm.in index cf089fb8d..37a2c17bb 100644 --- a/rt/etc/RT_Config.pm.in +++ b/rt/etc/RT_Config.pm.in @@ -360,6 +360,13 @@ Set($LogoURL , $WebImagesURL . "bplogo.gif"); Set($WebNoAuthRegex, qr!^/rt(?:/+NoAuth/| /+REST/\d+\.\d+/NoAuth/)!x ); +# SelfServiceRegex - What portion of RT's URLspace should +# be accessible to Unprivileged users +# This does not override the redirect from /Ticket/Display.html +# to /SelfService/Display.html when Unprivileged +# users attempt to access ticked displays +Set($SelfServiceRegex, qr!^(?:/+SelfService/)!x ); + # For message boxes, set the entry box width and what type of wrapping # to use. # @@ -414,6 +421,13 @@ Set($WebExternalGecos , undef); Set($WebExternalAuto , undef); +# If $WebExternalAuto is true, this will be passed to User's +# Create method. Use it to set defaults, such as creating +# Unprivileged users with { Privileged => 0 } +# Must be a hashref of arguments + +Set($AutoCreate, undef); + # $WebSessionClass is the class you wish to use for managing Sessions. # It defaults to use your SQL database, but if you are using MySQL 3.x and # plans to use non-ascii Queue names, uncomment and add this line to @@ -542,8 +556,11 @@ Set($EmailOutputEncoding , 'utf-8'); Set($DateDayBeforeMonth , 1); -# Should "Tuesday" default to meaning "Next Tuesday" or "Last Tuesday"? -# Set to 0 for "Next" or 1 for "Last". +# Should an unspecified day or year in a date refer to a future or a +# past value? For example, should a date of "Tuesday" default to mean +# the date for next Tuesday or last Tuesday? Should the date "March 1" +# default to the date for next March or last March? +# Set to 0 for the next date or 1 for the last date. Set($AmbiguousDayInPast , 1);