summaryrefslogtreecommitdiff
path: root/htetc/handler.pl
diff options
context:
space:
mode:
authorivan <ivan>2008-05-28 10:41:21 +0000
committerivan <ivan>2008-05-28 10:41:21 +0000
commit484e9cb891ba36b2ca4ec63575602d4434b13545 (patch)
tree890d8d1f2bda16db32777dbf4f6270f435798530 /htetc/handler.pl
parent85c516c6a894772e101d24a16ad2f4df978c0f7f (diff)
mailgate realiability fix: don't bomb out when FS dbdef hasn't been initialized yet
Diffstat (limited to 'htetc/handler.pl')
-rw-r--r--htetc/handler.pl14
1 files changed, 9 insertions, 5 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 92564350e..a4517e66a 100644
--- a/htetc/handler.pl
+++ b/htetc/handler.pl
@@ -289,16 +289,20 @@ sub handler
};
- #is this conditional a bad idea entirely, hmm
- unless (
- $HTML::Mason::r->filename =~ /\/rt\/.*NoAuth/ #RT images/JS
- && $HTML::Mason::r->filename !~ /\/rt\/REST\// #but NOT mail gw
- ) {
+ if ( $HTML::Mason::r->filename !~ /\/rt\/.*NoAuth/ ) { #not RT images/JS
+
$cgi = new CGI;
&cgisuidsetup($cgi);
#&cgisuidsetup($r);
$p = popurl(2);
$fsurl = rooturl();
+
+ } elsif ( $HTML::Mason::r->filename =~ /\/rt\/REST\/.*NoAuth/ ) {
+
+ #need to log somebody in for the mail gw
+ #&adminsuidsetup('fs_selfservice'); #old installs w/'fs_selfserv'??
+ &adminsuidsetup('fs_queue');
+
}
sub include {