Displaying 1 result from an estimated 1 matches for "conv_id".
Did you mean:
conn_id
2009 Aug 25
1
How to detect if the call is being answered by Voice Mail?
Hi,
I am pretty new to Asterisk. I am trying to make sure some human being
answers the phone not the voice mail machine. How can I programmatically
identify that?
Here is my Sub:
sub DialPhysician {
my ($self, $con, $PhysicianPhone, $call_id, $conv_id) = (@_);
to_log($self, "Inside Dial Physician", 2);
my $DocPhone = "1". $PhysicianPhone;
to_log($self, "Values: $DocPhone, $call_id, $conv_id", 2);
$self->agi->set_variable("STATE","NEXT");...