I’ve had an Asterisk project on hold for a while now, but am picking back up on it. I had to re-do lots of config and such…now I get this error when a call file is moved into /var/spool/asterisk/outgoing
ERROR[4915] pbx.c: Received invalid event that had no device IE
My voip provider is voipvoip.com. Below is an example of my sip.conf and my extensions.conf as well as my .call file. Can someone look these over and tell me what I’m screwing up?
sip.conf:
I put this under [general]
register=>5555555555:XXXXXXXX@sip3.voipvoip.com/5555555555 (where my account number replaces 5555555555 and my password replaces XXXXXXXX)
I appended this to the end of sip.conf:
[voipvoip]
defaultuser=5555555555 (my actual account number replaces 5555555555)
type=peer
qualify=yes
secret=XXXXXXXX (my actual password replaces these XXXXXXXX)
nat=auto
host=sip3.voipvoip.com
fromuser=5555555555 (again, my actual account number/username replaces these 5’s)
fromdomain=sip3.voipvoip.com
dtmfmode=rfc2833
disallow=all
allow=g729
allow=ilbc
allow=ulaw
allow=alaw
extensions.conf:
I appended this to the end of extensions.conf
[test]
exten => s,1,Wait(1)
exten => s,n,Answer
exten => s,n,Set(TIMEOUT(digit)=5)
exten => s,n,Set(TIMEOUT(response)=10)
exten => s,n,Playback(test)
exten => s,n,Hangup
my .call file:
Channel: sip/voipvoip/5555555555 (my account number replaces the 5’s)
Maxretries: 5
Retrytime: 300
Application: Playback
Data: test
Waittime: 40
Alright, that’s about all I can think of to put in the post. I’m sure that somewhere I’m doing something stupid. Please help.