diff options
author | ivan <ivan> | 2008-05-28 10:42:28 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-05-28 10:42:28 +0000 |
commit | e3a7e3f605ea6a35ce900b684a294ce04793d550 (patch) | |
tree | 38e1f6a28ac8d007e8f1ae64325758050535ae42 /htetc | |
parent | 8f8c09482cc99a40bd1cf1be0597b27d2781789c (diff) |
mailgate realiability fix: don't bomb out when FS dbdef hasn't been initialized yet
Diffstat (limited to 'htetc')
-rw-r--r-- | htetc/handler.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index 9a4f4395c..9740c62fa 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -269,7 +269,10 @@ sub handler } 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'?? + + ##old installs w/fs_selfs or selfserv?? + #&adminsuidsetup('fs_selfservice'); + &adminsuidsetup('fs_queue'); } |