Recent content by mrbnet

  1. M

    What is the best way to POST JSON data to a URL after a call has ended?

    I am trying to post a JSON payload to a URL after every call ends/hangs up. I am able to get somewhat close by making changes to: `/usr/share/freeswitch/scripts/app/hangup/index.lua` I would like my changes to persist after an update to that file via an upgrade. My questions are: 1. What is the...
  2. M

    Voicemails are not getting emailed

    EDIT: I implemented this as a work around until I can figure out what the actual issue is. 1. Edit the following file: /usr/share/freeswitch/scripts/resources/functions/send_mail.lua 2. Before the following code if (email_from == nil or email_from =="") then (about line 43) add line with the...
  3. M

    Voicemails are not getting emailed

    The following setting does not seem to load anything and still results in "nil". email_from = settings:get('email', 'smtp_from', 'text'); That setting is set, however.
  4. M

    Voicemails are not getting emailed

    I am guessing that I don't have a default setting correct. If I hardcode the email_from address at the following line, it works. https://github.com/fusionpbx/fusionpbx/blob/8b9a67f4b9a9c4030488dabf4cbaeec003fca956/app/scripts/resources/scripts/resources/functions/send_mail.lua#L45
  5. M

    Voicemails are not getting emailed

    Still no luck on FusionPBX 5.0.6.
  6. M

    Voicemails are not getting emailed

    On my instance the `smtp_from` field has a custom address set of `support@thedomain.com` and Enabled is set at true. There is an `email_from` parameter there which I *think* I added from troubleshooting with a `no-reply@` address. Still no luck here.
  7. M

    Voicemails are not getting emailed

    I tried setting the "email_from" parameter in the dialplan still without luck. <action application="set" data="email_from=no-reply@example.com"/>
  8. M

    Voicemails are not getting emailed

    @firmfoit Are you seeing emails actually get delivered? I am still getting the same messages as you. I never actually see an email landing in the queue though.
  9. M

    Voicemails are not getting emailed

    That value is set already. FWIW: I can send a successful test email from Status >> Email Logs and Status >> Email Queue. I'm using an external SMTP server. There is also a `smtp_from` field in the voicemail category which is set.
  10. M

    Voicemails are not getting emailed

    I have configured voicemails to be sent via email. Voicemails are not being sent and are not in the queue. I am seeing the following error in the logs: 2022-11-02 20:53:14.829786 95.03% [ERR] switch_cpp.cpp:1465 [database] can not bind parameter: undefined parameter: email_from 2022-11-02...