Displaying 1 result from an estimated 1 matches for "call_file_name".
Did you mean:
  ca_file_name
  
2005 Jul 10
1
VM Outcall: Rube Goldberg Edition
...e =~ /.*notify=(\d+)/;
         if(!defined($dial_dest)) {
           exit(0);
         }
         close($vm_conf_file_handle);
         # If there's already a .call file for this mailbox then don't 
do anything.
         # If there isn't already a .call file then create it.
         #$call_file_name = "/tmp/" . $vm_box . ".call";
         $call_file_name = "/var/spool/asterisk/outgoing/" . $vm_box . 
".call";
         if(!sysopen($call_file_handle, "$call_file_name", 
O_WRONLY|O_CREAT|O_EXCL)) {
           exit(0);
         }
         flock($ca...