Search results

  1. J

    Working SMS Integration

    Looks like you are missing a line at the bottom. It's the "$email_message .=" line. ... unlink($fileatt); // delete a file after attachment sent. } $email_message .= "--{$mime_boundary}--\n"; } } ...
  2. J

    Working SMS Integration

    I'm assuming this is not for Telnyx, since that is fully tested? I'm not sure how much I can help, but here goes: It sound like you have something not quite right in file sms_email.php, in the "if ($carrier == "<your_carrier_name>") block. I would look closely at the way you are setting the...
  3. J

    Voicemail Transcription with Azure

    An alternative solution, suggested to me by someone official, was to set this line in your crontab (crontab -e) */15 * * * * rm /var/cache/fusionpbx/app.voicemail.azure.access_token It just deletes the token from cache every 15 minutes. As Konrad suggested, it would be better to create an...
  4. J

    Can't dial ring group number from IVR

    If you are trying to dial this by turning on Direct Dial in the IVR, I don't believe that will work for ring groups. Looks like Direct Dial is more limited, maybe to just extensions? If you are creating options In the IVR Menu and this is failing: under Advanced, check the Digit Length...
  5. J

    FusionPBX SMS Integration with Bandwidth

    Good. Yes, sms_email.php changes would be the next step then.
  6. J

    FusionPBX SMS Integration with Bandwidth

    Did you try commenting out the other "error_log" line temporarily?
  7. J

    FusionPBX SMS Integration with Bandwidth

    Ok, so the URL for the attachment is probably coming through intact. It's just getting truncated in the log. There is a buffer length problem with the logging, and I've just never had the motivation to go solve it. But you can probably add the following line to the if ($debug) block in your...
  8. J

    softphone recommendations

    For Groundwire/Acrobits, it's here: https://www.acrobits.net/cloud-softphone/pricing/ I believe that you can also do white label/branded versions of Zoiper and maybe Bria, but I haven't looked into it.
  9. J

    When a parked call is retrieved - it does not showcase the original caller ID

    FYI, there was an update on May 5 that says it addresses this issue. I've tried it, and it still isn't working for me, but your mileage may vary.
  10. J

    When a parked call is retrieved - it does not showcase the original caller ID

    I can't really help on this, other than to confirm this behaviour on my system, using Grandstream phones (GRP/GXP). It would also be nice to be able to see the caller ID on the BLF button, instead of "From park". I suspect these issues are related.
  11. J

    FusionPBX SMS Integration with Bandwidth

    As I said previously, there is no Broadcast option related to SMS. The Applications->Call Broadcast page is for phone call broadcasts, not SMS. We've looked into PlaySMS (playsms.org) as a dedicated SMS broadcast and interactive SMS application platform.
  12. J

    FusionPBX SMS Integration with Bandwidth

    The Messages option is a built-in SMS messaging application that the author, @markjcrane, has been working for a year or two now (possibly longer). It never made it into full production, at least with support for more than one carrier. As I understand it, he is now actively working on a...
  13. J

    FusionPBX SMS Integration with Bandwidth

    To my knowledge, there is no support built into this module for SMS Broadcast (AFAIK, the only broadcast built into FusionPBX is phone call broadcast, and even that is rudimentary). This SMS module is strictly intended as person-to-person usage though it already does have integration for...
  14. J

    FusionPBX SMS Integration with Bandwidth

    No problem. Yes, the whole 1+ thing on responses has bitten me a time or two. Glad it's working for you! Regarding the log truncation, here's some info on that. I haven't tried changing the log_errors_max_len setting, but it sounds like that might work. Could even try the ini_set command at...
  15. J

    FusionPBX SMS Integration with Bandwidth

    No, that's one of those "feature-bugs". There is a buffer limit on the logging. I suspect it will only write a certain amount to the log at a time. It's writing a lot to the log for each inbound message, for troubleshooting purposes. It will cut off the log in the middle of a line, somewhere...
  16. J

    FusionPBX SMS Integration with Bandwidth

    That is a new error to me. Here's something I found that may help. I don't know why it would be exceeding the buffer, but you might try the settings in the one of the answers to the linked question.
  17. J

    FusionPBX SMS Integration with Bandwidth

    Try browsing to this URL yourself and see what you get. The access.log shows a 301, which is a redirect. Something in your nginx config may be redirecting back to https, which then fails.
  18. J

    FusionPBX SMS Integration with Bandwidth

    Check your nginx access.log and see if you are seeing any activity when you send a message in. If you are not seeing anything in either nginx log, then I’d review your webhook URL settings on Bandwidth. Also, try accessing the webhook url yourself to make sure it is accurate (you should get...
  19. J

    FusionPBX SMS Integration with Bandwidth

    Robert, Note that the tips @mak_make and I are giving you are related to outbound. As far as inbound, it really depends on your error.log as to what's happening when Bandwidth tries to send to you.
  20. J

    FusionPBX SMS Integration with Bandwidth

    Here's what I use for my "public" context section: <context name="public"> <extension name="ten-digit"> <condition field="to" expression="^(\d{10}.*)$"> <action application="set" data="final_delivery=true"/>...