Search results

  1. M

    needed 2nd ivr or record

    Each ring group or cc has a greeting message option, set your prompt there to be played before start ringing
  2. M

    SMS app adding new carrier

    I have try to run curl post from fs_cli and it's working. What do you mean by cli app?
  3. M

    Blf issue, green button even if extension is not registered

    Same issue with Grandstream , once set unregistered ext' on blf key light goes green like the ext' is available but actually does not register and unavailable.
  4. M

    SMS app adding new carrier

    Thank you Dest. i have run this command in lua and check /tmp/sms.send.log but the file is empty.. and sms does not sent. does it mean anything if the sms log is empty?
  5. M

    Extensions Outbound Another Gateway

    You can do something with Toll Allow in extention and dialplan.
  6. M

    SMS app adding new carrier

    Thank's Dest, i have try to add the command you post to index.lua and still nothing happen... no CURL Return and no sms send :( what we are missing here? are you sure there is no way to see outgoing command sent to carrier? some lan output log?
  7. M

    SMS app adding new carrier

    Dest, any chance for help with this?
  8. M

    call recording robotic sound

    friends, need your help.. all incoming call via call center are recorded, somehow when listening the call recording is sound very slowly and robotic :( outgoing calls are recorded well sound also incoming calls that not passing CC. i tried to play the file from freeswitch/recording and that the...
  9. M

    Outbound SMS

    Can you please share the dialplan?
  10. M

    SMS app adding new carrier

    this is the debug log from cli while trying to send sms via index.lua , it is not showing any CURL Returns...
  11. M

    SMS app adding new carrier

    so this is the last command i'm using in SMS index.lua - cmd = " curl " .. api_url .. " -H \"content-type: application/xml; charset=utf-8'\" <?xml version=\"1.0\" encoding=\"UTF-8\"?> <sms><user><username>".. username .."</username><password>".. secret_key ...
  12. M

    SMS app adding new carrier

    Thank's Dest, using this format does not appear errors anymore.. but unfortunately SMS's are still not sending.. without any log or monitor it will be hard to troubleshot problem... anyway to find curl output logs to see whats actually has been sent to carrier ?
  13. M

    SMS app adding new carrier

    so i manage to make it work via cli i'm able to send SMS! curl https://carrier.com/api -H content-type 'application/xml; charset=utf-8' post '<?xml version="1.0" encoding="UTF-8"?> <sms> <user> <username>1234</username><password>1234</password></user><source>test</source> <destinations>...
  14. M

    SMS app adding new carrier

    your idea to use fs_cli to run and test the curl post is great! this is the command i'm sending - curl https://carrier_url.com/api post "<?xml version="1.0" encoding="UTF-8"?>" <sms><user><username></username><password></password></user><source></source><destinations> <phone></phone>...
  15. M

    SMS app adding new carrier

    well, the issue seems to be according carrier request to have this line in command "<?xml version="1.0" encoding="UTF-8"?>" the qustion is in which format to put <?xml version="1.0" encoding="UTF-8"?> in this command? - curl https://carrier_url.com/api post "<?xml version="1.0"...
  16. M

    SMS app adding new carrier

    when try to run both command i'm facing "-ERR no reply". when running attach command there is replay from carrier but with an XML problem...
  17. M

    SMS app adding new carrier

    ok so i run the code via cli here is the issue, carrier respond that there is some problem with xml
  18. M

    SMS app adding new carrier

    Thanks Dest, i change the code to yours - same status.. :( how should i run this code / curl in cli? if i just past the code in cli i'm facing an error message...
  19. M

    SMS app adding new carrier

    Thank you Dest. i have made the change and added to new carrier to `/usr/share/freeswitch/scripts/app/sms/index.lua` and once I'm trying to send message I'm facing the following info in fs_cli log , message not send. i set up default settings according this carrier. where can i see what actualy...