Hello,
I’m currently integrating asterisk with goip gateway which is working perfectly. Now I need to add a functionality which is able to send and receive sms to/from asterisk. The goip gateway does the work of receiving sms also, there is something called : “sms to voip” , it forwards the received messages to whichever extension you need to go through (11 in my example).
The fact is : when I send an sms from my gsm mobile, the voip gateway receives it and forward it to the extension mentioned (11) on the field sms to voip but, strangely that extension starts to ring instead of receiving a message! It’s like this context created on extensions_custom. Conf is bypassed :
exten => _X.,1,NoOp({EXTEN:0})** same => n,noop(“message”) **same => n,noop({MESSAGE(body)})
same => n,Messagesend(pjsip:11,${MESSAGE(body):1:11})
I also want to tell that the internal messages between extensions are working, the problem is between goip and asterisk even the sending or the receiving of messages.
I know that this kind of configuration is not standard and I have to program it, if someone has an idea it will be very helpful.
Thank you.