Displaying 1 result from an estimated 1 matches for "kapitan".
Did you mean:
capitan
2005 Jul 18
0
why $cdr{'CALLERID'} and $cdr{'DNID'} are empty in perl agi connected with asterisk manager
...D and
CALLERID are empty
here is the code i am using with asterisk-CVS
#!/usr/bin/perl
#
# Based on http://mail.newmmc.com/~wsmith/astcdr
author is unknown,
# found here
http://www.voip-info.org/wiki-Asterisk+AGI
#
# RADIUS Accounting By
# (c)2004 Porta Software Ltd. www.portaone.com
# Oleksandr Kapitanenko <kapitan@portaone.com>
#
use strict;
use Asterisk::Manager;
use Sys::Syslog;
use POSIX;
use Config::IniFiles;
use Authen::Radius;
Authen::Radius->load_dictionary;
# Lock file
#
my $lock_file = '/var/run/ast-rad-acc.pid';
# Config vars
#
my $runas_user = 'nobody';
my...