Displaying 2 results from an estimated 2 matches for "webdial".
Did you mean:
webdav
2007 Jul 17
1
asterisk web interface
hi there ppl :D
i'm a happy and very gratefull asterisk user, newest version, on a debian machine (stable) i also
have tried asterisknow and freepbx etc, but i want to have a website, which offer the following:
# Integrated Web Dialer (Click-to-Dial)
# Workgroup Answering Machine
# Monitor recent call history (CDR)
# Listen/manage voicemail
# Monitor incoming calls and call history of
2007 Oct 14
1
Problem: features (from features.conf) not available if call was originated by manager API or call file
...1
(the Context doCallBackVolkerStage2 will run DISA).
and that's the PHP code orgiginating the calls:
$socket = fsockopen("127.0.0.1","5038", $errno, $errstr, $timeout);
fputs($socket, "Action: Login\r\n");
fputs($socket, "UserName: webdial\r\n");
fputs($socket, "Secret: XXXXXX\r\n\r\n");
fputs($socket, "Action: Originate\r\n");
fputs($socket, "Channel: $channel\r\n");
fputs($socket, "Exten: $tonumber\r\n");
fputs($socket, "CallerID: $callerid\r\...