ticket_mail_send

one of the documented procedures in this installation of the ACS
Usage:
ticket_mail_send   addresses
What it does:
This will override the adressees if the parameter TicketMailTester is non-empty.
Defined in: /web/philip/tcl/ticket-defs.tcl

Source code:

 
    set ticket_mail_tester [ad_parameter TicketMailTester ticket ""]
    if {![empty_string_p $ticket_mail_tester]} { 
        return $ticket_mail_tester
    } else { 
        return $addresses
    }


philg@mit.edu