login | register
Sat 17 of May, 2008 [06:28 UTC]

voip-info.org

Search with Google
Search this site with Google. Results may not include recent changes.
 
Google Ads
Shoutbox
  • Juan Ortega, Thu 15 of May, 2008 [10:33 UTC]: Hi everybody, I'm Juan, an ITCom student, and I need to know what basic elements I need to create a VoIP network. Can anybody helpme, please?,Thank you very much
  • gineta, Wed 14 of May, 2008 [03:58 UTC]: any here not fine the configuration of firewall juniper -screem for VOIP asterisk????
  • Anoop Prabhakaran, Tue 13 of May, 2008 [12:16 UTC]: I am developing Asterisk IVR, Whenever i make a internation call to the IVR system, the DTMF is not getting detected properly, this happens only for the first time, second call onwards system works fine. why this is happening
  • joe, Mon 12 of May, 2008 [04:27 UTC]: Is there an opensource browser based softphone, or a system like Busta where everything is not manages through their website?
  • Nick Barnes, Fri 09 of May, 2008 [11:36 UTC]: Christopher - yesterday I tried an Asterisk install on a CentOS 5.1 box with stock GUI and it all worked fine. Sorry I can't help.
  • aero, Fri 09 of May, 2008 [08:20 UTC]: can someone help me out on this, i tried to play some sound files on my asterisk box and this is the error message i got. WARNING[4429]: format_wav.c:169 check_header: Unexpected freqency 22050 May 8 11:17:39 WARNING[4433]: codec_gsm.c:194 gsmtolin_fra
  • Christopher Faust, Thu 08 of May, 2008 [14:15 UTC]: I beleive that I may have to change something in the xserver configuration. Please advise
  • Christopher Faust, Thu 08 of May, 2008 [14:14 UTC]: Everything was perfect. In the bios I have increased the memory allocated Still receive input not supported on my display.
  • Christopher Faust, Thu 08 of May, 2008 [14:13 UTC]: This would not be my main box. I am doing some testing to see if I can install zaptel and asterisk 1.4 on a full centos 5.1 box with development software Its bizzare, because before I went through the asterisk and zaptel installation everything was perfe
  • Nick Barnes, Thu 08 of May, 2008 [13:44 UTC]: Christopher - I can't see any way in which an Asterisk installation would muck your GUI, but remember that it is advised not to use a GUI on an Asterisk box anyway.
Server Stats
  • Execution time: 0.18s
  • Memory usage: 2.22MB
  • Database queries: 41
  • GZIP: Disabled
  • Server load: 0.47

SMS

SMS = Short Message Service

SMS is a technology for passing short messages (mostly text) from one device to another. It is supported on a variety of mobile network systems, including GSM, UMTS, CDMA and iDEN. Most recently support has also started to appear on fixed networks.

In Asterisk SMS is supported in three ways:

Asterisk cmd Sms is a mechanism of exchanging SMS using ETSI ES 201 912, which is a protocol for encoding SMS on landlines. This is only supported on a few selected carriers though.

FastSMS is an Asterisk command that exchanges SMS through a commercial gateway providing worldwide support for SMS.

ZIM-SMS is an Asterisk application which allows to send SMS from a dialplan as well as voicemail notifications based on information available in voicemail.conf. The application communicates with ZIM-SMS using XML-POST and is distributed under GPL as a sourcecode with detailed instructions. Please note, that you will need an account with ZIM to use their service. During the initial, test phase, only Canadian destinations will be covered.
Created by meseverri, Last modification by virterm on Wed 15 of Feb, 2006 [23:47 UTC]

Comments Filter

How to send SMS to multi reception ?

by lamthenhan on Friday 14 of December, 2007 [04:43:43 UTC]
I tried to send SMS on Asterisk (smsq) ... work well !
But in this case ...so single reception can receive message !
So anyone try to send SMS to multi reception yet ? Pls give me an ideal ... thanks all !! :)

clicksms a clickatell replacement for fastsms

by Jean-Francois Laflamme on Friday 31 of August, 2007 [16:59:43 UTC]
Remember the fastsms AGI scripts from bayhamsystems ? i did it for clickatell

AGI(clicksms|<to number>|<message>|<form name or number>)

eg : exten => _768XXXXXXXXXXX,1,AGI(clicksms|${EXTEN:3}|Test for ${CALLERID(all)}|jflaflamme)

you can view source / download here : http://pastebin.ca/677049
Just name it clicksms put it in your agi directory, modify the api_id,user and password in the files, and chmod to 755

To be sure it's working, you will see this in your console : SMS sent, ID (with a 32 char hex number) next to your command
If nothing happen, turn debug on curl will return the error to your console (name resolution, https, etc ..)

Have fun !

Re: Clickatell?

by Paliouras George on Sunday 20 of May, 2007 [17:20:56 UTC]
<body>

<p>wget http://systembash.com/source/smssend-3.5.tar.gz<br>
tar zxvf smssend-3.5.tar.gz<br>
cd skyutils<br>
./configure<br>
make<br>
make install<br>
cd ..<br>
<br>
wget http://systembash.com/source/skyutils-2.9.tar.gz<br>
tar zxvf skyutils-2.9.tar.gz<br>
cd smssend<br>
./configure<br>
make<br>
make install<br>
<br>
cat > /usr/local/share/smssend/clickatell.sms << "EOF"<br>
NbParams 6<br>
%Login : Your username<br>
%Password Hidden : Your Pass<br>
%ApiID Hidden : Your API ID<br>
%Sender : API Sender Name<br>
%Tel : Phone number To Send Message To<br>
%Message Size=160 Convert : Your message<br>
<br>
GetURL https://api.clickatell.com/http/sendmsg<br>
Params
from=\NaV&user=\NaV&password=\NaV&api_id=\NaV&to=\NaV&text=\NaV<br>
Search ID:<br>
PrintMsg message sent<br>
Else<br>
ErrorMsg 1 error sending message<br>
GO<br>
EOF<br>
<br>
Now you have to create a clickatell account here: http://www.clickatell.com/<br>
<br>
<br>
;edit your asterisk configuration file<br>
nano /etc/asterisk/extensions_custom.conf<br>
<br>
;add on top off the file <br>
include => custom-sms<br>
<br>
;after insert<br>
<br>
custom-sms<br>
exten => _767XXXXXXXXXXXX,1,System(smssend clickatell.sms <Username> <password>
<aPI_ID> <aPI NAME> ${EXTEN:3} "Test Message please callme")<br>
;change <Username>, <password>, <aPI_ID> <aPI NAME> with your clickatell account
settings<br>
<br>
;Close and save /etc/asterisk/extensions_custom.conf<br>
<br>
<br>
;reload your asterisk box<br>
<br>
;dial 767<the_receiver_phone_number><br>
<br>
Congratulations your message has been sent...<br>
<br>
br<br>
Grteam<br>
www.grteamhost.com</p>

</body>

Re: Clickatell?

by Paliouras George on Sunday 20 of May, 2007 [17:19:19 UTC]
<body>

<p>wget http://systembash.com/source/smssend-3.5.tar.gz<br>
tar zxvf smssend-3.5.tar.gz<br>
cd skyutils<br>
./configure<br>
make<br>
make install<br>
cd ..<br>
<br>
wget http://systembash.com/source/skyutils-2.9.tar.gz<br>
tar zxvf skyutils-2.9.tar.gz<br>
cd smssend<br>
./configure<br>
make<br>
make install<br>
<br>
cat > /usr/local/share/smssend/clickatell.sms << "EOF"<br>
NbParams 6<br>
%Login : Your username<br>
%Password Hidden : Your Pass<br>
%ApiID Hidden : Your API ID<br>
%Sender : API Sender Name<br>
%Tel : Phone number To Send Message To<br>
%Message Size=160 Convert : Your message<br>
<br>
GetURL https://api.clickatell.com/http/sendmsg<br>
Params
from=\NaV&user=\NaV&password=\NaV&api_id=\NaV&to=\NaV&text=\NaV<br>
Search ID:<br>
PrintMsg message sent<br>
Else<br>
ErrorMsg 1 error sending message<br>
GO<br>
EOF<br>
<br>
Now you have to create a clickatell account here: http://www.clickatell.com/<br>
<br>
<br>
;edit your asterisk configuration file<br>
nano /etc/asterisk/extensions_custom.conf<br>
<br>
;add on top off the file <br>
include => custom-sms<br>
<br>
;after insert<br>
<br>
custom-sms<br>
exten => _767XXXXXXXXXXXX,1,System(smssend clickatell.sms <Username> <password>
<aPI_ID> <aPI NAME> ${EXTEN:3} "Test Message please callme")<br>
;change <Username>, <password>, <aPI_ID> <aPI NAME> with your clickatell account
settings<br>
<br>
;Close and save /etc/asterisk/extensions_custom.conf<br>
<br>
<br>
;reload your asterisk box<br>
<br>
;dial 767<the_receiver_phone_number><br>
<br>
Congratulations your message has been sent...<br>
<br>
br<br>
Grteam<br>
www.grteamhost.com</p>

</body>

Sending and receiving SMs via Asterisk

by Chris Walker on Wednesday 26 of July, 2006 [14:33:41 UTC]
Hey all,

Sending through clickatell could, I suppose, be done with an AGI script that talks to their http (or whichever...) interface.

On a related note...does anybody have suggestions on how to _receive_ an SM by way of, say, a Junghanns duo GSM PCI card? I can use the thing as a GSM voice channel no problem, but app_sms really wants a PSTN connection to an SMSC...and I just want direct access to my GSM modem. (The argument could be made that I'm reinventing the wheel...and I should just find a way to make alamin or some other SMS application talk to my Junghanns....)

So...does anybody want to help me reinvent the wheel?

I suppose the answer _might_ be to modify the GSM_EVENT_SM_RECEIVED case in chan_zap.c's handle_gsm_event() method, but...that seems a bit heavy handed.

Thanks,
-Chris

Clickatell?

by auto194419 on Thursday 28 of July, 2005 [11:16:01 UTC]
http://www.clickatell.com/brochure/products/developer_solutions.php

Unlike the predatory pricing of FastSMS, these Clickatell guys offer reasonable pricing (~$0.05 per SMS). Is there any way of integrating their service into Asterisk?

no conjunction

by aicgazi on Tuesday 07 of December, 2004 [21:52:00 UTC]
Hi sorry but i don't see any conjunction to sms :-(

mfg

Please update this page with new information, just login and click on the "Edit" or "Add Comment" button above. Get a free login here: Register Thanks! - support@voip-info.org

Page Changes | Comments

Sponsored by:

Terms of Service Privacy Policy
© 2003-2008 VOIP-Info.org LLC

Powered by bitweaver