River Tarnell wrote:
> 
> If you use CGI::Carp with fatalsToBrowser in your Perl CGI tools, please
> remember that by default, the error message will instruct users to
> contact ts-admins if your tool breaks.  You need to change the error,
> like this:
> 
>       use CGI::Carp qw(fatalsToBrowser set_message);
>       set_message("Please mail [email protected] about this problem.");

Or just set $ENV{SERVER_ADMIN} to your e-mail address:

   BEGIN { $ENV{SERVER_ADMIN} = '[email protected]'; }
   use CGI::Carp qw(fatalsToBrowser);

-- 
Ilmari Karonen

_______________________________________________
Toolserver-l mailing list ([email protected])
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette

Reply via email to