Search results

  1. Adrian Fretwell

    Busy on Busy not possible?

    I said "There may be a better way of doing this"... EDIT: but having said that, what if they still want voicemail when away from the desk?
  2. Adrian Fretwell

    Busy on Busy not possible?

    I don't believe that Fusion sets the max_calls variable anywhere by default - I could be wrong. It could easily be set on the global-variables or the variables dialplans as required. Have a look at the FreeSWITCH documentation on using limit...
  3. Adrian Fretwell

    Discussion on Zipping/Tar Files Actively Being Written

    Probably a bit overkill but you could rsync to a backup directory structure on the same box and then tar that. I know it wastes space but disks are cheap enough these days.
  4. Adrian Fretwell

    Busy on Busy not possible?

    In the Dialplan Manager, have a look at call-limit, by default it is not enabled, you should find it at order 25. There may be a better way of doing this but one trick I have done in the past with this is to change the condition so it only logs (limits) inbound and instead of using the...
  5. Adrian Fretwell

    Discussion on Zipping/Tar Files Actively Being Written

    That is a good question. I don' t know about PGDump but I guess it will have a mechanism to ensure consistency. In my experience tar normally fails if you instruct it to archive a directory that has files open in it. There is a command line switch to instruct tar to ignore the error, but that...
  6. Adrian Fretwell

    "Lenny" - The Telemarketers Nightmare

    Sorry, I forgot to mention permissions, the following should do the trick: chown -R www-data:www-data /usr/share/freeswitch/sounds/en/au/lenny/ If you created the au directory also, then get the permissions correct on that too. chown -R www-data:www-data /usr/share/freeswitch/sounds/en/au/
  7. Adrian Fretwell

    "Lenny" - The Telemarketers Nightmare

    Ok I will try to answer in order. 1.) The directories are the aType parameter variable in the get_filename function. Eg. get_filename( 'greeting', 1 ) , get_filename( 'mainloop', counter_mainloop ) etc. 2.) I renamed lenny1.wav, lenny2.wav etc. to simply 1.wav, 2.wav etc. As for files in...
  8. Adrian Fretwell

    SOLVED Phantom Phone Calls From Weird Extensions

    Don't work with Grandstreams but Yealink phones have settings called: Accept SIP Trust Server Only and Allow IP Call that help prevent this from happening:
  9. Adrian Fretwell

    Check if called Number is known on Fusionpbx

    Have a look at is_local. https://docs.fusionpbx.com/en/latest/dialplan/dialplan_details.html There are several treads on this subject o here: https://www.pbxforums.com/threads/cross-tenant-dialing.3403/ https://www.pbxforums.com/threads/should-pbx-know-a-call-is-internal.3645/...
  10. Adrian Fretwell

    "Lenny" - The Telemarketers Nightmare

    Yes, I had a play and got it working on my test box. I had to modify the LUA downloaded from the link in this thread, mainly to fix some minor issues, but also to correctly specify the sound file location. I downloaded the sound files, they were all in one directory and called lenny1, lenny2...
  11. Adrian Fretwell

    Voicemail Pin - Deactivation

    Just in case it is of help. Here is how I built my *97 dialplan to remove the PIN for certain extensions only. There are also some variables set to stop some other voicemail prompts:
  12. Adrian Fretwell

    Voicemail Pin - Deactivation

    Yes, that was it. Thank you for clarifying.
  13. Adrian Fretwell

    Voicemail Pin - Deactivation

    @ad5ou Setting authorized=true did not work for me when I tested it, am I missing something?
  14. Adrian Fretwell

    daily cron

    Your original find command was correct you SHOULD NOT be removing freeswitch.log freeswitch.log is the current log file that FreeSWITCH is writing to. files that end in 1, 2, 3 etc are the rotated logs that the find using freeswitch.log.* deletes. If you do not see any files called...
  15. Adrian Fretwell

    G'Day from WA

    Welcome, and hello from Newark, UK.
  16. Adrian Fretwell

    Client Domains

    Keeping domain names short also helps with keeping UDP packet size down to avoid MTU issues, especially in BLF NOTIFY messages.
  17. Adrian Fretwell

    daily cron

    If you are using the packaged install of FreeSWITCH (most do), then yes that is correct. Otherwise use find /usr/local/freeswitch/log/freeswitch.log.* -mtime +7 -exec rm {} \;
  18. Adrian Fretwell

    Select from multiple on call people

    For this purpose I use a ring group forward. I create a new (permissions) group called ringgroup _fwd which has the following permissions: ring_group_view ring_group_forward ring_group_destination_view ring_group_user_view ring_group_missed_call I assign this permission to any user that I want...
  19. Adrian Fretwell

    MSP

    Welcome. Your plan sounds, good. Please share your experiences as you build your platform, I'm sure it will make for interesting reading!
  20. Adrian Fretwell

    InterDomain (?) Call Routing

    You may want to look at is_local, there is some discussion in this thread: https://www.pbxforums.com/threads/route-calls-between-domains.132/