Search results

  1. whut

    SOLVED xml_cdr not working after update

    It looks like new installations do not have the xml_cdr module installed.
  2. whut

    WebPhone for FusionPBX.

    Hello @Amit Iyer, This looks like an interesting application that I will look into further. Thank you for posting it. I say that I see a few points in the code and in the installation instructions that you are installing it in core, which I disagree with. As this is not operational to fusion's...
  3. whut

    is it right to clear RAM cache daily?

    As I understand it this will free up memory which would be good. But a caution of lower performance until the cache is rebuilt over time with frequently used data.
  4. whut

    Call Recordings delete after 2 days

    It look like only pieces of your maintenance script are uploaded and they do not include the call recordings code within. Example.pdf states purge_call_recordings=false which is disabled and days_keep_call_recordings=180 if it was enabled. I would expect something similar to if [...
  5. whut

    Dial By Name Directory

    did you reload xml?
  6. whut

    Dial By Name Directory

    Edit /etc/freeswitch/autoload_configs/directory.conf.xml and test thoroughly. This is affects all domains, any 3 character names cannot be expected to work, and that may be too many digits to enter for ease of use. So you may want to consider developing a domain level solution.
  7. whut

    After upgrade, email_queue.php gives "Email Queue is disabled in Default Settings"

    No, that will not matter. Obviously something else. Run every update option - 1 at a time, 1 after another and try again.
  8. whut

    After upgrade, email_queue.php gives "Email Queue is disabled in Default Settings"

    Try changing the default settings value 'True' to 'true' - all lowercase, save, reload button at the top-right of the default settings page and try your command again.
  9. whut

    Call Limit message

    Try playback like thisbellow, ensuring your file path and file are correct: <action application="playback" data="file_string:///var/lib/freeswitch/recordings/test.synphony.co.uk/recording.wav"/> If the dialplan still does not work then temporarily edit your testing domain's *9664 dialplan by...
  10. whut

    softphone remote register issue

    in the gs wave extension account settings try changing Transmission Protocol to TCP and Register Expiration (minutes) to 3. Wait up to 3 minutes. If the extension/account is still unregistered try the other Transmission Protocol option of TLS (doubt you will be using TLS).
  11. whut

    emailing from script

    As of this moment I have a shell script that is executing a modified copies of email.lua and send.email.lua scripts with hardcoded domain uuid and domain name in the lua scripts. It did not work to send them as parameters. freeswitch errors that the domain uuid is an undefined parameter. I may...
  12. whut

    Event Guard

    Good point. Definately restart the service. I have experienced event guard service running (and restarted) but doing no blocking. Most of the time it is working as intended.
  13. whut

    emailing from script

    what are the best and easiest ways to email from a bash or shell script? the email_script.sh will contain variables for email to, email from, subject, body, file to attach etc. If I call fs_cli luarun email.lua, the email is not sent because the domain uuid and domain name are not included. I...
  14. whut

    VIP List

    That is an interesting issue. There are multiple ways to fix the issue. I like the redis idea as it should be fast as it is in memory as mentioned. I would be interested in seeing how this would be implemented. Pulling from a file should also be fast too unless it is a very large list of...
  15. whut

    Event Guard

    Event guard is blocking the attempts from being successful. It can't stop someone from trying. For more blocking you could have a firewall in front of the server.
  16. whut

    Call Limit message

    Playing audio should be easy with this, or similar: <action application="playback" data="voicemail/vm-that_was_an_invalid_ext.wav"/> I have not yet successfully sent SMS to yealink devices via command line or dialplan. Let me know if you do figure that out as perhaps it may be useful in certain...
  17. whut

    CDR results does not match CDR Statistics Results

    your statistics page sums to 1,115 for the 7am-7am period in the upper section. I would try to replicate the period on cdr page in the date&time filters and try again. Hopefully they match.
  18. whut

    Call Privacy

    The first item I see that is probably causing this dialplan to not work is the order set at 200. The order needs to be a lower number than your outbound route. Otherwise, this dial plan will never be executed. Your existing outbound route is probably order 100, or similar. Change your new dial...
  19. whut

    Do I understand custom dial plans correctly?

    I would test with break=on-true or break=never on the first condition in groups 1 and 2. Do not include it on the last group (group 3). Do you have specific names or numbers that are calling? If so you can use the call block application. IVRs are a good item to use in your defense for the...
  20. whut

    Limit User Access - Fax Servers?

    Great! fax_extension_view_domain should be disabled in the fax users group for the functionality you are looking for.