Displaying 1 result from an estimated 1 matches for "02xxx89127".
2004 Jun 21
0
A Callback AGI script
...s any
services you want (=> voicemail...)
If you would like to comment it, do not hesitate !
--------------------------------
[root@asterisk1]# cat /var/lib/asterisk/agi-bin/callback.py
#!/usr/bin/env python
import sys
context="incoming"
extension="300"
canal = "CAPI/02xxx89127:"+sys.argv[1]
cf = open("/var/spool/asterisk/outgoing/"+sys.argv[1]+".call",'w+')
cf.write("Channel:"+canal+"\nMaxRetries:2\ncontext:"+context+"\nextension:"+extension+"\npriority:1\nRetryTime:10\nWaitTime:20\n")
[root@aster...