bar top left
bar top right
left curve
right curve
Bienvenido, Invitado
Abajo
Publicar respuesta
Publicar nuevo tema
Página: 123456
TEMA: Elastix SMS module
*
#75300
Elastix SMS module hace 2 Años, 1 Mes Karma: 3
Hi guys,

Here you are an SMS Module for Elastix, developed by our company. Yo can creatre trunks (SMPP providers), create groups of mobile phones, send individial SMS messajes, and create bulk sms campaigns.

You can download it from:

sourceforge.net/projects/elastix-sms

Now is available in english and in spanish.
Documentation is available in spanish.

It's free!

www.iberoxarxa.es
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
jolive
Fresh Boarder
Mensajes: 13
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#75313
Re: Elastix SMS module hace 2 Años, 1 Mes Karma: 117
please send this module to the elastix crew...pestrella at palosanto.com elandivar at palosanto.com....
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
fmvillares
Asterisk DCAP and Ex-Elastix Partner
Gold Boarder
Mensajes: 1785
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Sexo: Hombre fernando (dot) villares Intelix Ingeniería fmvillares (at) hotmail.com Localización: Rosario Cumpleaños: 07/03
Reply Quote
 
#75648
Re: Elastix SMS module hace 2 Años, 1 Mes Karma: 1
jolive thanks for the sms module

i installed it but need some help on setting up the sms trunk

i have a Huawei E1550 USB Modem installed on my Elastix server and I have chan_datacard loaded without any problems

I can send an sms via cli when i do CLI>datacard sms huawei 0791234567 Test Message

I have a Custom Trunk in Elastix: Custom Dial string: = DATACARD/huawei/$OUTNUM$

What can I do with your sms module to use my Hauwei E1550 3G Usb Modem to send an sms

any help greatly appreciated
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
cheeks
Fresh Boarder
Mensajes: 49
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#75689
Re: Elastix SMS module hace 2 Años, 1 Mes Karma: 3
cheeks, thanks for trying our module.

now, SMS module, works only with SMPP providers, over internet ant without hardware.

we have plans for support hardware.

in your case, firts try if you can send sms executing this from your prompt:

asterisk -rx "datacard sms huawei 0791234567 Test Message"

if this works changes in trunk module are required: for example, is not need to entry server, port, user, password ....

please, give me some time for thinking about this.

Now we are working for support Portech gateways and we are making changes in trunk module now.
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
jolive
Fresh Boarder
Mensajes: 13
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#75707
Re: Elastix SMS module hace 2 Años, 1 Mes Karma: 1
jolive thanks for your quick response

when i do
#asterisk -rx "datacard sms huawei 0791234567 Test Message"

i received the sms message on my mobile without any problems. this is great news.

what changes must i do in your trunk module???

thanks again
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
cheeks
Fresh Boarder
Mensajes: 49
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Última edición: 04/04/2011 11:44 por cheeks.
Reply Quote
 
#75758
Re: Elastix SMS module hace 2 Años, 1 Mes Karma: 1
jolive

any ideas on a solution for using the sms module with a working Huawei Modem

this will really help if you can assist me in getting it to work
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
cheeks
Fresh Boarder
Mensajes: 49
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#77189
Re: Elastix SMS module hace 2 Años Karma: 3
Please upgrade to latest version:

Module: sourceforge.net/projects/elastix-sms/fil...-0.2.tar.gz/download

Documentation: sourceforge.net/projects/elastix-sms/fil...spanish.pdf/download

If you are using Elastix 2.0. first remove module in delete module option in developer menu.

Install new version.

Go to configuration option of SMS and fill according to your country.

Create a trunk of type Bash Script.

This type of trunk allow you to develop your own shell script for sending an SMS message.

You have an example of shell script in /var/www/html/libs/sms/scripts/sample, and follow the instructions.

In your script you must call asterisk -rx "datacard sms huawei 0791234567 Test Message", passing thr right arguments.

Please test, and send me your feedback.

Best regards,

Jaume Olivé
www.iberoxarxa.es
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
jolive
Fresh Boarder
Mensajes: 13
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#77934
Re: Elastix SMS module hace 2 Años Karma: 1
Jaume Olivé thanks for the update much appreciated

Removed sms 01 module in installed sms 02 module

Now my Problem is that i am not sure what to place where in your sample script so that i can send the same message to 30 mobile numbers.

" In your script you must call asterisk -rx "datacard sms huawei 0791234567 Test Message", passing thr right arguments. " ?????

please assist

thanks again
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
cheeks
Fresh Boarder
Mensajes: 49
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Última edición: 10/05/2011 04:54 por cheeks.
Reply Quote
 
#78680
Re: Elastix SMS module hace 2 Años Karma: 1
guys hope you can help

this is the sample sms script:
======================================
#!/bin/bash

#Get script arguments
clid="$1"
destination="$2"
text="$3"
unicode="$4"

#Init return values
ret_code=0
ret_message="Message delivered for sending"
stop_trunk=0
stop_message=0

#Process message
#Errors must be processed, if an error occurs fill
# ret_code: a value different to 0
# ret_message: string error message
# stop_trunk: 1 if this error must stop all messages for this trunk, for example, if there's no credit
# stop_message: 1 if this error mist stop this message, for example, if number is invalid

#Begin
#Write process message code

#End

#Return
echo "$ret_code;$ret_message;$stop_trunk;$stop_message"
exit $ret_code
==========================================

i have a trunk setup for my hauwie modem with a custom dial string: " DATACARD/huawei/$OUTNUM$ "

from the shell when i do: " asterisk -rx "datacard sms huawei 0791234567 Test Message "
i receive the sms test message with no problems

In the sms sample script i need to call " asterisk -rx "datacard sms huawei 0791234567 Test Message", passing the right arguments.

Now i need to create a sms campaign to send the same message to 30 mobile numbers. Please can you assist in telling me where in the sms sample script i need to place the correct statement.

any help greatly appreciated

sorry for the noob questions
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
cheeks
Fresh Boarder
Mensajes: 49
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
#78686
Re: Elastix SMS module hace 2 Años Karma: 3
Hi cheeks!

you must put something like this between "#write process message code" and "#end" section in the
sample code:

asterisk -rx "datacard sms huawei $destination $text"

Notes:

* Test what happens with a text message like: hello
* Test what happens with a text message like: hello it's funny
* Test what happens with a text message like: hello it's "funny"

Do this tests with an individual send (not a campaign).

Be careful! Now the custom trunk don't accept unicode, this is, messages with accents will not work. Do you know how to send an unicode message with datacard?.

Best regards,

Jaume Olivé
www.iberoxarxa.es
Introducir código aquí   
Por favor, aunque no se vea ningún BBcode ni botones de smiley, son usables igualmente
jolive
Fresh Boarder
Mensajes: 13
graphgraph
Usuario Offline Presiona aquí para ver el perfil de este usuario
Reply Quote
 
Arriba
Publicar respuesta
Publicar nuevo tema
Página: 123456
Moderadores: Bob, jgutierrez

elastix

Protected by Spam Fighter