Search results

  1. M

    Advice on SMS gateway...

    In "index.php" there is a debug flag that causes the code to write out some extra information along the way. Critically this includes things like the user and extensions that the sip message is bound for. At this point, I'd recommend setting $debug to true at the top of the script and then...
  2. M

    Advice on SMS gateway...

    Ad, It looks like you are close. Did you assign the " Outbound Caller ID Number" to an extension? Did you assign a user to the extension?I believe that sets up the chatplan so that the inbound SMS then has a destination. I'd recommend setting the DID and the deliver email and get inbound working...
  3. M

    Advice on SMS gateway...

    What exactly do you mean by "interface with it"? If you mean connecting your carrier to the app, the webhook is ".../app/messages/index.php". There is logic in there that matches the from IP address in the request header with the provider. (Make sure you setup the provider correctly in FusionPBX).
  4. M

    Advice on SMS gateway...

    @datafanatics I would imagine that Groundwire would work just like any other softphone using the Messages app. Like I said, I gave up on the SMS app. @johnnyorange I believe the Messages app does tie into the chatplan, but I made no modification to it in order to make this work. The only code...
  5. M

    Advice on SMS gateway...

    I'm going to post a quasi-final update on this here to close out this thread. I was able to get Messages to work sufficiently enough for me to test/evaulate if it will work for our needs. Currently I have the following working: * Send/receive from web UI * Send/receive from softphone endpoint...
  6. M

    Advice on SMS gateway...

    I can provide a summary of the steps here once I have everything working. Here's a brief update on my current status: Messages is delivering to endpoints correctly; Invalid Profile was from a different test. It looks like the SQL query for numbers in "message_contact.php" is stripping out the...
  7. M

    Advice on SMS gateway...

    Apologies. Bull, you are correct that messages does both inbound/outbound and UI. This means the SMS is not necessary when using Messages. I've managed to get inbound SMS with messages (The documentation is not clear that the callback URL is supposed to be .../app/messages/index.php) And I'm...
  8. M

    Advice on SMS gateway...

    I'm using both SMS and Messages. Messages appears to be a way to simply receive/send via the web interface and SMS is gateway that routes messages.
  9. M

    Advice on SMS gateway...

    Hello, I've been working part-time for several weeks trying to connect SMS messages from our carriers (Bandwidth and Telnyx) to a FusionPBX instance in an attempt to accomplish a few things: * Allow users to send/receive text messages using softphones * Allow users to send/receive text...