Search results

  1. J

    Working SMS Integration

    Sorry, I made some other significant changes back in Q3-Q4 of last year to /app/sms/index.lua that I forgot about until now. They are included above. One of the changes is that it will now allow for email delivery of inbound SMS messages to an email address. In order to enable this, you have...
  2. J

    Working SMS Integration

    Here's an update to the /freeswitch/scripts/app/sms/index.lua file. This fixes some issues created in a recent update of Groundwire, but I believe it should also fix the problem with XML delivery notifications being sent via SMS. If you've made recent changes to this file, you may want to do a...
  3. J

    Working SMS Integration

    MTR, Regarding the problem of the XML data in the replies: I dug into this a little further. We haven't been bothered by this problem, because, for my SMS provider, Telnyx, the XML formatting causes the message to be malformed and the message send to error. There are probably several ways to...
  4. J

    Working SMS Integration

    Sorry, I've been out of pocket due to the holidays. Part of the reason I didn't submit to the project was indeed lack of time to do proper testing, even though it's working for us. The other reason is that we're not on the master branch, so I don't know if it's fully compatible.
  5. J

    Working SMS Integration

    Once you implement all changes, when you are editing an SMS destination, you should now see a field for "Extension or Ring Group". This is not a drop-down, though ideally, it should be. Given time constraints, I couldn't figure out how to get that implemented. You just type in the extension...
  6. J

    Working SMS Integration

    Here are instructions on adding the separate routing for SMS. As I mentioned, I haven't had time to get back to this and make it as "pretty" as I'd like to. And fair warning, there are several changes to make! (Also, we are on 4.2.4. No guarantees on compatibility with future version until I...
  7. J

    Working SMS Integration

    1. The default implementation limits your inbound routing--your DID routing has to be to an extension or ring group and this is shared by both voice routing and SMS routing. We didn't like this limitation, so we built our own routing (I think I referenced this earlier) that splits out inbound...
  8. J

    Working SMS Integration

    I'm currently running 4.2.4. Haven't tried on anything newer, so I don't know what any issues might be. The /app/sms/app_config.php contains the schema definition information to build the v_sms_* tables. This is what happens in the installation step when you do the "Upgrade -> Schema". It...
  9. J

    Working SMS Integration

    Sorry, I have been extremely busy, so I have not been able to keep up with submitting fixes that I have found for this code. Under your FusionPBX install in the SMS folder (ours is at /var/www/html/app/sms/) change the following: In sms.php, along about line 84, look for an "else {" block...
  10. J

    Cautionary tale - Recordings

    If you allow users to upload recordings, as we did, you may want to re-think it. We had a new customer who decided to record his greetings and upload. We gave him instructions on format and he began doing so. No problem. He began testing. All was well for a few days. Then he decided to get...
  11. J

    Working SMS Integration

    Then we have you, in particular, to thank for the app! It's working well, and we have at least one other idea in mind as an enhancement. FYI, my edits were accepted into the project on Github, so the above information is now mostly a reference/documentation for that pull request/commit...
  12. J

    Working SMS Integration

    We started attempting to add SMS support to our FusionPBX configuration a couple of months ago and found conflicting information online. This link started me down the right path, but gives some bad information--such as, I found that the information given by Caleb was outdated. And the comments...